* 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[陳饒靜]
0 siblings, 0 replies; 3+ messages in thread
From: JC Chen[陳饒靜] @ 2026-07-24 8:36 UTC (permalink / raw)
To: Bjorn Helgaas, Nirmoy Das
Cc: Bjorn Helgaas, linux-pci@vger.kernel.org,
linux-kernel@vger.kernel.org, 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] 3+ messages in thread