RE: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum
From: JC Chen[陳饒靜]
Date: Thu Aug 27 2026 - 02:45:47 EST
Hi,
I plugged enddevices into our packet switch, and re-do lspci and dmesg as attached.
Regards,
JC
-----Original Message-----
From: JC Chen[陳饒靜]
Sent: Thursday, August 27, 2026 8:13 AM
To: Ilpo Järvinen <ilpo.jarvinen@xxxxxxxxxxxxxxx>
Cc: Bjorn Helgaas <helgaas@xxxxxxxxxx>; Nirmoy Das <nirmoyd@xxxxxxxxxx>; Bjorn Helgaas <bhelgaas@xxxxxxxxxx>; linux-pci@xxxxxxxxxxxxxxx; linux-kernel@xxxxxxxxxxxxxxx
Subject: RE: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum
Hi,
I have problem of understanding why touching that downstream BAR helps because the bridge windows on 0000:17:00.0 are disabled.
=> I am sorry to cause your confusion. When I run lspci last time, I do not plug in any enddevice. That is why the memory window is disabled.
Regards,
JC
-----Original Message-----
From: Ilpo Järvinen <ilpo.jarvinen@xxxxxxxxxxxxxxx>
Sent: Wednesday, August 26, 2026 10:28 PM
To: JC Chen[陳饒靜] <jc_chen@xxxxxxxxxx>
Cc: Bjorn Helgaas <helgaas@xxxxxxxxxx>; Nirmoy Das <nirmoyd@xxxxxxxxxx>; Bjorn Helgaas <bhelgaas@xxxxxxxxxx>; linux-pci@xxxxxxxxxxxxxxx; linux-kernel@xxxxxxxxxxxxxxx
Subject: RE: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum
On Fri, 24 Jul 2026, JC Chen[陳饒靜] wrote:
>
> Hi,
>
>
>
> Attached are kernel log "dmesg.log" and lspci "lspci.log" output.
>
>
>
> I guess without this patch, MSI-X from the downstream port doesn't work correctly?
>
> => YES
>
>
>
> By "mirror", I guess you mean you want the same value in BAR 0 of both
> the switch upstream port and the downstream port?
>
> => Yes, please use the same value in BAR 0 of both the switch upstream
> and downstream ports.
>
> I don't know what that even means, because the upstream port BAR 0
> can't be inside its memory window, so reads should never reach the downstream port.
>
> => Yes, you are correct that the upstream port BAR 0 can't be inside
> its memory window, so reads should never reach the downstream port.
> When CDEP function is disabled, BAR0 of P4 is read as all zeros. If
> root complex send out memory address
> 0x7F000 or 0x7F080 to P4, it will hit P4’s MSI-X Table or PBA address
> range, switch will response UR and then cause SOC reports timeout. To
> avoid this issue, the patch write P0’s BAR0 to P4’s BAR0.
Hi,
I have problem of understanding why touching that downstream BAR helps because the bridge windows on 0000:17:00.0 are disabled.
--
i.
>
>
>
> Thanks,
>
> JC
>
>
>
> -----Original Message-----
> From: Bjorn Helgaas <helgaas@xxxxxxxxxx>
> Sent: Friday, July 24, 2026 4:54 AM
> To: Nirmoy Das <nirmoyd@xxxxxxxxxx>
> Cc: Bjorn Helgaas <bhelgaas@xxxxxxxxxx>; linux-pci@xxxxxxxxxxxxxxx;
> linux-kernel@xxxxxxxxxxxxxxx; JC Chen[陳饒靜] <jc_chen@xxxxxxxxxx>; Ilpo
> Järvinen <ilpo.jarvinen@xxxxxxxxxxxxxxx>
> Subject: Re: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port
> 4 BAR erratum
>
>
>
> [You don't often get email from helgaas@xxxxxxxxxx. Learn why this is
> important at https://aka.ms/LearnAboutSenderIdentification ]
>
>
>
> [+cc Ilpo, this sounds really weird from a resource perspective]
>
>
>
> On Thu, Jul 23, 2026 at 09:10:00AM -0700, Nirmoy Das wrote:
>
> > The Pericom PI7C9X3G606GPC PCIe switch has an erratum where
> > downstream
>
> > Port 4 retains a default MSI-X table and PBA decode when BAR 0 is zero.
>
> > Memory reads that match this window are dropped with an Unsupported
>
> > Request completion, which may cause the SoC to report a timeout.
>
>
>
> Help me understand what's going on here. Can you share the dmesg log
> of enumeration and resource assignment and the "lspci -v" output for
> the whole switch (both upstream and downstream ports) without this patch?
>
>
>
> I guess without this patch, MSI-X from the downstream port doesn't work correctly?
>
>
>
> > The workaround is to make Port 4 BAR 0 mirror BAR 0 of the immediate
>
> > upstream port. Firmware may establish this at boot, but PCI resource
>
> > assignment can move upstream BAR 0 without updating Port 4.
>
>
>
> By "mirror", I guess you mean you want the same value in BAR 0 of both
> the switch upstream port and the downstream port? I don't know what
> that even means, because the upstream port BAR 0 can't be inside its
> memory window, so reads should never reach the downstream port.
>
>
>
> > For a 64-bit BAR, also mirror BAR 1 while memory decoding is
> > disabled,
>
> > matching the PCI core update sequence. Port 4 BAR 0 may read back as
>
> > zero after a successful write, so do not use readback to validate the update.
>
> >
>
> > Signed-off-by: Nirmoy Das <nirmoyd@xxxxxxxxxx>
>
> > ---
>
> > drivers/pci/quirks.c | 92
>
> > ++++++++++++++++++++++++++++++++++++++++++++
>
> > 1 file changed, 92 insertions(+)
>
> >
>
> > diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index
>
> > b09f27f7846fc..fa8098d77adb5 100644
>
> > --- a/drivers/pci/quirks.c
>
> > +++ b/drivers/pci/quirks.c
>
> > @@ -6264,6 +6264,98 @@
> > DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_PERICOM,
>
> > 0xb404, DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_PERICOM, 0xb404,
>
> > pci_fixup_pericom_acs_store_forward);
>
> >
>
> > +#define PCI_DEVICE_ID_PERICOM_PI7C9X3G606GPC 0xc008
>
> > +
>
> > +/*
>
> > + * Pericom PI7C9X3G606GPC switch erratum E15 -
>
> > + * Downstream Port 4 BAR 0 must mirror the immediate upstream port
>
> > +BAR 0
>
> > + *
>
> > + * Port 4 uses BAR 0 for its MSI-X table and PBA. Firmware may
>
> > +program this
>
> > + * mirror at boot, but Linux resource assignment can move the
>
> > +upstream BAR
>
> > + * and leave Port 4 with a stale mirror.
>
> > + *
>
> > + * Diodes confirmed Tile0/P4 appears to Linux as device 4, function
> > + 0
>
> > +on the
>
> > + * bus below the upstream port. Match that downstream function and
>
> > +re-apply
>
> > + * the mirror after resource assignment and early resume.
>
> > + */
>
> > +static void pci_fixup_pericom_pi7c9x3g606gpc_bar0_mirror(struct
>
> > +pci_dev *pdev) {
>
> > + struct pci_dev *upstream;
>
> > + bool bar0_64, disable_mem;
>
> > + u16 cmd = 0;
>
> > + u32 bar = 0, bar1 = 0, upstream_bar = 0, upstream_bar1 = 0;
>
> > +
>
> > + if (pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM)
>
> > + return;
>
> > +
>
> > + if (PCI_SLOT(pdev->devfn) != 4 || PCI_FUNC(pdev->devfn))
>
> > + return;
>
> > +
>
> > + upstream = pci_upstream_bridge(pdev);
>
> > + if (!upstream || upstream->vendor != PCI_VENDOR_ID_PERICOM ||
>
> > + upstream->device != PCI_DEVICE_ID_PERICOM_PI7C9X3G606GPC
> > +||
>
> > + pci_pcie_type(upstream) != PCI_EXP_TYPE_UPSTREAM)
>
> > + return;
>
> > +
>
> > + pci_read_config_dword(upstream, PCI_BASE_ADDRESS_0,
> > +&upstream_bar);
>
> > + if (upstream_bar & PCI_BASE_ADDRESS_SPACE_IO)
>
> > + return;
>
> > +
>
> > + bar0_64 = (upstream_bar & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
>
> > + PCI_BASE_ADDRESS_MEM_TYPE_64;
>
> > + if (bar0_64)
>
> > + pci_read_config_dword(upstream, PCI_BASE_ADDRESS_1,
>
> > + &upstream_bar1);
>
> > +
>
> > + if (!(upstream_bar & PCI_BASE_ADDRESS_MEM_MASK) &&
>
> > + (!bar0_64 || !upstream_bar1)) {
>
> > + pci_warn(pdev, "skipping PI7C9X3G606GPC BAR 0 mirror
> > +workaround
> because upstream BAR 0 is unassigned\n");
>
> > + return;
>
> > + }
>
> > +
>
> > + pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &bar);
>
> > + if (bar0_64) {
>
> > + pci_read_config_dword(pdev, PCI_BASE_ADDRESS_1,
> > +&bar1);
>
> > + if (bar == upstream_bar && bar1 == upstream_bar1)
>
> > + return;
>
> > + } else {
>
> > + if (bar == upstream_bar)
>
> > + return;
>
> > + }
>
> > +
>
> > + /*
>
> > + * Port 4 BAR 0 may read back as zero even after a successful write.
>
> > + * If BAR 0 is configured as 64-bit, BAR 1 is the upper half.
>
> > + * Disable memory decoding while updating both dwords,
> > +matching PCI
>
> > + * core's 64-bit BAR update sequence.
>
> > + */
>
> > + disable_mem = bar0_64 && !pdev->mmio_always_on;
>
> > + if (disable_mem) {
>
> > + pci_read_config_word(pdev, PCI_COMMAND, &cmd);
>
> > + pci_write_config_word(pdev, PCI_COMMAND,
>
> > + cmd & ~PCI_COMMAND_MEMORY);
>
> > + }
>
> > +
>
> > + pci_write_config_dword(pdev, PCI_BASE_ADDRESS_0,
> > +upstream_bar);
>
> > + if (bar0_64)
>
> > + pci_write_config_dword(pdev, PCI_BASE_ADDRESS_1,
> > +upstream_bar1);
>
> > + if (disable_mem)
>
> > + pci_write_config_word(pdev, PCI_COMMAND, cmd);
>
> > +
>
> > + if (bar0_64)
>
> > + pci_info(pdev, "wrote upstream BAR 0/1 %#x/%#x to Port
> > +4 BAR 0/1 for
> PI7C9X3G606GPC BAR 0 mirror workaround\n",
>
> > + upstream_bar, upstream_bar1);
>
> > + else
>
> > + pci_info(pdev, "wrote upstream BAR 0 %#x to Port 4 BAR
> > +0 for
> PI7C9X3G606GPC BAR 0 mirror workaround\n",
>
> > + upstream_bar);
>
> > +}
>
> > +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_PERICOM,
>
> > + PCI_DEVICE_ID_PERICOM_PI7C9X3G606GPC,
>
> > + pci_fixup_pericom_pi7c9x3g606gpc_bar0_mirror);
>
> > +DECLARE_PCI_FIXUP_RESUME_EARLY(PCI_VENDOR_ID_PERICOM,
>
> > + PCI_DEVICE_ID_PERICOM_PI7C9X3G606GPC,
>
> > +
>
> > +pci_fixup_pericom_pi7c9x3g606gpc_bar0_mirror);
>
> > +
>
> > static void nvidia_ion_ahci_fixup(struct pci_dev *pdev) {
>
> > pdev->dev_flags |= PCI_DEV_FLAGS_HAS_MSI_MASKING;
>
> >
>
> > base-commit: dc59e4fea9d83f03bad6bddf3fa2e52491777482
>
> > --
>
> > 2.43.0
>
> >
>
>
>
--
i.
ubuntu25:~$ sudo dmesg
[ 0.000000] Linux version 6.14.0-37-generic (buildd@lcy02-amd64-049) (x86_64-linux-gnu-gcc-14 (Ubuntu 14.2.0-19ubuntu2) 14.2.0, GNU ld (GNU Binutils for Ubuntu) 2.44) #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 (Ubuntu 6.14.0-37.37-generic 6.14.11)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.14.0-37-generic root=UUID=9a3f0a2e-5cb7-4ac1-bd41-e4d3cfb66150 ro quiet splash intel_iommu=off memmap=64M$0x160000000 crashkernel=2G-4G:320M,4G-32G:512M,32G-64G:1024M,64G-128G:2048M,128G-:4096M 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] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 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-0x000000004778cfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000004778d000-0x000000004778dfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000004778e000-0x00000000487dbfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000487dc000-0x00000000487dcfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000487dd000-0x000000005856efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000005856f000-0x000000005c26efff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000005c26f000-0x000000005c3eefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000005c3ef000-0x000000005c4eefff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000005c4ef000-0x0000000063ffefff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000063fff000-0x0000000063ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000064000000-0x00000000787fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000087fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] user-defined physical RAM map:
[ 0.000000] user: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] user: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] user: [mem 0x0000000000100000-0x000000004778cfff] usable
[ 0.000000] user: [mem 0x000000004778d000-0x000000004778dfff] reserved
[ 0.000000] user: [mem 0x000000004778e000-0x00000000487dbfff] usable
[ 0.000000] user: [mem 0x00000000487dc000-0x00000000487dcfff] reserved
[ 0.000000] user: [mem 0x00000000487dd000-0x000000005856efff] usable
[ 0.000000] user: [mem 0x000000005856f000-0x000000005c26efff] reserved
[ 0.000000] user: [mem 0x000000005c26f000-0x000000005c3eefff] ACPI data
[ 0.000000] user: [mem 0x000000005c3ef000-0x000000005c4eefff] ACPI NVS
[ 0.000000] user: [mem 0x000000005c4ef000-0x0000000063ffefff] reserved
[ 0.000000] user: [mem 0x0000000063fff000-0x0000000063ffffff] usable
[ 0.000000] user: [mem 0x0000000064000000-0x00000000787fffff] reserved
[ 0.000000] user: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] user: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] user: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] user: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] user: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] user: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] user: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] user: [mem 0x0000000100000000-0x000000015fffffff] usable
[ 0.000000] user: [mem 0x0000000160000000-0x0000000163ffffff] reserved
[ 0.000000] user: [mem 0x0000000164000000-0x000000087fffffff] usable
[ 0.000000] efi: EFI v2.9 by American Megatrends
[ 0.000000] efi: ACPI=0x5c498000 ACPI 2.0=0x5c498014 TPMFinalLog=0x5c467000 SMBIOS=0x5e964000 SMBIOS 3.0=0x5e963000 MEMATTR=0x5171b018 ESRT=0x5171fa98 MOKvar=0x5f985000 INITRD=0x4fc45998 RNG=0x5c307018 TPMEventLog=0x5c2fa018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem77: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[ 0.000000] efi: Not removing mem78: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem79: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem80: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem82: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem83: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.8.0 present.
[ 0.000000] DMI: Micro-Star International Co., Ltd. MS-7E39/MAG B860 TOMAHAWK WIFI (MS-7E39), BIOS 1.B70 11/25/2025
[ 0.000000] DMI: Memory slots populated: 2/4
[ 0.000000] secureboot: Secure boot disabled
[ 0.000000] tsc: Detected 3300.000 MHz processor
[ 0.000000] tsc: Detected 3264.000 MHz TSC
[ 0.000006] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000008] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000014] last_pfn = 0x880000 max_arch_pfn = 0x400000000
[ 0.000018] MTRR map: 7 entries (3 fixed + 4 variable; max 23), built from 10 variable MTRRs
[ 0.000019] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000399] x2apic: enabled by BIOS, switching to x2apic ops
[ 0.000400] last_pfn = 0x64000 max_arch_pfn = 0x400000000
[ 0.004807] esrt: Reserving ESRT space from 0x000000005171fa98 to 0x000000005171fb48.
[ 0.004811] e820: update [mem 0x5171f000-0x5171ffff] usable ==> reserved
[ 0.004823] Using GB pages for direct mapping
[ 0.005138] secureboot: Secure boot disabled
[ 0.005138] RAMDISK: [mem 0x36936000-0x3b759fff]
[ 0.005428] ACPI: Early table checksum verification disabled
[ 0.005431] ACPI: RSDP 0x000000005C498014 000024 (v02 ALASKA)
[ 0.005434] ACPI: XSDT 0x000000005C497728 000164 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.005438] ACPI: FACP 0x000000005C3D5000 000114 (v06 ALASKA A M I 01072009 AMI 01000013)
[ 0.005441] ACPI: DSDT 0x000000005C33C000 098170 (v02 ALASKA A M I 01072009 INTL 20210930)
[ 0.005443] ACPI: FACS 0x000000005C4EA000 000040
[ 0.005444] ACPI: SSDT 0x000000005C3EC000 000668 (v02 PmRef Cpu0Ist 00003000 INTL 20210930)
[ 0.005446] ACPI: SSDT 0x000000005C3EB000 0005FB (v02 PmRef Cpu0Hwp 00003000 INTL 20210930)
[ 0.005447] ACPI: SSDT 0x000000005C3EA000 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20210930)
[ 0.005448] ACPI: SSDT 0x000000005C3E9000 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20210930)
[ 0.005450] ACPI: SSDT 0x000000005C3E7000 001BAF (v02 PmRef ApIst 00003000 INTL 20210930)
[ 0.005451] ACPI: SSDT 0x000000005C3E5000 001620 (v02 PmRef ApHwp 00003000 INTL 20210930)
[ 0.005453] ACPI: SSDT 0x000000005C3E3000 001349 (v02 PmRef ApPsd 00003000 INTL 20210930)
[ 0.005454] ACPI: SSDT 0x000000005C3E2000 000FBB (v02 PmRef ApCst 00003000 INTL 20210930)
[ 0.005455] ACPI: SSDT 0x000000005C3DE000 003BC8 (v02 CpuRef CpuSsdt 00003000 INTL 20210930)
[ 0.005457] ACPI: DTPR 0x000000005C3DD000 000088 (v01 00000000 00000000)
[ 0.005458] ACPI: SSDT 0x000000005C3D7000 00535A (v02 DptfTb DptfTabl 00001000 INTL 20210930)
[ 0.005460] ACPI: SSDT 0x000000005C3D6000 000E8F (v02 INTEL PDatTabl 00001000 INTL 20210930)
[ 0.005461] ACPI: FIDT 0x000000005C33B000 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.005463] ACPI: SSDT 0x000000005C3EE000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20210930)
[ 0.005464] ACPI: SSDT 0x000000005C338000 00247E (v02 INTEL IgfxSsdt 00003000 INTL 20210930)
[ 0.005466] ACPI: SSDT 0x000000005C32E000 009C1C (v02 INTEL TcssSsdt 00001000 INTL 20210930)
[ 0.005467] ACPI: HPET 0x000000005C3ED000 000038 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.005469] ACPI: APIC 0x000000005C32D000 000358 (v05 ALASKA A M I 01072009 AMI 01000013)
[ 0.005470] ACPI: MCFG 0x000000005C32C000 00003C (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.005472] ACPI: SSDT 0x000000005C32A000 00147F (v02 ALASKA I2Pm_Rvp 00001000 INTL 20210930)
[ 0.005473] ACPI: SSDT 0x000000005C326000 00389C (v02 ALASKA Ther_Rvp 00001000 INTL 20210930)
[ 0.005475] ACPI: UEFI 0x000000005C44F000 000048 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.005476] ACPI: NHLT 0x000000005C325000 00002D (v00 ALASKA A M I 01072009 AMI 01000013)
[ 0.005477] ACPI: LPIT 0x000000005C324000 0000CC (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.005479] ACPI: SSDT 0x000000005C322000 000CA6 (v02 ALASKA PtidDevc 00001000 INTL 20210930)
[ 0.005480] ACPI: SSDT 0x000000005C31C000 005E42 (v02 ALASKA TbtTypeC 00000000 INTL 20210930)
[ 0.005482] ACPI: DBGP 0x000000005C31B000 000034 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.005483] ACPI: DBG2 0x000000005C31A000 000054 (v00 ALASKA A M I 01072009 AMI 01000013)
[ 0.005485] ACPI: SSDT 0x000000005C318000 00115C (v02 ALASKA UsbCTabl 00001000 INTL 20210930)
[ 0.005486] ACPI: DMAR 0x000000005C317000 000098 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.005488] ACPI: FPDT 0x000000005C316000 000044 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.005489] ACPI: SSDT 0x000000005C314000 0016FC (v02 INTEL xh_mts2r 00000000 INTL 20210930)
[ 0.005491] ACPI: SSDT 0x000000005C311000 00281A (v02 SocGpe SocGpe 00003000 INTL 20210930)
[ 0.005492] ACPI: SSDT 0x000000005C30E000 0028D3 (v02 SocCmn SocCmn 00003000 INTL 20210930)
[ 0.005494] ACPI: SSDT 0x000000005C30B000 002DD6 (v02 PchGpe PchGpe 00003000 INTL 20210930)
[ 0.005495] ACPI: TPM2 0x000000005C309000 00004C (v04 ALASKA A M I 00000001 AMI 00000000)
[ 0.005497] ACPI: PHAT 0x000000005C308000 0009DF (v01 ALASKA A M I 00000005 MSFT 0100000D)
[ 0.005498] ACPI: WSMT 0x000000005C323000 000028 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.005499] ACPI: BGRT 0x000000005C30A000 000038 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.005501] ACPI: Reserving FACP table memory at [mem 0x5c3d5000-0x5c3d5113]
[ 0.005502] ACPI: Reserving DSDT table memory at [mem 0x5c33c000-0x5c3d416f]
[ 0.005502] ACPI: Reserving FACS table memory at [mem 0x5c4ea000-0x5c4ea03f]
[ 0.005503] ACPI: Reserving SSDT table memory at [mem 0x5c3ec000-0x5c3ec667]
[ 0.005503] ACPI: Reserving SSDT table memory at [mem 0x5c3eb000-0x5c3eb5fa]
[ 0.005503] ACPI: Reserving SSDT table memory at [mem 0x5c3ea000-0x5c3ea1aa]
[ 0.005504] ACPI: Reserving SSDT table memory at [mem 0x5c3e9000-0x5c3e9393]
[ 0.005504] ACPI: Reserving SSDT table memory at [mem 0x5c3e7000-0x5c3e8bae]
[ 0.005504] ACPI: Reserving SSDT table memory at [mem 0x5c3e5000-0x5c3e661f]
[ 0.005505] ACPI: Reserving SSDT table memory at [mem 0x5c3e3000-0x5c3e4348]
[ 0.005505] ACPI: Reserving SSDT table memory at [mem 0x5c3e2000-0x5c3e2fba]
[ 0.005506] ACPI: Reserving SSDT table memory at [mem 0x5c3de000-0x5c3e1bc7]
[ 0.005506] ACPI: Reserving DTPR table memory at [mem 0x5c3dd000-0x5c3dd087]
[ 0.005506] ACPI: Reserving SSDT table memory at [mem 0x5c3d7000-0x5c3dc359]
[ 0.005507] ACPI: Reserving SSDT table memory at [mem 0x5c3d6000-0x5c3d6e8e]
[ 0.005507] ACPI: Reserving FIDT table memory at [mem 0x5c33b000-0x5c33b09b]
[ 0.005507] ACPI: Reserving SSDT table memory at [mem 0x5c3ee000-0x5c3ee38b]
[ 0.005508] ACPI: Reserving SSDT table memory at [mem 0x5c338000-0x5c33a47d]
[ 0.005508] ACPI: Reserving SSDT table memory at [mem 0x5c32e000-0x5c337c1b]
[ 0.005508] ACPI: Reserving HPET table memory at [mem 0x5c3ed000-0x5c3ed037]
[ 0.005508] ACPI: Reserving APIC table memory at [mem 0x5c32d000-0x5c32d357]
[ 0.005509] ACPI: Reserving MCFG table memory at [mem 0x5c32c000-0x5c32c03b]
[ 0.005509] ACPI: Reserving SSDT table memory at [mem 0x5c32a000-0x5c32b47e]
[ 0.005509] ACPI: Reserving SSDT table memory at [mem 0x5c326000-0x5c32989b]
[ 0.005510] ACPI: Reserving UEFI table memory at [mem 0x5c44f000-0x5c44f047]
[ 0.005510] ACPI: Reserving NHLT table memory at [mem 0x5c325000-0x5c32502c]
[ 0.005510] ACPI: Reserving LPIT table memory at [mem 0x5c324000-0x5c3240cb]
[ 0.005511] ACPI: Reserving SSDT table memory at [mem 0x5c322000-0x5c322ca5]
[ 0.005511] ACPI: Reserving SSDT table memory at [mem 0x5c31c000-0x5c321e41]
[ 0.005511] ACPI: Reserving DBGP table memory at [mem 0x5c31b000-0x5c31b033]
[ 0.005511] ACPI: Reserving DBG2 table memory at [mem 0x5c31a000-0x5c31a053]
[ 0.005512] ACPI: Reserving SSDT table memory at [mem 0x5c318000-0x5c31915b]
[ 0.005512] ACPI: Reserving DMAR table memory at [mem 0x5c317000-0x5c317097]
[ 0.005512] ACPI: Reserving FPDT table memory at [mem 0x5c316000-0x5c316043]
[ 0.005513] ACPI: Reserving SSDT table memory at [mem 0x5c314000-0x5c3156fb]
[ 0.005513] ACPI: Reserving SSDT table memory at [mem 0x5c311000-0x5c313819]
[ 0.005513] ACPI: Reserving SSDT table memory at [mem 0x5c30e000-0x5c3108d2]
[ 0.005514] ACPI: Reserving SSDT table memory at [mem 0x5c30b000-0x5c30ddd5]
[ 0.005514] ACPI: Reserving TPM2 table memory at [mem 0x5c309000-0x5c30904b]
[ 0.005514] ACPI: Reserving PHAT table memory at [mem 0x5c308000-0x5c3089de]
[ 0.005514] ACPI: Reserving WSMT table memory at [mem 0x5c323000-0x5c323027]
[ 0.005515] ACPI: Reserving BGRT table memory at [mem 0x5c30a000-0x5c30a037]
[ 0.005556] APIC: Switched APIC routing to: cluster x2apic
[ 0.005705] No NUMA configuration found
[ 0.005705] Faking a node at [mem 0x0000000000000000-0x000000087fffffff]
[ 0.005710] NODE_DATA(0) allocated [mem 0x87ffd3540-0x87fffdfff]
[ 0.005817] crashkernel reserved: 0x0000000016000000 - 0x0000000036000000 (512 MB)
[ 0.005839] Zone ranges:
[ 0.005839] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.005840] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.005841] Normal [mem 0x0000000100000000-0x000000087fffffff]
[ 0.005842] Device empty
[ 0.005842] Movable zone start for each node
[ 0.005843] Early memory node ranges
[ 0.005844] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.005844] node 0: [mem 0x0000000000100000-0x000000004778cfff]
[ 0.005845] node 0: [mem 0x000000004778e000-0x00000000487dbfff]
[ 0.005845] node 0: [mem 0x00000000487dd000-0x000000005856efff]
[ 0.005845] node 0: [mem 0x0000000063fff000-0x0000000063ffffff]
[ 0.005846] node 0: [mem 0x0000000100000000-0x000000015fffffff]
[ 0.005846] node 0: [mem 0x0000000164000000-0x000000087fffffff]
[ 0.005847] Initmem setup node 0 [mem 0x0000000000001000-0x000000087fffffff]
[ 0.005850] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.005867] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.007007] On node 0, zone DMA32: 1 pages in unavailable ranges
[ 0.007261] On node 0, zone DMA32: 1 pages in unavailable ranges
[ 0.007468] On node 0, zone DMA32: 47760 pages in unavailable ranges
[ 0.009079] On node 0, zone Normal: 16384 pages in unavailable ranges
[ 0.038411] On node 0, zone Normal: 16384 pages in unavailable ranges
[ 0.038859] ACPI: PM-Timer IO Port: 0x1808
[ 0.038865] ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
[ 0.038898] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.038899] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.038901] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.038903] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.038904] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.038910] e820: update [mem 0x50ac3000-0x50b1ffff] usable ==> reserved
[ 0.038918] TSC deadline timer available
[ 0.038920] CPU topo: Max. logical packages: 1
[ 0.038920] CPU topo: Max. logical dies: 1
[ 0.038921] CPU topo: Max. dies per package: 1
[ 0.038922] CPU topo: Max. threads per core: 1
[ 0.038922] CPU topo: Num. cores per package: 10
[ 0.038923] CPU topo: Num. threads per package: 10
[ 0.038923] CPU topo: Allowing 10 present CPUs plus 0 hotplug CPUs
[ 0.038932] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.038933] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.038934] PM: hibernation: Registered nosave memory: [mem 0x4778d000-0x4778dfff]
[ 0.038935] PM: hibernation: Registered nosave memory: [mem 0x487dc000-0x487dcfff]
[ 0.038935] PM: hibernation: Registered nosave memory: [mem 0x50ac3000-0x50b1ffff]
[ 0.038936] PM: hibernation: Registered nosave memory: [mem 0x5171f000-0x5171ffff]
[ 0.038936] PM: hibernation: Registered nosave memory: [mem 0x5856f000-0x63ffefff]
[ 0.038937] PM: hibernation: Registered nosave memory: [mem 0x64000000-0xffffffff]
[ 0.038938] PM: hibernation: Registered nosave memory: [mem 0x160000000-0x163ffffff]
[ 0.038939] [mem 0x78800000-0xfdffffff] available for PCI devices
[ 0.038939] Booting paravirtualized kernel on bare hardware
[ 0.038941] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.038946] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:10 nr_cpu_ids:10 nr_node_ids:1
[ 0.039454] percpu: Embedded 88 pages/cpu s237568 r8192 d114688 u524288
[ 0.039458] pcpu-alloc: s237568 r8192 d114688 u524288 alloc=1*2097152
[ 0.039459] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.039462] pcpu-alloc: [0] 08 09 -- --
[ 0.039471] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.14.0-37-generic root=UUID=9a3f0a2e-5cb7-4ac1-bd41-e4d3cfb66150 ro quiet splash intel_iommu=off memmap=64M$0x160000000 crashkernel=2G-4G:320M,4G-32G:512M,32G-64G:1024M,64G-128G:2048M,128G-:4096M vt.handoff=7
[ 0.039514] DMAR: IOMMU disabled
[ 0.039536] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-6.14.0-37-generic", will be passed to user space.
[ 0.039544] printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes
[ 0.041619] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.042650] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.042725] Fallback order for Node 0: 0
[ 0.042727] Built 1 zonelists, mobility grouping on. Total pages: 8209676
[ 0.042727] Policy zone: Normal
[ 0.042733] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.042743] software IO TLB: area num 16.
[ 0.088598] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=10, Nodes=1
[ 0.088624] ftrace: allocating 60638 entries in 237 pages
[ 0.103473] ftrace: allocated 237 pages with 6 groups
[ 0.104123] Dynamic Preempt: voluntary
[ 0.104174] rcu: Preemptible hierarchical RCU implementation.
[ 0.104175] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=10.
[ 0.104176] Trampoline variant of Tasks RCU enabled.
[ 0.104176] Rude variant of Tasks RCU enabled.
[ 0.104177] Tracing variant of Tasks RCU enabled.
[ 0.104177] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.104178] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=10
[ 0.104185] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=10.
[ 0.104187] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=10.
[ 0.104188] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=10.
[ 0.106571] NR_IRQS: 524544, nr_irqs: 2136, preallocated irqs: 16
[ 0.106858] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.107279] Console: colour dummy device 80x25
[ 0.107281] printk: legacy console [tty0] enabled
[ 0.107310] ACPI: Core revision 20240827
[ 0.107760] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 99544814920 ns
[ 0.107862] APIC: Switch to symmetric I/O mode setup
[ 0.107864] DMAR: Host address width 42
[ 0.107864] DMAR: DRHD base: 0x000000fc800000 flags: 0x0
[ 0.107875] DMAR: dmar0: reg_base_addr fc800000 ver 7:0 cap e9de008cee690462 ecap 1aca9a00f0ef5e
[ 0.107896] DMAR: DRHD base: 0x000000fc810000 flags: 0x1
[ 0.107904] DMAR: dmar1: reg_base_addr fc810000 ver 7:0 cap e9de008cee690462 ecap 1aca9a00f0efde
[ 0.107921] DMAR: SATC flags: 0x1
[ 0.107924] DMAR-IR: IOAPIC id 2 under DRHD base 0xfc810000 IOMMU 1
[ 0.107925] DMAR-IR: HPET id 0 under DRHD base 0xfc810000
[ 0.107925] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.109496] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.113668] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.117826] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2f0c74cf5f8, max_idle_ns: 440795302822 ns
[ 0.117831] Calibrating delay loop (skipped), value calculated using timer frequency.. 6528.00 BogoMIPS (lpj=3264000)
[ 0.117879] CPU0: Thermal monitoring enabled (TM1)
[ 0.117881] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.118067] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.118068] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.118070] process: using mwait in idle threads
[ 0.118072] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.118074] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.118076] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.118077] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.118078] VMSCAPE: Mitigation: IBPB before exit to userspace
[ 0.118085] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.118085] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.118086] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.118086] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.118087] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.118088] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.118089] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.118089] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.118090] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[ 0.131840] Freeing SMP alternatives memory: 48K
[ 0.131842] pid_max: default: 32768 minimum: 301
[ 0.134868] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
[ 0.134878] landlock: Up and running.
[ 0.134879] Yama: becoming mindful.
[ 0.134905] AppArmor: AppArmor initialized
[ 0.134976] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.135025] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.135245] smpboot: CPU0: Intel(R) Core(TM) Ultra 5 225 (family: 0x6, model: 0xc6, stepping: 0x2)
[ 0.135385] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Lunarlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.135550] core: cpu_core PMU driver:
[ 0.135551] ... version: 6
[ 0.135551] ... bit width: 48
[ 0.135552] ... generic registers: 10
[ 0.135552] ... value mask: 0000ffffffffffff
[ 0.135553] ... max period: 00007fffffffffff
[ 0.135553] ... fixed-purpose events: 4
[ 0.135553] ... event mask: 0001000f000003ff
[ 0.135571] signal: max sigframe size: 3632
[ 0.135580] Estimated ratio of average max frequency by base frequency (times 1024): 1458
[ 0.135593] rcu: Hierarchical SRCU implementation.
[ 0.135594] rcu: Max phase no-delay instances is 400.
[ 0.135618] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[ 0.135829] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.135829] smp: Bringing up secondary CPUs ...
[ 0.135829] smpboot: x86: Booting SMP configuration:
[ 0.135829] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9
[ 0.004590] core: cpu_atom PMU driver:
[ 0.004590] ... version: 6
[ 0.004590] ... bit width: 48
[ 0.004590] ... generic registers: 8
[ 0.004590] ... value mask: 0000ffffffffffff
[ 0.004590] ... max period: 00007fffffffffff
[ 0.004590] ... fixed-purpose events: 6
[ 0.004590] ... event mask: 00000077000000ff
[ 0.139880] smp: Brought up 1 node, 10 CPUs
[ 0.139880] smpboot: Total of 10 processors activated (65280.00 BogoMIPS)
[ 0.140907] Memory: 31520024K/32838704K available (21796K kernel code, 4575K rwdata, 15828K rodata, 5012K init, 4552K bss, 1296040K reserved, 0K cma-reserved)
[ 0.141035] devtmpfs: initialized
[ 0.141035] x86/mm: Memory block size: 128MB
[ 0.142369] ACPI: PM: Registering ACPI NVS region [mem 0x5c3ef000-0x5c4eefff] (1048576 bytes)
[ 0.142369] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.142369] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.142369] pinctrl core: initialized pinctrl subsystem
[ 0.142830] PM: RTC time: 01:11:32, date: 2026-08-27
[ 0.143173] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.143514] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.143790] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.144062] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.144067] audit: initializing netlink subsys (disabled)
[ 0.144082] audit: type=2000 audit(1787793092.033:1): state=initialized audit_enabled=0 res=1
[ 0.144082] thermal_sys: Registered thermal governor 'fair_share'
[ 0.144082] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.144082] thermal_sys: Registered thermal governor 'step_wise'
[ 0.144082] thermal_sys: Registered thermal governor 'user_space'
[ 0.144082] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.144082] cpuidle: using governor ladder
[ 0.144082] cpuidle: using governor menu
[ 0.144082] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.144082] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.144082] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
[ 0.144082] PCI: Using configuration type 1 for base access
[ 0.144082] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.151856] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.151856] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.151856] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.151856] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.151919] ACPI: Added _OSI(Module Device)
[ 0.151921] ACPI: Added _OSI(Processor Device)
[ 0.151921] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.192312] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.I2C0], AE_NOT_FOUND (20240827/dswload2-162)
[ 0.192319] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20240827/psobject-220)
[ 0.192321] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[ 0.192322] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.I2C1], AE_NOT_FOUND (20240827/dswload2-162)
[ 0.192324] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20240827/psobject-220)
[ 0.192325] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[ 0.217277] ACPI: 24 ACPI AML tables successfully acquired and loaded
[ 0.225008] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.225010] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.227185] ACPI: Interpreter enabled
[ 0.227225] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.227226] ACPI: Using IOAPIC for interrupt routing
[ 0.228410] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.228411] PCI: Ignoring E820 reservations for host bridge windows
[ 0.229021] ACPI: Enabled 10 GPEs in block 00 to 7F
[ 0.229037] ACPI: Enabled 8 GPEs in block 80 to DF
[ 0.233499] ACPI: \_SB_.PC00.TBT0: New power resource
[ 0.233537] ACPI: \_SB_.PC00.TBT1: New power resource
[ 0.233571] ACPI: \_SB_.PC00.D3C_: New power resource
[ 0.245912] ACPI: \_SB_.PC02.RP16.PXSX.WRST: New power resource
[ 0.254314] ACPI: \_SB_.PC02.XHCI.RHUB.HS14.BTRT: New power resource
[ 0.254347] ACPI: \_SB_.PC02.XHCI.RHUB.HS14.DBTR: New power resource
[ 0.264700] ACPI: \_TZ_.FN00: New power resource
[ 0.264741] ACPI: \_TZ_.FN01: New power resource
[ 0.264777] ACPI: \_TZ_.FN02: New power resource
[ 0.264812] ACPI: \_TZ_.FN03: New power resource
[ 0.264847] ACPI: \_TZ_.FN04: New power resource
[ 0.265274] ACPI: \PIN_: New power resource
[ 0.265285] ACPI: \PPIN: New power resource
[ 0.265679] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-7f])
[ 0.265685] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.266288] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.266289] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.267188] PCI host bridge to bus 0000:00
[ 0.267190] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.267191] pci_bus 0000:00: root bus resource [io 0x9000-0xffff window]
[ 0.267192] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.267193] pci_bus 0000:00: root bus resource [mem 0x80000000-0xb7ffffff window]
[ 0.267194] pci_bus 0000:00: root bus resource [mem 0xa000000000-0x3ffbfffffff window]
[ 0.267195] pci_bus 0000:00: root bus resource [bus 00-7f]
[ 0.267215] pci 0000:00:00.0: [8086:7d35] type 00 class 0x060000 conventional PCI endpoint
[ 0.267358] pci 0000:00:01.0: [8086:7ecc] type 01 class 0x060400 PCIe Root Port
[ 0.267373] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.267377] pci 0000:00:01.0: bridge window [mem 0x8c200000-0x8c2fffff]
[ 0.267431] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.267457] pci 0000:00:01.0: PTM enabled (root), 4ns granularity
[ 0.268000] pci 0000:00:02.0: [8086:7d67] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[ 0.268020] pci 0000:00:02.0: BAR 0 [mem 0xb010000000-0xb010ffffff 64bit pref]
[ 0.268022] pci 0000:00:02.0: BAR 2 [mem 0xa000000000-0xa00fffffff 64bit pref]
[ 0.268035] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[ 0.268038] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.268063] pci 0000:00:02.0: PME# supported from D0 D3hot
[ 0.268083] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit pref]
[ 0.268084] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit pref]: contains BAR 0 for 7 VFs
[ 0.268226] pci 0000:00:04.0: [8086:ad03] type 00 class 0x118000 conventional PCI endpoint
[ 0.268265] pci 0000:00:04.0: BAR 0 [mem 0xb020080000-0xb02009ffff 64bit]
[ 0.268471] pci 0000:00:06.0: [8086:ae4d] type 01 class 0x060400 PCIe Root Port
[ 0.268483] pci 0000:00:06.0: PCI bridge to [bus 02-05]
[ 0.268486] pci 0000:00:06.0: bridge window [mem 0x8c000000-0x8c1fffff]
[ 0.268526] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[ 0.268546] pci 0000:00:06.0: PTM enabled (root), 4ns granularity
[ 0.269083] pci 0000:00:07.0: [8086:7ec4] type 01 class 0x060400 PCIe Root Port
[ 0.269101] pci 0000:00:07.0: PCI bridge to [bus 06-2f]
[ 0.269105] pci 0000:00:07.0: bridge window [mem 0x86000000-0x8bffffff]
[ 0.269112] pci 0000:00:07.0: bridge window [mem 0xa810000000-0xb00fffffff 64bit pref]
[ 0.269190] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[ 0.269217] pci 0000:00:07.0: PTM enabled (root), 4ns granularity
[ 0.269810] pci 0000:00:07.1: [8086:7ec5] type 01 class 0x060400 PCIe Root Port
[ 0.269828] pci 0000:00:07.1: PCI bridge to [bus 30-59]
[ 0.269833] pci 0000:00:07.1: bridge window [mem 0x80000000-0x85ffffff]
[ 0.269840] pci 0000:00:07.1: bridge window [mem 0xa010000000-0xa80fffffff 64bit pref]
[ 0.269917] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[ 0.269948] pci 0000:00:07.1: PTM enabled (root), 4ns granularity
[ 0.270532] pci 0000:00:08.0: [8086:ae4c] type 00 class 0x088000 conventional PCI endpoint
[ 0.270558] pci 0000:00:08.0: BAR 0 [mem 0xb0200b7000-0xb0200b7fff 64bit]
[ 0.270632] pci 0000:00:0a.0: [8086:ad0d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[ 0.270647] pci 0000:00:0a.0: BAR 0 [mem 0xb020040000-0xb02007ffff 64bit]
[ 0.270652] pci 0000:00:0a.0: enabling Extended Tags
[ 0.270704] pci 0000:00:0b.0: [8086:ad1d] type 00 class 0x120000 PCIe Root Complex Integrated Endpoint
[ 0.270720] pci 0000:00:0b.0: BAR 0 [mem 0xb018000000-0xb01fffffff 64bit]
[ 0.270722] pci 0000:00:0b.0: BAR 4 [mem 0xb0200b6000-0xb0200b6fff 64bit]
[ 0.270810] pci 0000:00:0d.0: [8086:7ec0] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.270836] pci 0000:00:0d.0: BAR 0 [mem 0xb0200a0000-0xb0200affff 64bit]
[ 0.270864] pci 0000:00:0d.0: PME# supported from D3hot D3cold
[ 0.271186] pci 0000:00:0d.2: [8086:7ec2] type 00 class 0x0c0340 conventional PCI endpoint
[ 0.271211] pci 0000:00:0d.2: BAR 0 [mem 0xb020000000-0xb02003ffff 64bit]
[ 0.271213] pci 0000:00:0d.2: BAR 2 [mem 0xb0200b5000-0xb0200b5fff 64bit]
[ 0.271236] pci 0000:00:0d.2: supports D1 D2
[ 0.271236] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.271374] pci 0000:00:14.0: [8086:ae7f] type 00 class 0x050000 conventional PCI endpoint
[ 0.271407] pci 0000:00:14.0: BAR 0 [mem 0xb0200b0000-0xb0200b3fff 64bit]
[ 0.271409] pci 0000:00:14.0: BAR 2 [mem 0xb0200b4000-0xb0200b4fff 64bit]
[ 0.271491] pci 0000:00:1f.0: [8086:ae0d] type 00 class 0x060100 conventional PCI endpoint
[ 0.271803] pci 0000:00:1f.5: [8086:ae23] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.271906] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.272042] pci 0000:01:00.0: [2646:5025] type 00 class 0x010802 PCIe Endpoint
[ 0.272071] pci 0000:01:00.0: BAR 0 [mem 0x8c200000-0x8c203fff 64bit]
[ 0.272132] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.272908] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.272949] pci 0000:02:00.0: [12d8:c008] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.272965] pci 0000:02:00.0: BAR 0 [mem 0x8c100000-0x8c17ffff]
[ 0.272968] pci 0000:02:00.0: PCI bridge to [bus 03-05]
[ 0.272974] pci 0000:02:00.0: bridge window [mem 0x8c000000-0x8c0fffff]
[ 0.273047] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.273113] pci 0000:02:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0000:00:06.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[ 0.273616] pci 0000:00:06.0: PCI bridge to [bus 02-05]
[ 0.273659] pci 0000:03:04.0: [12d8:c008] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.273678] pci 0000:03:04.0: PCI bridge to [bus 04]
[ 0.273759] pci 0000:03:04.0: PME# supported from D0 D3hot D3cold
[ 0.273894] pci 0000:03:05.0: [12d8:c008] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.273913] pci 0000:03:05.0: PCI bridge to [bus 05]
[ 0.273919] pci 0000:03:05.0: bridge window [mem 0x8c000000-0x8c0fffff]
[ 0.273994] pci 0000:03:05.0: PME# supported from D0 D3hot D3cold
[ 0.274135] pci 0000:02:00.0: PCI bridge to [bus 03-05]
[ 0.274165] pci 0000:03:04.0: PCI bridge to [bus 04]
[ 0.274281] pci 0000:05:00.0: [1cc1:622a] type 00 class 0x010802 PCIe Endpoint
[ 0.274325] pci 0000:05:00.0: BAR 0 [mem 0x8c000000-0x8c003fff 64bit]
[ 0.274508] pci 0000:05:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0000:00:06.0 (capable of 63.012 Gb/s with 16.0 GT/s PCIe x4 link)
[ 0.276883] pci 0000:03:05.0: PCI bridge to [bus 05]
[ 0.276965] pci 0000:00:07.0: PCI bridge to [bus 06-2f]
[ 0.276997] pci 0000:00:07.1: PCI bridge to [bus 30-59]
[ 0.277754] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-df])
[ 0.277757] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.277957] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.277958] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.278660] PCI host bridge to bus 0000:80
[ 0.278662] pci_bus 0000:80: root bus resource [io 0x2000-0x8bff window]
[ 0.278663] pci_bus 0000:80: root bus resource [mem 0xb8000000-0xbdffffff window]
[ 0.278664] pci_bus 0000:80: root bus resource [mem 0x8000000000-0x9fdfffffff window]
[ 0.278664] pci_bus 0000:80: root bus resource [bus 80-df]
[ 0.278763] pci 0000:80:14.0: [8086:7f6e] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.278804] pci 0000:80:14.0: BAR 0 [mem 0x8000200000-0x800020ffff 64bit]
[ 0.278847] pci 0000:80:14.0: PME# supported from D3hot D3cold
[ 0.279258] pci 0000:80:14.5: [8086:7f2f] type 00 class 0x000000 PCIe Root Complex Integrated Endpoint
[ 0.279627] pci 0000:80:15.0: [8086:7f4c] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.279706] pci 0000:80:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.290078] pci 0000:80:16.0: [8086:7f68] type 00 class 0x078000 conventional PCI endpoint
[ 0.290131] pci 0000:80:16.0: BAR 0 [mem 0x8000215000-0x8000215fff 64bit]
[ 0.290182] pci 0000:80:16.0: PME# supported from D3hot
[ 0.290674] pci 0000:80:17.0: [8086:7f62] type 00 class 0x010601 conventional PCI endpoint
[ 0.290713] pci 0000:80:17.0: BAR 0 [mem 0xb8200000-0xb8201fff]
[ 0.290715] pci 0000:80:17.0: BAR 1 [mem 0xb8204000-0xb82040ff]
[ 0.290717] pci 0000:80:17.0: BAR 2 [io 0x4050-0x4057]
[ 0.290718] pci 0000:80:17.0: BAR 3 [io 0x4040-0x4043]
[ 0.290720] pci 0000:80:17.0: BAR 4 [io 0x4020-0x403f]
[ 0.290722] pci 0000:80:17.0: BAR 5 [mem 0xb8203000-0xb82037ff]
[ 0.290756] pci 0000:80:17.0: PME# supported from D3hot
[ 0.291017] pci 0000:80:1d.0: [8086:7f36] type 01 class 0x060400 PCIe Root Port
[ 0.291041] pci 0000:80:1d.0: PCI bridge to [bus 81]
[ 0.291045] pci 0000:80:1d.0: bridge window [io 0x3000-0x3fff]
[ 0.291047] pci 0000:80:1d.0: bridge window [mem 0xb8100000-0xb81fffff]
[ 0.291137] pci 0000:80:1d.0: PME# supported from D0 D3hot D3cold
[ 0.291180] pci 0000:80:1d.0: PTM enabled (root), 4ns granularity
[ 0.291767] pci 0000:80:1d.7: [8086:7f37] type 01 class 0x060400 PCIe Root Port
[ 0.291791] pci 0000:80:1d.7: PCI bridge to [bus 82]
[ 0.291797] pci 0000:80:1d.7: bridge window [mem 0xb8000000-0xb80fffff]
[ 0.291886] pci 0000:80:1d.7: PME# supported from D0 D3hot D3cold
[ 0.291929] pci 0000:80:1d.7: PTM enabled (root), 4ns granularity
[ 0.292480] pci 0000:80:1f.0: [8086:7f06] type 00 class 0x060100 conventional PCI endpoint
[ 0.292611] pci 0000:80:1f.3: [8086:7f50] type 00 class 0x040300 conventional PCI endpoint
[ 0.292674] pci 0000:80:1f.3: BAR 0 [mem 0x8000210000-0x8000213fff 64bit]
[ 0.292683] pci 0000:80:1f.3: BAR 4 [mem 0x8000000000-0x80001fffff 64bit]
[ 0.292759] pci 0000:80:1f.3: PME# supported from D3hot D3cold
[ 0.292830] pci 0000:80:1f.4: [8086:7f23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.292881] pci 0000:80:1f.4: BAR 0 [mem 0x8000214000-0x80002140ff 64bit]
[ 0.292888] pci 0000:80:1f.4: BAR 4 [io 0x4000-0x401f]
[ 0.293072] pci 0000:80:1f.5: [8086:7f24] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.293125] pci 0000:80:1f.5: BAR 0 [mem 0xb8202000-0xb8202fff]
[ 0.293230] pci 0000:81:00.0: [10ec:5000] type 00 class 0x020000 PCIe Endpoint
[ 0.293290] pci 0000:81:00.0: BAR 0 [io 0x3000-0x30ff]
[ 0.293296] pci 0000:81:00.0: BAR 2 [mem 0xb8100000-0xb810ffff 64bit]
[ 0.293300] pci 0000:81:00.0: BAR 4 [mem 0xb8110000-0xb8113fff 64bit]
[ 0.293437] pci 0000:81:00.0: supports D1 D2
[ 0.293437] pci 0000:81:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.293735] pci 0000:80:1d.0: PCI bridge to [bus 81]
[ 0.293844] pci 0000:82:00.0: [8086:272b] type 00 class 0x028000 PCIe Endpoint
[ 0.293985] pci 0000:82:00.0: BAR 0 [mem 0xb8000000-0xb8003fff 64bit]
[ 0.294113] pci 0000:82:00.0: PME# supported from D0 D3hot D3cold
[ 0.295430] pci 0000:80:1d.7: PCI bridge to [bus 82]
[ 0.296063] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.296142] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.296219] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.296296] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.296373] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.296449] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.296525] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.296602] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.297847] iommu: Default domain type: Translated
[ 0.297847] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.297937] SCSI subsystem initialized
[ 0.297940] libata version 3.00 loaded.
[ 0.297940] ACPI: bus type USB registered
[ 0.297940] usbcore: registered new interface driver usbfs
[ 0.297940] usbcore: registered new interface driver hub
[ 0.297940] usbcore: registered new device driver usb
[ 0.297940] pps_core: LinuxPPS API ver. 1 registered
[ 0.297940] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[ 0.297940] PTP clock support registered
[ 0.297940] EDAC MC: Ver: 3.0.0
[ 0.298859] efivars: Registered efivars operations
[ 0.299023] NetLabel: Initializing
[ 0.299024] NetLabel: domain hash size = 128
[ 0.299025] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.299041] NetLabel: unlabeled traffic allowed by default
[ 0.299049] mctp: management component transport protocol core
[ 0.299049] NET: Registered PF_MCTP protocol family
[ 0.299049] PCI: Using ACPI for IRQ routing
[ 0.311803] PCI: pci_cache_line_size set to 64 bytes
[ 0.311875] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[ 0.312000] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.312001] e820: reserve RAM buffer [mem 0x4778d000-0x47ffffff]
[ 0.312002] e820: reserve RAM buffer [mem 0x487dc000-0x4bffffff]
[ 0.312003] e820: reserve RAM buffer [mem 0x50ac3000-0x53ffffff]
[ 0.312003] e820: reserve RAM buffer [mem 0x5171f000-0x53ffffff]
[ 0.312004] e820: reserve RAM buffer [mem 0x5856f000-0x5bffffff]
[ 0.312022] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.312022] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.312022] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.312022] vgaarb: loaded
[ 0.312022] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.312022] hpet0: 8 comparators, 64-bit 19.200000 MHz counter
[ 0.313854] clocksource: Switched to clocksource tsc-early
[ 0.314174] VFS: Disk quotas dquot_6.6.0
[ 0.314180] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.314249] AppArmor: AppArmor Filesystem Enabled
[ 0.314269] pnp: PnP ACPI init
[ 0.314419] system 00:00: [io 0x0a20-0x0a2f] has been reserved
[ 0.314526] system 00:01: [io 0x0680-0x069f] has been reserved
[ 0.314527] system 00:01: [io 0x164e-0x164f] has been reserved
[ 0.314662] pnp 00:02: disabling [mem 0x00000000-0x00000fff] because it overlaps 0000:00:02.0 BAR 7 [mem 0x00000000-0x06ffffff 64bit pref]
[ 0.314664] pnp 00:02: disabling [mem 0x00000000-0x00000fff] because it overlaps 0000:00:02.0 BAR 7 [mem 0x00000000-0x06ffffff 64bit pref]
[ 0.314678] system 00:02: [mem 0xfedc0000-0xfedc7fff] has been reserved
[ 0.314679] system 00:02: [mem 0xc0000000-0xcfffffff] has been reserved
[ 0.314680] system 00:02: [mem 0xfed20000-0xfed7ffff] could not be reserved
[ 0.314681] system 00:02: [mem 0xfc800000-0xfc81ffff] could not be reserved
[ 0.314682] system 00:02: [mem 0xfed45000-0xfed8ffff] could not be reserved
[ 0.314683] system 00:02: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.315690] system 00:03: [io 0x2000-0x20fe] has been reserved
[ 0.315788] system 00:04: [io 0x1854-0x1857] has been reserved
[ 0.316037] system 00:05: [io 0x8c00-0x8cfe] has been reserved
[ 0.316058] pnp: PnP ACPI: found 6 devices
[ 0.321173] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.321207] NET: Registered PF_INET protocol family
[ 0.321405] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.330741] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 0.330761] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.330862] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.331101] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.331165] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.331283] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 0.331385] UDP hash table entries: 16384 (order: 8, 1048576 bytes, linear)
[ 0.331496] UDP-Lite hash table entries: 16384 (order: 8, 1048576 bytes, linear)
[ 0.331557] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.331562] NET: Registered PF_XDP protocol family
[ 0.331568] pci_bus 0000:00: max bus depth: 3 pci_try_num: 4
[ 0.331579] pci 0000:00:02.0: VF BAR 0 [mem 0xb011000000-0xb017ffffff 64bit pref]: assigned
[ 0.331583] pci 0000:00:07.0: bridge window [io 0x9000-0x9fff]: assigned
[ 0.331584] pci 0000:00:07.1: bridge window [io 0xa000-0xafff]: assigned
[ 0.331585] pci 0000:00:1f.5: BAR 0 [mem 0x8c300000-0x8c300fff]: assigned
[ 0.331606] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.331609] pci 0000:00:01.0: bridge window [mem 0x8c200000-0x8c2fffff]
[ 0.331614] pci 0000:03:04.0: PCI bridge to [bus 04]
[ 0.331622] pci 0000:03:05.0: PCI bridge to [bus 05]
[ 0.331625] pci 0000:03:05.0: bridge window [mem 0x8c000000-0x8c0fffff]
[ 0.331630] pci 0000:02:00.0: PCI bridge to [bus 03-05]
[ 0.331633] pci 0000:02:00.0: bridge window [mem 0x8c000000-0x8c0fffff]
[ 0.331639] pci 0000:00:06.0: PCI bridge to [bus 02-05]
[ 0.331641] pci 0000:00:06.0: bridge window [mem 0x8c000000-0x8c1fffff]
[ 0.331644] pci 0000:00:07.0: PCI bridge to [bus 06-2f]
[ 0.331656] pci 0000:00:07.0: bridge window [io 0x9000-0x9fff]
[ 0.331659] pci 0000:00:07.0: bridge window [mem 0x86000000-0x8bffffff]
[ 0.331661] pci 0000:00:07.0: bridge window [mem 0xa810000000-0xb00fffffff 64bit pref]
[ 0.331665] pci 0000:00:07.1: PCI bridge to [bus 30-59]
[ 0.331666] pci 0000:00:07.1: bridge window [io 0xa000-0xafff]
[ 0.331669] pci 0000:00:07.1: bridge window [mem 0x80000000-0x85ffffff]
[ 0.331671] pci 0000:00:07.1: bridge window [mem 0xa010000000-0xa80fffffff 64bit pref]
[ 0.331675] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.331676] pci_bus 0000:00: resource 5 [io 0x9000-0xffff window]
[ 0.331677] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.331678] pci_bus 0000:00: resource 7 [mem 0x80000000-0xb7ffffff window]
[ 0.331678] pci_bus 0000:00: resource 8 [mem 0xa000000000-0x3ffbfffffff window]
[ 0.331679] pci_bus 0000:01: resource 1 [mem 0x8c200000-0x8c2fffff]
[ 0.331680] pci_bus 0000:02: resource 1 [mem 0x8c000000-0x8c1fffff]
[ 0.331681] pci_bus 0000:03: resource 1 [mem 0x8c000000-0x8c0fffff]
[ 0.331682] pci_bus 0000:05: resource 1 [mem 0x8c000000-0x8c0fffff]
[ 0.331682] pci_bus 0000:06: resource 0 [io 0x9000-0x9fff]
[ 0.331683] pci_bus 0000:06: resource 1 [mem 0x86000000-0x8bffffff]
[ 0.331684] pci_bus 0000:06: resource 2 [mem 0xa810000000-0xb00fffffff 64bit pref]
[ 0.331685] pci_bus 0000:30: resource 0 [io 0xa000-0xafff]
[ 0.331685] pci_bus 0000:30: resource 1 [mem 0x80000000-0x85ffffff]
[ 0.331686] pci_bus 0000:30: resource 2 [mem 0xa010000000-0xa80fffffff 64bit pref]
[ 0.331754] pci 0000:80:15.0: BAR 0 [mem 0x8000216000-0x8000216fff 64bit]: assigned
[ 0.331769] pci 0000:80:1d.0: PCI bridge to [bus 81]
[ 0.331771] pci 0000:80:1d.0: bridge window [io 0x3000-0x3fff]
[ 0.331775] pci 0000:80:1d.0: bridge window [mem 0xb8100000-0xb81fffff]
[ 0.331781] pci 0000:80:1d.7: PCI bridge to [bus 82]
[ 0.331785] pci 0000:80:1d.7: bridge window [mem 0xb8000000-0xb80fffff]
[ 0.331792] pci_bus 0000:80: resource 4 [io 0x2000-0x8bff window]
[ 0.331792] pci_bus 0000:80: resource 5 [mem 0xb8000000-0xbdffffff window]
[ 0.331793] pci_bus 0000:80: resource 6 [mem 0x8000000000-0x9fdfffffff window]
[ 0.331794] pci_bus 0000:81: resource 0 [io 0x3000-0x3fff]
[ 0.331795] pci_bus 0000:81: resource 1 [mem 0xb8100000-0xb81fffff]
[ 0.331795] pci_bus 0000:82: resource 1 [mem 0xb8000000-0xb80fffff]
[ 0.332213] PCI: CLS 64 bytes, default 64
[ 0.332247] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.332248] software IO TLB: mapped [mem 0x000000003f78c000-0x000000004378c000] (64MB)
[ 0.332266] Trying to unpack rootfs image as initramfs...
[ 0.332625] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2f0c74cf5f8, max_idle_ns: 440795302822 ns
[ 0.332643] clocksource: Switched to clocksource tsc
[ 0.332663] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.344628] Initialise system trusted keyrings
[ 0.344637] Key type blacklist registered
[ 0.344675] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[ 0.344681] zbud: loaded
[ 0.344811] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.344858] fuse: init (API version 7.42)
[ 0.344945] integrity: Platform Keyring initialized
[ 0.344948] integrity: Machine keyring initialized
[ 0.349871] Key type asymmetric registered
[ 0.349872] Asymmetric key parser 'x509' registered
[ 0.349887] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.349910] io scheduler mq-deadline registered
[ 0.350091] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.350296] pcieport 0000:00:01.0: PME: Signaling with IRQ 120
[ 0.350427] pcieport 0000:00:06.0: PME: Signaling with IRQ 121
[ 0.350556] pcieport 0000:00:07.0: PME: Signaling with IRQ 122
[ 0.350600] pcieport 0000:00:07.0: AER: enabled with IRQ 122
[ 0.350612] pcieport 0000:00:07.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.350795] pcieport 0000:00:07.1: PME: Signaling with IRQ 123
[ 0.350822] pcieport 0000:00:07.1: AER: enabled with IRQ 123
[ 0.350831] pcieport 0000:00:07.1: pciehp: Slot #7 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.351511] pcieport 0000:80:1d.0: PME: Signaling with IRQ 126
[ 0.351683] pcieport 0000:80:1d.7: PME: Signaling with IRQ 127
[ 0.351779] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.351979] Monitor-Mwait will be used to enter C-1 state
[ 0.351985] Monitor-Mwait will be used to enter C-2 state
[ 0.351988] Monitor-Mwait will be used to enter C-3 state
[ 0.353046] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 0.353062] ACPI: button: Sleep Button [SLPB]
[ 0.353076] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.353085] ACPI: button: Power Button [PWRB]
[ 0.353099] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.353148] ACPI: button: Power Button [PWRF]
[ 0.357560] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.357562] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.357675] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.380888] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.382085] Linux agpgart interface v0.103
[ 0.389134] loop: module loaded
[ 0.389560] ACPI: bus type drm_connector registered
[ 0.390259] tun: Universal TUN/TAP device driver, 1.6
[ 0.390278] PPP generic driver version 2.4.2
[ 0.390371] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[ 0.390376] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
[ 0.391460] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 0.391663] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[ 0.391665] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
[ 0.391669] xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 0.391699] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
[ 0.391701] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.391702] usb usb1: Product: xHCI Host Controller
[ 0.391702] usb usb1: Manufacturer: Linux 6.14.0-37-generic xhci-hcd
[ 0.391703] usb usb1: SerialNumber: 0000:00:0d.0
[ 0.391757] hub 1-0:1.0: USB hub found
[ 0.391765] hub 1-0:1.0: 1 port detected
[ 0.391931] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14
[ 0.391933] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.391934] usb usb2: Product: xHCI Host Controller
[ 0.391934] usb usb2: Manufacturer: Linux 6.14.0-37-generic xhci-hcd
[ 0.391935] usb usb2: SerialNumber: 0000:00:0d.0
[ 0.391969] hub 2-0:1.0: USB hub found
[ 0.391975] hub 2-0:1.0: 2 ports detected
[ 0.392979] xhci_hcd 0000:80:14.0: xHCI Host Controller
[ 0.392981] xhci_hcd 0000:80:14.0: new USB bus registered, assigned bus number 3
[ 0.394088] xhci_hcd 0000:80:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 0.394355] xhci_hcd 0000:80:14.0: xHCI Host Controller
[ 0.394357] xhci_hcd 0000:80:14.0: new USB bus registered, assigned bus number 4
[ 0.394358] xhci_hcd 0000:80:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 0.394375] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
[ 0.394376] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.394377] usb usb3: Product: xHCI Host Controller
[ 0.394378] usb usb3: Manufacturer: Linux 6.14.0-37-generic xhci-hcd
[ 0.394378] usb usb3: SerialNumber: 0000:80:14.0
[ 0.394506] hub 3-0:1.0: USB hub found
[ 0.394528] hub 3-0:1.0: 14 ports detected
[ 0.396156] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14
[ 0.396157] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.396158] usb usb4: Product: xHCI Host Controller
[ 0.396159] usb usb4: Manufacturer: Linux 6.14.0-37-generic xhci-hcd
[ 0.396159] usb usb4: SerialNumber: 0000:80:14.0
[ 0.396256] hub 4-0:1.0: USB hub found
[ 0.396276] hub 4-0:1.0: 10 ports detected
[ 0.397460] i8042: PNP: No PS/2 controller found.
[ 0.397543] mousedev: PS/2 mouse device common for all mice
[ 0.397599] rtc_cmos rtc_cmos: RTC can wake from S4
[ 0.399428] rtc_cmos rtc_cmos: registered as rtc0
[ 0.399800] rtc_cmos rtc_cmos: setting system clock to 2026-08-27T01:11:32 UTC (1787793092)
[ 0.399823] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[ 0.399827] i2c_dev: i2c /dev entries driver
[ 0.408525] Freeing initrd memory: 80016K
[ 0.409271] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.409283] device-mapper: uevent: version 1.0.3
[ 0.409307] device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@xxxxxxxxxxxxxxx
[ 0.409312] intel_pstate: Intel P-state driver initializing
[ 0.411700] Hybrid CPU capacity scaling enabled
[ 0.411777] intel_pstate: HWP enabled
[ 0.411902] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[ 0.411904] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.413188] fbcon: Deferring console take-over
[ 0.413189] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.413254] drop_monitor: Initializing network drop monitor service
[ 0.413317] NET: Registered PF_INET6 protocol family
[ 0.416929] Segment Routing with IPv6
[ 0.416934] In-situ OAM (IOAM) with IPv6
[ 0.416944] NET: Registered PF_PACKET protocol family
[ 0.416970] Key type dns_resolver registered
[ 0.417883] microcode: Current revision: 0x0000011b
[ 0.418051] IPI shorthand broadcast: enabled
[ 0.418779] sched_clock: Marking stable (415000517, 3590775)->(423564557, -4973265)
[ 0.419053] registered taskstats version 1
[ 0.419443] Loading compiled-in X.509 certificates
[ 0.419701] Loaded X.509 cert 'Build time autogenerated kernel key: d58642ef3ae3c493f5a8caf7c25937203c757ff9'
[ 0.419920] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing 2025 Kmod: d541cef61dc7e793b7eb7e899970a2eef0b5dc8c'
[ 0.420143] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 0.420364] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 0.420365] blacklist: Loading compiled-in revocation X.509 certificates
[ 0.420373] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 0.420379] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[ 0.420384] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[ 0.420390] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[ 0.420396] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[ 0.420401] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[ 0.420407] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[ 0.420412] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[ 0.421980] Demotion targets for Node 0: null
[ 0.422039] Key type .fscrypt registered
[ 0.422040] Key type fscrypt-provisioning registered
[ 0.422065] Key type trusted registered
[ 0.428688] Key type encrypted registered
[ 0.428703] AppArmor: AppArmor sha256 policy hashing enabled
[ 0.429075] integrity: Loading X.509 certificate: UEFI:db
[ 0.429092] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.429093] integrity: Loading X.509 certificate: UEFI:db
[ 0.429104] integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
[ 0.429104] integrity: Loading X.509 certificate: UEFI:db
[ 0.429113] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[ 0.429113] integrity: Loading X.509 certificate: UEFI:db
[ 0.429120] integrity: Loaded X.509 cert 'Microsoft Option ROM UEFI CA 2023: 514fbf937fa46fb57bf07af8bed84b3b864b1711'
[ 0.429121] integrity: Loading X.509 certificate: UEFI:db
[ 0.429128] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.429128] integrity: Loading X.509 certificate: UEFI:db
[ 0.429133] integrity: Loaded X.509 cert 'MSI SHIP DB: ebc30d5be5f35f8041c1c2d9e613eee2'
[ 0.429793] Loading compiled-in module X.509 certificates
[ 0.430008] Loaded X.509 cert 'Build time autogenerated kernel key: d58642ef3ae3c493f5a8caf7c25937203c757ff9'
[ 0.430009] ima: Allocated hash algorithm: sha256
[ 0.446155] ima: No architecture policies found
[ 0.446166] evm: Initialising EVM extended attributes:
[ 0.446166] evm: security.selinux
[ 0.446167] evm: security.SMACK64
[ 0.446167] evm: security.SMACK64EXEC
[ 0.446168] evm: security.SMACK64TRANSMUTE
[ 0.446168] evm: security.SMACK64MMAP
[ 0.446168] evm: security.apparmor
[ 0.446169] evm: security.ima
[ 0.446169] evm: security.capability
[ 0.446169] evm: HMAC attrs: 0x1
[ 0.446383] PM: Magic number: 6:760:155
[ 0.446445] acpi device:22: hash matches
[ 0.447275] RAS: Correctable Errors collector initialized.
[ 0.449400] clk: Disabling unused clocks
[ 0.449402] PM: genpd: Disabling unused power domains
[ 0.454401] Freeing unused decrypted memory: 2028K
[ 0.455277] Freeing unused kernel image (initmem) memory: 5012K
[ 0.455292] Write protecting the kernel read-only data: 38912k
[ 0.455639] Freeing unused kernel image (text/rodata gap) memory: 728K
[ 0.455746] Freeing unused kernel image (rodata/data gap) memory: 556K
[ 0.460284] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.460287] Run /init as init process
[ 0.460288] with arguments:
[ 0.460288] /init
[ 0.460289] splash
[ 0.460289] with environment:
[ 0.460290] HOME=/
[ 0.460290] TERM=linux
[ 0.460290] BOOT_IMAGE=/boot/vmlinuz-6.14.0-37-generic
[ 0.526142] intel-lpss 0000:80:15.0: enabling device (0004 -> 0006)
[ 0.526332] ahci 0000:80:17.0: version 3.0
[ 0.526918] ahci 0000:80:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.526921] ahci 0000:80:17.0: 4/4 ports implemented (port mask 0xf0)
[ 0.526922] ahci 0000:80:17.0: flags: 64bit ncq sntf clo only pio slum part ems deso sadm sds
[ 0.526988] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 0.529494] ACPI: bus type thunderbolt registered
[ 0.530288] nvme nvme1: pci function 0000:05:00.0
[ 0.530377] nvme nvme0: pci function 0000:01:00.0
[ 0.536257] scsi host0: ahci
[ 0.536355] scsi host1: ahci
[ 0.536407] scsi host2: ahci
[ 0.536468] scsi host3: ahci
[ 0.536558] scsi host4: ahci
[ 0.536631] scsi host5: ahci
[ 0.536706] scsi host6: ahci
[ 0.536760] scsi host7: ahci
[ 0.536779] ata1: DUMMY
[ 0.536780] ata2: DUMMY
[ 0.536780] ata3: DUMMY
[ 0.536780] ata4: DUMMY
[ 0.536786] ata5: SATA max UDMA/133 abar m2048@0xb8203000 port 0xb8203300 irq 144 lpm-pol 3
[ 0.536788] ata6: SATA max UDMA/133 abar m2048@0xb8203000 port 0xb8203380 irq 144 lpm-pol 3
[ 0.536790] ata7: SATA max UDMA/133 abar m2048@0xb8203000 port 0xb8203400 irq 144 lpm-pol 3
[ 0.536791] ata8: SATA max UDMA/133 abar m2048@0xb8203000 port 0xb8203480 irq 144 lpm-pol 3
[ 0.544694] nvme nvme0: allocated 64 MiB host memory buffer (16 segments).
[ 0.573581] nvme nvme0: 10/0/0 default/read/poll queues
[ 0.575925] nvme0n1: p1 p2 p3 p4
[ 0.630808] usb 3-3: new high-speed USB device number 2 using xhci_hcd
[ 0.634390] nvme nvme1: 10/0/0 default/read/poll queues
[ 0.639874] nvme1n1: p1 p2 p3
[ 0.778329] usb 3-3: New USB device found, idVendor=0bda, idProduct=5420, bcdDevice= 1.83
[ 0.778349] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 0.778355] usb 3-3: Product: 4-Port USB 2.0 Hub
[ 0.778360] usb 3-3: Manufacturer: Generic
[ 0.781981] hub 3-3:1.0: USB hub found
[ 0.783506] hub 3-3:1.0: 4 ports detected
[ 0.845294] ata6: SATA link down (SStatus 4 SControl 300)
[ 0.845640] ata8: SATA link down (SStatus 4 SControl 300)
[ 0.845918] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.846661] ata7: SATA link down (SStatus 4 SControl 300)
[ 0.846812] ata5.00: supports DRM functions and may not be fully accessible
[ 0.846823] ata5.00: ATA-10: CT1000MX500SSD1, M3CR046, max UDMA/133
[ 0.846886] ata5.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 0.848054] ata5.00: Features: Trust Dev-Sleep
[ 0.848230] ata5.00: supports DRM functions and may not be fully accessible
[ 0.849010] ata5.00: configured for UDMA/133
[ 0.849032] ahci 0000:80:17.0: port does not support device sleep
[ 0.849482] scsi 4:0:0:0: Direct-Access ATA CT1000MX500SSD1 046 PQ: 0 ANSI: 5
[ 0.850234] sd 4:0:0:0: Attached scsi generic sg0 type 0
[ 0.850354] sd 4:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[ 0.850367] sd 4:0:0:0: [sda] 4096-byte physical blocks
[ 0.850382] sd 4:0:0:0: [sda] Write Protect is off
[ 0.850389] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.850410] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.850456] sd 4:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 0.866682] sda: sda1 sda2
[ 0.867305] sd 4:0:0:0: [sda] supports TCG Opal
[ 0.867315] sd 4:0:0:0: [sda] Attached SCSI disk
[ 0.880269] usb 4-3: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd
[ 0.910059] usb 4-3: New USB device found, idVendor=0bda, idProduct=0420, bcdDevice= 1.83
[ 0.910065] usb 4-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 0.910068] usb 4-3: Product: 4-Port USB 3.0 Hub
[ 0.910069] usb 4-3: Manufacturer: Generic
[ 0.918049] hub 4-3:1.0: USB hub found
[ 0.919753] hub 4-3:1.0: 4 ports detected
[ 1.014672] usb 3-6: new high-speed USB device number 3 using xhci_hcd
[ 1.140092] usb 3-6: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.70
[ 1.140108] usb 3-6: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.140113] usb 3-6: Product: USB2.0 Hub
[ 1.142384] hub 3-6:1.0: USB hub found
[ 1.142927] hub 3-6:1.0: 4 ports detected
[ 1.212787] usb 3-3.3: new high-speed USB device number 4 using xhci_hcd
[ 1.303498] usb 3-3.3: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.63
[ 1.303518] usb 3-3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.303524] usb 3-3.3: Product: USB2.1 Hub
[ 1.303529] usb 3-3.3: Manufacturer: GenesysLogic
[ 1.306214] hub 3-3.3:1.0: USB hub found
[ 1.306588] hub 3-3.3:1.0: 4 ports detected
[ 1.413805] usb 3-8: new high-speed USB device number 5 using xhci_hcd
[ 1.540475] usb 3-8: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.70
[ 1.540492] usb 3-8: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.540496] usb 3-8: Product: USB2.0 Hub
[ 1.543355] hub 3-8:1.0: USB hub found
[ 1.543884] hub 3-8:1.0: 4 ports detected
[ 1.626801] usb 3-3.3.3: new low-speed USB device number 6 using xhci_hcd
[ 1.732219] usb 3-3.3.3: New USB device found, idVendor=0461, idProduct=4d81, bcdDevice= 2.00
[ 1.732236] usb 3-3.3.3: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 1.732241] usb 3-3.3.3: Product: USB Optical Mouse
[ 1.839833] usb 3-11: new full-speed USB device number 7 using xhci_hcd
[ 1.965452] usb 3-11: New USB device found, idVendor=0db0, idProduct=0076, bcdDevice= 0.01
[ 1.965469] usb 3-11: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.965474] usb 3-11: Product: MYSTIC LIGHT
[ 1.965478] usb 3-11: Manufacturer: MSI
[ 1.965481] usb 3-11: SerialNumber: 7E3924101602
[ 2.061807] usb 3-3.3.4: new low-speed USB device number 8 using xhci_hcd
[ 2.170932] usb 3-3.3.4: New USB device found, idVendor=413c, idProduct=2106, bcdDevice= 1.55
[ 2.170950] usb 3-3.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.170955] usb 3-3.3.4: Product: Dell QuietKey Keyboard
[ 2.170959] usb 3-3.3.4: Manufacturer: Dell
[ 2.275725] usb 3-14: new full-speed USB device number 9 using xhci_hcd
[ 2.401905] usb 3-14: New USB device found, idVendor=8087, idProduct=0036, bcdDevice= 0.00
[ 2.401925] usb 3-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.412993] hid: raw HID events driver (C) Jiri Kosina
[ 2.420976] usbcore: registered new interface driver usbhid
[ 2.420978] usbhid: USB HID core driver
[ 2.422261] input: USB Optical Mouse as /devices/pci0000:80/0000:80:14.0/usb3/3-3/3-3.3/3-3.3.3/3-3.3.3:1.0/0003:0461:4D81.0001/input/input3
[ 2.422310] hid-generic 0003:0461:4D81.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:80:14.0-3.3.3/input0
[ 2.422396] hid-generic 0003:0DB0:0076.0002: hiddev0,hidraw1: USB HID v1.10 Device [MSI MYSTIC LIGHT] on usb-0000:80:14.0-11/input0
[ 2.422460] input: Dell Dell QuietKey Keyboard as /devices/pci0000:80/0000:80:14.0/usb3/3-3/3-3.3/3-3.3.4/3-3.3.4:1.0/0003:413C:2106.0003/input/input4
[ 2.473384] hid-generic 0003:413C:2106.0003: input,hidraw2: USB HID v1.10 Keyboard [Dell Dell QuietKey Keyboard] on usb-0000:80:14.0-3.3.4/input0
[ 2.589431] EXT4-fs (sda2): orphan cleanup on readonly fs
[ 2.590118] EXT4-fs (sda2): mounted filesystem 9a3f0a2e-5cb7-4ac1-bd41-e4d3cfb66150 ro with ordered data mode. Quota mode: none.
[ 2.708273] systemd[1]: Inserted module 'autofs4'
[ 2.740546] systemd[1]: systemd 257.4-1ubuntu3.2 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
[ 2.740550] systemd[1]: Detected architecture x86-64.
[ 2.742248] systemd[1]: Hostname set to <ubuntu25>.
[ 2.784326] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
[ 2.910443] systemd[1]: Queued start job for default target graphical.target.
[ 2.924381] systemd[1]: Created slice system-cups.slice - CUPS Slice.
[ 2.924605] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 2.924794] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 2.924924] systemd[1]: Created slice user.slice - User and Session Slice.
[ 2.924951] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 2.925047] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 2.925057] systemd[1]: Expecting device dev-disk-by\x2duuid-3BE8\x2dC6CE.device - /dev/disk/by-uuid/3BE8-C6CE...
[ 2.925067] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 2.925080] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 2.925085] systemd[1]: Reached target slices.target - Slice Units.
[ 2.925091] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 2.925103] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 2.925161] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 2.925556] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[ 2.925579] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 2.925609] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 2.925637] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 2.925676] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[ 2.925736] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[ 2.925754] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.925760] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.925787] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 2.925808] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 2.926470] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 2.926793] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 2.927184] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[ 2.927708] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 2.928193] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 2.929171] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 2.929983] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 2.930742] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 2.931037] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 2.931326] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 2.931650] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 2.932048] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 2.932089] 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).
[ 2.932102] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 2.932771] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 2.933414] systemd[1]: Starting systemd-oomd.service - Userspace Out-Of-Memory (OOM) Killer...
[ 2.933421] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.933746] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 2.933761] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.934078] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[ 2.934400] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 2.935038] pstore: Using crash dump compression: deflate
[ 2.935053] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 2.935104] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 2.935131] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[ 2.935157] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 2.935181] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 2.935292] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 2.935399] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 2.935455] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 2.935533] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 2.935584] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 2.935696] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 2.935745] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 2.936125] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 2.936575] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 2.936954] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 2.938892] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 2.939193] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 2.941016] systemd-journald[390]: Collecting audit messages is disabled.
[ 2.942080] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[ 2.943948] pstore: Registered efi_pstore as persistent store backend
[ 2.943985] lp: driver loaded but no devices found
[ 2.944174] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 2.944237] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 2.945771] ppdev: user-space parallel port driver
[ 2.946915] EXT4-fs (sda2): re-mounted 9a3f0a2e-5cb7-4ac1-bd41-e4d3cfb66150 r/w.
[ 2.947370] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 2.947913] systemd[1]: Activating swap swap.img.swap - /swap.img...
[ 2.948109] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 2.948125] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 2.948460] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 2.948466] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.950628] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 2.950690] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 2.951256] systemd[1]: Starting systemd-timesyncd.service - Network Time Synchronization...
[ 2.951568] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 2.954324] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 2.955722] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 2.955768] Adding 8388604k swap on /swap.img. Priority:-2 extents:65 across:9175040k SS
[ 2.956252] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 2.956273] systemd[1]: Activated swap swap.img.swap - /swap.img.
[ 2.956303] systemd[1]: Reached target swap.target - Swaps.
[ 2.956643] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[ 2.956690] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[ 2.957334] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[ 2.959133] systemd[1]: Started systemd-oomd.service - Userspace Out-Of-Memory (OOM) Killer.
[ 2.961092] systemd[1]: Started systemd-journald.service - Journal Service.
[ 2.965207] systemd-journald[390]: Received client request to flush runtime journal.
[ 3.087123] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.LPCB.HEC.DPTF.FCHG], AE_NOT_FOUND (20240827/psargs-332)
[ 3.087131] No Local Variables are initialized for Method [PPSS]
[ 3.087132] No Arguments are initialized for method [PPSS]
[ 3.087133] ACPI Error: Aborting method \_SB.IETM.CHRG.PPSS due to previous error (AE_NOT_FOUND) (20240827/psparse-529)
[ 3.097911] intel_vsec 0000:00:0a.0: enabling device (0000 -> 0002)
[ 3.114834] intel_vpu 0000:00:0b.0: enabling device (0000 -> 0002)
[ 3.126765] intel_vpu 0000:00:0b.0: [drm] Firmware: intel/vpu/vpu_37xx_v1.bin, version: 20250115*MTL_CLIENT_SILICON-release*1905*ci_tag_ud202504_vpu_rc_20250115_1905*ae83b65d01c
[ 3.126769] intel_vpu 0000:00:0b.0: [drm] Scheduler mode: OS
[ 3.129215] Bluetooth: Core ver 2.22
[ 3.134276] intel-spi 0000:80:1f.5: enabling device (0400 -> 0402)
[ 3.134557] i801_smbus 0000:80:1f.4: SPD Write Disable is set
[ 3.134630] i801_smbus 0000:80:1f.4: SMBus using PCI interrupt
[ 3.134729] NET: Registered PF_BLUETOOTH protocol family
[ 3.134732] Bluetooth: HCI device and connection manager initialized
[ 3.134736] Bluetooth: HCI socket layer initialized
[ 3.134738] Bluetooth: L2CAP socket layer initialized
[ 3.134748] Bluetooth: SCO socket layer initialized
[ 3.138644] proc_thermal_pci 0000:00:04.0: enabling device (0000 -> 0002)
[ 3.139853] intel_rapl_common: Found RAPL domain package
[ 3.141411] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 3.141580] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 3.141686] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 3.158550] Intel(R) Wireless WiFi driver for Linux
[ 3.159067] iwlwifi 0000:82:00.0: enabling device (0000 -> 0002)
[ 3.165141] iwlwifi 0000:82:00.0: Detected crf-id 0x2001910, cnv-id 0x2001910 wfpm id 0x80000000
[ 3.165155] iwlwifi 0000:82:00.0: PCI dev 272b/1774, rev=0x472, rfid=0x112200
[ 3.165157] iwlwifi 0000:82:00.0: Detected Intel(R) Wi-Fi 7 BE202 160MHz
[ 3.171164] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer
[ 3.171168] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 3.171169] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 3.173884] cryptd: max_cpu_qlen set to 1000
[ 3.175362] iwlwifi 0000:82:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.4.196
[ 3.176063] iwlwifi 0000:82:00.0: loaded firmware version 96.44729d4e.0 gl-c0-fm-c0-96.ucode op_mode iwlmvm
[ 3.182483] AES CTR mode by8 optimization enabled
[ 3.182808] usbcore: registered new interface driver btusb
[ 3.184262] Bluetooth: hci0: Device revision is 0
[ 3.184264] Bluetooth: hci0: Secure boot is enabled
[ 3.184265] Bluetooth: hci0: OTP lock is disabled
[ 3.184265] Bluetooth: hci0: API lock is enabled
[ 3.184266] Bluetooth: hci0: Debug lock is disabled
[ 3.184266] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 3.184267] Bluetooth: hci0: Bootloader timestamp 2022.18 buildtype 1 build 16362
[ 3.184272] Bluetooth: hci0: DSM reset method type: 0x01
[ 3.191257] Bluetooth: hci0: Found device firmware: intel/ibt-0291-0291.sfi
[ 3.191268] Bluetooth: hci0: Boot Address: 0x100800
[ 3.191269] Bluetooth: hci0: Firmware Version: 149-7.25
[ 3.212265] [drm] Initialized intel_vpu 1.0.0 for 0000:00:0b.0 on minor 0
[ 3.426549] intel_rapl_common: Found RAPL domain package
[ 3.426562] intel_rapl_common: Found RAPL domain core
[ 3.435203] i915 0000:00:02.0: [drm] Found meteorlake (device ID 7d67) integrated display version 14.00 stepping D0
[ 3.437425] spi-nor spi0.0: supply vcc not found, using dummy regulator
[ 3.443458] Creating 1 MTD partitions on "0000:80:1f.5":
[ 3.443462] 0x000000000000-0x000002000000 : "BIOS"
[ 3.457904] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 3.457924] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[ 3.469670] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 3.476134] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/mtl_dmc.bin (v2.23)
[ 3.476997] snd_hda_intel 0000:80:1f.3: enabling device (0000 -> 0002)
[ 3.502205] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.36.0
[ 3.512256] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[ 3.512257] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[ 3.512505] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[ 3.516857] mei_gsc_proxy 0000:80:16.0-0f73db04-97ab-4125-b893-e904ad0d5464: bound 0000:00:02.0 (ops i915_gsc_proxy_component_ops [i915])
[ 3.517211] i915 0000:00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin version 70.36.0
[ 3.517213] i915 0000:00:02.0: [drm] GT1: HuC firmware i915/mtl_huc_gsc.bin version 8.5.4
[ 3.537603] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for clear media
[ 3.537987] i915 0000:00:02.0: [drm] GT1: GUC: submission enabled
[ 3.537988] i915 0000:00:02.0: [drm] GT1: GUC: SLPC enabled
[ 3.538048] i915 0000:00:02.0: [drm] GT1: GUC: RC enabled
[ 3.540049] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[ 3.570690] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 1
[ 3.571341] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 3.571713] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
[ 3.571913] snd_hda_intel 0000:80:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 3.601765] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC897: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 3.601768] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 3.601770] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 3.601771] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 3.601771] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x1e/0x0
[ 3.601772] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 3.601772] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 3.601773] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 3.610756] fbcon: i915drmfb (fb0) is primary device
[ 3.610758] fbcon: Deferring console take-over
[ 3.610760] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 3.636189] input: HDA Intel PCH Rear Mic as /devices/pci0000:80/0000:80:1f.3/sound/card0/input6
[ 3.636218] input: HDA Intel PCH Front Mic as /devices/pci0000:80/0000:80:1f.3/sound/card0/input7
[ 3.636234] input: HDA Intel PCH Line Out as /devices/pci0000:80/0000:80:1f.3/sound/card0/input8
[ 3.636253] input: HDA Intel PCH Front Headphone as /devices/pci0000:80/0000:80:1f.3/sound/card0/input9
[ 3.636270] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:80/0000:80:1f.3/sound/card0/input10
[ 3.636288] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:80/0000:80:1f.3/sound/card0/input11
[ 3.636304] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:80/0000:80:1f.3/sound/card0/input12
[ 3.636321] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:80/0000:80:1f.3/sound/card0/input13
[ 3.683550] i915 0000:00:02.0: [drm] GT1: Loaded GSC firmware i915/mtl_gsc_1.bin (cv1.0, r102.1.15.1926, svn 1)
[ 3.704096] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for all workloads
[ 3.722890] iwlwifi 0000:82:00.0: Detected RF FM, rfid=0x112200
[ 3.725609] iwlwifi 0000:82:00.0: loaded PNVM version 8af7618d
[ 3.834629] iwlwifi 0000:82:00.0: base HW address: 28:a0:6b:e3:92:52
[ 3.904765] iwlwifi 0000:82:00.0 wlp130s0f0: renamed from wlan0
[ 3.955840] loop0: detected capacity change from 0 to 136904
[ 3.955986] loop1: detected capacity change from 0 to 136816
[ 3.956183] loop2: detected capacity change from 0 to 151512
[ 3.957411] loop3: detected capacity change from 0 to 151536
[ 3.959994] loop4: detected capacity change from 0 to 46232
[ 3.960535] loop5: detected capacity change from 0 to 517800
[ 3.960779] loop6: detected capacity change from 0 to 505096
[ 3.961053] loop7: detected capacity change from 0 to 40880
[ 3.961853] loop8: detected capacity change from 0 to 8
[ 3.964180] loop10: detected capacity change from 0 to 33792
[ 3.964182] loop9: detected capacity change from 0 to 33680
[ 3.966772] loop11: detected capacity change from 0 to 1088496
[ 3.968051] loop12: detected capacity change from 0 to 1088256
[ 3.971197] loop13: detected capacity change from 0 to 1241248
[ 3.975363] loop14: detected capacity change from 0 to 808920
[ 3.975364] loop16: detected capacity change from 0 to 823256
[ 3.975366] loop15: detected capacity change from 0 to 187776
[ 3.985773] loop18: detected capacity change from 0 to 38568
[ 3.985773] loop17: detected capacity change from 0 to 38552
[ 3.995095] loop19: detected capacity change from 0 to 32128
[ 3.995096] loop20: detected capacity change from 0 to 24184
[ 4.001312] loop22: detected capacity change from 0 to 100888
[ 4.001315] loop21: detected capacity change from 0 to 99056
[ 4.006102] loop23: detected capacity change from 0 to 1656
[ 4.010674] loop24: detected capacity change from 0 to 1656
[ 4.063872] audit: type=1400 audit(1787793096.162:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=1184 comm="apparmor_parser"
[ 4.063889] audit: type=1400 audit(1787793096.162:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=1192 comm="apparmor_parser"
[ 4.063908] audit: type=1400 audit(1787793096.162:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=1186 comm="apparmor_parser"
[ 4.063935] audit: type=1400 audit(1787793096.162:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=1185 comm="apparmor_parser"
[ 4.063955] audit: type=1400 audit(1787793096.162:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=1187 comm="apparmor_parser"
[ 4.064715] audit: type=1400 audit(1787793096.163:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=1198 comm="apparmor_parser"
[ 4.064750] audit: type=1400 audit(1787793096.163:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=1199 comm="apparmor_parser"
[ 4.065077] audit: type=1400 audit(1787793096.163:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=1203 comm="apparmor_parser"
[ 4.065117] audit: type=1400 audit(1787793096.163:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=1201 comm="apparmor_parser"
[ 5.208282] kauditd_printk_skb: 212 callbacks suppressed
[ 5.208295] audit: type=1400 audit(1787793097.306:223): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="rsyslogd" pid=1507 comm="apparmor_parser"
[ 5.336163] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 5.336166] Bluetooth: BNEP filters: protocol multicast
[ 5.336170] Bluetooth: BNEP socket layer initialized
[ 5.340584] Bluetooth: hci0: Waiting for firmware download to complete
[ 5.341240] Bluetooth: hci0: Firmware loaded in 2099589 usecs
[ 5.341277] Bluetooth: hci0: Waiting for device to boot
[ 5.394328] Bluetooth: hci0: Device booted in 51829 usecs
[ 5.395448] nvme nvme0: using unchecked data buffer
[ 5.396436] Bluetooth: hci0: dsbr: enable: 0x01 value: 0x0f
[ 5.398094] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0291-0291.ddc
[ 5.399249] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 5.402275] Bluetooth: hci0: Firmware timestamp 2025.7 buildtype 1 build 76693
[ 5.402277] Bluetooth: hci0: Firmware SHA1: 0x9919f053
[ 5.403667] block nvme0n1: No UUID available providing old NGUID
[ 5.406257] Bluetooth: hci0: Fseq status: Success (0x00)
[ 5.406259] Bluetooth: hci0: Fseq executed: 00.00.04.195
[ 5.406260] Bluetooth: hci0: Fseq BT Top: 00.00.04.195
[ 5.450389] NET: Registered PF_QIPCRTR protocol family
[ 5.504423] Bluetooth: hci0: Failed to read codec capabilities (-95)
[ 5.508402] Bluetooth: hci0: Failed to read codec capabilities (-95)
[ 5.568047] Bluetooth: MGMT ver 1.23
[ 5.569950] NET: Registered PF_ALG protocol family
[ 5.581873] Bluetooth: RFCOMM TTY layer initialized
[ 5.581880] Bluetooth: RFCOMM socket layer initialized
[ 5.581883] Bluetooth: RFCOMM ver 1.11
[ 5.587258] Consider using thermal netlink events interface
[ 6.125973] iwlwifi 0000:82:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
[ 6.167188] audit: type=1400 audit(1787793098.265:224): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/cupsd" name="/etc/paperspecs" pid=1771 comm="cupsd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 6.201012] audit: type=1400 audit(1787793098.299:225): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=1771 comm="cupsd" capability=12 capname="net_admin"
[ 6.258584] loop25: detected capacity change from 0 to 8
[ 7.665475] rfkill: input handler disabled
[ 9.812532] wlp130s0f0: authenticate with 6c:19:8f:cb:7b:d6 (local address=28:a0:6b:e3:92:52)
[ 9.812945] wlp130s0f0: send auth to 6c:19:8f:cb:7b:d6 (try 1/3)
[ 9.814313] wlp130s0f0: authenticated
[ 9.815702] wlp130s0f0: associate with 6c:19:8f:cb:7b:d6 (try 1/3)
[ 9.818894] wlp130s0f0: RX AssocResp from 6c:19:8f:cb:7b:d6 (capab=0x11 status=0 aid=2)
[ 9.820465] wlp130s0f0: associated
[ 10.603098] audit: type=1400 audit(1787793102.701:226): apparmor="STATUS" operation="profile_load" profile="unconfined" name="docker-default" pid=2676 comm="apparmor_parser"
[ 10.666255] evm: overlay not supported
[ 10.831300] Initializing XFRM netlink socket
[ 10.843679] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 34.551683] systemd-journald[390]: Time jumped backwards, rotating.
[ 106.885930] rfkill: input handler enabled
[ 107.545136] rfkill: input handler disabled
[ 118.668405] audit: type=1400 audit(1787793207.746:227): apparmor="DENIED" operation="mount" class="mount" info="failed mntpnt match" error=-13 profile="fusermount3" name="/" pid=4050 comm="fusermount3" flags="rw, rprivate"
[ 183.539377] usb 3-3.3: USB disconnect, device number 4
[ 183.539397] usb 3-3.3.3: USB disconnect, device number 6
[ 183.567682] usb 3-3.3.4: USB disconnect, device number 8
[ 195.902825] usb 3-6.3: new high-speed USB device number 10 using xhci_hcd
[ 195.978913] usb 3-6.3: New USB device found, idVendor=1209, idProduct=0009, bcdDevice= 1.00
[ 195.978929] usb 3-6.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 195.978934] usb 3-6.3: Product: RemoBuddy HID+ABS+USB
[ 195.978938] usb 3-6.3: Manufacturer: DIY
[ 195.978941] usb 3-6.3: SerialNumber: 0000000090b16d84
[ 195.983768] input: DIY RemoBuddy HID+ABS+USB as /devices/pci0000:80/0000:80:14.0/usb3/3-6/3-6.3/3-6.3:1.0/0003:1209:0009.0004/input/input14
[ 196.063925] hid-generic 0003:1209:0009.0004: input,hidraw0: USB HID v1.01 Keyboard [DIY RemoBuddy HID+ABS+USB] on usb-0000:80:14.0-6.3/input0
[ 196.065949] input: DIY RemoBuddy HID+ABS+USB as /devices/pci0000:80/0000:80:14.0/usb3/3-6/3-6.3/3-6.3:1.1/0003:1209:0009.0005/input/input15
[ 196.066483] hid-generic 0003:1209:0009.0005: input,hidraw2: USB HID v1.01 Mouse [DIY RemoBuddy HID+ABS+USB] on usb-0000:80:14.0-6.3/input1
[ 196.067454] input: DIY RemoBuddy HID+ABS+USB as /devices/pci0000:80/0000:80:14.0/usb3/3-6/3-6.3/3-6.3:1.2/0003:1209:0009.0006/input/input16
[ 196.067917] hid-generic 0003:1209:0009.0006: input,hidraw3: USB HID v1.01 Pointer [DIY RemoBuddy HID+ABS+USB] on usb-0000:80:14.0-6.3/input2
[ 196.085701] usb-storage 3-6.3:1.3: USB Mass Storage device detected
[ 196.086460] scsi host8: usb-storage 3-6.3:1.3
[ 196.087006] usbcore: registered new interface driver usb-storage
[ 196.087996] usbcore: registered new interface driver uas
[ 197.151042] scsi 8:0:0:0: Direct-Access DIY KVM USB DRIVE 0001 PQ: 0 ANSI: 2
[ 197.152041] sd 8:0:0:0: Attached scsi generic sg1 type 0
[ 197.152952] sd 8:0:0:0: Power-on or device reset occurred
[ 197.158702] sd 8:0:0:0: [sdb] 8388608 512-byte logical blocks: (4.29 GB/4.00 GiB)
[ 197.158999] sd 8:0:0:0: [sdb] Write Protect is off
[ 197.159007] sd 8:0:0:0: [sdb] Mode Sense: 0f 00 00 00
[ 197.159134] sd 8:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 197.170156] sdb:
[ 197.170173] sd 8:0:0:0: [sdb] Attached SCSI removable disk
[ 197.452910] FAT-fs (sdb): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 1160.499601] audit: type=1400 audit(1787794249.588:228): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/cupsd" name="/etc/paperspecs" pid=4371 comm="cupsd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 1160.500823] audit: type=1400 audit(1787794249.589:229): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=4371 comm="cupsd" capability=12 capname="net_admin"
[ 1700.594342] usb 3-6.3: USB disconnect, device number 10
[ 1700.754289] sd 8:0:0:0: [sdb] Synchronizing SCSI cache
[ 1700.754333] sd 8:0:0:0: [sdb] Synchronize Cache(10) failed: Result: hostbyte=DID_NO_CONNECT driverbyte=DRIVER_OK
[ 1708.952207] usb 3-6.3: new high-speed USB device number 11 using xhci_hcd
[ 1709.032522] usb 3-6.3: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.63
[ 1709.032540] usb 3-6.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1709.032545] usb 3-6.3: Product: USB2.1 Hub
[ 1709.032549] usb 3-6.3: Manufacturer: GenesysLogic
[ 1709.035552] hub 3-6.3:1.0: USB hub found
[ 1709.035940] hub 3-6.3:1.0: 4 ports detected
[ 1709.335170] usb 3-6.3.3: new low-speed USB device number 12 using xhci_hcd
[ 1709.451144] usb 3-6.3.3: New USB device found, idVendor=0461, idProduct=4d81, bcdDevice= 2.00
[ 1709.451166] usb 3-6.3.3: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 1709.451173] usb 3-6.3.3: Product: USB Optical Mouse
[ 1709.457217] input: USB Optical Mouse as /devices/pci0000:80/0000:80:14.0/usb3/3-6/3-6.3/3-6.3.3/3-6.3.3:1.0/0003:0461:4D81.0007/input/input17
[ 1709.457694] hid-generic 0003:0461:4D81.0007: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:80:14.0-6.3.3/input0
[ 1709.555147] usb 3-6.3.4: new low-speed USB device number 13 using xhci_hcd
[ 1709.674153] usb 3-6.3.4: New USB device found, idVendor=413c, idProduct=2106, bcdDevice= 1.55
[ 1709.674171] usb 3-6.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1709.674176] usb 3-6.3.4: Product: Dell QuietKey Keyboard
[ 1709.674180] usb 3-6.3.4: Manufacturer: Dell
[ 1709.682942] input: Dell Dell QuietKey Keyboard as /devices/pci0000:80/0000:80:14.0/usb3/3-6/3-6.3/3-6.3.4/3-6.3.4:1.0/0003:413C:2106.0008/input/input18
[ 1709.760554] hid-generic 0003:413C:2106.0008: input,hidraw2: USB HID v1.10 Keyboard [Dell Dell QuietKey Keyboard] on usb-0000:80:14.0-6.3.4/input0
[ 1871.979363] usb 4-3.1: new SuperSpeed USB device number 3 using xhci_hcd
[ 1872.091423] usb 4-3.1: New USB device found, idVendor=054c, idProduct=09c2, bcdDevice= 1.00
[ 1872.091445] usb 4-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1872.091452] usb 4-3.1: Product: Storage Media
[ 1872.091458] usb 4-3.1: Manufacturer: Sony
[ 1872.091462] usb 4-3.1: SerialNumber: 5C0710529C21154C03
[ 1872.098183] usb-storage 4-3.1:1.0: USB Mass Storage device detected
[ 1872.098798] scsi host8: usb-storage 4-3.1:1.0
[ 1873.224048] scsi 8:0:0:0: Direct-Access Sony Storage Media PMAP PQ: 0 ANSI: 6
[ 1873.225018] sd 8:0:0:0: Attached scsi generic sg1 type 0
[ 1874.524111] sd 8:0:0:0: [sdb] 30365568 512-byte logical blocks: (15.5 GB/14.5 GiB)
[ 1874.525493] sd 8:0:0:0: [sdb] Write Protect is off
[ 1874.525515] sd 8:0:0:0: [sdb] Mode Sense: 23 00 00 00
[ 1874.526368] sd 8:0:0:0: [sdb] No Caching mode page found
[ 1874.526380] sd 8:0:0:0: [sdb] Assuming drive cache: write through
[ 1874.553895] sdb: sdb1
[ 1874.554209] sd 8:0:0:0: [sdb] Attached SCSI removable disk
[ 1874.838113] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 1882.938999] audit: type=1400 audit(1787794972.040:230): apparmor="DENIED" operation="connect" class="file" profile="/usr/bin/wsdd" name="/run/uuidd/request" pid=4954 comm="python3" requested_mask="w" denied_mask="w" fsuid=1000 ouid=0
[ 1882.939018] audit: type=1400 audit(1787794972.040:231): apparmor="DENIED" operation="mknod" class="file" profile="/usr/bin/wsdd" name="/var/lib/libuuid/clock.txt" pid=4954 comm="python3" requested_mask="c" denied_mask="c" fsuid=1000 ouid=1000
[ 1882.943603] audit: type=1400 audit(1787794972.045:232): apparmor="DENIED" operation="connect" class="file" profile="/usr/bin/wsdd" name="/run/uuidd/request" pid=4954 comm="python3" requested_mask="w" denied_mask="w" fsuid=1000 ouid=0
[ 1883.944716] audit: type=1400 audit(1787794973.046:233): apparmor="DENIED" operation="connect" class="file" profile="/usr/bin/wsdd" name="/run/uuidd/request" pid=4954 comm="python3" requested_mask="w" denied_mask="w" fsuid=1000 ouid=0
[ 1883.957105] audit: type=1400 audit(1787794973.058:234): apparmor="DENIED" operation="connect" class="file" profile="/usr/bin/wsdd" name="/run/uuidd/request" pid=4954 comm="python3" requested_mask="w" denied_mask="w" fsuid=1000 ouid=0
[ 1883.965922] audit: type=1400 audit(1787794973.067:235): apparmor="DENIED" operation="open" class="file" profile="/usr/bin/wsdd" name="/etc/host.conf" pid=4954 comm="python3" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 1883.965925] audit: type=1400 audit(1787794973.067:236): apparmor="DENIED" operation="open" class="file" profile="/usr/bin/wsdd" name="/run/systemd/resolve/stub-resolv.conf" pid=4954 comm="python3" requested_mask="r" denied_mask="r" fsuid=1000 ouid=990
[ 1883.965926] audit: type=1400 audit(1787794973.067:237): apparmor="DENIED" operation="open" class="file" profile="/usr/bin/wsdd" name="/etc/hosts" pid=4954 comm="python3" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 1884.043983] audit: type=1400 audit(1787794973.145:238): apparmor="DENIED" operation="connect" class="file" profile="/usr/bin/wsdd" name="/run/uuidd/request" pid=4954 comm="python3" requested_mask="w" denied_mask="w" fsuid=1000 ouid=0
[ 1884.054939] audit: type=1400 audit(1787794973.156:239): apparmor="DENIED" operation="connect" class="file" profile="/usr/bin/wsdd" name="/run/uuidd/request" pid=4954 comm="python3" requested_mask="w" denied_mask="w" fsuid=1000 ouid=0
simoncc@ubuntu25:~$
00:00.0 Host bridge: Intel Corporation Device 7d35 (rev 01)
DeviceName: Onboard - Other
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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
Capabilities: [e0] Vendor Specific Information: Len=14 <?>
00:01.0 PCI bridge: Intel Corporation Device 7ecc (rev 10) (prog-if 00 [Normal decode])
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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 120
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: f000-0fff [disabled] [16-bit]
Memory behind bridge: 8c200000-8c2fffff [size=1M] [32-bit]
Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled] [64-bit]
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
DevCap: MaxPayload 256 bytes, PhantFunc 0
ExtTag- RBE+ TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 256 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
LnkCap: Port #12, Speed 32GT/s, Width x4, ASPM not supported
ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
LnkSta: Speed 16GT/s, Width x4
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
Slot #4, PowerLimit 25W; Interlock- NoCompl+
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
Changed: MRL- PresDet- LinkState-
RootCap: CRSVisible-
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
10BitTagComp+ 10BitTagReq- OBFF Via WAKE#, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 2
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
AtomicOpsCap: Routing+ 32bit+ 64bit+ 128bitCAS+
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
AtomicOpsCtl: ReqEn- EgressBlck-
IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-32GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
LnkCtl2: Target Link Speed: 16GT/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: [80] MSI: Enable+ Count=1/1 Maskable- 64bit+
Address: 00000000fee00218 Data: 0000
Capabilities: [98] Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
Capabilities: [a0] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [100 v0] Null
Capabilities: [220 v1] Access Control Services
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
Capabilities: [150 v1] Precision Time Measurement
PTMCap: Requester- Responder+ Root+
PTMClockGranularity: 4ns
PTMControl: Enabled+ RootSelected+
PTMEffectiveGranularity: Unknown
Capabilities: [a30 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: 0
Capabilities: [a90 v1] Data Link Feature <?>
Capabilities: [a9c v1] Physical Layer 16.0 GT/s <?>
Capabilities: [edc v1] Lane Margining at the Receiver
PortCap: Uses Driver-
PortSta: MargReady+ MargSoftReady-
Capabilities: [adc v1] Physical Layer 32.0 GT/s <?>
Kernel driver in use: pcieport
00:02.0 VGA compatible controller: Intel Corporation Arrow Lake-S [Intel Graphics] (rev 06) (prog-if 00 [VGA controller])
DeviceName: Onboard - Video
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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 ? routed to IRQ 197
Region 0: Memory at b010000000 (64-bit, prefetchable) [size=16M]
Region 2: Memory at a000000000 (64-bit, prefetchable) [size=256M]
Expansion ROM at 000c0000 [virtual] [disabled] [size=128K]
Capabilities: [40] Vendor Specific Information: Len=0c <?>
Capabilities: [70] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
DevCap: MaxPayload 128 bytes, PhantFunc 0
ExtTag+ RBE+ FLReset+ TEE-IO-
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+ FLReset-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
DevCap2: Completion Timeout: Range B, 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-
AtomicOpsCtl: ReqEn-
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
Capabilities: [ac] MSI: Enable+ Count=1/1 Maskable+ 64bit+
Address: 00000000fee00018 Data: 0000
Masking: 00000000 Pending: 00000000
Capabilities: [d0] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [100 v1] Null
Capabilities: [110 v1] Process Address Space ID (PASID)
PASIDCap: Exec- Priv-, Max PASID Width: 14
PASIDCtl: Enable- Exec- Priv-
Capabilities: [200 v1] Address Translation Service (ATS)
ATSCap: Invalidate Queue Depth: 00
ATSCtl: Enable-, Smallest Translation Unit: 00
Capabilities: [420 v1] Physical Resizable BAR
BAR 2: current size: 256MB, supported: 256MB
Capabilities: [320 v1] Single Root I/O Virtualization (SR-IOV)
IOVCap: Migration- 10BitTagReq+ IntMsgNum 0
IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy- 10BitTagReq-
IOVSta: Migration-
Initial VFs: 7, Total VFs: 7, Number of VFs: 0, Function Dependency Link: 00
VF offset: 1, stride: 1, Device ID: 7d67
Supported Page Size: 00000553, System Page Size: 00000001
Region 0: Memory at 000000b011000000 (64-bit, prefetchable)
VF Migration: offset: 00000000, BIR: 0
Capabilities: [400 v1] Latency Tolerance Reporting
Max snoop latency: 0ns
Max no snoop latency: 0ns
Kernel driver in use: i915
Kernel modules: i915, xe
00:04.0 Signal processing controller: Intel Corporation Device ad03 (rev 01)
DeviceName: Onboard - Other
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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
Interrupt: pin A routed to IRQ 16
Region 0: Memory at b020080000 (64-bit, non-prefetchable) [size=128K]
Capabilities: [90] MSI: Enable- Count=1/1 Maskable- 64bit-
Address: 00000000 Data: 0000
Capabilities: [d0] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [e0] Vendor Specific Information: Len=0c <?>
Kernel driver in use: proc_thermal_pci
Kernel modules: processor_thermal_device_pci
00:06.0 PCI bridge: Intel Corporation Device ae4d (rev 10) (prog-if 00 [Normal decode])
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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 121
Bus: primary=00, secondary=02, subordinate=05, sec-latency=0
I/O behind bridge: f000-0fff [disabled] [16-bit]
Memory behind bridge: 8c000000-8c1fffff [size=2M] [32-bit]
Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled] [64-bit]
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR+ <PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
DevCap: MaxPayload 256 bytes, PhantFunc 0
ExtTag- RBE+ TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 256 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
LnkCap: Port #13, Speed 32GT/s, Width x16, ASPM not supported
ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
LnkSta: Speed 8GT/s, Width x2
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
Slot #0, PowerLimit 75W; Interlock- NoCompl+
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
Changed: MRL- PresDet- LinkState-
RootCap: CRSVisible-
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
10BitTagComp+ 10BitTagReq- OBFF Via WAKE#, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 2
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
AtomicOpsCap: Routing+ 32bit+ 64bit+ 128bitCAS+
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
AtomicOpsCtl: ReqEn- EgressBlck-
IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-32GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
LnkCtl2: Target Link Speed: 8GT/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: [80] MSI: Enable+ Count=1/1 Maskable- 64bit+
Address: 00000000fee00238 Data: 0000
Capabilities: [98] Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
Capabilities: [a0] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [100 v0] Null
Capabilities: [220 v1] Access Control Services
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
Capabilities: [150 v1] Precision Time Measurement
PTMCap: Requester- Responder+ Root+
PTMClockGranularity: 4ns
PTMControl: Enabled+ RootSelected+
PTMEffectiveGranularity: Unknown
Capabilities: [a30 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: 0
Capabilities: [a90 v1] Data Link Feature <?>
Capabilities: [a9c v1] Physical Layer 16.0 GT/s <?>
Capabilities: [edc v1] Lane Margining at the Receiver
PortCap: Uses Driver-
PortSta: MargReady- MargSoftReady-
Capabilities: [adc v1] Physical Layer 32.0 GT/s <?>
Kernel driver in use: pcieport
00:07.0 PCI bridge: Intel Corporation Meteor Lake-P Thunderbolt 4 PCI Express Root Port #0 (rev 10) (prog-if 00 [Normal decode])
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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 122
Bus: primary=00, secondary=06, subordinate=2f, sec-latency=0
I/O behind bridge: 9000-9fff [size=4K] [16-bit]
Memory behind bridge: 86000000-8bffffff [size=96M] [32-bit]
Prefetchable memory behind bridge: a810000000-b00fffffff [size=32G] [32-bit]
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
DevCap: MaxPayload 128 bytes, PhantFunc 0
ExtTag- RBE+ TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
LnkCap: Port #16, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <16us
ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
LnkCtl: ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk-
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s, Width x0
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
Slot #6, PowerLimit 0W; Interlock- NoCompl+
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq+ LinkChg+
Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
Changed: MRL- PresDet- LinkState-
RootCap: CRSVisible-
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
10BitTagComp- 10BitTagReq- OBFF Via WAKE#, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
AtomicOpsCtl: ReqEn- EgressBlck-
IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
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: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
Address: fee00258 Data: 0000
Capabilities: [90] Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
Capabilities: [a0] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UESvrt: DLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
RootCmd: CERptEn+ NFERptEn+ FERptEn+
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
Capabilities: [220 v1] Access Control Services
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
ACSCtl: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
Capabilities: [150 v1] Precision Time Measurement
PTMCap: Requester- Responder+ Root+
PTMClockGranularity: 4ns
PTMControl: Enabled+ RootSelected+
PTMEffectiveGranularity: Unknown
Capabilities: [a30 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: 0
Capabilities: [a90 v1] Data Link Feature <?>
Kernel driver in use: pcieport
00:07.1 PCI bridge: Intel Corporation Meteor Lake-P Thunderbolt 4 PCI Express Root Port #1 (rev 10) (prog-if 00 [Normal decode])
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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 B routed to IRQ 123
Bus: primary=00, secondary=30, subordinate=59, sec-latency=0
I/O behind bridge: a000-afff [size=4K] [16-bit]
Memory behind bridge: 80000000-85ffffff [size=96M] [32-bit]
Prefetchable memory behind bridge: a010000000-a80fffffff [size=32G] [32-bit]
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
DevCap: MaxPayload 128 bytes, PhantFunc 0
ExtTag- RBE+ TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
LnkCap: Port #17, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <16us
ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
LnkCtl: ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk-
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s, Width x0
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
Slot #7, PowerLimit 0W; Interlock- NoCompl+
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq+ LinkChg+
Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
Changed: MRL- PresDet- LinkState-
RootCap: CRSVisible-
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
10BitTagComp- 10BitTagReq- OBFF Via WAKE#, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
AtomicOpsCtl: ReqEn- EgressBlck-
IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
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: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
Address: fee00298 Data: 0000
Capabilities: [90] Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
Capabilities: [a0] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UESvrt: DLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
RootCmd: CERptEn+ NFERptEn+ FERptEn+
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
Capabilities: [220 v1] Access Control Services
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
ACSCtl: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
Capabilities: [150 v1] Precision Time Measurement
PTMCap: Requester- Responder+ Root+
PTMClockGranularity: 4ns
PTMControl: Enabled+ RootSelected+
PTMEffectiveGranularity: Unknown
Capabilities: [a30 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: 0
Capabilities: [a90 v1] Data Link Feature <?>
Kernel driver in use: pcieport
00:08.0 System peripheral: Intel Corporation Device ae4c (rev 10)
DeviceName: Onboard - Other
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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-
Interrupt: pin A routed to IRQ 255
Region 0: Memory at b0200b7000 (64-bit, non-prefetchable) [disabled] [size=4K]
Capabilities: [90] MSI: Enable- Count=1/1 Maskable- 64bit-
Address: 00000000 Data: 0000
Capabilities: [a0] Vendor Specific Information: Len=14 <?>
Capabilities: [dc] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [f0] PCI Advanced Features
AFCap: TP+ FLR+
AFCtrl: FLR-
AFStatus: TP-
00:0a.0 Signal processing controller: Intel Corporation Device ad0d (rev 01)
DeviceName: Onboard - Other
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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-
Region 0: Memory at b020040000 (64-bit, non-prefetchable) [size=256K]
Capabilities: [70] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
DevCap: MaxPayload 128 bytes, PhantFunc 0
ExtTag+ RBE- FLReset- TEE-IO-
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
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-
AtomicOpsCtl: ReqEn-
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
Capabilities: [d0] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [100 v1] Designated Vendor-Specific: Vendor=8086 ID=0002 Rev=1 Len=16 <?>
Capabilities: [110 v1] Designated Vendor-Specific: Vendor=8086 ID=0003 Rev=1 Len=16 <?>
Capabilities: [120 v1] Designated Vendor-Specific: Vendor=8086 ID=0004 Rev=1 Len=16 <?>
Kernel driver in use: intel_vsec
Kernel modules: intel_vsec
00:0b.0 Processing accelerators: Intel Corporation Arrow Lake NPU (rev 01)
DeviceName: Onboard - Other
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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 ? routed to IRQ 183
Region 0: Memory at b018000000 (64-bit, non-prefetchable) [size=128M]
Region 4: Memory at b0200b6000 (64-bit, non-prefetchable) [size=4K]
Capabilities: [80] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D3 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [90] Vendor Specific Information: Len=14 <?>
Capabilities: [d0] MSI: Enable+ Count=1/1 Maskable+ 64bit+
Address: 00000000fee00a98 Data: 0000
Masking: 00000000 Pending: 00004000
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
DevCap: MaxPayload 128 bytes, PhantFunc 0
ExtTag- RBE+ FLReset+ TEE-IO-
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
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-
AtomicOpsCtl: ReqEn-
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
Capabilities: [100 v1] Address Translation Service (ATS)
ATSCap: Invalidate Queue Depth: 00
ATSCtl: Enable-, Smallest Translation Unit: 00
Kernel driver in use: intel_vpu
Kernel modules: intel_vpu
00:0d.0 USB controller: Intel Corporation Meteor Lake-P Thunderbolt 4 USB Controller (rev 10) (prog-if 30 [XHCI])
DeviceName: Onboard - Other
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin ? routed to IRQ 128
Region 0: Memory at b0200a0000 (64-bit, non-prefetchable) [size=64K]
Capabilities: [70] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [80] MSI: Enable+ Count=8/8 Maskable- 64bit+
Address: 00000000fee00418 Data: 0000
Capabilities: [90] Vendor Specific Information: Len=14 <?>
Capabilities: [b0] Vendor Specific Information: Len=00 <?>
Kernel driver in use: xhci_hcd
00:0d.2 USB controller: Intel Corporation Meteor Lake-P Thunderbolt 4 NHI #0 (rev 10) (prog-if 40 [USB4 Host Interface])
DeviceName: Onboard - Other
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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 35
Region 0: Memory at b020000000 (64-bit, non-prefetchable) [size=256K]
Region 2: Memory at b0200b5000 (64-bit, non-prefetchable) [size=4K]
Capabilities: [80] Power Management version 3
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [88] MSI: Enable- Count=1/1 Maskable- 64bit+
Address: 0000000000000000 Data: 0000
Capabilities: [a0] MSI-X: Enable+ Count=16 Masked-
Vector table: BAR=2 offset=00000000
PBA: BAR=2 offset=00000fa0
Kernel driver in use: thunderbolt
Kernel modules: thunderbolt
00:14.0 RAM memory: Intel Corporation Device ae7f (rev 10)
DeviceName: Onboard - Other
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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-
Region 0: Memory at b0200b0000 (64-bit, non-prefetchable) [disabled] [size=16K]
Region 2: Memory at b0200b4000 (64-bit, non-prefetchable) [disabled] [size=4K]
Capabilities: [80] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
00:1f.0 ISA bridge: Intel Corporation Device ae0d (rev 10)
DeviceName: Onboard - Other
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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
00:1f.5 Serial bus controller: Intel Corporation Device ae23 (rev 10)
DeviceName: Onboard - Other
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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-
Region 0: Memory at 8c300000 (32-bit, non-prefetchable) [size=4K]
01:00.0 Non-Volatile memory controller: Kingston Technology Company, Inc. NV3 NVMe SSD [TC2201] (DRAM-less) (prog-if 02 [NVM Express])
Subsystem: Kingston Technology Company, Inc. NV3 NVMe SSD [TC2201] (DRAM-less)
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 16
Region 0: Memory at 8c200000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] MSI: Enable- Count=1/32 Maskable- 64bit+
Address: 0000000000000000 Data: 0000
Capabilities: [70] Express (v2) Endpoint, IntMsgNum 0
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 25W TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop- FLReset-
MaxPayload 256 bytes, MaxReadReq 512 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
LnkCap: Port #1, Speed 16GT/s, Width x4, ASPM L1, Exit Latency L1 <64us
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 16GT/s, Width x4
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
10BitTagComp+ 10BitTagReq- OBFF Via message/WAKE#, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS- TPHComp- ExtTPHComp-
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
AtomicOpsCtl: ReqEn-
IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS+
LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
Retimer- 2Retimers- CrosslinkRes: Upstream Port
Capabilities: [b0] MSI-X: Enable+ Count=32 Masked-
Vector table: BAR=0 offset=00002000
PBA: BAR=0 offset=00003000
Capabilities: [100 v2] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr+ HeaderOF+
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
Capabilities: [148 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: 0
Capabilities: [168 v1] Physical Layer 16.0 GT/s <?>
Capabilities: [18c v1] Lane Margining at the Receiver
PortCap: Uses Driver-
PortSta: MargReady+ MargSoftReady-
Capabilities: [1a4 v1] Latency Tolerance Reporting
Max snoop latency: 15728640ns
Max no snoop latency: 15728640ns
Capabilities: [1ac v1] L1 PM Substates
L1SubCap: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1- L1_PM_Substates-
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
L1SubCtl2:
Capabilities: [1bc v1] Vendor Specific Information: ID=0002 Rev=4 Len=100 <?>
Capabilities: [2bc v1] Vendor Specific Information: ID=0001 Rev=1 Len=038 <?>
Capabilities: [2f4 v1] Data Link Feature <?>
Kernel driver in use: nvme
Kernel modules: nvme
02:00.0 PCI bridge: Pericom Semiconductor Device c008 (rev 0f) (prog-if 00 [Normal decode])
Subsystem: Pericom Semiconductor Device c008
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
Region 0: Memory at 8c100000 (32-bit, non-prefetchable) [size=512K]
Bus: primary=02, secondary=03, subordinate=05, sec-latency=0
I/O behind bridge: 0000f000-00000fff [disabled] [32-bit]
Memory behind bridge: 8c000000-8c0fffff [size=1M] [32-bit]
Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled] [64-bit]
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [48] MSI: Enable- Count=1/8 Maskable+ 64bit+
Address: 0000000000000000 Data: 0000
Masking: 00000000 Pending: 00000000
Capabilities: [68] Express (v2) Upstream Port, IntMsgNum 0
DevCap: MaxPayload 512 bytes, PhantFunc 0
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 68W TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 256 bytes, MaxReadReq 128 bytes
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- TransPend-
LnkCap: Port #0, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
LnkCtl: ASPM Disabled; LnkDisable- CommClk+
ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 8GT/s, Width x2 (downgraded)
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: Routing+ 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
AtomicOpsCtl: EgressBlck-
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
Retimer- 2Retimers- CrosslinkRes: unsupported
Capabilities: [a4] Subsystem: Pericom Semiconductor Device c008
Capabilities: [b0] MSI-X: Enable- Count=6 Masked-
Vector table: BAR=0 offset=0007f000
PBA: BAR=0 offset=0007f080
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UESvrt: DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr+ HeaderOF-
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
Capabilities: [130 v1] Virtual Channel
Caps: LPEVC=0 RefClk=100ns PATEntryBits=4
Arb: Fixed- WRR32- WRR64- WRR128-
Ctrl: ArbSelect=Fixed
Status: InProgress-
VC0: Caps: PATOffset=05 MaxTimeSlots=64 RejSnoopTrans-
Arb: Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
Status: NegoPending- InProgress-
Port Arbitration Table <?>
Capabilities: [1a0 v1] Device Serial Number 08-16-48-96-00-00-12-d8
Capabilities: [1b0 v1] Power Budgeting <?>
Capabilities: [1d0 v1] Multicast
McastCap: MaxGroups 64, ECRCRegen-
McastCtl: NumGroups 1, Enable-
McastBAR: IndexPos 0, BaseAddr 0000000000000000
McastReceiveVec: 0000000000000000
McastBlockAllVec: 0000000000000000
McastBlockUntransVec: 0000000000000000
McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
Capabilities: [210 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: 0
Capabilities: [2b0 v1] L1 PM Substates
L1SubCap: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1- L1_PM_Substates+
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
L1SubCtl2:
Capabilities: [300 v1] Vendor Specific Information: ID=0000 Rev=0 Len=560 <?>
Kernel driver in use: pcieport
03:04.0 PCI bridge: Pericom Semiconductor Device c008 (rev 06) (prog-if 00 [Normal decode])
Subsystem: Pericom Semiconductor Device c008
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 124
Bus: primary=03, secondary=04, subordinate=04, sec-latency=0
I/O behind bridge: 0000f000-00000fff [disabled] [32-bit]
Memory behind bridge: fff00000-000fffff [disabled] [32-bit]
Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled] [64-bit]
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort+ <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
Capabilities: [48] MSI: Enable+ Count=1/8 Maskable+ 64bit+
Address: 00000000fee002b8 Data: 0000
Masking: 000000fe Pending: 00000000
Capabilities: [68] Express (v2) Downstream Port (Slot+), IntMsgNum 0
DevCap: MaxPayload 512 bytes, PhantFunc 0
ExtTag- RBE+ TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 256 bytes, MaxReadReq 128 bytes
DevSta: CorrErr+ NonFatalErr+ FatalErr- UnsupReq- AuxPwr- TransPend-
LnkCap: Port #4, Speed 8GT/s, Width x2, ASPM L1, Exit Latency L1 <1us
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp+
LnkCtl: ASPM L1 Enabled; LnkDisable- CommClk-
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
LnkSta: Speed 8GT/s, Width x1
TrErr- Train- SlotClk- DLActive+ BWMgmt- ABWMgmt+
SltCap: AttnBtn+ PwrCtrl+ MRL+ AttnInd+ PwrInd+ HotPlug- Surprise+
Slot #4, PowerLimit 25W; Interlock- NoCompl-
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
Control: AttnInd Off, PwrInd On, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL+ CmdCplt- PresDet- Interlock-
Changed: MRL- PresDet- LinkState-
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS- ARIFwd+
AtomicOpsCap: Routing+
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
AtomicOpsCtl: EgressBlck-
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
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: [a4] Subsystem: Pericom Semiconductor Device c008
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol+ UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr+ HeaderOF-
AERCap: First Error Pointer: 15, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 34000000 0000007f 00000001 08000000
Capabilities: [130 v1] Virtual Channel
Caps: LPEVC=0 RefClk=100ns PATEntryBits=4
Arb: Fixed- WRR32- WRR64- WRR128-
Ctrl: ArbSelect=Fixed
Status: InProgress-
VC0: Caps: PATOffset=05 MaxTimeSlots=64 RejSnoopTrans-
Arb: Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
Status: NegoPending- InProgress-
Port Arbitration Table <?>
Capabilities: [1a0 v1] Device Serial Number 08-16-48-96-00-00-12-d8
Capabilities: [1c0 v1] Access Control Services
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl+ DirectTrans+
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
Capabilities: [1d0 v1] Multicast
McastCap: MaxGroups 64, ECRCRegen-
McastCtl: NumGroups 1, Enable-
McastBAR: IndexPos 0, BaseAddr 0000000000000000
McastReceiveVec: 0000000000000000
McastBlockAllVec: 0000000000000000
McastBlockUntransVec: 0000000000000000
McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
Capabilities: [210 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: LaneErr at lane: 0
Capabilities: [2a0 v1] Downstream Port Containment
DpcCap: IntMsgNum 1, RPExt- PoisonedTLP- SwTrigger- RP PIO Log 0, DL_ActiveErr-
DpcCtl: Trigger:0 Cmpl- INT- ErrCor- PoisonedTLP- SwTrigger- DL_ActiveErr-
DpcSta: Trigger- Reason:00 INT- RPBusy- TriggerExt:00 RP PIO ErrPtr:00
Source: 0000
Capabilities: [2b0 v1] L1 PM Substates
L1SubCap: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1- L1_PM_Substates+
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
L1SubCtl2:
Capabilities: [300 v1] Vendor Specific Information: ID=0000 Rev=0 Len=560 <?>
Kernel driver in use: pcieport
03:05.0 PCI bridge: Pericom Semiconductor Device c008 (rev 06) (prog-if 00 [Normal decode])
Subsystem: Pericom Semiconductor Device c008
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 125
Bus: primary=03, secondary=05, subordinate=05, sec-latency=0
I/O behind bridge: 0000f000-00000fff [disabled] [32-bit]
Memory behind bridge: 8c000000-8c0fffff [size=1M] [32-bit]
Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled] [64-bit]
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [48] MSI: Enable+ Count=1/8 Maskable+ 64bit+
Address: 00000000fee002d8 Data: 0000
Masking: 000000fe Pending: 00000000
Capabilities: [68] Express (v2) Downstream Port (Slot+), IntMsgNum 0
DevCap: MaxPayload 512 bytes, PhantFunc 0
ExtTag- RBE+ TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 256 bytes, MaxReadReq 128 bytes
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
LnkCap: Port #5, Speed 8GT/s, Width x2, ASPM L1, Exit Latency L1 <1us
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp+
LnkCtl: ASPM L1 Enabled; LnkDisable- CommClk-
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
LnkSta: Speed 8GT/s, Width x2
TrErr- Train- SlotClk- DLActive+ BWMgmt- ABWMgmt-
SltCap: AttnBtn+ PwrCtrl+ MRL+ AttnInd+ PwrInd+ HotPlug- Surprise+
Slot #5, PowerLimit 25W; Interlock- NoCompl-
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
Control: AttnInd Off, PwrInd On, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL+ CmdCplt- PresDet+ Interlock-
Changed: MRL- PresDet- LinkState-
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS- ARIFwd+
AtomicOpsCap: Routing+
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd+
AtomicOpsCtl: EgressBlck-
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
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: [a4] Subsystem: Pericom Semiconductor Device c008
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr+ HeaderOF-
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
Capabilities: [130 v1] Virtual Channel
Caps: LPEVC=0 RefClk=100ns PATEntryBits=4
Arb: Fixed- WRR32- WRR64- WRR128-
Ctrl: ArbSelect=Fixed
Status: InProgress-
VC0: Caps: PATOffset=05 MaxTimeSlots=64 RejSnoopTrans-
Arb: Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
Status: NegoPending- InProgress-
Port Arbitration Table <?>
Capabilities: [1a0 v1] Device Serial Number 08-16-48-96-00-00-12-d8
Capabilities: [1c0 v1] Access Control Services
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl+ DirectTrans+
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
Capabilities: [1d0 v1] Multicast
McastCap: MaxGroups 64, ECRCRegen-
McastCtl: NumGroups 1, Enable-
McastBAR: IndexPos 0, BaseAddr 0000000000000000
McastReceiveVec: 0000000000000000
McastBlockAllVec: 0000000000000000
McastBlockUntransVec: 0000000000000000
McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
Capabilities: [210 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: LaneErr at lane: 0 1
Capabilities: [2a0 v1] Downstream Port Containment
DpcCap: IntMsgNum 1, RPExt- PoisonedTLP- SwTrigger- RP PIO Log 0, DL_ActiveErr-
DpcCtl: Trigger:0 Cmpl- INT- ErrCor- PoisonedTLP- SwTrigger- DL_ActiveErr-
DpcSta: Trigger- Reason:00 INT- RPBusy- TriggerExt:00 RP PIO ErrPtr:00
Source: 0000
Capabilities: [2b0 v1] L1 PM Substates
L1SubCap: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1- L1_PM_Substates+
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
L1SubCtl2:
Capabilities: [300 v1] Vendor Specific Information: ID=0000 Rev=0 Len=560 <?>
Kernel driver in use: pcieport
05:00.0 Non-Volatile memory controller: ADATA Technology Co., Ltd. LEGEND 960 NVMe SSD (rev 03) (prog-if 02 [NVM Express])
Subsystem: ADATA Technology Co., Ltd. LEGEND 960 NVMe SSD
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 17
Region 0: Memory at 8c000000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] MSI: Enable- Count=1/8 Maskable+ 64bit+
Address: 0000000000000000 Data: 0000
Masking: 00000000 Pending: 00000000
Capabilities: [70] Express (v2) Endpoint, IntMsgNum 0
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 25W TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
MaxPayload 256 bytes, MaxReadReq 512 bytes
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
LnkCap: Port #0, Speed 16GT/s, Width x4, ASPM L1, Exit Latency L1 <8us
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
LnkCtl: ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk-
ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 8GT/s (downgraded), Width x2 (downgraded)
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS+ TPHComp- ExtTPHComp-
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
AtomicOpsCtl: ReqEn-
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS+
LnkCtl2: Target Link Speed: 16GT/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: Upstream Port
Capabilities: [b0] MSI-X: Enable+ Count=16 Masked-
Vector table: BAR=0 offset=00002000
PBA: BAR=0 offset=00002100
Capabilities: [100 v2] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr+ HeaderOF+
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
Capabilities: [158 v1] Alternative Routing-ID Interpretation (ARI)
ARICap: MFVC- ACS-, Next Function: 0
ARICtl: MFVC- ACS-, Function Group: 0
Capabilities: [168 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: LaneErr at lane: 1
Capabilities: [188 v1] Physical Layer 16.0 GT/s <?>
Capabilities: [1ac v1] Lane Margining at the Receiver
PortCap: Uses Driver-
PortSta: MargReady- MargSoftReady-
Capabilities: [204 v1] Latency Tolerance Reporting
Max snoop latency: 0ns
Max no snoop latency: 0ns
Capabilities: [20c v1] L1 PM Substates
L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
PortCommonModeRestoreTime=10us PortTPowerOnTime=10us
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
T_CommonMode=0us LTR1.2_Threshold=30720ns
L1SubCtl2: T_PwrOn=10us
Kernel driver in use: nvme
Kernel modules: nvme
80:14.0 USB controller: Intel Corporation Device 7f6e (rev 10) (prog-if 30 [XHCI])
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 136
Region 0: Memory at 8000200000 (64-bit, non-prefetchable) [size=64K]
Capabilities: [70] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [80] MSI: Enable+ Count=8/8 Maskable- 64bit+
Address: 00000000fee00518 Data: 0000
Capabilities: [90] Vendor Specific Information: Len=14 <?>
Capabilities: [b0] Vendor Specific Information: Len=00 <?>
Kernel driver in use: xhci_hcd
80:14.5 Non-VGA unclassified device: Intel Corporation Device 7f2f (rev 10)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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-
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
DevCap: MaxPayload 256 bytes, PhantFunc 0
ExtTag- RBE- FLReset- TEE-IO-
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 256 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP+ LTR-
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS-
DevCtl2: Completion Timeout: Unknown, TimeoutDis+
AtomicOpsCtl: ReqEn-
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
80:15.0 Serial bus controller: Intel Corporation Device 7f4c (rev 10)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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 32
Region 0: Memory at 8000216000 (64-bit, non-prefetchable) [size=4K]
Capabilities: [80] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D3 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [90] Vendor Specific Information: Len=14 <?>
Kernel driver in use: intel-lpss
Kernel modules: intel_lpss_pci
80:16.0 Communication controller: Intel Corporation Device 7f68 (rev 10)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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
Interrupt: pin A routed to IRQ 184
Region 0: Memory at 8000215000 (64-bit, non-prefetchable) [size=4K]
Capabilities: [50] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [8c] MSI: Enable+ Count=1/1 Maskable- 64bit+
Address: 00000000fee00ab8 Data: 0000
Capabilities: [a4] Vendor Specific Information: Len=14 <?>
Kernel driver in use: mei_me
Kernel modules: mei_me
80:17.0 SATA controller: Intel Corporation Device 7f62 (rev 10) (prog-if 01 [AHCI 1.0])
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 144
Region 0: Memory at b8200000 (32-bit, non-prefetchable) [size=8K]
Region 1: Memory at b8204000 (32-bit, non-prefetchable) [size=256]
Region 2: I/O ports at 4050 [size=8]
Region 3: I/O ports at 4040 [size=4]
Region 4: I/O ports at 4020 [size=32]
Region 5: Memory at b8203000 (32-bit, non-prefetchable) [size=2K]
Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
Address: fee00398 Data: 0000
Capabilities: [70] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000004
Kernel driver in use: ahci
Kernel modules: ahci
80:1d.0 PCI bridge: Intel Corporation Device 7f36 (rev 10) (prog-if 00 [Normal decode])
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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 C routed to IRQ 126
Bus: primary=80, secondary=81, subordinate=81, sec-latency=0
I/O behind bridge: 3000-3fff [size=4K] [16-bit]
Memory behind bridge: b8100000-b81fffff [size=1M] [32-bit]
Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled] [64-bit]
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
DevCap: MaxPayload 256 bytes, PhantFunc 0
ExtTag- RBE+ TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 256 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
LnkCap: Port #15, Speed 16GT/s, Width x1, ASPM not supported
ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
LnkSta: Speed 8GT/s, Width x1
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
Slot #19, PowerLimit 10W; Interlock- NoCompl+
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
Changed: MRL- PresDet- LinkState-
RootCap: CRSVisible-
RootCtl: ErrCorrectable+ ErrNon-Fatal+ ErrFatal+ PMEIntEna+ CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
10BitTagComp+ 10BitTagReq- OBFF Via WAKE#, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 2
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
AtomicOpsCtl: ReqEn- EgressBlck-
IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
LnkCtl2: Target Link Speed: 8GT/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: [80] MSI: Enable+ Count=1/1 Maskable- 64bit+
Address: 00000000fee00318 Data: 0000
Capabilities: [98] Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
Capabilities: [a0] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [100 v0] Null
Capabilities: [220 v1] Access Control Services
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
Capabilities: [150 v1] Precision Time Measurement
PTMCap: Requester- Responder+ Root+
PTMClockGranularity: 4ns
PTMControl: Enabled+ RootSelected+
PTMEffectiveGranularity: Unknown
Capabilities: [a30 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: 0
Capabilities: [a90 v1] Data Link Feature <?>
Capabilities: [a9c v1] Physical Layer 16.0 GT/s <?>
Capabilities: [edc v1] Lane Margining at the Receiver
PortCap: Uses Driver-
PortSta: MargReady- MargSoftReady-
Kernel driver in use: pcieport
80:1d.7 PCI bridge: Intel Corporation Device 7f37 (rev 10) (prog-if 00 [Normal decode])
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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 D routed to IRQ 127
Bus: primary=80, secondary=82, subordinate=82, sec-latency=0
I/O behind bridge: f000-0fff [disabled] [16-bit]
Memory behind bridge: b8000000-b80fffff [size=1M] [32-bit]
Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled] [64-bit]
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
DevCap: MaxPayload 256 bytes, PhantFunc 0
ExtTag- RBE+ TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
LnkCap: Port #16, Speed 16GT/s, Width x1, ASPM not supported
ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
LnkSta: Speed 16GT/s, Width x1
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
Slot #20, PowerLimit 10W; Interlock- NoCompl+
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
Changed: MRL- PresDet- LinkState-
RootCap: CRSVisible-
RootCtl: ErrCorrectable+ ErrNon-Fatal+ ErrFatal+ PMEIntEna+ CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
10BitTagComp+ 10BitTagReq- OBFF Via WAKE#, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 2
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
AtomicOpsCtl: ReqEn- EgressBlck-
IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
LnkCtl2: Target Link Speed: 16GT/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: [80] MSI: Enable+ Count=1/1 Maskable- 64bit+
Address: 00000000fee00358 Data: 0000
Capabilities: [98] Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
Capabilities: [a0] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [100 v0] Null
Capabilities: [220 v1] Access Control Services
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
Capabilities: [150 v1] Precision Time Measurement
PTMCap: Requester- Responder+ Root+
PTMClockGranularity: 4ns
PTMControl: Enabled+ RootSelected+
PTMEffectiveGranularity: Unknown
Capabilities: [a30 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: 0
Capabilities: [a90 v1] Data Link Feature <?>
Capabilities: [a9c v1] Physical Layer 16.0 GT/s <?>
Capabilities: [edc v1] Lane Margining at the Receiver
PortCap: Uses Driver-
PortSta: MargReady+ MargSoftReady-
Kernel driver in use: pcieport
80:1f.0 ISA bridge: Intel Corporation Device 7f06 (rev 10)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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-
80:1f.3 Audio device: Intel Corporation Device 7f50 (rev 10)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device ee39
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: 32, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 198
Region 0: Memory at 8000210000 (64-bit, non-prefetchable) [size=16K]
Region 4: Memory at 8000000000 (64-bit, non-prefetchable) [size=2M]
Capabilities: [50] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
Capabilities: [c0] Vendor Specific Information: Len=14 <?>
Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+
Address: 00000000fee00c58 Data: 0000
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel, snd_sof_pci_intel_mtl
80:1f.4 SMBus: Intel Corporation Device 7f23 (rev 10)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Interrupt: pin C routed to IRQ 18
Region 0: Memory at 8000214000 (64-bit, non-prefetchable) [size=256]
Region 4: I/O ports at 4000 [size=32]
Kernel driver in use: i801_smbus
Kernel modules: i2c_i801
80:1f.5 Serial bus controller: Intel Corporation Device 7f24 (rev 10)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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-
Region 0: Memory at b8202000 (32-bit, non-prefetchable) [size=4K]
Kernel driver in use: intel-spi
Kernel modules: spi_intel_pci
81:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. Device 5000 (rev 04)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7e39
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-
Interrupt: pin A routed to IRQ 255
Region 0: I/O ports at 3000 [disabled] [size=256]
Region 2: Memory at b8100000 (64-bit, non-prefetchable) [disabled] [size=64K]
Region 4: Memory at b8110000 (64-bit, non-prefetchable) [disabled] [size=16K]
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+
Address: 0000000000000000 Data: 0000
Masking: 00000000 Pending: 00000000
Capabilities: [70] Express (v2) Endpoint, IntMsgNum 1
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 10W TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 256 bytes, MaxReadReq 512 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
LnkCap: Port #0, Speed 8GT/s, Width x1, ASPM L0s L1, Exit Latency L0s unlimited, L1 <64us
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 8GT/s, Width x1
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
10BitTagComp- 10BitTagReq- OBFF Via message/WAKE#, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS- TPHComp+ ExtTPHComp-
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
AtomicOpsCtl: ReqEn-
IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
Retimer- 2Retimers- CrosslinkRes: unsupported
Capabilities: [b0] MSI-X: Enable- Count=32 Masked-
Vector table: BAR=4 offset=00000000
PBA: BAR=4 offset=00000800
Capabilities: [d0] Vital Product Data
Not readable
Capabilities: [100 v2] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr+ HeaderOF+
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
Capabilities: [148 v1] Virtual Channel
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
Arb: Fixed- WRR32- WRR64- WRR128-
Ctrl: ArbSelect=Fixed
Status: InProgress-
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
Status: NegoPending- InProgress-
Capabilities: [170 v1] Device Serial Number 01-00-00-00-68-4c-e0-00
Capabilities: [180 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: 0
Capabilities: [190 v1] Transaction Processing Hints
No steering table available
Capabilities: [21c v1] Latency Tolerance Reporting
Max snoop latency: 15728640ns
Max no snoop latency: 15728640ns
Capabilities: [224 v1] L1 PM Substates
L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
PortCommonModeRestoreTime=150us PortTPowerOnTime=150us
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
T_CommonMode=0us LTR1.2_Threshold=317440ns
L1SubCtl2: T_PwrOn=150us
Capabilities: [234 v1] Vendor Specific Information: ID=0002 Rev=4 Len=100 <?>
82:00.0 Network controller: Intel Corporation Wi-Fi 7(802.11be) AX1775*/AX1790*/BE20*/BE401/BE1750* 2x2 (rev 1a)
Subsystem: Rivet Networks Device 1774
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 19
Region 0: Memory at b8000000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
Address: 0000000000000000 Data: 0000
Capabilities: [70] Express (v2) Endpoint, IntMsgNum 0
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 10W TEE-IO-
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-
MaxPayload 128 bytes, MaxReadReq 512 bytes
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
LnkCap: Port #0, Speed 16GT/s, Width x1, ASPM L1, Exit Latency L1 <64us
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 16GT/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- TPHComp- ExtTPHComp-
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis+
AtomicOpsCtl: ReqEn-
IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
Retimer- 2Retimers- CrosslinkRes: Upstream Port
Capabilities: [b0] MSI-X: Enable+ Count=32 Masked-
Vector table: BAR=0 offset=00002000
PBA: BAR=0 offset=00003000
Capabilities: [100 v2] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr+ HeaderOF+
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
MultHdrRecCap+ MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
Capabilities: [148 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
LaneErrStat: 0
Capabilities: [158 v1] Physical Layer 16.0 GT/s <?>
Capabilities: [17c v1] Lane Margining at the Receiver
PortCap: Uses Driver-
PortSta: MargReady+ MargSoftReady-
Capabilities: [188 v1] Latency Tolerance Reporting
Max snoop latency: 15728640ns
Max no snoop latency: 15728640ns
Capabilities: [190 v1] L1 PM Substates
L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
PortCommonModeRestoreTime=10us PortTPowerOnTime=14us
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
T_CommonMode=0us LTR1.2_Threshold=34816ns
L1SubCtl2: T_PwrOn=14us
Capabilities: [1a0 v1] Vendor Specific Information: ID=0002 Rev=4 Len=100 <?>
Capabilities: [2a0 v1] Data Link Feature <?>
Capabilities: [2ac v1] Precision Time Measurement
PTMCap: Requester+ Responder- Root-
PTMClockGranularity: Unimplemented
PTMControl: Enabled+ RootSelected-
PTMEffectiveGranularity: 4ns
Capabilities: [2b8 v1] Vendor Specific Information: ID=0003 Rev=1 Len=054 <?>
Capabilities: [500 v1] Vendor Specific Information: ID=0023 Rev=1 Len=010 <?>
Kernel driver in use: iwlwifi
Kernel modules: iwlwifi