* [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum @ 2026-07-23 16:10 Nirmoy Das 2026-07-23 20:54 ` Bjorn Helgaas 0 siblings, 1 reply; 6+ messages in thread From: Nirmoy Das @ 2026-07-23 16:10 UTC (permalink / raw) To: Bjorn Helgaas; +Cc: Nirmoy Das, linux-pci, linux-kernel, JC Chen 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. 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. 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@nvidia.com> --- 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 ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum 2026-07-23 16:10 [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum Nirmoy Das @ 2026-07-23 20:54 ` Bjorn Helgaas 2026-07-24 8:36 ` JC Chen[陳饒靜] 0 siblings, 1 reply; 6+ messages in thread From: Bjorn Helgaas @ 2026-07-23 20:54 UTC (permalink / raw) To: Nirmoy Das Cc: Bjorn Helgaas, linux-pci, linux-kernel, JC Chen, Ilpo Järvinen [+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@nvidia.com> > --- > 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 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum 2026-07-23 20:54 ` Bjorn Helgaas @ 2026-07-24 8:36 ` JC Chen[陳饒靜] 2026-08-26 14:28 ` Ilpo Järvinen 0 siblings, 1 reply; 6+ messages in thread From: JC Chen[陳饒靜] @ 2026-07-24 8:36 UTC (permalink / raw) To: Bjorn Helgaas, Nirmoy Das Cc: Bjorn Helgaas, linux-pci, linux-kernel, Ilpo Järvinen [-- Attachment #1.1: Type: text/plain, Size: 8200 bytes --] 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. Thanks, JC -----Original Message----- From: Bjorn Helgaas <helgaas@kernel.org> Sent: Friday, July 24, 2026 4:54 AM To: Nirmoy Das <nirmoyd@nvidia.com> Cc: Bjorn Helgaas <bhelgaas@google.com>; linux-pci@vger.kernel.org; linux-kernel@vger.kernel.org; JC Chen[陳饒靜] <jc_chen@diodes.com>; Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Subject: Re: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum [You don't often get email from helgaas@kernel.org<mailto:helgaas@kernel.org>. 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@nvidia.com<mailto:nirmoyd@nvidia.com>> > --- > 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 > [-- Attachment #1.2: Type: text/html, Size: 24729 bytes --] [-- Attachment #2: dmesg.log --] [-- Type: application/octet-stream, Size: 117039 bytes --] [ 0.000000] Linux version 6.17.0-35-generic (buildd@lcy02-amd64-079) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.3.0-6ubuntu2~24.04.1) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 19:30:42 UTC 2 (Ubuntu 6.17.0-35.35~24.04.1-generic 6.17.13) [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.17.0-35-generic root=UUID=68d96259-4e81-4dbe-9d4b-a3044b40112f ro quiet splash intel_iommu=on iommu=pt isolcpus=8-11,20-23 nohz_full=8-11,20-23 rcu_nocbs=8-11,20-23 default_hugepagesz=2M hugepagesz=2M hugepages=2048 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/tme: not enabled by BIOS [ 0.000000] x86/CPU: Running old microcode [ 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-0x000000000009dbff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009dc00-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000006c92dfff] usable [ 0.000000] BIOS-e820: [mem 0x000000006c92e000-0x000000006ea2dfff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006ea2e000-0x000000006f32dfff] ACPI data [ 0.000000] BIOS-e820: [mem 0x000000006f32e000-0x0000000072940fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x0000000072941000-0x00000000777fefff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000777ff000-0x00000000777fffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000077800000-0x000000008fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000107fffffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] APIC: Static calls initialized [ 0.000000] SMBIOS 3.6.0 present. [ 0.000000] DMI: Supermicro Super Server/X13SEI-F, BIOS 2.1 12/08/2023 [ 0.000000] DMI: Memory slots populated: 1/8 [ 0.000000] tsc: Detected 2000.000 MHz processor [ 0.006556] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.006560] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.006569] last_pfn = 0x1080000 max_arch_pfn = 0x10000000000 [ 0.006576] total RAM covered: 129024M [ 0.006757] Found optimal setting for mtrr clean up [ 0.006758] gran_size: 64K chunk_size: 64K num_reg: 6 lose cover RAM: 0G [ 0.006764] MTRR map: 4 entries (2 fixed + 2 variable; max 22), built from 10 variable MTRRs [ 0.006766] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.007898] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved [ 0.007902] x2apic: enabled by BIOS, switching to x2apic ops [ 0.007904] last_pfn = 0x77800 max_arch_pfn = 0x10000000000 [ 0.017783] Using GB pages for direct mapping [ 0.017958] RAMDISK: [mem 0x2ec09000-0x335fbfff] [ 0.018402] ACPI: Early table checksum verification disabled [ 0.018407] ACPI: RSDP 0x00000000000F05B0 000024 (v02 SUPERM) [ 0.018412] ACPI: XSDT 0x000000007290C728 00012C (v01 SUPERM SMCI--MB 01072009 AMI 01000013) [ 0.018420] ACPI: FACP 0x000000006F32B000 000114 (v06 SUPERM SMCI--MB 01072009 INTL 20091013) [ 0.018426] ACPI: DSDT 0x000000006F259000 0CF398 (v02 SUPERM SMCI--MB 01072009 INTL 20091013) [ 0.018430] ACPI: FACS 0x000000007293F000 000040 [ 0.018433] ACPI: SPMI 0x000000006F32A000 000041 (v05 SUPERM SMCI--MB 00000000 AMI. 00000000) [ 0.018437] ACPI: SPMI 0x000000006F329000 000041 (v05 SUPERM SMCI--MB 00000000 AMI. 00000000) [ 0.018440] ACPI: FIDT 0x000000006F258000 00009C (v01 SUPERM SMCI--MB 01072009 AMI 00010013) [ 0.018443] ACPI: SSDT 0x000000006F32D000 000156 (v02 SUPERM PRMOPREG 00001000 INTL 20210331) [ 0.018447] ACPI: SSDT 0x000000006F32C000 000145 (v02 SUPERM PRMSAMPL 00001000 INTL 20210331) [ 0.018450] ACPI: SSDT 0x000000006F257000 0006F7 (v02 INTEL RAS_ACPI 00000001 INTL 20210331) [ 0.018454] ACPI: SSDT 0x000000006F256000 000406 (v02 INTEL SruTable 00001000 INTL 20210331) [ 0.018457] ACPI: SSDT 0x000000006F255000 000397 (v02 INTEL SstsTbl 00001000 INTL 20210331) [ 0.018461] ACPI: ERST 0x000000006F254000 000230 (v01 SUPERM SMCI--MB 00000001 INTL 00000001) [ 0.018464] ACPI: BERT 0x000000006F253000 000030 (v01 SUPERM SMCI--MB 00000001 INTL 00000001) [ 0.018468] ACPI: SSDT 0x000000006F252000 000859 (v02 INTEL ADDRXLAT 00000001 INTL 20210331) [ 0.018471] ACPI: MCFG 0x000000006F251000 00003C (v01 SUPERM SMCI--MB 01072009 MSFT 00000097) [ 0.018475] ACPI: BDAT 0x000000006F250000 000030 (v01 SUPERM SMCI--MB 00000000 INTL 20091013) [ 0.018478] ACPI: HPET 0x000000006F24F000 000038 (v01 SUPERM SMCI--MB 00000001 INTL 20091013) [ 0.018481] ACPI: MSCT 0x000000006F24E000 000090 (v01 SUPERM SMCI--MB 00000001 INTL 20091013) [ 0.018485] ACPI: WDDT 0x000000006F24D000 000040 (v01 SUPERM SMCI--MB 00000000 INTL 20091013) [ 0.018488] ACPI: APIC 0x000000006F24B000 0001DE (v05 SUPERM SMCI--MB 00000000 INTL 20091013) [ 0.018492] ACPI: SRAT 0x000000006F243000 007830 (v03 SUPERM SMCI--MB 00000002 AMI 01000013) [ 0.018495] ACPI: SLIT 0x000000006F242000 00002D (v01 SUPERM SMCI--MB 01072009 AMI 01000013) [ 0.018498] ACPI: HMAT 0x000000006F241000 0000F8 (v02 SUPERM SMCI--MB 01072009 AMI 01000013) [ 0.018502] ACPI: OEM4 0x000000006F0B9000 187A51 (v02 INTEL CPU CST 00003000 INTL 20210331) [ 0.018505] ACPI: OEM1 0x000000006EFA5000 113479 (v02 INTEL CPU EIST 00003000 INTL 20210331) [ 0.018509] ACPI: SSDT 0x000000006EF3B000 069895 (v02 INTEL SSDT PM 00004000 INTL 20210331) [ 0.018512] ACPI: SSDT 0x000000006EF3A000 0009F1 (v02 SUPERM SMCI--MB 00000000 INTL 20091013) [ 0.018516] ACPI: HEST 0x000000006EF39000 00013C (v01 SUPERM SMCI--MB 00000001 INTL 00000001) [ 0.018519] ACPI: DMAR 0x000000006EF38000 00022C (v01 SUPERM SMCI--MB 00000001 INTL 20091013) [ 0.018522] ACPI: FPDT 0x000000006EF37000 000044 (v01 SUPERM A M I 01072009 AMI 01000013) [ 0.018526] ACPI: PRMT 0x000000006EF36000 000138 (v00 SUPERM SMCI--MB 01072009 AMI 01000013) [ 0.018530] ACPI: SSDT 0x000000006EF2D000 0078BA (v02 INTEL SpsNm 00000002 INTL 20210331) [ 0.018533] ACPI: SSPD 0x000000006EF2C000 000107 (v01 SUPERM SMCSPD 00000000 SSPD 20230530) [ 0.018537] ACPI: SSDT 0x000000006EF22000 009424 (v01 SUPERM SMCCDN 00000000 INTL 20181221) [ 0.018540] ACPI: WSMT 0x000000006F24C000 000028 (v01 SUPERM SMCI--MB 01072009 AMI 00010013) [ 0.018543] ACPI: Reserving FACP table memory at [mem 0x6f32b000-0x6f32b113] [ 0.018545] ACPI: Reserving DSDT table memory at [mem 0x6f259000-0x6f328397] [ 0.018546] ACPI: Reserving FACS table memory at [mem 0x7293f000-0x7293f03f] [ 0.018547] ACPI: Reserving SPMI table memory at [mem 0x6f32a000-0x6f32a040] [ 0.018548] ACPI: Reserving SPMI table memory at [mem 0x6f329000-0x6f329040] [ 0.018549] ACPI: Reserving FIDT table memory at [mem 0x6f258000-0x6f25809b] [ 0.018550] ACPI: Reserving SSDT table memory at [mem 0x6f32d000-0x6f32d155] [ 0.018551] ACPI: Reserving SSDT table memory at [mem 0x6f32c000-0x6f32c144] [ 0.018552] ACPI: Reserving SSDT table memory at [mem 0x6f257000-0x6f2576f6] [ 0.018553] ACPI: Reserving SSDT table memory at [mem 0x6f256000-0x6f256405] [ 0.018553] ACPI: Reserving SSDT table memory at [mem 0x6f255000-0x6f255396] [ 0.018554] ACPI: Reserving ERST table memory at [mem 0x6f254000-0x6f25422f] [ 0.018555] ACPI: Reserving BERT table memory at [mem 0x6f253000-0x6f25302f] [ 0.018556] ACPI: Reserving SSDT table memory at [mem 0x6f252000-0x6f252858] [ 0.018557] ACPI: Reserving MCFG table memory at [mem 0x6f251000-0x6f25103b] [ 0.018558] ACPI: Reserving BDAT table memory at [mem 0x6f250000-0x6f25002f] [ 0.018559] ACPI: Reserving HPET table memory at [mem 0x6f24f000-0x6f24f037] [ 0.018560] ACPI: Reserving MSCT table memory at [mem 0x6f24e000-0x6f24e08f] [ 0.018561] ACPI: Reserving WDDT table memory at [mem 0x6f24d000-0x6f24d03f] [ 0.018562] ACPI: Reserving APIC table memory at [mem 0x6f24b000-0x6f24b1dd] [ 0.018563] ACPI: Reserving SRAT table memory at [mem 0x6f243000-0x6f24a82f] [ 0.018564] ACPI: Reserving SLIT table memory at [mem 0x6f242000-0x6f24202c] [ 0.018565] ACPI: Reserving HMAT table memory at [mem 0x6f241000-0x6f2410f7] [ 0.018566] ACPI: Reserving OEM4 table memory at [mem 0x6f0b9000-0x6f240a50] [ 0.018567] ACPI: Reserving OEM1 table memory at [mem 0x6efa5000-0x6f0b8478] [ 0.018568] ACPI: Reserving SSDT table memory at [mem 0x6ef3b000-0x6efa4894] [ 0.018569] ACPI: Reserving SSDT table memory at [mem 0x6ef3a000-0x6ef3a9f0] [ 0.018570] ACPI: Reserving HEST table memory at [mem 0x6ef39000-0x6ef3913b] [ 0.018571] ACPI: Reserving DMAR table memory at [mem 0x6ef38000-0x6ef3822b] [ 0.018572] ACPI: Reserving FPDT table memory at [mem 0x6ef37000-0x6ef37043] [ 0.018573] ACPI: Reserving PRMT table memory at [mem 0x6ef36000-0x6ef36137] [ 0.018574] ACPI: Reserving SSDT table memory at [mem 0x6ef2d000-0x6ef348b9] [ 0.018575] ACPI: Reserving SSPD table memory at [mem 0x6ef2c000-0x6ef2c106] [ 0.018576] ACPI: Reserving SSDT table memory at [mem 0x6ef22000-0x6ef2b423] [ 0.018577] ACPI: Reserving WSMT table memory at [mem 0x6f24c000-0x6f24c027] [ 0.018640] APIC: Switched APIC routing to: cluster x2apic [ 0.018748] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff] [ 0.018750] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x107fffffff] [ 0.018774] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x107fffffff] -> [mem 0x00001000-0x107fffffff] [ 0.018785] NODE_DATA(0) allocated [mem 0x107ffd42c0-0x107fffefff] [ 0.019227] Zone ranges: [ 0.019228] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.019231] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.019233] Normal [mem 0x0000000100000000-0x000000107fffffff] [ 0.019235] Device empty [ 0.019236] Movable zone start for each node [ 0.019240] Early memory node ranges [ 0.019241] node 0: [mem 0x0000000000001000-0x000000000009cfff] [ 0.019243] node 0: [mem 0x0000000000100000-0x000000006c92dfff] [ 0.019244] node 0: [mem 0x00000000777ff000-0x00000000777fffff] [ 0.019245] node 0: [mem 0x0000000100000000-0x000000107fffffff] [ 0.019254] Initmem setup node 0 [mem 0x0000000000001000-0x000000107fffffff] [ 0.019260] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.019283] On node 0, zone DMA: 99 pages in unavailable ranges [ 0.022500] On node 0, zone DMA32: 44753 pages in unavailable ranges [ 0.129126] On node 0, zone Normal: 2048 pages in unavailable ranges [ 0.129385] ACPI: PM-Timer IO Port: 0x508 [ 0.129398] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1]) [ 0.129401] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.129420] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23 [ 0.129423] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.129426] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.129431] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.129433] ACPI: HPET id: 0x8086a701 base: 0xfed00000 [ 0.129436] TSC deadline timer available [ 0.129442] CPU topo: Max. logical packages: 1 [ 0.129443] CPU topo: Max. logical dies: 1 [ 0.129444] CPU topo: Max. dies per package: 1 [ 0.129449] CPU topo: Max. threads per core: 2 [ 0.129451] CPU topo: Num. cores per package: 12 [ 0.129452] CPU topo: Num. threads per package: 24 [ 0.129452] CPU topo: Allowing 24 present CPUs plus 0 hotplug CPUs [ 0.129467] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.129470] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x000fffff] [ 0.129472] PM: hibernation: Registered nosave memory: [mem 0x6c92e000-0x777fefff] [ 0.129474] PM: hibernation: Registered nosave memory: [mem 0x77800000-0xffffffff] [ 0.129476] [mem 0x90000000-0xfe00ffff] available for PCI devices [ 0.129477] Booting paravirtualized kernel on bare hardware [ 0.129480] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns [ 0.129489] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:24 nr_cpu_ids:24 nr_node_ids:1 [ 0.131300] percpu: Embedded 84 pages/cpu s221184 r8192 d114688 u524288 [ 0.131308] pcpu-alloc: s221184 r8192 d114688 u524288 alloc=1*2097152 [ 0.131311] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 [ 0.131318] pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15 [ 0.131324] pcpu-alloc: [0] 16 17 18 19 [0] 20 21 22 23 [ 0.131350] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.17.0-35-generic root=UUID=68d96259-4e81-4dbe-9d4b-a3044b40112f ro quiet splash intel_iommu=on iommu=pt isolcpus=8-11,20-23 nohz_full=8-11,20-23 rcu_nocbs=8-11,20-23 default_hugepagesz=2M hugepagesz=2M hugepages=2048 vt.handoff=7 [ 0.131443] DMAR: IOMMU enabled [ 0.131588] Unknown kernel command line parameters "splash", will be passed to user space. [ 0.131600] random: crng init done [ 0.131601] printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes [ 0.138310] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear) [ 0.141675] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear) [ 0.142091] software IO TLB: area num 32. [ 0.155898] Fallback order for Node 0: 0 [ 0.155904] Built 1 zonelists, mobility grouping on. Total pages: 16697547 [ 0.155905] Policy zone: Normal [ 0.155914] mem auto-init: stack:all(zero), heap alloc:on, heap free:off [ 0.342309] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=1 [ 0.356697] ftrace: allocating 61417 entries in 240 pages [ 0.356699] ftrace: allocated 240 pages with 4 groups [ 0.357721] Dynamic Preempt: voluntary [ 0.357894] rcu: Preemptible hierarchical RCU implementation. [ 0.357895] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=24. [ 0.357897] Trampoline variant of Tasks RCU enabled. [ 0.357898] Rude variant of Tasks RCU enabled. [ 0.357898] Tracing variant of Tasks RCU enabled. [ 0.357899] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.357900] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24 [ 0.357920] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=24. [ 0.357923] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=24. [ 0.357928] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=24. [ 0.362398] NR_IRQS: 524544, nr_irqs: 616, preallocated irqs: 16 [ 0.362716] NO_HZ: Full dynticks CPUs: 8-11,20-23. [ 0.362720] rcu: Offload RCU callbacks from CPUs: 8-11,20-23. [ 0.362724] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.362899] Console: colour dummy device 80x25 [ 0.362903] printk: legacy console [tty0] enabled [ 0.362970] ACPI: Core revision 20250404 [ 0.366903] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 76450417870 ns [ 0.366956] APIC: Switch to symmetric I/O mode setup [ 0.366958] DMAR: Host address width 46 [ 0.366960] DMAR: DRHD base: 0x000000983fc000 flags: 0x0 [ 0.366970] DMAR: dmar0: reg_base_addr 983fc000 ver 6:0 cap 9ed008c40780466 ecap 3ee9e86f050df [ 0.366973] DMAR: DRHD base: 0x000000b73fc000 flags: 0x0 [ 0.366977] DMAR: dmar1: reg_base_addr b73fc000 ver 6:0 cap 9ed008c40780466 ecap 3ee9e86f050df [ 0.366980] DMAR: DRHD base: 0x000000d27fc000 flags: 0x0 [ 0.366984] DMAR: dmar2: reg_base_addr d27fc000 ver 6:0 cap 9ed008c40780466 ecap 3ee9e86f050df [ 0.366986] DMAR: DRHD base: 0x000000e6bfc000 flags: 0x0 [ 0.366994] DMAR: dmar3: reg_base_addr e6bfc000 ver 6:0 cap 9ed008c40780466 ecap 3ee9e86f050df [ 0.366996] DMAR: DRHD base: 0x000000faffc000 flags: 0x0 [ 0.367000] DMAR: dmar4: reg_base_addr faffc000 ver 6:0 cap 9ed008c40780466 ecap 3ee9e86f050df [ 0.367002] DMAR: DRHD base: 0x000000fb7fc000 flags: 0x0 [ 0.367008] DMAR: dmar5: reg_base_addr fb7fc000 ver 6:0 cap 9ed008c40780466 ecap 3ef9ea6f050df [ 0.367010] DMAR: DRHD base: 0x000000953fc000 flags: 0x1 [ 0.367014] DMAR: dmar6: reg_base_addr 953fc000 ver 6:0 cap 9ed008c40780466 ecap 3ee9e86f050df [ 0.367016] DMAR: RMRR base: 0x00000076edb000 end: 0x00000076efdfff [ 0.367019] DMAR: RMRR base: 0x000000748b6000 end: 0x00000074afffff [ 0.367021] DMAR: ATSR flags: 0x0 [ 0.367024] DMAR: RHSA base: 0x000000953fc000 proximity domain: 0x0 [ 0.367025] DMAR: RHSA base: 0x000000983fc000 proximity domain: 0x0 [ 0.367027] DMAR: RHSA base: 0x000000b73fc000 proximity domain: 0x0 [ 0.367028] DMAR: RHSA base: 0x000000d27fc000 proximity domain: 0x0 [ 0.367029] DMAR: RHSA base: 0x000000e6bfc000 proximity domain: 0x0 [ 0.367030] DMAR: RHSA base: 0x000000faffc000 proximity domain: 0x0 [ 0.367031] DMAR: RHSA base: 0x000000fb7fc000 proximity domain: 0x0 [ 0.367032] DMAR: SATC flags: 0x0 [ 0.367035] DMAR-IR: IOAPIC id 8 under DRHD base 0x953fc000 IOMMU 6 [ 0.367037] DMAR-IR: HPET id 0 under DRHD base 0x953fc000 [ 0.367039] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping. [ 0.368772] DMAR-IR: Enabled IRQ remapping in x2apic mode [ 0.369577] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.373931] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x39a85c9bff6, max_idle_ns: 881590591483 ns [ 0.373938] Calibrating delay loop (skipped), value calculated using timer frequency.. 4000.00 BogoMIPS (lpj=2000000) [ 0.374025] x86/cpu: SGX disabled or unsupported by BIOS. [ 0.374035] CPU0: Thermal monitoring enabled (TM1) [ 0.374038] x86/cpu: User Mode Instruction Prevention (UMIP) activated [ 0.374368] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 [ 0.374370] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 [ 0.374378] process: using mwait in idle threads [ 0.374380] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto [ 0.374389] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl [ 0.374392] Spectre V2 : Mitigation: Enhanced / Automatic IBRS [ 0.374393] VMSCAPE: Mitigation: IBPB before exit to userspace [ 0.374394] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.374396] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT [ 0.374398] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.374428] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.374430] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.374432] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.374433] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask' [ 0.374434] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256' [ 0.374435] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256' [ 0.374436] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers' [ 0.374438] x86/fpu: Supporting XSAVE feature 0x400: 'PASID state' [ 0.374439] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers' [ 0.374440] x86/fpu: Supporting XSAVE feature 0x1000: 'Control-flow Kernel registers (KVM only)' [ 0.374441] x86/fpu: Supporting XSAVE feature 0x20000: 'AMX Tile config' [ 0.374443] x86/fpu: Supporting XSAVE feature 0x40000: 'AMX Tile data' [ 0.374444] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.374446] x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64 [ 0.374447] x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512 [ 0.374449] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024 [ 0.374450] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8 [ 0.374452] x86/fpu: xstate_offset[10]: 2440, xstate_sizes[10]: 8 [ 0.374453] x86/fpu: xstate_offset[11]: 2448, xstate_sizes[11]: 16 [ 0.374455] x86/fpu: xstate_offset[12]: 2464, xstate_sizes[12]: 24 [ 0.374456] x86/fpu: xstate_offset[17]: 2496, xstate_sizes[17]: 64 [ 0.374457] x86/fpu: xstate_offset[18]: 2560, xstate_sizes[18]: 8192 [ 0.374459] x86/fpu: Enabled xstate features 0x61ee7, context size is 10752 bytes, using 'compacted' format. [ 0.408236] Freeing SMP alternatives memory: 52K [ 0.408240] pid_max: default: 32768 minimum: 301 [ 0.408317] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm [ 0.408338] landlock: Up and running. [ 0.408339] Yama: becoming mindful. [ 0.408374] AppArmor: AppArmor initialized [ 0.408536] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.408651] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.409239] smpboot: CPU0: Intel(R) Xeon(R) Silver 4410Y (family: 0x6, model: 0x8f, stepping: 0x8) [ 0.409467] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Sapphire Rapids events, 32-deep LBR, full-width counters, Intel PMU driver. [ 0.409527] ... version: 5 [ 0.409528] ... bit width: 48 [ 0.409529] ... generic registers: 8 [ 0.409530] ... value mask: 0000ffffffffffff [ 0.409532] ... max period: 00007fffffffffff [ 0.409533] ... fixed-purpose events: 4 [ 0.409533] ... event mask: 0001000f000000ff [ 0.409848] signal: max sigframe size: 11952 [ 0.409866] Estimated ratio of average max frequency by base frequency (times 1024): 1536 [ 0.413307] rcu: Hierarchical SRCU implementation. [ 0.413309] rcu: Max phase no-delay instances is 400. [ 0.413399] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level [ 0.413701] watchdog: Disabling watchdog on nohz_full cores by default [ 0.415031] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. [ 0.415265] smp: Bringing up secondary CPUs ... [ 0.415402] smpboot: x86: Booting SMP configuration: [ 0.415404] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 [ 0.452996] smp: Brought up 1 node, 24 CPUs [ 0.452996] smpboot: Total of 24 processors activated (96000.00 BogoMIPS) [ 0.454163] Memory: 65388824K/66790188K available (22221K kernel code, 4652K rwdata, 16296K rodata, 5264K init, 4212K bss, 1350312K reserved, 0K cma-reserved) [ 0.456375] devtmpfs: initialized [ 0.456375] x86/mm: Memory block size: 2048MB [ 0.457770] ACPI: PM: Registering ACPI NVS region [mem 0x6f32e000-0x72940fff] (56700928 bytes) [ 0.458460] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 0.458460] posixtimers hash table entries: 16384 (order: 6, 262144 bytes, linear) [ 0.458460] futex hash table entries: 8192 (524288 bytes on 1 NUMA nodes, total 512 KiB, linear). [ 0.458460] pinctrl core: initialized pinctrl subsystem [ 0.458937] PM: RTC time: 02:34:53, date: 2026-07-24 [ 0.459544] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.460180] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations [ 0.460611] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.461049] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.461061] audit: initializing netlink subsys (disabled) [ 0.461068] audit: type=2000 audit(1784860493.094:1): state=initialized audit_enabled=0 res=1 [ 0.461088] thermal_sys: Registered thermal governor 'fair_share' [ 0.461090] thermal_sys: Registered thermal governor 'bang_bang' [ 0.461092] thermal_sys: Registered thermal governor 'step_wise' [ 0.461093] thermal_sys: Registered thermal governor 'user_space' [ 0.461094] thermal_sys: Registered thermal governor 'power_allocator' [ 0.461118] cpuidle: using governor ladder [ 0.461127] cpuidle: using governor menu [ 0.461216] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 0.461216] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.461216] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff] [ 0.461216] PCI: Using configuration type 1 for base access [ 0.461948] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [ 0.792610] HugeTLB: allocation took 314ms with hugepage_allocation_threads=6 [ 0.792626] HugeTLB: registered 2.00 MiB page size, pre-allocated 2048 pages [ 0.792628] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [ 0.792630] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.792631] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page [ 0.795270] Failed to find VA of handler for GUID: 77CFBB8C-8F09-4C3B-B7E8-103A65101C60, PA: 0x77725204 [ 0.795273] Failed to find VA of handler for GUID: 5402385F-F04B-44D8-984C-BEF829AC2AE0, PA: 0x7772526c [ 0.795275] Failed to find VA of handler for GUID: F6A58D47-E04F-4F5A-86B8-2A50D4AA109B, PA: 0x777252a8 [ 0.795277] Failed to find VA of handler for GUID: 1DE4055D-D2F3-4E11-B7D9-7D6C19173FEE, PA: 0x776ec4ac [ 0.795281] PRM: found 2 modules [ 0.795283] PRM: EFI runtime services unavailable [ 0.795306] ACPI: Added _OSI(Module Device) [ 0.795308] ACPI: Added _OSI(Processor Device) [ 0.795309] ACPI: Added _OSI(Processor Aggregator Device) [ 1.092496] ACPI: 11 ACPI AML tables successfully acquired and loaded [ 1.113830] ACPI: Dynamic OEM Table Load: [ 1.362619] ACPI: Dynamic OEM Table Load: [ 1.758066] ACPI: Interpreter enabled [ 1.758111] ACPI: PM: (supports S0 S5) [ 1.758113] ACPI: Using IOAPIC for interrupt routing [ 1.773993] HEST: Table parsing has been initialized. [ 1.774141] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC. [ 1.774144] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 1.774146] PCI: Ignoring E820 reservations for host bridge windows [ 1.800000] ACPI: Enabled 2 GPEs in block 00 to 7F [ 1.971638] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-15]) [ 1.971646] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 1.972907] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC] [ 1.973133] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability] [ 1.973134] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.973964] PCI host bridge to bus 0000:00 [ 1.973968] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 1.973971] pci_bus 0000:00: root bus resource [io 0x1000-0x57ff window] [ 1.973972] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 1.973974] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cffff window] [ 1.973976] pci_bus 0000:00: root bus resource [mem 0xfe010000-0xfe010fff window] [ 1.973977] pci_bus 0000:00: root bus resource [mem 0x90040000-0x953fffff window] [ 1.973979] pci_bus 0000:00: root bus resource [mem 0x200000000000-0x203fffffffff window] [ 1.973981] pci_bus 0000:00: root bus resource [bus 00-15] [ 1.974001] pci 0000:00:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.974110] pci 0000:00:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.974198] pci 0000:00:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.974290] pci 0000:00:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector [ 1.974480] pci 0000:00:0b.0: [8086:1bbb] type 01 class 0x060400 PCIe Root Port [ 1.974506] pci 0000:00:0b.0: BAR 0 [mem 0x203ffff40000-0x203ffff5ffff 64bit] [ 1.974511] pci 0000:00:0b.0: PCI bridge to [bus 01-02] [ 1.974516] pci 0000:00:0b.0: bridge window [io 0x4000-0x4fff] [ 1.974519] pci 0000:00:0b.0: bridge window [mem 0x94000000-0x950fffff] [ 1.974540] pci 0000:00:0b.0: enabling Extended Tags [ 1.974594] pci 0000:00:0b.0: PME# supported from D0 D3hot D3cold [ 1.975381] pci 0000:00:14.0: [8086:1bcd] type 00 class 0x0c0330 conventional PCI endpoint [ 1.975427] pci 0000:00:14.0: BAR 0 [mem 0x203ffff60000-0x203ffff6ffff 64bit] [ 1.975480] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 1.975795] pci 0000:00:14.2: [8086:1bce] type 00 class 0x050000 conventional PCI endpoint [ 1.975850] pci 0000:00:14.2: BAR 0 [mem 0x203ffff70000-0x203ffff73fff 64bit] [ 1.975855] pci 0000:00:14.2: BAR 2 [mem 0x203ffff79000-0x203ffff79fff 64bit] [ 1.975950] pci 0000:00:14.4: [8086:1bfe] type 00 class 0x060000 PCIe Root Complex Integrated Endpoint [ 1.976141] pci 0000:00:15.0: [8086:1bff] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.976200] pci 0000:00:15.0: BAR 0 [mem 0x203ffff78000-0x203ffff783ff 64bit] [ 1.976358] pci 0000:00:16.0: [8086:1be0] type 00 class 0x078000 conventional PCI endpoint [ 1.976417] pci 0000:00:16.0: BAR 0 [mem 0x203ffff77000-0x203ffff77fff 64bit] [ 1.976476] pci 0000:00:16.0: PME# supported from D3hot [ 1.976568] pci 0000:00:16.1: [8086:1be1] type 00 class 0x078000 conventional PCI endpoint [ 1.976627] pci 0000:00:16.1: BAR 0 [mem 0x203ffff76000-0x203ffff76fff 64bit] [ 1.976687] pci 0000:00:16.1: PME# supported from D3hot [ 1.976781] pci 0000:00:16.4: [8086:1be4] type 00 class 0x078000 conventional PCI endpoint [ 1.976841] pci 0000:00:16.4: BAR 0 [mem 0x203ffff75000-0x203ffff75fff 64bit] [ 1.976899] pci 0000:00:16.4: PME# supported from D3hot [ 1.976992] pci 0000:00:17.0: [8086:1ba2] type 00 class 0x010601 conventional PCI endpoint [ 1.977038] pci 0000:00:17.0: BAR 0 [mem 0x95302000-0x95303fff] [ 1.977040] pci 0000:00:17.0: BAR 1 [mem 0x95308000-0x953080ff] [ 1.977043] pci 0000:00:17.0: BAR 2 [io 0x5090-0x5097] [ 1.977046] pci 0000:00:17.0: BAR 3 [io 0x5080-0x5083] [ 1.977048] pci 0000:00:17.0: BAR 4 [io 0x5040-0x505f] [ 1.977051] pci 0000:00:17.0: BAR 5 [mem 0x95307000-0x953077ff] [ 1.977093] pci 0000:00:17.0: PME# supported from D3hot [ 1.977601] pci 0000:00:18.0: [8086:1bf2] type 00 class 0x010601 conventional PCI endpoint [ 1.977646] pci 0000:00:18.0: BAR 0 [mem 0x95300000-0x95301fff] [ 1.977649] pci 0000:00:18.0: BAR 1 [mem 0x95306000-0x953060ff] [ 1.977651] pci 0000:00:18.0: BAR 2 [io 0x5070-0x5077] [ 1.977654] pci 0000:00:18.0: BAR 3 [io 0x5060-0x5063] [ 1.977656] pci 0000:00:18.0: BAR 4 [io 0x5020-0x503f] [ 1.977659] pci 0000:00:18.0: BAR 5 [mem 0x95305000-0x953057ff] [ 1.977701] pci 0000:00:18.0: PME# supported from D3hot [ 1.978217] pci 0000:00:1a.0: [8086:1bb4] type 01 class 0x060400 PCIe Root Port [ 1.978242] pci 0000:00:1a.0: BAR 0 [mem 0x203ffff20000-0x203ffff3ffff 64bit] [ 1.978246] pci 0000:00:1a.0: PCI bridge to [bus 03] [ 1.978250] pci 0000:00:1a.0: bridge window [io 0x3000-0x3fff] [ 1.978254] pci 0000:00:1a.0: bridge window [mem 0x95200000-0x952fffff] [ 1.978275] pci 0000:00:1a.0: enabling Extended Tags [ 1.978327] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 1.979090] pci 0000:00:1b.0: [8086:1bb5] type 01 class 0x060400 PCIe Root Port [ 1.979115] pci 0000:00:1b.0: BAR 0 [mem 0x203ffff00000-0x203ffff1ffff 64bit] [ 1.979119] pci 0000:00:1b.0: PCI bridge to [bus 04] [ 1.979123] pci 0000:00:1b.0: bridge window [io 0x2000-0x2fff] [ 1.979127] pci 0000:00:1b.0: bridge window [mem 0x95100000-0x951fffff] [ 1.979147] pci 0000:00:1b.0: enabling Extended Tags [ 1.979199] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 1.979949] pci 0000:00:1f.0: [8086:1b81] type 00 class 0x060100 conventional PCI endpoint [ 1.980181] pci 0000:00:1f.4: [8086:1bc9] type 00 class 0x0c0500 conventional PCI endpoint [ 1.980246] pci 0000:00:1f.4: BAR 0 [mem 0x203ffff74000-0x203ffff740ff 64bit] [ 1.980253] pci 0000:00:1f.4: BAR 4 [io 0x5000-0x501f] [ 1.980403] pci 0000:00:1f.5: [8086:1bca] type 00 class 0x0c8000 conventional PCI endpoint [ 1.980462] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff] [ 1.980465] pci 0000:00:1f.5: BAR 1 [mem 0x92000000-0x93ffffff] [ 1.980604] pci 0000:01:00.0: [1a03:1150] type 01 class 0x060400 PCIe to PCI/PCI-X bridge [ 1.980641] pci 0000:01:00.0: PCI bridge to [bus 02] [ 1.980650] pci 0000:01:00.0: bridge window [io 0x4000-0x4fff] [ 1.980654] pci 0000:01:00.0: bridge window [mem 0x94000000-0x950fffff] [ 1.980685] pci 0000:01:00.0: enabling Extended Tags [ 1.980771] pci 0000:01:00.0: supports D1 D2 [ 1.980772] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 1.980919] pci 0000:00:0b.0: PCI bridge to [bus 01-02] [ 1.980974] pci_bus 0000:02: extended config space not accessible [ 1.980997] pci 0000:02:00.0: [1a03:2000] type 00 class 0x030000 conventional PCI endpoint [ 1.981055] pci 0000:02:00.0: BAR 0 [mem 0x94000000-0x94ffffff] [ 1.981058] pci 0000:02:00.0: BAR 1 [mem 0x95000000-0x9503ffff] [ 1.981061] pci 0000:02:00.0: BAR 2 [io 0x4000-0x407f] [ 1.981085] pci 0000:02:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 1.981126] pci 0000:02:00.0: supports D1 D2 [ 1.981127] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 1.981243] pci 0000:01:00.0: PCI bridge to [bus 02] [ 1.981354] pci 0000:03:00.0: working around ROM BAR overlap defect [ 1.981356] pci 0000:03:00.0: [8086:1533] type 00 class 0x020000 PCIe Endpoint [ 1.981433] pci 0000:03:00.0: BAR 0 [mem 0x95200000-0x9527ffff] [ 1.981439] pci 0000:03:00.0: BAR 2 [io 0x3000-0x301f] [ 1.981443] pci 0000:03:00.0: BAR 3 [mem 0x95280000-0x95283fff] [ 1.981567] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold [ 1.981744] pci 0000:00:1a.0: PCI bridge to [bus 03] [ 1.981837] pci 0000:04:00.0: working around ROM BAR overlap defect [ 1.981838] pci 0000:04:00.0: [8086:1533] type 00 class 0x020000 PCIe Endpoint [ 1.981916] pci 0000:04:00.0: BAR 0 [mem 0x95100000-0x9517ffff] [ 1.981921] pci 0000:04:00.0: BAR 2 [io 0x2000-0x201f] [ 1.981925] pci 0000:04:00.0: BAR 3 [mem 0x95180000-0x95183fff] [ 1.982047] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold [ 1.982217] pci 0000:00:1b.0: PCI bridge to [bus 04] [ 1.982245] pci_bus 0000:00: on NUMA node 0 [ 1.983160] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 16-41]) [ 1.983165] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 1.984971] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC] [ 1.985473] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] [ 1.985475] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.985684] PCI host bridge to bus 0000:16 [ 1.985687] pci_bus 0000:16: root bus resource [io 0x5800-0x6fff window] [ 1.985689] pci_bus 0000:16: root bus resource [mem 0x95400000-0x983fffff window] [ 1.985691] pci_bus 0000:16: root bus resource [mem 0x204000000000-0x207fffffffff window] [ 1.985692] pci_bus 0000:16: root bus resource [bus 16-41] [ 1.985704] pci 0000:16:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.985796] pci 0000:16:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.985880] pci 0000:16:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.985966] pci 0000:16:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector [ 1.986121] pci 0000:16:01.0: [8086:352a] type 01 class 0x060400 PCIe Root Port [ 1.986138] pci 0000:16:01.0: BAR 0 [mem 0x207ffff00000-0x207ffff1ffff 64bit] [ 1.986141] pci 0000:16:01.0: PCI bridge to [bus 17-1c] [ 1.986146] pci 0000:16:01.0: bridge window [mem 0x98200000-0x982fffff] [ 1.986159] pci 0000:16:01.0: enabling Extended Tags [ 1.986211] pci 0000:16:01.0: PME# supported from D0 D3hot D3cold [ 1.986238] pci 0000:16:01.0: PTM enabled (root), 2ns granularity [ 1.986893] pci 0000:17:00.0: [12d8:c008] type 01 class 0x060400 PCIe Switch Upstream Port [ 1.986914] pci 0000:17:00.0: BAR 0 [mem 0x98200000-0x9827ffff] [ 1.986918] pci 0000:17:00.0: PCI bridge to [bus 18-1c] [ 1.987015] pci 0000:17:00.0: PME# supported from D0 D3hot D3cold [ 1.987156] pci 0000:16:01.0: PCI bridge to [bus 17-1c] [ 1.987214] pci 0000:18:04.0: [12d8:c008] type 01 class 0x060400 PCIe Switch Downstream Port [ 1.987238] pci 0000:18:04.0: PCI bridge to [bus 19] [ 1.987332] pci 0000:18:04.0: PME# supported from D0 D3hot D3cold [ 1.987449] pci 0000:18:05.0: [12d8:c008] type 01 class 0x060400 PCIe Switch Downstream Port [ 1.987472] pci 0000:18:05.0: PCI bridge to [bus 1a] [ 1.987566] pci 0000:18:05.0: PME# supported from D0 D3hot D3cold [ 1.987679] pci 0000:18:06.0: [12d8:c008] type 01 class 0x060400 PCIe Switch Downstream Port [ 1.987702] pci 0000:18:06.0: PCI bridge to [bus 1b] [ 1.987795] pci 0000:18:06.0: PME# supported from D0 D3hot D3cold [ 1.987911] pci 0000:18:07.0: [12d8:c008] type 01 class 0x060400 PCIe Switch Downstream Port [ 1.987935] pci 0000:18:07.0: PCI bridge to [bus 1c] [ 1.988029] pci 0000:18:07.0: PME# supported from D0 D3hot D3cold [ 1.988147] pci 0000:17:00.0: PCI bridge to [bus 18-1c] [ 1.988189] pci 0000:18:04.0: PCI bridge to [bus 19] [ 1.988231] pci 0000:18:05.0: PCI bridge to [bus 1a] [ 1.988274] pci 0000:18:06.0: PCI bridge to [bus 1b] [ 1.988316] pci 0000:18:07.0: PCI bridge to [bus 1c] [ 1.988357] pci_bus 0000:16: on NUMA node 0 [ 1.988533] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 42-6d]) [ 1.988537] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 1.990282] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC] [ 1.990784] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] [ 1.990786] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.990990] PCI host bridge to bus 0000:42 [ 1.990993] pci_bus 0000:42: root bus resource [io 0x7000-0x9fff window] [ 1.990995] pci_bus 0000:42: root bus resource [mem 0x98400000-0xb73fffff window] [ 1.990997] pci_bus 0000:42: root bus resource [mem 0x208000000000-0x20bfffffffff window] [ 1.990999] pci_bus 0000:42: root bus resource [bus 42-6d] [ 1.991010] pci 0000:42:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.991097] pci 0000:42:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.991180] pci 0000:42:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.991267] pci 0000:42:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector [ 1.991420] pci_bus 0000:42: on NUMA node 0 [ 1.991590] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus 6e-99]) [ 1.991594] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 1.993368] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC] [ 1.993868] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] [ 1.993870] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.994073] PCI host bridge to bus 0000:6e [ 1.994075] pci_bus 0000:6e: root bus resource [io 0xa000-0xbfff window] [ 1.994077] pci_bus 0000:6e: root bus resource [mem 0xb7400000-0xd27fffff window] [ 1.994079] pci_bus 0000:6e: root bus resource [mem 0x20c000000000-0x20ffffffffff window] [ 1.994081] pci_bus 0000:6e: root bus resource [bus 6e-99] [ 1.994091] pci 0000:6e:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.994177] pci 0000:6e:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.994262] pci 0000:6e:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.994350] pci 0000:6e:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector [ 1.994503] pci 0000:6e:05.0: [8086:352c] type 01 class 0x060400 PCIe Root Port [ 1.994520] pci 0000:6e:05.0: BAR 0 [mem 0x20fffff00000-0x20fffff1ffff 64bit] [ 1.994523] pci 0000:6e:05.0: PCI bridge to [bus 6f] [ 1.994528] pci 0000:6e:05.0: bridge window [mem 0xd2600000-0xd26fffff] [ 1.994541] pci 0000:6e:05.0: enabling Extended Tags [ 1.994591] pci 0000:6e:05.0: PME# supported from D0 D3hot D3cold [ 1.994619] pci 0000:6e:05.0: PTM enabled (root), 2ns granularity [ 1.995266] pci 0000:6f:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint [ 1.995306] pci 0000:6f:00.0: BAR 0 [mem 0xd2600000-0xd2603fff 64bit] [ 1.995440] pci 0000:6f:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x4 link at 0000:6e:05.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link) [ 1.995512] pci 0000:6e:05.0: PCI bridge to [bus 6f] [ 1.995524] pci_bus 0000:6e: on NUMA node 0 [ 1.995697] ACPI: PCI Root Bridge [PC04] (domain 0000 [bus 9a-c5]) [ 1.995700] acpi PNP0A08:04: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 1.997658] acpi PNP0A08:04: _OSC: platform does not support [SHPCHotplug AER DPC] [ 1.998170] acpi PNP0A08:04: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] [ 1.998172] acpi PNP0A08:04: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.998378] PCI host bridge to bus 0000:9a [ 1.998381] pci_bus 0000:9a: root bus resource [io 0xc000-0xdfff window] [ 1.998382] pci_bus 0000:9a: root bus resource [mem 0xd2800000-0xe6bfffff window] [ 1.998384] pci_bus 0000:9a: root bus resource [mem 0x210000000000-0x213fffffffff window] [ 1.998386] pci_bus 0000:9a: root bus resource [bus 9a-c5] [ 1.998397] pci 0000:9a:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.998485] pci 0000:9a:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.998570] pci 0000:9a:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 1.998656] pci 0000:9a:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector [ 1.998813] pci 0000:9a:01.0: [8086:352a] type 01 class 0x060400 PCIe Root Port [ 1.998832] pci 0000:9a:01.0: BAR 0 [mem 0x213ffff60000-0x213ffff7ffff 64bit] [ 1.998835] pci 0000:9a:01.0: PCI bridge to [bus 9b] [ 1.998839] pci 0000:9a:01.0: bridge window [mem 0xe6a00000-0xe6afffff] [ 1.998854] pci 0000:9a:01.0: enabling Extended Tags [ 1.998913] pci 0000:9a:01.0: PME# supported from D0 D3hot D3cold [ 1.998946] pci 0000:9a:01.0: PTM enabled (root), 2ns granularity [ 1.999404] pci 0000:9a:03.0: [8086:352b] type 01 class 0x060400 PCIe Root Port [ 1.999422] pci 0000:9a:03.0: BAR 0 [mem 0x213ffff40000-0x213ffff5ffff 64bit] [ 1.999425] pci 0000:9a:03.0: PCI bridge to [bus 9c] [ 1.999430] pci 0000:9a:03.0: bridge window [mem 0xe6900000-0xe69fffff] [ 1.999445] pci 0000:9a:03.0: enabling Extended Tags [ 1.999503] pci 0000:9a:03.0: PME# supported from D0 D3hot D3cold [ 1.999534] pci 0000:9a:03.0: PTM enabled (root), 2ns granularity [ 1.999979] pci 0000:9a:05.0: [8086:352c] type 01 class 0x060400 PCIe Root Port [ 1.999998] pci 0000:9a:05.0: BAR 0 [mem 0x213ffff20000-0x213ffff3ffff 64bit] [ 2.000001] pci 0000:9a:05.0: PCI bridge to [bus 9d] [ 2.000005] pci 0000:9a:05.0: bridge window [mem 0xe6800000-0xe68fffff] [ 2.000019] pci 0000:9a:05.0: enabling Extended Tags [ 2.000077] pci 0000:9a:05.0: PME# supported from D0 D3hot D3cold [ 2.000109] pci 0000:9a:05.0: PTM enabled (root), 2ns granularity [ 2.000549] pci 0000:9a:07.0: [8086:352d] type 01 class 0x060400 PCIe Root Port [ 2.000567] pci 0000:9a:07.0: BAR 0 [mem 0x213ffff00000-0x213ffff1ffff 64bit] [ 2.000570] pci 0000:9a:07.0: PCI bridge to [bus 9e] [ 2.000574] pci 0000:9a:07.0: bridge window [mem 0xe6700000-0xe67fffff] [ 2.000589] pci 0000:9a:07.0: enabling Extended Tags [ 2.000647] pci 0000:9a:07.0: PME# supported from D0 D3hot D3cold [ 2.000678] pci 0000:9a:07.0: PTM enabled (root), 2ns granularity [ 2.001290] pci 0000:9a:01.0: PCI bridge to [bus 9b] [ 2.001465] pci 0000:9a:03.0: PCI bridge to [bus 9c] [ 2.001642] pci 0000:9a:05.0: PCI bridge to [bus 9d] [ 2.001816] pci 0000:9a:07.0: PCI bridge to [bus 9e] [ 2.001839] pci_bus 0000:9a: on NUMA node 0 [ 2.002016] ACPI: PCI Root Bridge [PC05] (domain 0000 [bus c6-f1]) [ 2.002019] acpi PNP0A08:05: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 2.003732] acpi PNP0A08:05: _OSC: platform does not support [SHPCHotplug AER DPC] [ 2.004239] acpi PNP0A08:05: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] [ 2.004241] acpi PNP0A08:05: FADT indicates ASPM is unsupported, using BIOS configuration [ 2.004440] PCI host bridge to bus 0000:c6 [ 2.004442] pci_bus 0000:c6: root bus resource [io 0xe000-0xffff window] [ 2.004444] pci_bus 0000:c6: root bus resource [mem 0xe6c00000-0xfaffffff window] [ 2.004446] pci_bus 0000:c6: root bus resource [mem 0x214000000000-0x217fffffffff window] [ 2.004448] pci_bus 0000:c6: root bus resource [bus c6-f1] [ 2.004459] pci 0000:c6:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.004546] pci 0000:c6:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.004629] pci 0000:c6:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.004716] pci 0000:c6:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector [ 2.004868] pci_bus 0000:c6: on NUMA node 0 [ 2.005098] ACPI: PCI Root Bridge [DI08] (domain 0000 [bus f2-fa]) [ 2.005101] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 2.006117] acpi PNP0A08:07: _OSC: platform does not support [SHPCHotplug AER DPC] [ 2.006256] acpi PNP0A08:07: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] [ 2.006257] acpi PNP0A08:07: FADT indicates ASPM is unsupported, using BIOS configuration [ 2.006361] PCI host bridge to bus 0000:f2 [ 2.006364] pci_bus 0000:f2: root bus resource [mem 0xfb000000-0xfb7fffff window] [ 2.006366] pci_bus 0000:f2: root bus resource [mem 0x218000000000-0x21bfffffffff window] [ 2.006368] pci_bus 0000:f2: root bus resource [bus f2-fa] [ 2.006378] pci 0000:f2:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.006466] pci 0000:f2:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.006550] pci 0000:f2:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.006634] pci 0000:f2:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector [ 2.006757] pci 0000:f2:01.0: [8086:0b25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.006783] pci 0000:f2:01.0: BAR 0 [mem 0x21bffff20000-0x21bffff2ffff 64bit pref] [ 2.006786] pci 0000:f2:01.0: BAR 2 [mem 0x21bffff00000-0x21bffff1ffff 64bit pref] [ 2.006905] pci 0000:f2:03.0: [8086:09a6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.006934] pci 0000:f2:03.0: BAR 0 [mem 0xfb600000-0xfb6fffff] [ 2.007011] pci 0000:f2:03.1: [8086:09a7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.007039] pci 0000:f2:03.1: BAR 0 [mem 0xfb740000-0xfb741fff] [ 2.007042] pci 0000:f2:03.1: BAR 1 [mem 0xfb700000-0xfb73ffff] [ 2.007152] pci_bus 0000:f2: on NUMA node 0 [ 2.008596] ACPI: PCI Root Bridge [UB00] (domain 0000 [bus fe]) [ 2.008599] acpi PNP0A08:23: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 2.008703] acpi PNP0A08:23: _OSC: platform does not support [SHPCHotplug AER LTR DPC] [ 2.008893] acpi PNP0A08:23: _OSC: OS now controls [PCIeHotplug PME PCIeCapability] [ 2.008894] acpi PNP0A08:23: FADT indicates ASPM is unsupported, using BIOS configuration [ 2.009009] PCI host bridge to bus 0000:fe [ 2.009012] pci_bus 0000:fe: root bus resource [bus fe] [ 2.009021] pci 0000:fe:00.0: [8086:3250] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.009117] pci 0000:fe:00.1: [8086:3251] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.009193] pci 0000:fe:00.2: [8086:3252] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.009268] pci 0000:fe:00.3: [8086:0998] type 00 class 0x060000 PCIe Root Complex Integrated Endpoint [ 2.009363] pci 0000:fe:00.5: [8086:3255] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.009445] pci 0000:fe:01.0: [8086:3240] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.009566] pci 0000:fe:01.1: [8086:3241] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.009675] pci 0000:fe:01.2: [8086:3242] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.009795] pci 0000:fe:02.0: [8086:3240] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.009929] pci 0000:fe:02.1: [8086:3241] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.010055] pci 0000:fe:02.2: [8086:3242] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.010180] pci 0000:fe:05.0: [8086:3245] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.010286] pci 0000:fe:05.1: [8086:3246] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.010392] pci 0000:fe:05.2: [8086:3247] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.010503] pci 0000:fe:06.0: [8086:3245] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.010622] pci 0000:fe:06.1: [8086:3246] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.010741] pci 0000:fe:06.2: [8086:3247] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.010864] pci 0000:fe:07.0: [8086:3245] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.010991] pci 0000:fe:07.1: [8086:3246] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.011113] pci 0000:fe:07.2: [8086:3247] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.011241] pci 0000:fe:0c.0: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint [ 2.011361] pci 0000:fe:0d.0: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint [ 2.011489] pci 0000:fe:0e.0: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint [ 2.011615] pci 0000:fe:0f.0: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint [ 2.011750] pci 0000:fe:1a.0: [8086:2880] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint [ 2.011874] pci 0000:fe:1b.0: [8086:2880] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint [ 2.012007] pci 0000:fe:1c.0: [8086:2880] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint [ 2.012133] pci 0000:fe:1d.0: [8086:2880] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint [ 2.012256] pci_bus 0000:fe: on NUMA node 0 [ 2.012332] ACPI: PCI Root Bridge [UB01] (domain 0000 [bus ff]) [ 2.012335] acpi PNP0A08:24: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 2.012440] acpi PNP0A08:24: _OSC: platform does not support [SHPCHotplug AER LTR DPC] [ 2.012630] acpi PNP0A08:24: _OSC: OS now controls [PCIeHotplug PME PCIeCapability] [ 2.012632] acpi PNP0A08:24: FADT indicates ASPM is unsupported, using BIOS configuration [ 2.012744] PCI host bridge to bus 0000:ff [ 2.012747] pci_bus 0000:ff: root bus resource [bus ff] [ 2.012758] pci 0000:ff:00.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.012850] pci 0000:ff:00.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.012952] pci 0000:ff:00.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.013052] pci 0000:ff:00.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.013162] pci 0000:ff:00.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.013266] pci 0000:ff:00.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.013386] pci 0000:ff:00.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.013504] pci 0000:ff:00.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.013626] pci 0000:ff:01.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.013766] pci 0000:ff:01.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.013875] pci 0000:ff:01.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.014001] pci 0000:ff:01.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.014131] pci 0000:ff:01.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.014260] pci 0000:ff:01.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.014385] pci 0000:ff:01.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.014517] pci 0000:ff:01.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.014644] pci 0000:ff:0a.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.014759] pci 0000:ff:0a.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.014859] pci 0000:ff:0a.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.014961] pci 0000:ff:0a.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.015071] pci 0000:ff:0a.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.015175] pci 0000:ff:0a.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.015294] pci 0000:ff:0a.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.015412] pci 0000:ff:0a.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.015534] pci 0000:ff:0b.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.015674] pci 0000:ff:0b.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.015783] pci 0000:ff:0b.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.015908] pci 0000:ff:0b.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.016038] pci 0000:ff:0b.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.016166] pci 0000:ff:0b.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.016291] pci 0000:ff:0b.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.016423] pci 0000:ff:0b.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.016559] pci 0000:ff:1d.0: [8086:344f] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.016680] pci 0000:ff:1d.1: [8086:3457] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint [ 2.016782] pci 0000:ff:1e.0: [8086:3258] type 00 class 0x088000 conventional PCI endpoint [ 2.016865] pci 0000:ff:1e.1: [8086:3259] type 00 class 0x088000 conventional PCI endpoint [ 2.016928] pci 0000:ff:1e.2: [8086:325a] type 00 class 0x088000 conventional PCI endpoint [ 2.016991] pci 0000:ff:1e.3: [8086:325b] type 00 class 0x088000 conventional PCI endpoint [ 2.017055] pci 0000:ff:1e.4: [8086:325c] type 00 class 0x088000 conventional PCI endpoint [ 2.017115] pci 0000:ff:1e.5: [8086:325d] type 00 class 0x088000 conventional PCI endpoint [ 2.017176] pci 0000:ff:1e.6: [8086:325e] type 00 class 0x088000 conventional PCI endpoint [ 2.017237] pci 0000:ff:1e.7: [8086:325f] type 00 class 0x088000 conventional PCI endpoint [ 2.017296] pci_bus 0000:ff: on NUMA node 0 [ 2.021798] ACPI: PCI: Interrupt link LNKA configured for IRQ 15 [ 2.021800] ACPI: PCI: Interrupt link LNKA disabled [ 2.021867] ACPI: PCI: Interrupt link LNKB configured for IRQ 15 [ 2.021869] ACPI: PCI: Interrupt link LNKB disabled [ 2.021936] ACPI: PCI: Interrupt link LNKC configured for IRQ 15 [ 2.021937] ACPI: PCI: Interrupt link LNKC disabled [ 2.022003] ACPI: PCI: Interrupt link LNKD configured for IRQ 15 [ 2.022004] ACPI: PCI: Interrupt link LNKD disabled [ 2.022069] ACPI: PCI: Interrupt link LNKE configured for IRQ 15 [ 2.022070] ACPI: PCI: Interrupt link LNKE disabled [ 2.022135] ACPI: PCI: Interrupt link LNKF configured for IRQ 15 [ 2.022136] ACPI: PCI: Interrupt link LNKF disabled [ 2.022201] ACPI: PCI: Interrupt link LNKG configured for IRQ 15 [ 2.022202] ACPI: PCI: Interrupt link LNKG disabled [ 2.022268] ACPI: PCI: Interrupt link LNKH configured for IRQ 15 [ 2.022269] ACPI: PCI: Interrupt link LNKH disabled [ 2.023182] acpi/hmat: Memory Flags:0001 Processor Domain:0 Memory Domain:0 [ 2.023512] iommu: Default domain type: Passthrough (set via kernel command line) [ 2.024108] SCSI subsystem initialized [ 2.024118] libata version 3.00 loaded. [ 2.024118] ACPI: bus type USB registered [ 2.024118] usbcore: registered new interface driver usbfs [ 2.024118] usbcore: registered new interface driver hub [ 2.024118] usbcore: registered new device driver usb [ 2.024118] pps_core: LinuxPPS API ver. 1 registered [ 2.024118] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 2.024118] PTP clock support registered [ 2.024118] EDAC MC: Ver: 3.0.0 [ 2.025178] NetLabel: Initializing [ 2.025179] NetLabel: domain hash size = 128 [ 2.025180] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 2.025202] NetLabel: unlabeled traffic allowed by default [ 2.025221] mctp: management component transport protocol core [ 2.025221] NET: Registered PF_MCTP protocol family [ 2.025221] PCI: Using ACPI for IRQ routing [ 2.029569] PCI: pci_cache_line_size set to 64 bytes [ 2.029836] e820: reserve RAM buffer [mem 0x0009dc00-0x0009ffff] [ 2.029838] e820: reserve RAM buffer [mem 0x6c92e000-0x6fffffff] [ 2.029840] e820: reserve RAM buffer [mem 0x77800000-0x77ffffff] [ 2.029853] pci 0000:02:00.0: vgaarb: setting as boot VGA device [ 2.029853] pci 0000:02:00.0: vgaarb: bridge control possible [ 2.029853] pci 0000:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 2.029853] vgaarb: loaded [ 2.030051] Monitor-Mwait will be used to enter C-1 state [ 2.030056] Monitor-Mwait will be used to enter C-2 state [ 2.031025] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 2.031033] hpet0: 8 comparators, 64-bit 25.000000 MHz counter [ 2.032987] clocksource: Switched to clocksource tsc-early [ 2.033205] VFS: Disk quotas dquot_6.6.0 [ 2.033220] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 2.033401] AppArmor: AppArmor Filesystem Enabled [ 2.033445] pnp: PnP ACPI init [ 2.040668] system 00:01: [io 0x0500-0x05fe] has been reserved [ 2.040672] system 00:01: [io 0x0400-0x041f] has been reserved [ 2.040675] system 00:01: [mem 0xff000000-0xffffffff] has been reserved [ 2.040927] system 00:02: [io 0x0a00-0x0a3f] has been reserved [ 2.040929] system 00:02: [io 0x0a40-0x0a5f] has been reserved [ 2.040931] system 00:02: [io 0x0a60-0x0a6f] has been reserved [ 2.040932] system 00:02: [io 0x0a70-0x0a7f] has been reserved [ 2.040934] system 00:02: [io 0x0a80-0x0a8f] has been reserved [ 2.041329] pnp 00:03: [dma 0 disabled] [ 2.041729] pnp 00:04: [dma 0 disabled] [ 2.041968] system 00:05: [io 0x0500-0x05fe] has been reserved [ 2.041971] system 00:05: [mem 0xfd000000-0xfd69ffff] could not be reserved [ 2.041973] system 00:05: [mem 0xfd6c0000-0xfd6cffff] has been reserved [ 2.041975] system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved [ 2.041977] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved [ 2.041978] system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved [ 2.041980] system 00:05: [mem 0xff000000-0xffffffff] has been reserved [ 2.048832] pnp: PnP ACPI: found 7 devices [ 2.055071] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 2.055171] NET: Registered PF_INET protocol family [ 2.055419] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 2.077433] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear) [ 2.077492] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 2.077954] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 2.078505] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear) [ 2.078693] TCP: Hash tables configured (established 524288 bind 65536) [ 2.078988] MPTCP token hash table entries: 65536 (order: 9, 1572864 bytes, linear) [ 2.079313] UDP hash table entries: 32768 (order: 9, 2097152 bytes, linear) [ 2.079759] UDP-Lite hash table entries: 32768 (order: 9, 2097152 bytes, linear) [ 2.080042] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 2.080052] NET: Registered PF_XDP protocol family [ 2.080074] pci 0000:01:00.0: PCI bridge to [bus 02] [ 2.080079] pci 0000:01:00.0: bridge window [io 0x4000-0x4fff] [ 2.080086] pci 0000:01:00.0: bridge window [mem 0x94000000-0x950fffff] [ 2.080097] pci 0000:00:0b.0: PCI bridge to [bus 01-02] [ 2.080099] pci 0000:00:0b.0: bridge window [io 0x4000-0x4fff] [ 2.080104] pci 0000:00:0b.0: bridge window [mem 0x94000000-0x950fffff] [ 2.080113] pci 0000:00:1a.0: PCI bridge to [bus 03] [ 2.080115] pci 0000:00:1a.0: bridge window [io 0x3000-0x3fff] [ 2.080120] pci 0000:00:1a.0: bridge window [mem 0x95200000-0x952fffff] [ 2.080128] pci 0000:00:1b.0: PCI bridge to [bus 04] [ 2.080130] pci 0000:00:1b.0: bridge window [io 0x2000-0x2fff] [ 2.080135] pci 0000:00:1b.0: bridge window [mem 0x95100000-0x951fffff] [ 2.080147] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 2.080150] pci_bus 0000:00: resource 5 [io 0x1000-0x57ff window] [ 2.080152] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] [ 2.080154] pci_bus 0000:00: resource 7 [mem 0x000c8000-0x000cffff window] [ 2.080155] pci_bus 0000:00: resource 8 [mem 0xfe010000-0xfe010fff window] [ 2.080157] pci_bus 0000:00: resource 9 [mem 0x90040000-0x953fffff window] [ 2.080158] pci_bus 0000:00: resource 10 [mem 0x200000000000-0x203fffffffff window] [ 2.080161] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff] [ 2.080162] pci_bus 0000:01: resource 1 [mem 0x94000000-0x950fffff] [ 2.080164] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff] [ 2.080165] pci_bus 0000:02: resource 1 [mem 0x94000000-0x950fffff] [ 2.080167] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff] [ 2.080168] pci_bus 0000:03: resource 1 [mem 0x95200000-0x952fffff] [ 2.080170] pci_bus 0000:04: resource 0 [io 0x2000-0x2fff] [ 2.080171] pci_bus 0000:04: resource 1 [mem 0x95100000-0x951fffff] [ 2.080247] pci 0000:18:04.0: PCI bridge to [bus 19] [ 2.080257] pci 0000:18:05.0: PCI bridge to [bus 1a] [ 2.080267] pci 0000:18:06.0: PCI bridge to [bus 1b] [ 2.080276] pci 0000:18:07.0: PCI bridge to [bus 1c] [ 2.080285] pci 0000:17:00.0: PCI bridge to [bus 18-1c] [ 2.080295] pci 0000:16:01.0: PCI bridge to [bus 17-1c] [ 2.080299] pci 0000:16:01.0: bridge window [mem 0x98200000-0x982fffff] [ 2.080305] pci_bus 0000:16: resource 4 [io 0x5800-0x6fff window] [ 2.080307] pci_bus 0000:16: resource 5 [mem 0x95400000-0x983fffff window] [ 2.080308] pci_bus 0000:16: resource 6 [mem 0x204000000000-0x207fffffffff window] [ 2.080310] pci_bus 0000:17: resource 1 [mem 0x98200000-0x982fffff] [ 2.080357] pci_bus 0000:42: resource 4 [io 0x7000-0x9fff window] [ 2.080359] pci_bus 0000:42: resource 5 [mem 0x98400000-0xb73fffff window] [ 2.080360] pci_bus 0000:42: resource 6 [mem 0x208000000000-0x20bfffffffff window] [ 2.080409] pci 0000:6e:05.0: PCI bridge to [bus 6f] [ 2.080413] pci 0000:6e:05.0: bridge window [mem 0xd2600000-0xd26fffff] [ 2.080419] pci_bus 0000:6e: resource 4 [io 0xa000-0xbfff window] [ 2.080420] pci_bus 0000:6e: resource 5 [mem 0xb7400000-0xd27fffff window] [ 2.080422] pci_bus 0000:6e: resource 6 [mem 0x20c000000000-0x20ffffffffff window] [ 2.080423] pci_bus 0000:6f: resource 1 [mem 0xd2600000-0xd26fffff] [ 2.080470] pci 0000:9a:01.0: bridge window [io 0x1000-0x0fff] to [bus 9b] add_size 1000 [ 2.080473] pci 0000:9a:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 9b] add_size 200000 add_align 100000 [ 2.080476] pci 0000:9a:03.0: bridge window [io 0x1000-0x0fff] to [bus 9c] add_size 1000 [ 2.080478] pci 0000:9a:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 9c] add_size 200000 add_align 100000 [ 2.080480] pci 0000:9a:05.0: bridge window [io 0x1000-0x0fff] to [bus 9d] add_size 1000 [ 2.080482] pci 0000:9a:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 9d] add_size 200000 add_align 100000 [ 2.080484] pci 0000:9a:07.0: bridge window [io 0x1000-0x0fff] to [bus 9e] add_size 1000 [ 2.080486] pci 0000:9a:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 9e] add_size 200000 add_align 100000 [ 2.080495] pci 0000:9a:01.0: bridge window [mem 0x210000000000-0x2100001fffff 64bit pref]: assigned [ 2.080498] pci 0000:9a:03.0: bridge window [mem 0x210000200000-0x2100003fffff 64bit pref]: assigned [ 2.080500] pci 0000:9a:05.0: bridge window [mem 0x210000400000-0x2100005fffff 64bit pref]: assigned [ 2.080502] pci 0000:9a:07.0: bridge window [mem 0x210000600000-0x2100007fffff 64bit pref]: assigned [ 2.080504] pci 0000:9a:01.0: bridge window [io 0xc000-0xcfff]: assigned [ 2.080506] pci 0000:9a:03.0: bridge window [io 0xd000-0xdfff]: assigned [ 2.080507] pci 0000:9a:05.0: bridge window [io size 0x1000]: can't assign; no space [ 2.080509] pci 0000:9a:05.0: bridge window [io size 0x1000]: failed to assign [ 2.080511] pci 0000:9a:07.0: bridge window [io size 0x1000]: can't assign; no space [ 2.080512] pci 0000:9a:07.0: bridge window [io size 0x1000]: failed to assign [ 2.080515] pci 0000:9a:07.0: bridge window [io 0xc000-0xcfff]: assigned [ 2.080517] pci 0000:9a:05.0: bridge window [io 0xd000-0xdfff]: assigned [ 2.080519] pci 0000:9a:03.0: bridge window [io size 0x1000]: can't assign; no space [ 2.080520] pci 0000:9a:03.0: bridge window [io size 0x1000]: failed to assign [ 2.080522] pci 0000:9a:01.0: bridge window [io size 0x1000]: can't assign; no space [ 2.080523] pci 0000:9a:01.0: bridge window [io size 0x1000]: failed to assign [ 2.080525] pci 0000:9a:01.0: PCI bridge to [bus 9b] [ 2.080529] pci 0000:9a:01.0: bridge window [mem 0xe6a00000-0xe6afffff] [ 2.080532] pci 0000:9a:01.0: bridge window [mem 0x210000000000-0x2100001fffff 64bit pref] [ 2.080537] pci 0000:9a:03.0: PCI bridge to [bus 9c] [ 2.080541] pci 0000:9a:03.0: bridge window [mem 0xe6900000-0xe69fffff] [ 2.080544] pci 0000:9a:03.0: bridge window [mem 0x210000200000-0x2100003fffff 64bit pref] [ 2.080549] pci 0000:9a:05.0: PCI bridge to [bus 9d] [ 2.080551] pci 0000:9a:05.0: bridge window [io 0xd000-0xdfff] [ 2.080555] pci 0000:9a:05.0: bridge window [mem 0xe6800000-0xe68fffff] [ 2.080558] pci 0000:9a:05.0: bridge window [mem 0x210000400000-0x2100005fffff 64bit pref] [ 2.080563] pci 0000:9a:07.0: PCI bridge to [bus 9e] [ 2.080565] pci 0000:9a:07.0: bridge window [io 0xc000-0xcfff] [ 2.080569] pci 0000:9a:07.0: bridge window [mem 0xe6700000-0xe67fffff] [ 2.080572] pci 0000:9a:07.0: bridge window [mem 0x210000600000-0x2100007fffff 64bit pref] [ 2.080577] pci_bus 0000:9a: Some PCI device resources are unassigned, try booting with pci=realloc [ 2.080578] pci_bus 0000:9a: resource 4 [io 0xc000-0xdfff window] [ 2.080580] pci_bus 0000:9a: resource 5 [mem 0xd2800000-0xe6bfffff window] [ 2.080582] pci_bus 0000:9a: resource 6 [mem 0x210000000000-0x213fffffffff window] [ 2.080583] pci_bus 0000:9b: resource 1 [mem 0xe6a00000-0xe6afffff] [ 2.080585] pci_bus 0000:9b: resource 2 [mem 0x210000000000-0x2100001fffff 64bit pref] [ 2.080587] pci_bus 0000:9c: resource 1 [mem 0xe6900000-0xe69fffff] [ 2.080588] pci_bus 0000:9c: resource 2 [mem 0x210000200000-0x2100003fffff 64bit pref] [ 2.080590] pci_bus 0000:9d: resource 0 [io 0xd000-0xdfff] [ 2.080591] pci_bus 0000:9d: resource 1 [mem 0xe6800000-0xe68fffff] [ 2.080593] pci_bus 0000:9d: resource 2 [mem 0x210000400000-0x2100005fffff 64bit pref] [ 2.080594] pci_bus 0000:9e: resource 0 [io 0xc000-0xcfff] [ 2.080596] pci_bus 0000:9e: resource 1 [mem 0xe6700000-0xe67fffff] [ 2.080597] pci_bus 0000:9e: resource 2 [mem 0x210000600000-0x2100007fffff 64bit pref] [ 2.080645] pci_bus 0000:c6: resource 4 [io 0xe000-0xffff window] [ 2.080647] pci_bus 0000:c6: resource 5 [mem 0xe6c00000-0xfaffffff window] [ 2.080648] pci_bus 0000:c6: resource 6 [mem 0x214000000000-0x217fffffffff window] [ 2.080695] pci_bus 0000:f2: resource 4 [mem 0xfb000000-0xfb7fffff window] [ 2.080697] pci_bus 0000:f2: resource 5 [mem 0x218000000000-0x21bfffffffff window] [ 2.082072] pci 0000:17:00.0: CLS mismatch (64 != 32), using 64 bytes [ 2.082255] Trying to unpack rootfs image as initramfs... [ 2.082256] DMAR: dmar5: Using Queued invalidation [ 2.082259] dmar5 SVM disabled, incompatible paging mode [ 2.082261] DMAR: dmar4: Using Queued invalidation [ 2.082263] DMAR: dmar3: Using Queued invalidation [ 2.082264] DMAR: dmar2: Using Queued invalidation [ 2.082266] DMAR: dmar1: Using Queued invalidation [ 2.082267] DMAR: dmar0: Using Queued invalidation [ 2.082269] DMAR: dmar6: Using Queued invalidation [ 2.082507] pci 0000:f2:00.4: Adding to iommu group 0 [ 2.082552] pci 0000:f2:01.0: Adding to iommu group 1 [ 2.082666] pci 0000:c6:00.4: Adding to iommu group 2 [ 2.082764] pci 0000:9a:00.4: Adding to iommu group 3 [ 2.082794] pci 0000:9a:01.0: Adding to iommu group 4 [ 2.082824] pci 0000:9a:03.0: Adding to iommu group 5 [ 2.082853] pci 0000:9a:05.0: Adding to iommu group 6 [ 2.082883] pci 0000:9a:07.0: Adding to iommu group 7 [ 2.082986] pci 0000:6e:00.4: Adding to iommu group 8 [ 2.083014] pci 0000:6e:05.0: Adding to iommu group 9 [ 2.083047] pci 0000:6f:00.0: Adding to iommu group 10 [ 2.083151] pci 0000:42:00.4: Adding to iommu group 11 [ 2.083247] pci 0000:16:00.4: Adding to iommu group 12 [ 2.083276] pci 0000:16:01.0: Adding to iommu group 13 [ 2.083307] pci 0000:17:00.0: Adding to iommu group 14 [ 2.083338] pci 0000:18:04.0: Adding to iommu group 15 [ 2.083369] pci 0000:18:05.0: Adding to iommu group 16 [ 2.083398] pci 0000:18:06.0: Adding to iommu group 17 [ 2.083428] pci 0000:18:07.0: Adding to iommu group 18 [ 2.083501] pci 0000:00:00.0: Adding to iommu group 19 [ 2.083532] pci 0000:00:00.1: Adding to iommu group 20 [ 2.083561] pci 0000:00:00.2: Adding to iommu group 21 [ 2.083612] pci 0000:00:00.4: Adding to iommu group 22 [ 2.083641] pci 0000:00:0b.0: Adding to iommu group 23 [ 2.083715] pci 0000:00:14.0: Adding to iommu group 24 [ 2.083744] pci 0000:00:14.2: Adding to iommu group 24 [ 2.083773] pci 0000:00:14.4: Adding to iommu group 25 [ 2.083802] pci 0000:00:15.0: Adding to iommu group 26 [ 2.083898] pci 0000:00:16.0: Adding to iommu group 27 [ 2.083927] pci 0000:00:16.1: Adding to iommu group 27 [ 2.083957] pci 0000:00:16.4: Adding to iommu group 27 [ 2.083986] pci 0000:00:17.0: Adding to iommu group 28 [ 2.084015] pci 0000:00:18.0: Adding to iommu group 29 [ 2.084045] pci 0000:00:1a.0: Adding to iommu group 30 [ 2.084077] pci 0000:00:1b.0: Adding to iommu group 31 [ 2.084176] pci 0000:00:1f.0: Adding to iommu group 32 [ 2.084206] pci 0000:00:1f.4: Adding to iommu group 32 [ 2.084237] pci 0000:00:1f.5: Adding to iommu group 32 [ 2.084244] pci 0000:01:00.0: Adding to iommu group 23 [ 2.084250] pci 0000:02:00.0: Adding to iommu group 23 [ 2.084260] pci 0000:03:00.0: Adding to iommu group 30 [ 2.084267] pci 0000:04:00.0: Adding to iommu group 31 [ 2.084298] pci 0000:16:00.0: Adding to iommu group 33 [ 2.084328] pci 0000:16:00.1: Adding to iommu group 34 [ 2.084358] pci 0000:16:00.2: Adding to iommu group 35 [ 2.084387] pci 0000:42:00.0: Adding to iommu group 36 [ 2.084417] pci 0000:42:00.1: Adding to iommu group 37 [ 2.084447] pci 0000:42:00.2: Adding to iommu group 38 [ 2.084477] pci 0000:6e:00.0: Adding to iommu group 39 [ 2.084505] pci 0000:6e:00.1: Adding to iommu group 40 [ 2.084535] pci 0000:6e:00.2: Adding to iommu group 41 [ 2.084566] pci 0000:9a:00.0: Adding to iommu group 42 [ 2.084595] pci 0000:9a:00.1: Adding to iommu group 43 [ 2.084624] pci 0000:9a:00.2: Adding to iommu group 44 [ 2.084655] pci 0000:c6:00.0: Adding to iommu group 45 [ 2.084685] pci 0000:c6:00.1: Adding to iommu group 46 [ 2.084714] pci 0000:c6:00.2: Adding to iommu group 47 [ 2.084743] pci 0000:f2:00.0: Adding to iommu group 48 [ 2.084772] pci 0000:f2:00.1: Adding to iommu group 49 [ 2.084802] pci 0000:f2:00.2: Adding to iommu group 50 [ 2.084831] pci 0000:f2:03.0: Adding to iommu group 51 [ 2.084860] pci 0000:f2:03.1: Adding to iommu group 52 [ 2.084891] pci 0000:fe:00.0: Adding to iommu group 53 [ 2.084920] pci 0000:fe:00.1: Adding to iommu group 54 [ 2.084949] pci 0000:fe:00.2: Adding to iommu group 55 [ 2.084978] pci 0000:fe:00.3: Adding to iommu group 56 [ 2.085008] pci 0000:fe:00.5: Adding to iommu group 57 [ 2.085037] pci 0000:fe:01.0: Adding to iommu group 58 [ 2.085066] pci 0000:fe:01.1: Adding to iommu group 59 [ 2.085095] pci 0000:fe:01.2: Adding to iommu group 60 [ 2.085125] pci 0000:fe:02.0: Adding to iommu group 61 [ 2.085157] pci 0000:fe:02.1: Adding to iommu group 62 [ 2.085188] pci 0000:fe:02.2: Adding to iommu group 63 [ 2.085219] pci 0000:fe:05.0: Adding to iommu group 64 [ 2.085249] pci 0000:fe:05.1: Adding to iommu group 65 [ 2.085279] pci 0000:fe:05.2: Adding to iommu group 66 [ 2.085308] pci 0000:fe:06.0: Adding to iommu group 67 [ 2.085337] pci 0000:fe:06.1: Adding to iommu group 68 [ 2.085366] pci 0000:fe:06.2: Adding to iommu group 69 [ 2.085395] pci 0000:fe:07.0: Adding to iommu group 70 [ 2.085424] pci 0000:fe:07.1: Adding to iommu group 71 [ 2.085454] pci 0000:fe:07.2: Adding to iommu group 72 [ 2.085483] pci 0000:fe:0c.0: Adding to iommu group 73 [ 2.085512] pci 0000:fe:0d.0: Adding to iommu group 74 [ 2.085542] pci 0000:fe:0e.0: Adding to iommu group 75 [ 2.085572] pci 0000:fe:0f.0: Adding to iommu group 76 [ 2.085602] pci 0000:fe:1a.0: Adding to iommu group 77 [ 2.085632] pci 0000:fe:1b.0: Adding to iommu group 78 [ 2.085660] pci 0000:fe:1c.0: Adding to iommu group 79 [ 2.085690] pci 0000:fe:1d.0: Adding to iommu group 80 [ 2.085720] pci 0000:ff:00.0: Adding to iommu group 81 [ 2.085750] pci 0000:ff:00.1: Adding to iommu group 82 [ 2.085780] pci 0000:ff:00.2: Adding to iommu group 83 [ 2.085809] pci 0000:ff:00.3: Adding to iommu group 84 [ 2.085838] pci 0000:ff:00.4: Adding to iommu group 85 [ 2.085867] pci 0000:ff:00.5: Adding to iommu group 86 [ 2.085897] pci 0000:ff:00.6: Adding to iommu group 87 [ 2.085926] pci 0000:ff:00.7: Adding to iommu group 88 [ 2.085955] pci 0000:ff:01.0: Adding to iommu group 89 [ 2.085984] pci 0000:ff:01.1: Adding to iommu group 90 [ 2.086015] pci 0000:ff:01.2: Adding to iommu group 91 [ 2.086043] pci 0000:ff:01.3: Adding to iommu group 92 [ 2.086072] pci 0000:ff:01.4: Adding to iommu group 93 [ 2.086101] pci 0000:ff:01.5: Adding to iommu group 94 [ 2.086134] pci 0000:ff:01.6: Adding to iommu group 95 [ 2.086169] pci 0000:ff:01.7: Adding to iommu group 96 [ 2.086198] pci 0000:ff:0a.0: Adding to iommu group 97 [ 2.086229] pci 0000:ff:0a.1: Adding to iommu group 98 [ 2.086258] pci 0000:ff:0a.2: Adding to iommu group 99 [ 2.086288] pci 0000:ff:0a.3: Adding to iommu group 100 [ 2.086317] pci 0000:ff:0a.4: Adding to iommu group 101 [ 2.086347] pci 0000:ff:0a.5: Adding to iommu group 102 [ 2.086376] pci 0000:ff:0a.6: Adding to iommu group 103 [ 2.086405] pci 0000:ff:0a.7: Adding to iommu group 104 [ 2.086434] pci 0000:ff:0b.0: Adding to iommu group 105 [ 2.086464] pci 0000:ff:0b.1: Adding to iommu group 106 [ 2.086493] pci 0000:ff:0b.2: Adding to iommu group 107 [ 2.086523] pci 0000:ff:0b.3: Adding to iommu group 108 [ 2.086551] pci 0000:ff:0b.4: Adding to iommu group 109 [ 2.086583] pci 0000:ff:0b.5: Adding to iommu group 110 [ 2.086613] pci 0000:ff:0b.6: Adding to iommu group 111 [ 2.086641] pci 0000:ff:0b.7: Adding to iommu group 112 [ 2.086675] pci 0000:ff:1d.0: Adding to iommu group 113 [ 2.086704] pci 0000:ff:1d.1: Adding to iommu group 114 [ 2.086909] pci 0000:ff:1e.0: Adding to iommu group 115 [ 2.086958] pci 0000:ff:1e.1: Adding to iommu group 115 [ 2.087015] pci 0000:ff:1e.2: Adding to iommu group 115 [ 2.087066] pci 0000:ff:1e.3: Adding to iommu group 115 [ 2.087115] pci 0000:ff:1e.4: Adding to iommu group 115 [ 2.087167] pci 0000:ff:1e.5: Adding to iommu group 115 [ 2.087216] pci 0000:ff:1e.6: Adding to iommu group 115 [ 2.087264] pci 0000:ff:1e.7: Adding to iommu group 115 [ 2.087349] DMAR: Intel(R) Virtualization Technology for Directed I/O [ 2.087351] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 2.087352] software IO TLB: mapped [mem 0x000000006892e000-0x000000006c92e000] (64MB) [ 2.093353] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x39a85c9bff6, max_idle_ns: 881590591483 ns [ 2.093394] clocksource: Switched to clocksource tsc [ 2.127832] Initialise system trusted keyrings [ 2.127847] Key type blacklist registered [ 2.127886] workingset: timestamp_bits=36 max_order=24 bucket_order=0 [ 2.128199] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 2.128313] fuse: init (API version 7.44) [ 2.128538] integrity: Platform Keyring initialized [ 2.128541] integrity: Machine keyring initialized [ 2.139910] Key type asymmetric registered [ 2.139912] Asymmetric key parser 'x509' registered [ 2.139932] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242) [ 2.140043] io scheduler mq-deadline registered [ 2.141611] ledtrig-cpu: registered to indicate activity on CPUs [ 2.141960] pcieport 0000:00:00.4: PME: Signaling with IRQ 32 [ 2.142227] pcieport 0000:00:0b.0: PME: Signaling with IRQ 33 [ 2.142498] pcieport 0000:00:1a.0: PME: Signaling with IRQ 34 [ 2.142752] pcieport 0000:00:1b.0: PME: Signaling with IRQ 35 [ 2.142967] pcieport 0000:16:00.4: PME: Signaling with IRQ 36 [ 2.143137] pcieport 0000:16:01.0: PME: Signaling with IRQ 37 [ 2.144594] pcieport 0000:42:00.4: PME: Signaling with IRQ 42 [ 2.144770] pcieport 0000:6e:00.4: PME: Signaling with IRQ 43 [ 2.144933] pcieport 0000:6e:05.0: PME: Signaling with IRQ 44 [ 2.145147] pcieport 0000:9a:00.4: PME: Signaling with IRQ 45 [ 2.145312] pcieport 0000:9a:01.0: PME: Signaling with IRQ 46 [ 2.145333] pcieport 0000:9a:01.0: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise- Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum) [ 2.145582] pcieport 0000:9a:03.0: PME: Signaling with IRQ 47 [ 2.145603] pcieport 0000:9a:03.0: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise- Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum) [ 2.145841] pcieport 0000:9a:05.0: PME: Signaling with IRQ 48 [ 2.145859] pcieport 0000:9a:05.0: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise- Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum) [ 2.146092] pcieport 0000:9a:07.0: PME: Signaling with IRQ 49 [ 2.146111] pcieport 0000:9a:07.0: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise- Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum) [ 2.146360] pcieport 0000:c6:00.4: PME: Signaling with IRQ 50 [ 2.146514] pcieport 0000:f2:00.4: PME: Signaling with IRQ 51 [ 2.147684] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 [ 2.147743] ACPI: button: Power Button [PWRB] [ 2.147908] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 [ 2.147944] ACPI: button: Power Button [PWRF] [ 2.150822] ERST: Error Record Serialization Table (ERST) support is initialized. [ 2.150867] pstore: Using crash dump compression: deflate [ 2.150868] pstore: Registered erst as persistent store backend [ 2.151018] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled [ 2.173662] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 2.211687] Freeing initrd memory: 75724K [ 2.225720] 00:04: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A [ 2.256751] Linux agpgart interface v0.103 [ 2.260917] loop: module loaded [ 2.261196] ACPI: bus type drm_connector registered [ 2.265698] tun: Universal TUN/TAP device driver, 1.6 [ 2.265738] PPP generic driver version 2.4.2 [ 2.266077] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.266084] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 2.267182] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810 [ 2.267562] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.267565] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 2.267567] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed [ 2.267616] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.17 [ 2.267619] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.267621] usb usb1: Product: xHCI Host Controller [ 2.267622] usb usb1: Manufacturer: Linux 6.17.0-35-generic xhci-hcd [ 2.267624] usb usb1: SerialNumber: 0000:00:14.0 [ 2.267769] hub 1-0:1.0: USB hub found [ 2.267789] hub 1-0:1.0: 16 ports detected [ 2.270694] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.17 [ 2.270697] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.270699] usb usb2: Product: xHCI Host Controller [ 2.270700] usb usb2: Manufacturer: Linux 6.17.0-35-generic xhci-hcd [ 2.270702] usb usb2: SerialNumber: 0000:00:14.0 [ 2.270781] hub 2-0:1.0: USB hub found [ 2.270876] hub 2-0:1.0: 10 ports detected [ 2.272825] i8042: PNP: No PS/2 controller found. [ 2.272890] mousedev: PS/2 mouse device common for all mice [ 2.272997] rtc_cmos 00:00: RTC can wake from S4 [ 2.273466] rtc_cmos 00:00: registered as rtc0 [ 2.273544] rtc_cmos 00:00: setting system clock to 2026-07-24T02:34:55 UTC (1784860495) [ 2.273576] rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram [ 2.273584] i2c_dev: i2c /dev entries driver [ 2.274684] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. [ 2.274701] device-mapper: uevent: version 1.0.3 [ 2.274743] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev [ 2.274799] intel_pstate: Intel P-state driver initializing [ 2.282101] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic [ 2.282103] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0 [ 2.283703] fbcon: Deferring console take-over [ 2.283705] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device [ 2.283816] drop_monitor: Initializing network drop monitor service [ 2.283921] NET: Registered PF_INET6 protocol family [ 2.284237] Segment Routing with IPv6 [ 2.284244] In-situ OAM (IOAM) with IPv6 [ 2.284261] NET: Registered PF_PACKET protocol family [ 2.284309] Key type dns_resolver registered [ 2.290068] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' [ 2.290471] microcode: Current revision: 0x2b000661 [ 2.290472] microcode: Updated early from: 0x2b000571 [ 2.291523] resctrl: L3 allocation detected [ 2.291523] resctrl: L2 allocation detected [ 2.291524] resctrl: MB allocation detected [ 2.291525] resctrl: L3 monitoring detected [ 2.291547] IPI shorthand broadcast: enabled [ 2.292908] sched_clock: Marking stable (2288000994, 4137668)->(2814484434, -522345772) [ 2.293076] registered taskstats version 1 [ 2.293833] Loading compiled-in X.509 certificates [ 2.294325] Loaded X.509 cert 'Build time autogenerated kernel key: e6ecaf94139565578553cd173bd4183e35ae3162' [ 2.294687] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing 2025 Kmod: d541cef61dc7e793b7eb7e899970a2eef0b5dc8c' [ 2.295057] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' [ 2.295427] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing 2025 Kmod: 4627603d2357a2a3f81006370894c221175893e9' [ 2.295794] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' [ 2.295795] blacklist: Loading compiled-in revocation X.509 certificates [ 2.295810] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' [ 2.295819] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03' [ 2.295827] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b' [ 2.295834] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8' [ 2.295842] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d' [ 2.295853] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c' [ 2.295861] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af' [ 2.295868] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9' [ 2.298834] Demotion targets for Node 0: null [ 2.298904] Key type .fscrypt registered [ 2.298905] Key type fscrypt-provisioning registered [ 2.298950] Key type big_key registered [ 2.324289] Key type encrypted registered [ 2.324300] AppArmor: AppArmor sha256 policy hashing enabled [ 2.324326] ima: No TPM chip found, activating TPM-bypass! [ 2.324335] Loading compiled-in module X.509 certificates [ 2.325014] Loaded X.509 cert 'Build time autogenerated kernel key: e6ecaf94139565578553cd173bd4183e35ae3162' [ 2.325016] ima: Allocated hash algorithm: sha256 [ 2.325027] ima: No architecture policies found [ 2.325037] evm: Initialising EVM extended attributes: [ 2.325038] evm: security.selinux [ 2.325039] evm: security.SMACK64 [ 2.325040] evm: security.SMACK64EXEC [ 2.325041] evm: security.SMACK64TRANSMUTE [ 2.325042] evm: security.SMACK64MMAP [ 2.325042] evm: security.apparmor [ 2.325043] evm: security.ima [ 2.325044] evm: security.capability [ 2.325045] evm: HMAC attrs: 0x1 [ 2.325405] PM: Magic number: 2:50:562 [ 2.325580] acpi device:5fd: hash matches [ 2.325730] acpi device:144: hash matches [ 2.326806] RAS: Correctable Errors collector initialized. [ 2.336091] clk: Disabling unused clocks [ 2.336094] PM: genpd: Disabling unused power domains [ 2.355394] Freeing unused decrypted memory: 2028K [ 2.356220] Freeing unused kernel image (initmem) memory: 5264K [ 2.356241] Write protecting the kernel read-only data: 38912k [ 2.356513] Freeing unused kernel image (text/rodata gap) memory: 304K [ 2.356592] Freeing unused kernel image (rodata/data gap) memory: 88K [ 2.366837] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 2.366842] Run /init as init process [ 2.366843] with arguments: [ 2.366844] /init [ 2.366844] splash [ 2.366845] with environment: [ 2.366845] HOME=/ [ 2.366846] TERM=linux [ 2.510232] usb 1-1: new low-speed USB device number 2 using xhci_hcd [ 2.638829] usb 1-1: New USB device found, idVendor=1c4f, idProduct=0034, bcdDevice= 1.10 [ 2.638837] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.638840] usb 1-1: Product: Usb Mouse [ 2.638842] usb 1-1: Manufacturer: SIGMACHIP [ 2.685333] dca service started, version 1.12.1 [ 2.692577] Key type psk registered [ 2.700205] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode [ 2.700212] ahci 0000:00:17.0: 2/2 ports implemented (port mask 0x30) [ 2.700214] ahci 0000:00:17.0: flags: 64bit ncq sntf clo only pio slum part ems deso sadm sds [ 2.702507] igb: Intel(R) Gigabit Ethernet Network Driver [ 2.702510] igb: Copyright (c) 2007-2014 Intel Corporation. [ 2.704544] scsi host0: ahci [ 2.704691] scsi host1: ahci [ 2.704785] scsi host2: ahci [ 2.704880] scsi host3: ahci [ 2.704969] scsi host4: ahci [ 2.705061] scsi host5: ahci [ 2.705090] ata1: DUMMY [ 2.705091] ata2: DUMMY [ 2.705092] ata3: DUMMY [ 2.705093] ata4: DUMMY [ 2.705095] ata5: SATA max UDMA/133 abar m2048@0x95307000 port 0x95307300 irq 60 lpm-pol 1 ext [ 2.705097] ata6: SATA max UDMA/133 abar m2048@0x95307000 port 0x95307380 irq 60 lpm-pol 1 ext [ 2.705672] ahci 0000:00:18.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode [ 2.705675] ahci 0000:00:18.0: 8/8 ports implemented (port mask 0xff) [ 2.705678] ahci 0000:00:18.0: flags: 64bit ncq sntf clo only pio slum part ems deso sadm sds [ 2.706631] nvme nvme0: pci function 0000:6f:00.0 [ 2.712529] nvme nvme0: missing or invalid SUBNQN field. [ 2.712663] nvme nvme0: D3 entry latency set to 8 seconds [ 2.719598] scsi host6: ahci [ 2.719704] scsi host7: ahci [ 2.719795] scsi host8: ahci [ 2.719892] scsi host9: ahci [ 2.719981] scsi host10: ahci [ 2.720068] scsi host11: ahci [ 2.720163] scsi host12: ahci [ 2.720255] scsi host13: ahci [ 2.720285] ata7: SATA max UDMA/133 abar m2048@0x95305000 port 0x95305100 irq 66 lpm-pol 1 ext [ 2.720287] ata8: SATA max UDMA/133 abar m2048@0x95305000 port 0x95305180 irq 66 lpm-pol 1 ext [ 2.720289] ata9: SATA max UDMA/133 abar m2048@0x95305000 port 0x95305200 irq 66 lpm-pol 1 ext [ 2.720290] ata10: SATA max UDMA/133 abar m2048@0x95305000 port 0x95305280 irq 66 lpm-pol 1 ext [ 2.720292] ata11: SATA max UDMA/133 abar m2048@0x95305000 port 0x95305300 irq 66 lpm-pol 1 ext [ 2.720294] ata12: SATA max UDMA/133 abar m2048@0x95305000 port 0x95305380 irq 66 lpm-pol 1 ext [ 2.720295] ata13: SATA max UDMA/133 abar m2048@0x95305000 port 0x95305400 irq 66 lpm-pol 1 ext [ 2.720297] ata14: SATA max UDMA/133 abar m2048@0x95305000 port 0x95305480 irq 66 lpm-pol 1 ext [ 2.728798] igb 0000:03:00.0: added PHC on eth0 [ 2.728818] igb 0000:03:00.0: Intel(R) Gigabit Ethernet Network Connection [ 2.728819] igb 0000:03:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 7c:c2:55:4a:69:7c [ 2.728865] igb 0000:03:00.0: eth0: PBA No: 010000-000 [ 2.728866] igb 0000:03:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s) [ 2.738762] nvme nvme0: 24/0/0 default/read/poll queues [ 2.744227] nvme0n1: p1 p2 [ 2.752150] usb 1-2: new low-speed USB device number 3 using xhci_hcd [ 2.756597] igb 0000:04:00.0: added PHC on eth1 [ 2.756618] igb 0000:04:00.0: Intel(R) Gigabit Ethernet Network Connection [ 2.756619] igb 0000:04:00.0: eth1: (PCIe:2.5Gb/s:Width x1) 7c:c2:55:4a:69:7d [ 2.756664] igb 0000:04:00.0: eth1: PBA No: 010000-000 [ 2.756665] igb 0000:04:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s) [ 2.880307] usb 1-2: New USB device found, idVendor=413c, idProduct=2107, bcdDevice= 1.04 [ 2.880320] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.880325] usb 1-2: Product: Dell USB Entry Keyboard [ 2.880329] usb 1-2: Manufacturer: DELL [ 2.993155] usb 1-13: new high-speed USB device number 4 using xhci_hcd [ 3.011387] ata5: SATA link down (SStatus 0 SControl 300) [ 3.011421] ata6: SATA link down (SStatus 0 SControl 300) [ 3.027264] ata7: SATA link down (SStatus 0 SControl 300) [ 3.027342] ata10: SATA link down (SStatus 0 SControl 300) [ 3.027372] ata14: SATA link down (SStatus 0 SControl 300) [ 3.027403] ata9: SATA link down (SStatus 0 SControl 300) [ 3.027439] ata12: SATA link down (SStatus 0 SControl 300) [ 3.027479] ata11: SATA link down (SStatus 0 SControl 300) [ 3.027514] ata8: SATA link down (SStatus 0 SControl 300) [ 3.027548] ata13: SATA link down (SStatus 0 SControl 300) [ 3.031791] igb 0000:03:00.0 eno1: renamed from eth0 [ 3.033148] igb 0000:04:00.0 eno2: renamed from eth1 [ 3.116798] usb 1-13: New USB device found, idVendor=1d6b, idProduct=0107, bcdDevice= 1.00 [ 3.116811] usb 1-13: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.116816] usb 1-13: Product: USB Virtual Hub [ 3.116820] usb 1-13: Manufacturer: Aspeed [ 3.116824] usb 1-13: SerialNumber: 00000000 [ 3.118076] hub 1-13:1.0: USB hub found [ 3.118172] hub 1-13:1.0: 7 ports detected [ 3.125886] hid: raw HID events driver (C) Jiri Kosina [ 3.132981] usbcore: registered new interface driver usbhid [ 3.132984] usbhid: USB HID core driver [ 3.138572] input: SIGMACHIP Usb Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1C4F:0034.0001/input/input2 [ 3.138758] hid-generic 0003:1C4F:0034.0001: input,hidraw0: USB HID v1.10 Mouse [SIGMACHIP Usb Mouse] on usb-0000:00:14.0-1/input0 [ 3.139098] input: DELL Dell USB Entry Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:413C:2107.0002/input/input3 [ 3.189373] hid-generic 0003:413C:2107.0002: input,hidraw1: USB HID v1.11 Keyboard [DELL Dell USB Entry Keyboard] on usb-0000:00:14.0-2/input0 [ 3.379774] EXT4-fs (nvme0n1p2): mounted filesystem 68d96259-4e81-4dbe-9d4b-a3044b40112f ro with ordered data mode. Quota mode: none. [ 3.396153] usb 1-13.1: new high-speed USB device number 5 using xhci_hcd [ 3.471740] usb 1-13.1: New USB device found, idVendor=0557, idProduct=9241, bcdDevice= 5.04 [ 3.471750] usb 1-13.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.471755] usb 1-13.1: Product: SMCI HID KM [ 3.471759] usb 1-13.1: Manufacturer: Linux 5.4.62 with aspeed_vhub [ 3.481554] systemd[1]: Inserted module 'autofs4' [ 3.489728] input: Linux 5.4.62 with aspeed_vhub SMCI HID KM as /devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13.1/1-13.1:1.0/0003:0557:9241.0003/input/input4 [ 3.493873] systemd[1]: systemd 255.4-1ubuntu8.16 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 3.493879] systemd[1]: Detected architecture x86-64. [ 3.494743] systemd[1]: Hostname set to <lab-Super-Server>. [ 3.541235] hid-generic 0003:0557:9241.0003: input,hidraw2: USB HID v1.00 Keyboard [Linux 5.4.62 with aspeed_vhub SMCI HID KM] on usb-0000:00:14.0-13.1/input0 [ 3.544188] input: Linux 5.4.62 with aspeed_vhub SMCI HID KM as /devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13.1/1-13.1:1.1/0003:0557:9241.0004/input/input5 [ 3.544258] hid-generic 0003:0557:9241.0004: input,hidraw3: USB HID v1.00 Mouse [Linux 5.4.62 with aspeed_vhub SMCI HID KM] on usb-0000:00:14.0-13.1/input1 [ 3.607225] usb 1-13.2: new high-speed USB device number 6 using xhci_hcd [ 3.614651] systemd[1]: Queued start job for default target graphical.target. [ 3.635125] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe. [ 3.635431] systemd[1]: Created slice user.slice - User and Session Slice. [ 3.635470] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch. [ 3.635592] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point. [ 3.635609] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes. [ 3.635628] systemd[1]: Reached target remote-fs.target - Remote File Systems. [ 3.635636] systemd[1]: Reached target slices.target - Slice Units. [ 3.635647] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps. [ 3.635661] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes. [ 3.635757] systemd[1]: Listening on syslog.socket - Syslog Socket. [ 3.635805] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket. [ 3.635836] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe. [ 3.635886] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log). [ 3.635941] systemd[1]: Listening on systemd-journald.socket - Journal Socket. [ 3.636029] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket. [ 3.636041] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). [ 3.636109] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket. [ 3.636164] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket. [ 3.636781] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System... [ 3.637226] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System... [ 3.637670] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System... [ 3.638172] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System... [ 3.639821] systemd[1]: Starting systemd-journald.service - Journal Service... [ 3.640391] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout... [ 3.640931] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes... [ 3.641675] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs... [ 3.642438] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod... [ 3.643196] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm... [ 3.643941] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore... [ 3.644752] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse... [ 3.645539] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop... [ 3.645623] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root). [ 3.646449] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules... [ 3.646461] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki). [ 3.646932] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems... [ 3.646971] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). [ 3.647727] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices... [ 3.648837] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System. [ 3.648928] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System. [ 3.648995] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System. [ 3.649062] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System. [ 3.649254] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes. [ 3.649534] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 3.649656] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs. [ 3.649849] systemd[1]: modprobe@dm_mod.service: Deactivated successfully. [ 3.649967] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod. [ 3.650157] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 3.650274] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm. [ 3.650436] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 3.650514] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore. [ 3.650635] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 3.650701] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse. [ 3.650814] systemd[1]: modprobe@loop.service: Deactivated successfully. [ 3.650881] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop. [ 3.651476] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System... [ 3.652101] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System... [ 3.652157] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met. [ 3.652898] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully... [ 3.653595] systemd-journald[517]: Collecting audit messages is disabled. [ 3.655272] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System. [ 3.656089] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System. [ 3.659755] lp: driver loaded but no devices found [ 3.663089] ppdev: user-space parallel port driver [ 3.665276] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully. [ 3.667303] EXT4-fs (nvme0n1p2): re-mounted 68d96259-4e81-4dbe-9d4b-a3044b40112f r/w. [ 3.668200] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems. [ 3.668984] systemd[1]: Activating swap swap.img.swap - /swap.img... [ 3.669314] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc). [ 3.669347] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore). [ 3.670012] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed... [ 3.670050] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met. [ 3.670743] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev... [ 3.670758] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki). [ 3.673971] Adding 8388604k swap on /swap.img. Priority:-2 extents:65 across:9043968k SS [ 3.674006] systemd[1]: Activated swap swap.img.swap - /swap.img. [ 3.674042] systemd[1]: Reached target swap.target - Swaps. [ 3.678592] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev. [ 3.678842] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout. [ 3.678897] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems. [ 3.679595] systemd[1]: Mounting mnt-huge.mount - /mnt/huge... [ 3.680537] systemd[1]: Mounting snap-bare-5.mount - Mount unit for bare, revision 5... [ 3.681202] systemd[1]: Mounting snap-core22-1748.mount - Mount unit for core22, revision 1748... [ 3.682483] systemd[1]: Mounting snap-firefox-5751.mount - Mount unit for firefox, revision 5751... [ 3.683122] systemd[1]: Mounting snap-firmware\x2dupdater-167.mount - Mount unit for firmware-updater, revision 167... [ 3.684695] usb 1-13.2: New USB device found, idVendor=0b1f, idProduct=03ee, bcdDevice= 5.04 [ 3.684700] usb 1-13.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.684702] usb 1-13.2: Product: RNDIS/Ethernet Gadget [ 3.684704] usb 1-13.2: Manufacturer: Linux 5.4.62 with aspeed_vhub [ 3.686276] systemd[1]: Mounting snap-firmware\x2dupdater-216.mount - Mount unit for firmware-updater, revision 216... [ 3.687181] systemd[1]: Mounting snap-gnome\x2d42\x2d2204-202.mount - Mount unit for gnome-42-2204, revision 202... [ 3.687792] systemd[1]: Mounting snap-gtk\x2dcommon\x2dthemes-1535.mount - Mount unit for gtk-common-themes, revision 1535... [ 3.688435] systemd[1]: Mounting snap-snap\x2dstore-1248.mount - Mount unit for snap-store, revision 1248... [ 3.689076] systemd[1]: Mounting snap-snapd-23545.mount - Mount unit for snapd, revision 23545... [ 3.689803] systemd[1]: Mounting snap-snapd-25935.mount - Mount unit for snapd, revision 25935... [ 3.690243] loop0: detected capacity change from 0 to 528456 [ 3.690405] loop1: detected capacity change from 0 to 151328 [ 3.690556] loop2: detected capacity change from 0 to 33680 [ 3.690698] loop3: detected capacity change from 0 to 22800 [ 3.691150] systemd[1]: Mounting snap-snapd\x2ddesktop\x2dintegration-253.mount - Mount unit for snapd-desktop-integration, revision 253... [ 3.694374] systemd[1]: Mounting snap-thunderbird-1017.mount - Mount unit for thunderbird, revision 1017... [ 3.694956] systemd[1]: Mounting snap-thunderbird-644.mount - Mount unit for thunderbird, revision 644... [ 3.695628] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files... [ 3.697481] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules. [ 3.697629] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed. [ 3.697689] systemd[1]: Mounted mnt-huge.mount - /mnt/huge. [ 3.697733] systemd[1]: Mounted snap-core22-1748.mount - Mount unit for core22, revision 1748. [ 3.697778] systemd[1]: Mounted snap-firefox-5751.mount - Mount unit for firefox, revision 5751. [ 3.697804] loop4: detected capacity change from 0 to 1056784 [ 3.697821] systemd[1]: Mounted snap-firmware\x2dupdater-167.mount - Mount unit for firmware-updater, revision 167. [ 3.697874] systemd[1]: Mounted snap-firmware\x2dupdater-216.mount - Mount unit for firmware-updater, revision 216. [ 3.697945] loop5: detected capacity change from 0 to 22056 [ 3.698076] loop6: detected capacity change from 0 to 187776 [ 3.698264] loop7: detected capacity change from 0 to 8 [ 3.698584] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables... [ 3.699327] loop9: detected capacity change from 0 to 465856 [ 3.699414] loop10: detected capacity change from 0 to 91008 [ 3.701694] systemd[1]: Mounted snap-bare-5.mount - Mount unit for bare, revision 5. [ 3.705657] systemd[1]: Mounted snap-gnome\x2d42\x2d2204-202.mount - Mount unit for gnome-42-2204, revision 202. [ 3.705812] systemd[1]: Mounted snap-gtk\x2dcommon\x2dthemes-1535.mount - Mount unit for gtk-common-themes, revision 1535. [ 3.705884] systemd[1]: Mounted snap-snap\x2dstore-1248.mount - Mount unit for snap-store, revision 1248. [ 3.705951] systemd[1]: Mounted snap-snapd-23545.mount - Mount unit for snapd, revision 23545. [ 3.706015] systemd[1]: Mounted snap-snapd-25935.mount - Mount unit for snapd, revision 25935. [ 3.706080] systemd[1]: Mounted snap-snapd\x2ddesktop\x2dintegration-253.mount - Mount unit for snapd-desktop-integration, revision 253. [ 3.706147] systemd[1]: Mounted snap-thunderbird-1017.mount - Mount unit for thunderbird, revision 1017. [ 3.706211] systemd[1]: Mounted snap-thunderbird-644.mount - Mount unit for thunderbird, revision 644. [ 3.706388] systemd[1]: Reached target snapd.mounts.target - Mounted snaps. [ 3.706402] systemd[1]: Reached target local-fs.target - Local File Systems. [ 3.707423] systemd[1]: Listening on systemd-sysext.socket - System Extension Image Management (Varlink). [ 3.708239] systemd[1]: Starting console-setup.service - Set console font and keymap... [ 3.708288] systemd[1]: ldconfig.service - Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met. [ 3.708986] systemd[1]: Starting plymouth-read-write.service - Tell Plymouth To Write Out Runtime Data... [ 3.709973] systemd[1]: Starting systemd-binfmt.service - Set Up Additional Binary Formats... [ 3.710662] systemd[1]: Starting ufw.service - Uncomplicated firewall... [ 3.711114] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables. [ 3.711872] systemd[1]: Starting apparmor.service - Load AppArmor profiles... [ 3.712984] systemd[1]: Finished console-setup.service - Set console font and keymap. [ 3.714720] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 572 (systemd-binfmt) [ 3.715416] systemd[1]: Finished ufw.service - Uncomplicated firewall. [ 3.715477] systemd[1]: Reached target network-pre.target - Preparation for Network. [ 3.723551] systemd[1]: Received SIGRTMIN+20 from PID 444 (plymouthd). [ 3.724696] systemd[1]: Finished plymouth-read-write.service - Tell Plymouth To Write Out Runtime Data. [ 3.729645] systemd[1]: Started systemd-journald.service - Journal Service. [ 3.732075] audit: type=1400 audit(1784860496.957:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=585 comm="apparmor_parser" [ 3.732103] audit: type=1400 audit(1784860496.957:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=590 comm="apparmor_parser" [ 3.732151] audit: type=1400 audit(1784860496.957:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="github-desktop" pid=607 comm="apparmor_parser" [ 3.732166] audit: type=1400 audit(1784860496.958:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=595 comm="apparmor_parser" [ 3.732192] audit: type=1400 audit(1784860496.958:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="evolution" pid=602 comm="apparmor_parser" [ 3.732232] audit: type=1400 audit(1784860496.958:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=593 comm="apparmor_parser" [ 3.732263] audit: type=1400 audit(1784860496.958:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=591 comm="apparmor_parser" [ 3.732300] audit: type=1400 audit(1784860496.958:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=594 comm="apparmor_parser" [ 3.732338] audit: type=1400 audit(1784860496.958:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=587 comm="apparmor_parser" [ 3.736236] systemd-journald[517]: Received client request to flush runtime journal. [ 3.790990] systemd-journald[517]: /var/log/journal/facb1f5b5e0843978f0cac449d3751d2/system.journal: Journal file uses a different sequence number ID, rotating. [ 3.790996] systemd-journald[517]: Rotating system journal. [ 3.798057] usbcore: registered new interface driver cdc_ether [ 3.801199] rndis_host 1-13.2:2.0 usb0: register 'rndis_host' at usb-0000:00:14.0-13.2, RNDIS device, be:3a:f2:b6:05:9f [ 3.801223] usbcore: registered new interface driver rndis_host [ 3.811950] rndis_host 1-13.2:2.0 enxbe3af2b6059f: renamed from usb0 [ 4.018113] IPMI message handler: version 39.2 [ 4.027602] ipmi device interface [ 4.030692] ipmi_si: IPMI System Interface driver [ 4.030709] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS [ 4.030712] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0 [ 4.030714] ipmi_si: Adding SMBIOS-specified kcs state machine [ 4.030765] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI [ 4.030988] ipmi_si IPI0001:00: ipmi_platform: [io 0x0ca2] regsize 1 spacing 1 irq 0 [ 4.031136] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI [ 4.031147] ipmi_si: Adding ACPI-specified kcs state machine [ 4.034887] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0 [ 4.060333] ipmi_si IPI0001:00: The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed. [ 4.075227] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x002a7c, prod_id: 0x1c56, dev_id: 0x20) [ 4.111831] ipmi_si IPI0001:00: IPMI kcs interface initialized [ 4.115188] ipmi_ssif: IPMI SSIF Interface driver [ 4.169232] power_meter ACPI000D:00: Found ACPI power meter. [ 4.172928] power_meter ACPI000D:00: Ignoring unsafe software power cap! [ 4.234773] i801_smbus 0000:00:1f.4: SPD Write Disable is set [ 4.234798] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt [ 4.238284] mei_me 0000:00:16.0: Device doesn't have valid ME Interface [ 4.273492] ast 0000:02:00.0: vgaarb: deactivate vga console [ 4.273813] ast 0000:02:00.0: Using default configuration [ 4.273814] ast 0000:02:00.0: AST 2600 detected [ 4.273825] ast 0000:02:00.0: [drm] dram MCLK=396 Mhz type=1 bus_width=16 [ 4.273828] ast 0000:02:00.0: [drm] Using analog VGA [ 4.274027] ast 0000:02:00.0: [drm] Registered 1 planes with drm panic [ 4.274028] [drm] Initialized ast 0.1.0 for 0000:02:00.0 on minor 1 [ 4.355713] fbcon: astdrmfb (fb0) is primary device [ 4.355715] fbcon: Deferring console take-over [ 4.355716] ast 0000:02:00.0: [drm] fb0: astdrmfb frame buffer device [ 4.519941] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer [ 4.519945] RAPL PMU: hw unit of domain package 2^-14 Joules [ 4.519947] RAPL PMU: hw unit of domain dram 2^-14 Joules [ 4.519948] RAPL PMU: hw unit of domain psys 2^-0 Joules [ 4.526716] idxd 0000:f2:01.0: Intel(R) Accelerator Device (v100) [ 4.529553] spi-nor spi0.0: supply vcc not found, using dummy regulator [ 4.547243] Creating 1 MTD partitions on "0000:00:1f.5": [ 4.547251] 0x000000000000-0x000002000000 : "BIOS" [ 4.822850] EDAC i10nm: No hbm memory [ 4.822886] EDAC MC0: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#0: DEV 0000:fe:0c.0 (INTERRUPT) [ 4.822898] EDAC MC1: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#1: DEV 0000:fe:0d.0 (INTERRUPT) [ 4.822909] EDAC MC2: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#2: DEV 0000:fe:0e.0 (INTERRUPT) [ 4.822920] EDAC MC3: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#3: DEV 0000:fe:0f.0 (INTERRUPT) [ 4.822924] EDAC i10nm: v0.0.6 [ 4.858656] intel_rapl_common: Found RAPL domain package [ 4.858664] intel_rapl_common: Found RAPL domain dram [ 4.929333] nvme nvme0: using unchecked data buffer [ 4.971298] NET: Registered PF_QIPCRTR protocol family [ 5.539147] kauditd_printk_skb: 157 callbacks suppressed [ 5.539150] audit: type=1400 audit(1784860498.764:168): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=1281 comm="cupsd" capability=12 capname="net_admin" [ 5.845288] systemd-journald[517]: /var/log/journal/facb1f5b5e0843978f0cac449d3751d2/user-1000.journal: Journal file uses a different sequence number ID, rotating. [ 7.258455] rfkill: input handler disabled [-- Attachment #3: lspci.log --] [-- Type: application/octet-stream, Size: 51638 bytes --] 00:00.0 System peripheral: Intel Corporation Ice Lake Memory Map/VT-d (rev 20) Subsystem: Super Micro Computer Inc Ice Lake Memory Map/VT-d Flags: fast devsel, NUMA node 0, IOMMU group 19 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 00:00.1 System peripheral: Intel Corporation Ice Lake Mesh 2 PCIe (rev 20) Subsystem: Super Micro Computer Inc Ice Lake Mesh 2 PCIe Flags: fast devsel, NUMA node 0, IOMMU group 20 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 00:00.2 System peripheral: Intel Corporation Ice Lake RAS (rev 20) Subsystem: Super Micro Computer Inc Ice Lake RAS Flags: fast devsel, NUMA node 0, IOMMU group 21 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 00:00.4 Generic system peripheral [0807]: Intel Corporation Device 0b23 Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, IRQ 32, NUMA node 0, IOMMU group 22 Capabilities: [40] Express Root Complex Event Collector, MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [90] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [160] Root Complex Event Collector Endpoint Association Kernel driver in use: pcieport 00:0b.0 PCI bridge: Intel Corporation Device 1bbb (rev 11) (prog-if 00 [Normal decode]) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, IRQ 33, NUMA node 0, IOMMU group 23 Memory at 203ffff40000 (64-bit, non-prefetchable) [size=128K] Bus: primary=00, secondary=01, subordinate=02, sec-latency=0 I/O behind bridge: 4000-4fff [size=4K] [16-bit] Memory behind bridge: 94000000-950fffff [size=17M] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [88] Subsystem: Super Micro Computer Inc Device 1c56 Capabilities: [90] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Kernel driver in use: pcieport 00:14.0 USB controller: Intel Corporation Emmitsburg (C740 Family) USB 3.2 Gen 1 xHCI Controller (rev 11) (prog-if 30 [XHCI]) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, medium devsel, latency 0, IRQ 52, NUMA node 0, IOMMU group 24 Memory at 203ffff60000 (64-bit, non-prefetchable) [size=64K] Capabilities: [70] Power Management version 2 Capabilities: [80] MSI: Enable+ Count=8/8 Maskable- 64bit+ Capabilities: [90] Vendor Specific Information: Len=14 <?> Capabilities: [b0] Vendor Specific Information: Len=00 <?> Kernel driver in use: xhci_hcd 00:14.2 RAM memory: Intel Corporation Device 1bce (rev 11) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, NUMA node 0, IOMMU group 24 Memory at 203ffff70000 (64-bit, non-prefetchable) [size=16K] Memory at 203ffff79000 (64-bit, non-prefetchable) [size=4K] Capabilities: [80] Power Management version 3 00:14.4 Host bridge: Intel Corporation Device 1bfe (rev 11) Subsystem: Super Micro Computer Inc Device 1c56 Flags: fast devsel, NUMA node 0, IOMMU group 25 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 00:15.0 System peripheral: Intel Corporation Device 1bff (rev 11) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, IRQ 97, NUMA node 0, IOMMU group 26 Memory at 203ffff78000 (64-bit, non-prefetchable) [size=1K] Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [8c] MSI: Enable+ Count=1/1 Maskable+ 64bit+ Capabilities: [100] Advanced Error Reporting Kernel driver in use: ismt_smbus Kernel modules: i2c_ismt 00:16.0 Communication controller: Intel Corporation Device 1be0 (rev 11) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, IRQ 11, NUMA node 0, IOMMU group 27 Memory at 203ffff77000 (64-bit, non-prefetchable) [size=4K] Capabilities: [50] Power Management version 3 Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [a4] Vendor Specific Information: Len=14 <?> Kernel modules: mei_me 00:16.1 Communication controller: Intel Corporation Device 1be1 (rev 11) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, IRQ 10, NUMA node 0, IOMMU group 27 Memory at 203ffff76000 (64-bit, non-prefetchable) [size=4K] Capabilities: [50] Power Management version 3 Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [a4] Vendor Specific Information: Len=14 <?> 00:16.4 Communication controller: Intel Corporation Device 1be4 (rev 11) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, IRQ 11, NUMA node 0, IOMMU group 27 Memory at 203ffff75000 (64-bit, non-prefetchable) [size=4K] Capabilities: [50] Power Management version 3 Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [a4] Vendor Specific Information: Len=14 <?> 00:17.0 SATA controller: Intel Corporation Device 1ba2 (rev 11) (prog-if 01 [AHCI 1.0]) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 60, NUMA node 0, IOMMU group 28 Memory at 95302000 (32-bit, non-prefetchable) [size=8K] Memory at 95308000 (32-bit, non-prefetchable) [size=256] I/O ports at 5090 [size=8] I/O ports at 5080 [size=4] I/O ports at 5040 [size=32] Memory at 95307000 (32-bit, non-prefetchable) [size=2K] Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit- Capabilities: [70] Power Management version 3 Capabilities: [a8] SATA HBA v1.0 Kernel driver in use: ahci Kernel modules: ahci 00:18.0 SATA controller: Intel Corporation Sapphire Rapids SATA AHCI Controller (rev 11) (prog-if 01 [AHCI 1.0]) Subsystem: Super Micro Computer Inc Sapphire Rapids SATA AHCI Controller Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 66, NUMA node 0, IOMMU group 29 Memory at 95300000 (32-bit, non-prefetchable) [size=8K] Memory at 95306000 (32-bit, non-prefetchable) [size=256] I/O ports at 5070 [size=8] I/O ports at 5060 [size=4] I/O ports at 5020 [size=32] Memory at 95305000 (32-bit, non-prefetchable) [size=2K] Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit- Capabilities: [70] Power Management version 3 Capabilities: [a8] SATA HBA v1.0 Kernel driver in use: ahci Kernel modules: ahci 00:1a.0 PCI bridge: Intel Corporation Device 1bb4 (rev 11) (prog-if 00 [Normal decode]) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, IRQ 34, NUMA node 0, IOMMU group 30 Memory at 203ffff20000 (64-bit, non-prefetchable) [size=128K] Bus: primary=00, secondary=03, subordinate=03, sec-latency=0 I/O behind bridge: 3000-3fff [size=4K] [16-bit] Memory behind bridge: 95200000-952fffff [size=1M] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [88] Subsystem: Super Micro Computer Inc Device 1c56 Capabilities: [90] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Kernel driver in use: pcieport 00:1b.0 PCI bridge: Intel Corporation Device 1bb5 (rev 11) (prog-if 00 [Normal decode]) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, IRQ 35, NUMA node 0, IOMMU group 31 Memory at 203ffff00000 (64-bit, non-prefetchable) [size=128K] Bus: primary=00, secondary=04, subordinate=04, sec-latency=0 I/O behind bridge: 2000-2fff [size=4K] [16-bit] Memory behind bridge: 95100000-951fffff [size=1M] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [88] Subsystem: Super Micro Computer Inc Device 1c56 Capabilities: [90] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Kernel driver in use: pcieport 00:1f.0 ISA bridge: Intel Corporation Device 1b81 (rev 11) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, NUMA node 0, IOMMU group 32 00:1f.4 SMBus: Intel Corporation Device 1bc9 (rev 11) Subsystem: Super Micro Computer Inc Device 1c56 Flags: medium devsel, IRQ 16, NUMA node 0, IOMMU group 32 Memory at 203ffff74000 (64-bit, non-prefetchable) [size=256] I/O ports at 5000 [size=32] Kernel driver in use: i801_smbus Kernel modules: i2c_i801 00:1f.5 Serial bus controller: Intel Corporation Device 1bca (rev 11) Subsystem: Super Micro Computer Inc Device 1c56 Flags: bus master, fast devsel, latency 0, NUMA node 0, IOMMU group 32 Memory at fe010000 (32-bit, non-prefetchable) [size=4K] Memory at 92000000 (32-bit, non-prefetchable) [size=32M] Kernel driver in use: intel-spi Kernel modules: spi_intel_pci 01:00.0 PCI bridge: ASPEED Technology, Inc. AST1150 PCI-to-PCI Bridge (rev 06) (prog-if 00 [Normal decode]) Subsystem: Super Micro Computer Inc AST1150 PCI-to-PCI Bridge Flags: bus master, fast devsel, latency 0, IRQ 16, NUMA node 0, IOMMU group 23 Bus: primary=01, secondary=02, subordinate=02, sec-latency=32 I/O behind bridge: 4000-4fff [size=4K] [16-bit] Memory behind bridge: 94000000-950fffff [size=17M] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [50] MSI: Enable- Count=1/32 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express PCI-Express to PCI/PCI-X Bridge, MSI 00 Capabilities: [c0] Subsystem: Super Micro Computer Inc AST1150 PCI-to-PCI Bridge Capabilities: [100] Virtual Channel Capabilities: [200] Designated Vendor-Specific: Vendor=8086 ID=003e Rev=1 Len=80 <?> Capabilities: [2c0] Designated Vendor-Specific: Vendor=8086 ID=002e Rev=1 Len=36 <?> Capabilities: [800] Advanced Error Reporting 02:00.0 VGA compatible controller: ASPEED Technology, Inc. ASPEED Graphics Family (rev 52) (prog-if 00 [VGA controller]) DeviceName: ASPEED Video AST2600 Subsystem: Super Micro Computer Inc ASPEED Graphics Family Flags: medium devsel, IRQ 16, NUMA node 0, IOMMU group 23 Memory at 94000000 (32-bit, non-prefetchable) [size=16M] Memory at 95000000 (32-bit, non-prefetchable) [size=256K] I/O ports at 4000 [size=128] Expansion ROM at 000c0000 [virtual] [disabled] [size=128K] Capabilities: [40] Power Management version 3 Capabilities: [50] MSI: Enable- Count=1/4 Maskable- 64bit+ Kernel driver in use: ast Kernel modules: ast 03:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03) DeviceName: Intel Ethernet I210 #1 Subsystem: Super Micro Computer Inc I210 Gigabit Network Connection Flags: bus master, fast devsel, latency 0, IRQ 16, NUMA node 0, IOMMU group 30 Memory at 95200000 (32-bit, non-prefetchable) [size=512K] I/O ports at 3000 [size=32] Memory at 95280000 (32-bit, non-prefetchable) [size=16K] Capabilities: [40] Power Management version 3 Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+ Capabilities: [70] MSI-X: Enable+ Count=5 Masked- Capabilities: [a0] Express Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Device Serial Number 7c-c2-55-ff-ff-4a-69-7c Capabilities: [1a0] Transaction Processing Hints Kernel driver in use: igb Kernel modules: igb 04:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03) DeviceName: Intel Ethernet I210 #2 Subsystem: Super Micro Computer Inc I210 Gigabit Network Connection Flags: bus master, fast devsel, latency 0, IRQ 16, NUMA node 0, IOMMU group 31 Memory at 95100000 (32-bit, non-prefetchable) [size=512K] I/O ports at 2000 [size=32] Memory at 95180000 (32-bit, non-prefetchable) [size=16K] Capabilities: [40] Power Management version 3 Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+ Capabilities: [70] MSI-X: Enable+ Count=5 Masked- Capabilities: [a0] Express Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Device Serial Number 7c-c2-55-ff-ff-4a-69-7d Capabilities: [1a0] Transaction Processing Hints Kernel driver in use: igb Kernel modules: igb 16:00.0 System peripheral: Intel Corporation Ice Lake Memory Map/VT-d (rev 20) Subsystem: Intel Corporation Ice Lake Memory Map/VT-d Flags: fast devsel, NUMA node 0, IOMMU group 33 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 16:00.1 System peripheral: Intel Corporation Ice Lake Mesh 2 PCIe (rev 20) Subsystem: Intel Corporation Ice Lake Mesh 2 PCIe Flags: fast devsel, NUMA node 0, IOMMU group 34 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 16:00.2 System peripheral: Intel Corporation Ice Lake RAS (rev 20) Subsystem: Intel Corporation Ice Lake RAS Flags: fast devsel, NUMA node 0, IOMMU group 35 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 16:00.4 Generic system peripheral [0807]: Intel Corporation Device 0b23 Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 36, NUMA node 0, IOMMU group 12 Capabilities: [40] Express Root Complex Event Collector, MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [90] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [160] Root Complex Event Collector Endpoint Association Kernel driver in use: pcieport 16:01.0 PCI bridge: Intel Corporation Device 352a (rev 04) (prog-if 00 [Normal decode]) Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 37, NUMA node 0, IOMMU group 13 Memory at 207ffff00000 (64-bit, non-prefetchable) [size=128K] Bus: primary=16, secondary=17, subordinate=1c, sec-latency=0 I/O behind bridge: [disabled] [16-bit] Memory behind bridge: 98200000-982fffff [size=1M] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [a0] Power Management version 3 Capabilities: [94] Subsystem: Intel Corporation Device 0000 Capabilities: [80] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [220] Access Control Services Capabilities: [190] Vendor Specific Information: ID=0003 Rev=0 Len=00a <?> Capabilities: [1a0] Downstream Port Containment Capabilities: [150] Precision Time Measurement Capabilities: [280] Virtual Channel Capabilities: [a30] Secondary PCI Express Capabilities: [a90] Data Link Feature <?> Capabilities: [a9c] Physical Layer 16.0 GT/s <?> Capabilities: [ae0] Extended Capability ID 0x2a Capabilities: [edc] Lane Margining at the Receiver <?> Capabilities: [b20] Extended Capability ID 0x2b Kernel driver in use: pcieport 17:00.0 PCI bridge: Pericom Semiconductor Device c008 (rev 0f) (prog-if 00 [Normal decode]) Subsystem: Pericom Semiconductor Device c008 Physical Slot: 4 Flags: bus master, fast devsel, latency 0, NUMA node 0, IOMMU group 14 Memory at 98200000 (32-bit, non-prefetchable) [size=512K] Bus: primary=17, secondary=18, subordinate=1c, sec-latency=0 I/O behind bridge: [disabled] [32-bit] Memory behind bridge: [disabled] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [40] Power Management version 3 Capabilities: [48] MSI: Enable- Count=1/8 Maskable+ 64bit+ Capabilities: [68] Express Upstream Port, MSI 00 Capabilities: [a4] Subsystem: Pericom Semiconductor Device c008 Capabilities: [b0] MSI-X: Enable- Count=6 Masked- Capabilities: [100] Advanced Error Reporting Capabilities: [130] Virtual Channel Capabilities: [1a0] Device Serial Number 08-16-48-96-00-00-12-d8 Capabilities: [1b0] Power Budgeting <?> Capabilities: [1d0] Multicast Capabilities: [210] Secondary PCI Express Capabilities: [2b0] L1 PM Substates Capabilities: [300] Vendor Specific Information: ID=0000 Rev=0 Len=560 <?> Kernel driver in use: pcieport 18:04.0 PCI bridge: Pericom Semiconductor Device c008 (rev 06) (prog-if 00 [Normal decode]) Subsystem: Pericom Semiconductor Device c008 Flags: bus master, fast devsel, latency 0, IRQ 38, NUMA node 0, IOMMU group 15 Bus: primary=18, secondary=19, subordinate=19, sec-latency=0 I/O behind bridge: [disabled] [32-bit] Memory behind bridge: [disabled] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [40] Power Management version 3 Capabilities: [48] MSI: Enable+ Count=1/8 Maskable+ 64bit+ Capabilities: [68] Express Downstream Port (Slot+), MSI 00 Capabilities: [a4] Subsystem: Pericom Semiconductor Device c008 Capabilities: [100] Advanced Error Reporting Capabilities: [130] Virtual Channel Capabilities: [1a0] Device Serial Number 08-16-48-96-00-00-12-d8 Capabilities: [1c0] Access Control Services Capabilities: [1d0] Multicast Capabilities: [210] Secondary PCI Express Capabilities: [2b0] L1 PM Substates Capabilities: [300] Vendor Specific Information: ID=0000 Rev=0 Len=560 <?> Kernel driver in use: pcieport 18:05.0 PCI bridge: Pericom Semiconductor Device c008 (rev 06) (prog-if 00 [Normal decode]) Subsystem: Pericom Semiconductor Device c008 Flags: bus master, fast devsel, latency 0, IRQ 39, NUMA node 0, IOMMU group 16 Bus: primary=18, secondary=1a, subordinate=1a, sec-latency=0 I/O behind bridge: [disabled] [32-bit] Memory behind bridge: [disabled] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [40] Power Management version 3 Capabilities: [48] MSI: Enable+ Count=1/8 Maskable+ 64bit+ Capabilities: [68] Express Downstream Port (Slot+), MSI 00 Capabilities: [a4] Subsystem: Pericom Semiconductor Device c008 Capabilities: [100] Advanced Error Reporting Capabilities: [130] Virtual Channel Capabilities: [1a0] Device Serial Number 08-16-48-96-00-00-12-d8 Capabilities: [1c0] Access Control Services Capabilities: [1d0] Multicast Capabilities: [210] Secondary PCI Express Capabilities: [2b0] L1 PM Substates Capabilities: [300] Vendor Specific Information: ID=0000 Rev=0 Len=560 <?> Kernel driver in use: pcieport 18:06.0 PCI bridge: Pericom Semiconductor Device c008 (rev 06) (prog-if 00 [Normal decode]) Subsystem: Pericom Semiconductor Device c008 Flags: bus master, fast devsel, latency 0, IRQ 40, NUMA node 0, IOMMU group 17 Bus: primary=18, secondary=1b, subordinate=1b, sec-latency=0 I/O behind bridge: [disabled] [32-bit] Memory behind bridge: [disabled] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [40] Power Management version 3 Capabilities: [48] MSI: Enable+ Count=1/8 Maskable+ 64bit+ Capabilities: [68] Express Downstream Port (Slot+), MSI 00 Capabilities: [a4] Subsystem: Pericom Semiconductor Device c008 Capabilities: [100] Advanced Error Reporting Capabilities: [130] Virtual Channel Capabilities: [1a0] Device Serial Number 08-16-48-96-00-00-12-d8 Capabilities: [1c0] Access Control Services Capabilities: [1d0] Multicast Capabilities: [210] Secondary PCI Express Capabilities: [2b0] L1 PM Substates Capabilities: [300] Vendor Specific Information: ID=0000 Rev=0 Len=560 <?> Kernel driver in use: pcieport 18:07.0 PCI bridge: Pericom Semiconductor Device c008 (rev 06) (prog-if 00 [Normal decode]) Subsystem: Pericom Semiconductor Device c008 Flags: bus master, fast devsel, latency 0, IRQ 41, NUMA node 0, IOMMU group 18 Bus: primary=18, secondary=1c, subordinate=1c, sec-latency=0 I/O behind bridge: [disabled] [32-bit] Memory behind bridge: [disabled] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [40] Power Management version 3 Capabilities: [48] MSI: Enable+ Count=1/8 Maskable+ 64bit+ Capabilities: [68] Express Downstream Port (Slot+), MSI 00 Capabilities: [a4] Subsystem: Pericom Semiconductor Device c008 Capabilities: [100] Advanced Error Reporting Capabilities: [130] Virtual Channel Capabilities: [1a0] Device Serial Number 08-16-48-96-00-00-12-d8 Capabilities: [1c0] Access Control Services Capabilities: [1d0] Multicast Capabilities: [210] Secondary PCI Express Capabilities: [2b0] L1 PM Substates Capabilities: [300] Vendor Specific Information: ID=0000 Rev=0 Len=560 <?> Kernel driver in use: pcieport 42:00.0 System peripheral: Intel Corporation Ice Lake Memory Map/VT-d (rev 20) Subsystem: Intel Corporation Ice Lake Memory Map/VT-d Flags: fast devsel, NUMA node 0, IOMMU group 36 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 42:00.1 System peripheral: Intel Corporation Ice Lake Mesh 2 PCIe (rev 20) Subsystem: Intel Corporation Ice Lake Mesh 2 PCIe Flags: fast devsel, NUMA node 0, IOMMU group 37 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 42:00.2 System peripheral: Intel Corporation Ice Lake RAS (rev 20) Subsystem: Intel Corporation Ice Lake RAS Flags: fast devsel, NUMA node 0, IOMMU group 38 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 42:00.4 Generic system peripheral [0807]: Intel Corporation Device 0b23 Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 42, NUMA node 0, IOMMU group 11 Capabilities: [40] Express Root Complex Event Collector, MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [90] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [160] Root Complex Event Collector Endpoint Association Kernel driver in use: pcieport 6e:00.0 System peripheral: Intel Corporation Ice Lake Memory Map/VT-d (rev 20) Subsystem: Intel Corporation Ice Lake Memory Map/VT-d Flags: fast devsel, NUMA node 0, IOMMU group 39 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 6e:00.1 System peripheral: Intel Corporation Ice Lake Mesh 2 PCIe (rev 20) Subsystem: Intel Corporation Ice Lake Mesh 2 PCIe Flags: fast devsel, NUMA node 0, IOMMU group 40 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 6e:00.2 System peripheral: Intel Corporation Ice Lake RAS (rev 20) Subsystem: Intel Corporation Ice Lake RAS Flags: fast devsel, NUMA node 0, IOMMU group 41 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 6e:00.4 Generic system peripheral [0807]: Intel Corporation Device 0b23 Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 43, NUMA node 0, IOMMU group 8 Capabilities: [40] Express Root Complex Event Collector, MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [90] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [160] Root Complex Event Collector Endpoint Association Kernel driver in use: pcieport 6e:05.0 PCI bridge: Intel Corporation Device 352c (rev 04) (prog-if 00 [Normal decode]) Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 44, NUMA node 0, IOMMU group 9 Memory at 20fffff00000 (64-bit, non-prefetchable) [size=128K] Bus: primary=6e, secondary=6f, subordinate=6f, sec-latency=0 I/O behind bridge: [disabled] [16-bit] Memory behind bridge: d2600000-d26fffff [size=1M] [32-bit] Prefetchable memory behind bridge: [disabled] [64-bit] Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [a0] Power Management version 3 Capabilities: [94] Subsystem: Intel Corporation Device 0000 Capabilities: [80] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [220] Access Control Services Capabilities: [190] Vendor Specific Information: ID=0003 Rev=0 Len=00a <?> Capabilities: [1a0] Downstream Port Containment Capabilities: [150] Precision Time Measurement Capabilities: [280] Virtual Channel Capabilities: [a30] Secondary PCI Express Capabilities: [a90] Data Link Feature <?> Capabilities: [a9c] Physical Layer 16.0 GT/s <?> Capabilities: [ae0] Extended Capability ID 0x2a Capabilities: [edc] Lane Margining at the Receiver <?> Capabilities: [b20] Extended Capability ID 0x2b Kernel driver in use: pcieport 6f:00.0 Non-Volatile memory controller: Samsung Electronics Co Ltd NVMe SSD Controller SM981/PM981/PM983 (prog-if 02 [NVM Express]) Subsystem: Samsung Electronics Co Ltd SSD 970 EVO/PRO Physical Slot: 7 Flags: bus master, fast devsel, latency 0, IRQ 16, NUMA node 0, IOMMU group 10 Memory at d2600000 (64-bit, non-prefetchable) [size=16K] Capabilities: [40] Power Management version 3 Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [70] Express Endpoint, MSI 00 Capabilities: [b0] MSI-X: Enable+ Count=33 Masked- Capabilities: [100] Advanced Error Reporting Capabilities: [148] Device Serial Number 00-00-00-00-00-00-00-00 Capabilities: [158] Power Budgeting <?> Capabilities: [168] Secondary PCI Express Capabilities: [188] Latency Tolerance Reporting Capabilities: [190] L1 PM Substates Kernel driver in use: nvme Kernel modules: nvme 9a:00.0 System peripheral: Intel Corporation Ice Lake Memory Map/VT-d (rev 20) Subsystem: Intel Corporation Ice Lake Memory Map/VT-d Flags: fast devsel, NUMA node 0, IOMMU group 42 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 9a:00.1 System peripheral: Intel Corporation Ice Lake Mesh 2 PCIe (rev 20) Subsystem: Intel Corporation Ice Lake Mesh 2 PCIe Flags: fast devsel, NUMA node 0, IOMMU group 43 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 9a:00.2 System peripheral: Intel Corporation Ice Lake RAS (rev 20) Subsystem: Intel Corporation Ice Lake RAS Flags: fast devsel, NUMA node 0, IOMMU group 44 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 9a:00.4 Generic system peripheral [0807]: Intel Corporation Device 0b23 Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 45, NUMA node 0, IOMMU group 3 Capabilities: [40] Express Root Complex Event Collector, MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [90] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [160] Root Complex Event Collector Endpoint Association Kernel driver in use: pcieport 9a:01.0 PCI bridge: Intel Corporation Device 352a (rev 04) (prog-if 00 [Normal decode]) Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 46, NUMA node 0, IOMMU group 4 Memory at 213ffff60000 (64-bit, non-prefetchable) [size=128K] Bus: primary=9a, secondary=9b, subordinate=9b, sec-latency=0 I/O behind bridge: [disabled] [16-bit] Memory behind bridge: e6a00000-e6afffff [size=1M] [32-bit] Prefetchable memory behind bridge: 210000000000-2100001fffff [size=2M] [32-bit] Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [a0] Power Management version 3 Capabilities: [94] Subsystem: Intel Corporation Device 0000 Capabilities: [80] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [220] Access Control Services Capabilities: [190] Vendor Specific Information: ID=0003 Rev=0 Len=00a <?> Capabilities: [1a0] Downstream Port Containment Capabilities: [150] Precision Time Measurement Capabilities: [280] Virtual Channel Capabilities: [a30] Secondary PCI Express Capabilities: [a90] Data Link Feature <?> Capabilities: [a9c] Physical Layer 16.0 GT/s <?> Capabilities: [ae0] Extended Capability ID 0x2a Capabilities: [edc] Lane Margining at the Receiver <?> Capabilities: [b20] Extended Capability ID 0x2b Kernel driver in use: pcieport 9a:03.0 PCI bridge: Intel Corporation Device 352b (rev 04) (prog-if 00 [Normal decode]) Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 47, NUMA node 0, IOMMU group 5 Memory at 213ffff40000 (64-bit, non-prefetchable) [size=128K] Bus: primary=9a, secondary=9c, subordinate=9c, sec-latency=0 I/O behind bridge: [disabled] [16-bit] Memory behind bridge: e6900000-e69fffff [size=1M] [32-bit] Prefetchable memory behind bridge: 210000200000-2100003fffff [size=2M] [32-bit] Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [a0] Power Management version 3 Capabilities: [94] Subsystem: Intel Corporation Device 0000 Capabilities: [80] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [220] Access Control Services Capabilities: [190] Vendor Specific Information: ID=0003 Rev=0 Len=00a <?> Capabilities: [1a0] Downstream Port Containment Capabilities: [150] Precision Time Measurement Capabilities: [280] Virtual Channel Capabilities: [a30] Secondary PCI Express Capabilities: [a90] Data Link Feature <?> Capabilities: [a9c] Physical Layer 16.0 GT/s <?> Capabilities: [ae0] Extended Capability ID 0x2a Capabilities: [edc] Lane Margining at the Receiver <?> Capabilities: [b20] Extended Capability ID 0x2b Kernel driver in use: pcieport 9a:05.0 PCI bridge: Intel Corporation Device 352c (rev 04) (prog-if 00 [Normal decode]) Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 48, NUMA node 0, IOMMU group 6 Memory at 213ffff20000 (64-bit, non-prefetchable) [size=128K] Bus: primary=9a, secondary=9d, subordinate=9d, sec-latency=0 I/O behind bridge: d000-dfff [size=4K] [16-bit] Memory behind bridge: e6800000-e68fffff [size=1M] [32-bit] Prefetchable memory behind bridge: 210000400000-2100005fffff [size=2M] [32-bit] Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [a0] Power Management version 3 Capabilities: [94] Subsystem: Intel Corporation Device 0000 Capabilities: [80] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [220] Access Control Services Capabilities: [190] Vendor Specific Information: ID=0003 Rev=0 Len=00a <?> Capabilities: [1a0] Downstream Port Containment Capabilities: [150] Precision Time Measurement Capabilities: [280] Virtual Channel Capabilities: [a30] Secondary PCI Express Capabilities: [a90] Data Link Feature <?> Capabilities: [a9c] Physical Layer 16.0 GT/s <?> Capabilities: [ae0] Extended Capability ID 0x2a Capabilities: [edc] Lane Margining at the Receiver <?> Capabilities: [b20] Extended Capability ID 0x2b Kernel driver in use: pcieport 9a:07.0 PCI bridge: Intel Corporation Device 352d (rev 04) (prog-if 00 [Normal decode]) Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 49, NUMA node 0, IOMMU group 7 Memory at 213ffff00000 (64-bit, non-prefetchable) [size=128K] Bus: primary=9a, secondary=9e, subordinate=9e, sec-latency=0 I/O behind bridge: c000-cfff [size=4K] [16-bit] Memory behind bridge: e6700000-e67fffff [size=1M] [32-bit] Prefetchable memory behind bridge: 210000600000-2100007fffff [size=2M] [32-bit] Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [a0] Power Management version 3 Capabilities: [94] Subsystem: Intel Corporation Device 0000 Capabilities: [80] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [220] Access Control Services Capabilities: [190] Vendor Specific Information: ID=0003 Rev=0 Len=00a <?> Capabilities: [1a0] Downstream Port Containment Capabilities: [150] Precision Time Measurement Capabilities: [280] Virtual Channel Capabilities: [a30] Secondary PCI Express Capabilities: [a90] Data Link Feature <?> Capabilities: [a9c] Physical Layer 16.0 GT/s <?> Capabilities: [ae0] Extended Capability ID 0x2a Capabilities: [edc] Lane Margining at the Receiver <?> Capabilities: [b20] Extended Capability ID 0x2b Kernel driver in use: pcieport c6:00.0 System peripheral: Intel Corporation Ice Lake Memory Map/VT-d (rev 20) Subsystem: Intel Corporation Ice Lake Memory Map/VT-d Flags: fast devsel, NUMA node 0, IOMMU group 45 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 c6:00.1 System peripheral: Intel Corporation Ice Lake Mesh 2 PCIe (rev 20) Subsystem: Intel Corporation Ice Lake Mesh 2 PCIe Flags: fast devsel, NUMA node 0, IOMMU group 46 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 c6:00.2 System peripheral: Intel Corporation Ice Lake RAS (rev 20) Subsystem: Intel Corporation Ice Lake RAS Flags: fast devsel, NUMA node 0, IOMMU group 47 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 c6:00.4 Generic system peripheral [0807]: Intel Corporation Device 0b23 Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 50, NUMA node 0, IOMMU group 2 Capabilities: [40] Express Root Complex Event Collector, MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [90] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [160] Root Complex Event Collector Endpoint Association Kernel driver in use: pcieport f2:00.0 System peripheral: Intel Corporation Ice Lake Memory Map/VT-d (rev 20) Subsystem: Intel Corporation Ice Lake Memory Map/VT-d Flags: fast devsel, NUMA node 0, IOMMU group 48 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 f2:00.1 System peripheral: Intel Corporation Ice Lake Mesh 2 PCIe (rev 20) Subsystem: Intel Corporation Ice Lake Mesh 2 PCIe Flags: fast devsel, NUMA node 0, IOMMU group 49 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 f2:00.2 System peripheral: Intel Corporation Ice Lake RAS (rev 20) Subsystem: Intel Corporation Ice Lake RAS Flags: fast devsel, NUMA node 0, IOMMU group 50 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 f2:00.4 Generic system peripheral [0807]: Intel Corporation Device 0b23 Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, IRQ 51, NUMA node 0, IOMMU group 0 Capabilities: [40] Express Root Complex Event Collector, MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [90] MSI: Enable+ Count=1/1 Maskable+ 64bit- Capabilities: [100] Advanced Error Reporting Capabilities: [160] Root Complex Event Collector Endpoint Association Kernel driver in use: pcieport f2:01.0 System peripheral: Intel Corporation Device 0b25 Subsystem: Intel Corporation Device 0000 Flags: bus master, fast devsel, latency 0, NUMA node 0, IOMMU group 1 Memory at 21bffff20000 (64-bit, prefetchable) [size=64K] Memory at 21bffff00000 (64-bit, prefetchable) [size=128K] Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 Capabilities: [80] MSI-X: Enable+ Count=9 Masked- Capabilities: [90] Power Management version 3 Capabilities: [100] Advanced Error Reporting Capabilities: [150] Latency Tolerance Reporting Capabilities: [160] Transaction Processing Hints Capabilities: [170] Virtual Channel Capabilities: [220] Address Translation Service (ATS) Capabilities: [230] Process Address Space ID (PASID) Capabilities: [240] Page Request Interface (PRI) Kernel driver in use: idxd Kernel modules: idxd f2:03.0 System peripheral: Intel Corporation Ice Lake MSM Subsystem: Intel Corporation Ice Lake MSM Flags: bus master, fast devsel, latency 0, NUMA node 0, IOMMU group 51 Memory at fb600000 (32-bit, non-prefetchable) [size=1M] Capabilities: [90] Express Root Complex Integrated Endpoint, MSI 00 Capabilities: [e0] Power Management version 3 Capabilities: [100] Advanced Error Reporting f2:03.1 System peripheral: Intel Corporation Ice Lake PMON MSM Subsystem: Intel Corporation Ice Lake PMON MSM Flags: bus master, fast devsel, latency 0, NUMA node 0, IOMMU group 52 Memory at fb740000 (32-bit, non-prefetchable) [size=8K] Memory at fb700000 (32-bit, non-prefetchable) [size=256K] Capabilities: [90] Express Root Complex Integrated Endpoint, MSI 00 Capabilities: [e0] Power Management version 3 Capabilities: [100] Designated Vendor-Specific: Vendor=8086 ID=0001 Rev=1 Len=16 <?> Capabilities: [110] Designated Vendor-Specific: Vendor=8086 ID=0002 Rev=1 Len=16 <?> Capabilities: [120] Designated Vendor-Specific: Vendor=8086 ID=0003 Rev=1 Len=16 <?> Capabilities: [130] Designated Vendor-Specific: Vendor=8086 ID=0004 Rev=1 Len=16 <?> Capabilities: [140] Designated Vendor-Specific: Vendor=8086 ID=0000 Rev=1 Len=16 <?> Capabilities: [160] Vendor Specific Information: ID=0041 Rev=1 Len=010 <?> Kernel driver in use: intel_vsec Kernel modules: intel_vsec fe:00.0 System peripheral: Intel Corporation Device 3250 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 53 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:00.1 System peripheral: Intel Corporation Device 3251 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 54 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 Kernel driver in use: isst_if_pci Kernel modules: isst_if_mmio fe:00.2 System peripheral: Intel Corporation Device 3252 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 55 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:00.3 Host bridge: Intel Corporation Ice Lake IEH Subsystem: Intel Corporation Ice Lake IEH Flags: fast devsel, NUMA node 0, IOMMU group 56 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 Capabilities: [80] Power Management version 3 Capabilities: [100] Advanced Error Reporting Capabilities: [160] Root Complex Event Collector Endpoint Association fe:00.5 System peripheral: Intel Corporation Device 3255 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 57 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:01.0 System peripheral: Intel Corporation Device 3240 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 58 Expansion ROM at <ignored> [disabled by cmd] Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:01.1 System peripheral: Intel Corporation Device 3241 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 59 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:01.2 System peripheral: Intel Corporation Device 3242 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 60 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:02.0 System peripheral: Intel Corporation Device 3240 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 61 Expansion ROM at <ignored> [disabled by cmd] Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:02.1 System peripheral: Intel Corporation Device 3241 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 62 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:02.2 System peripheral: Intel Corporation Device 3242 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 63 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:05.0 System peripheral: Intel Corporation Device 3245 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 64 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:05.1 System peripheral: Intel Corporation Device 3246 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 65 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:05.2 System peripheral: Intel Corporation Device 3247 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 66 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:06.0 System peripheral: Intel Corporation Device 3245 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 67 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:06.1 System peripheral: Intel Corporation Device 3246 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 68 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:06.2 System peripheral: Intel Corporation Device 3247 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 69 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:07.0 System peripheral: Intel Corporation Device 3245 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 70 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:07.1 System peripheral: Intel Corporation Device 3246 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 71 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:07.2 System peripheral: Intel Corporation Device 3247 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 72 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:0c.0 Performance counters: Intel Corporation Device 324a Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 73 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:0d.0 Performance counters: Intel Corporation Device 324a Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 74 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:0e.0 Performance counters: Intel Corporation Device 324a Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 75 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:0f.0 Performance counters: Intel Corporation Device 324a Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 76 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:1a.0 Performance counters: Intel Corporation Device 2880 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 77 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:1b.0 Performance counters: Intel Corporation Device 2880 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 78 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:1c.0 Performance counters: Intel Corporation Device 2880 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 79 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 fe:1d.0 Performance counters: Intel Corporation Device 2880 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 80 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:00.0 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 81 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:00.1 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 82 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:00.2 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 83 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:00.3 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 84 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:00.4 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 85 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:00.5 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 86 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:00.6 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 87 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:00.7 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 88 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:01.0 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 89 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:01.1 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 90 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:01.2 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 91 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:01.3 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 92 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:01.4 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 93 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:01.5 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 94 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:01.6 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 95 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:01.7 System peripheral: Intel Corporation Device 324c Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 96 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0a.0 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 97 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0a.1 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 98 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0a.2 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 99 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0a.3 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 100 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0a.4 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 101 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0a.5 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 102 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0a.6 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 103 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0a.7 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 104 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0b.0 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 105 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0b.1 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 106 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0b.2 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 107 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0b.3 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 108 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0b.4 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 109 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0b.5 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 110 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0b.6 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 111 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:0b.7 System peripheral: Intel Corporation Device 324d Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 112 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:1d.0 System peripheral: Intel Corporation Device 344f Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 113 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:1d.1 System peripheral: Intel Corporation Device 3457 Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 114 Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 ff:1e.0 System peripheral: Intel Corporation Device 3258 (rev 08) Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 115 ff:1e.1 System peripheral: Intel Corporation Device 3259 (rev 08) Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 115 Kernel driver in use: isst_if_mbox_pci Kernel modules: isst_if_mbox_pci ff:1e.2 System peripheral: Intel Corporation Device 325a (rev 08) Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 115 ff:1e.3 System peripheral: Intel Corporation Device 325b (rev 08) Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 115 ff:1e.4 System peripheral: Intel Corporation Device 325c (rev 08) Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 115 ff:1e.5 System peripheral: Intel Corporation Device 325d (rev 08) Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 115 ff:1e.6 System peripheral: Intel Corporation Device 325e (rev 08) Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 115 ff:1e.7 System peripheral: Intel Corporation Device 325f (rev 08) Subsystem: Intel Corporation Device 0000 Flags: fast devsel, NUMA node 0, IOMMU group 115 ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum 2026-07-24 8:36 ` JC Chen[陳饒靜] @ 2026-08-26 14:28 ` Ilpo Järvinen 2026-08-27 0:13 ` JC Chen[陳饒靜] 0 siblings, 1 reply; 6+ messages in thread From: Ilpo Järvinen @ 2026-08-26 14:28 UTC (permalink / raw) To: JC Chen[陳饒靜] Cc: Bjorn Helgaas, Nirmoy Das, Bjorn Helgaas, linux-pci, linux-kernel [-- Attachment #1: Type: text/plain, Size: 9788 bytes --] 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@kernel.org> > Sent: Friday, July 24, 2026 4:54 AM > To: Nirmoy Das <nirmoyd@nvidia.com> > Cc: Bjorn Helgaas <bhelgaas@google.com>; linux-pci@vger.kernel.org; > linux-kernel@vger.kernel.org; JC Chen[陳饒靜] <jc_chen@diodes.com>; Ilpo Järvinen > <ilpo.jarvinen@linux.intel.com> > Subject: Re: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum > > > > [You don't often get email from helgaas@kernel.org. 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@nvidia.com> > > > --- > > > 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. ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum 2026-08-26 14:28 ` Ilpo Järvinen @ 2026-08-27 0:13 ` JC Chen[陳饒靜] 2026-08-27 6:45 ` JC Chen[陳饒靜] 0 siblings, 1 reply; 6+ messages in thread From: JC Chen[陳饒靜] @ 2026-08-27 0:13 UTC (permalink / raw) To: Ilpo Järvinen Cc: Bjorn Helgaas, Nirmoy Das, Bjorn Helgaas, linux-pci, linux-kernel 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@linux.intel.com> Sent: Wednesday, August 26, 2026 10:28 PM To: JC Chen[陳饒靜] <jc_chen@diodes.com> Cc: Bjorn Helgaas <helgaas@kernel.org>; Nirmoy Das <nirmoyd@nvidia.com>; Bjorn Helgaas <bhelgaas@google.com>; linux-pci@vger.kernel.org; linux-kernel@vger.kernel.org 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@kernel.org> > Sent: Friday, July 24, 2026 4:54 AM > To: Nirmoy Das <nirmoyd@nvidia.com> > Cc: Bjorn Helgaas <bhelgaas@google.com>; linux-pci@vger.kernel.org; > linux-kernel@vger.kernel.org; JC Chen[陳饒靜] <jc_chen@diodes.com>; Ilpo > Järvinen <ilpo.jarvinen@linux.intel.com> > Subject: Re: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port > 4 BAR erratum > > > > [You don't often get email from helgaas@kernel.org. 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@nvidia.com> > > > --- > > > 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. ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum 2026-08-27 0:13 ` JC Chen[陳饒靜] @ 2026-08-27 6:45 ` JC Chen[陳饒靜] 0 siblings, 0 replies; 6+ messages in thread From: JC Chen[陳饒靜] @ 2026-08-27 6:45 UTC (permalink / raw) To: Ilpo Järvinen Cc: Bjorn Helgaas, Nirmoy Das, Bjorn Helgaas, linux-pci, linux-kernel [-- Attachment #1: Type: text/plain, Size: 11121 bytes --] 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@linux.intel.com> Cc: Bjorn Helgaas <helgaas@kernel.org>; Nirmoy Das <nirmoyd@nvidia.com>; Bjorn Helgaas <bhelgaas@google.com>; linux-pci@vger.kernel.org; linux-kernel@vger.kernel.org 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@linux.intel.com> Sent: Wednesday, August 26, 2026 10:28 PM To: JC Chen[陳饒靜] <jc_chen@diodes.com> Cc: Bjorn Helgaas <helgaas@kernel.org>; Nirmoy Das <nirmoyd@nvidia.com>; Bjorn Helgaas <bhelgaas@google.com>; linux-pci@vger.kernel.org; linux-kernel@vger.kernel.org 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@kernel.org> > Sent: Friday, July 24, 2026 4:54 AM > To: Nirmoy Das <nirmoyd@nvidia.com> > Cc: Bjorn Helgaas <bhelgaas@google.com>; linux-pci@vger.kernel.org; > linux-kernel@vger.kernel.org; JC Chen[陳饒靜] <jc_chen@diodes.com>; Ilpo > Järvinen <ilpo.jarvinen@linux.intel.com> > Subject: Re: [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port > 4 BAR erratum > > > > [You don't often get email from helgaas@kernel.org. 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@nvidia.com> > > > --- > > > 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. [-- Attachment #2: dmesg - full loading.txt --] [-- Type: text/plain, Size: 102978 bytes --] 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@linux.it> [ 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@lists.linux.dev [ 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:~$ [-- Attachment #3: lspci - full loading.txt --] [-- Type: text/plain, Size: 85598 bytes --] 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 ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-08-27 6:45 UTC | newest] Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2026-07-23 16:10 [RFC PATCH] PCI: Work around Pericom PI7C9X3G606GPC Port 4 BAR erratum Nirmoy Das 2026-07-23 20:54 ` Bjorn Helgaas 2026-07-24 8:36 ` JC Chen[陳饒靜] 2026-08-26 14:28 ` Ilpo Järvinen 2026-08-27 0:13 ` JC Chen[陳饒靜] 2026-08-27 6:45 ` JC Chen[陳饒靜]
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®