linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sergey Dolgov <sergey.v.dolgov@gmail.com>
To: Bjorn Helgaas <helgaas@kernel.org>
Cc: linux-pci@vger.kernel.org,
	 Kuppuswamy Sathyanarayanan
	<sathyanarayanan.kuppuswamy@linux.intel.com>,
	 "Artem S. Tashkinov" <aros@gmx.com>,
	Mika Westerberg <mika.westerberg@linux.intel.com>,
	 "David E. Box" <david.e.box@linux.intel.com>
Subject: Re: [Bug 219984] New: [BISECTED] High power usage since 'PCI/ASPM: Correct LTR_L1.2_THRESHOLD computation'
Date: Sun, 20 Apr 2025 13:42:10 +0100	[thread overview]
Message-ID: <CAONYan9gQHD2bcO4jFECEP4XA7axkw0KBV33qvneoxzc7Oz39g@mail.gmail.com> (raw)
In-Reply-To: <20250418225527.GA169820@bhelgaas>

[-- Attachment #1: Type: text/plain, Size: 10271 bytes --]

Dear Bjorn,

yes, your patch is also logging always the same LTR_L1.2_THRESHOLD of
81920 ns, "skipping L1.2 config". The idle power draw with this patch
is 0.905 +- 0.174 W, PC10 residency is 79 +- 6%, and SYS%LPI residency
is 71 +- 6 %. Also the s2idle power draw is now about 0.7 W - the
lowest of all Linux kernels I've used on this laptop.

Best wishes,
Sergey.

On Fri, Apr 18, 2025 at 11:55 PM Bjorn Helgaas <helgaas@kernel.org> wrote:
>
> On Sun, Apr 13, 2025 at 12:59:07PM +0100, Sergey Dolgov wrote:
> > Dear Bjorn,
> >
> > I've compiled pciutils-3.13.0 with MinGW and run it with WinDBG, and
> > it managed to display how Windows sets LTR1.2_Threshold. The trick is
> > that it does NOT! I've removed all the actual reprogramming in
> > aspm_calc_l12_info to see the devices' default thresholds, and they've
> > come out exactly the same as in Windows (81920ns for all devices
> > except 0 for NVIDIA, but it should have its own dynamic power
> > management). I've collected these logs also after booting the original
> > 6.14.0 kernel to make sure the devices haven't just kept the values
> > set by Windows - nope, the devices (or maybe BIOS/Firmware) do reset
> > LTR_L1.2_THRESHOLD to 81920ns every reboot.
> >
> > I tried to read latencies from PCI_EXT_CAP_ID_LTR (see the new
> > function pcie_log_runtime_ltr in l12debug.patch), but it bails out at
> > "No LTR capability found" for all devices.
> >
> > The idle power usage has increased slightly to 0.916 W due to about
> > 80% PC10 residency and 60-70% SYS%LPI residency (in contrast to 90%+
> > PC10 and 80%+ SYS%LPI with pre 7afeb84d14ea thresholds), but that's
> > still much more power efficient than the mainline kernel.
> >
> > So the question is why the OS has to reprogram T_POWER_ON, CMRT and
> > LTR_L1.2_THRESHOLD at all, instead of trusting the device defaults? Is
> > there any statistics on broken devices reporting bogus values, and
> > frequently running out of buffer?
>
> Great question.  I think you're right that if the BIOS has programmed
> L1.2 settings, it's very unlikely that the OS can do a better job.
>
> This is really ugly, but since I won't have more time for this until
> Monday, could you try the patch below?  (Replace the previous debug
> patch with this one)
>
>
> diff --git a/drivers/pci/pcie/aspm.c b/drivers/pci/pcie/aspm.c
> index 29fcb0689a91..e6e9d6faa028 100644
> --- a/drivers/pci/pcie/aspm.c
> +++ b/drivers/pci/pcie/aspm.c
> @@ -563,6 +563,27 @@ static void encode_l12_threshold(u32 threshold_us, u32 *scale, u32 *value)
>         }
>  }
>
> +static u64 decode_l12_threshold(u32 scale, u32 value)
> +{
> +       u32 mpy;
> +
> +       /*
> +        * LTR_L1.2_THRESHOLD_Value ("value") is a 10-bit field with max
> +        * value of 0x3ff.
> +        */
> +       switch (scale) {
> +       case 0: mpy = 1; break;
> +       case 1: mpy = 32; break;
> +       case 2: mpy = 1024; break;
> +       case 3: mpy = 32768; break;
> +       case 4: mpy = 1048576; break;
> +       case 5: mpy = 33554432; break;
> +       default: mpy = 0;
> +       }
> +
> +       return (u64) value * mpy;
> +}
> +
>  static void pcie_aspm_check_latency(struct pci_dev *endpoint)
>  {
>         u32 latency, encoding, lnkcap_up, lnkcap_dw;
> @@ -641,18 +662,29 @@ static void aspm_calc_l12_info(struct pcie_link_state *link,
>         u32 ctl1 = 0, ctl2 = 0;
>         u32 pctl1, pctl2, cctl1, cctl2;
>         u32 pl1_2_enables, cl1_2_enables;
> +       u32 cmrt;
> +       u32 p_ltr_val, p_ltr_scale;
> +       u32 c_ltr_val, c_ltr_scale;
> +       u64 p_ltr_threshold, c_ltr_threshold;
>
>         /* Choose the greater of the two Port Common_Mode_Restore_Times */
>         val1 = FIELD_GET(PCI_L1SS_CAP_CM_RESTORE_TIME, parent_l1ss_cap);
>         val2 = FIELD_GET(PCI_L1SS_CAP_CM_RESTORE_TIME, child_l1ss_cap);
>         t_common_mode = max(val1, val2);
>
> +       pci_info(child, "cap: parent CMRT %#04x child CMRT %#04x\n", val1, val2);
> +
>         /* Choose the greater of the two Port T_POWER_ON times */
>         val1   = FIELD_GET(PCI_L1SS_CAP_P_PWR_ON_VALUE, parent_l1ss_cap);
>         scale1 = FIELD_GET(PCI_L1SS_CAP_P_PWR_ON_SCALE, parent_l1ss_cap);
>         val2   = FIELD_GET(PCI_L1SS_CAP_P_PWR_ON_VALUE, child_l1ss_cap);
>         scale2 = FIELD_GET(PCI_L1SS_CAP_P_PWR_ON_SCALE, child_l1ss_cap);
>
> +       pci_info(child, "cap: parent T_POWER_ON %#06x usec (val %#04x scale %x)\n",
> +                calc_l12_pwron(parent, scale1, val1), val1, scale1);
> +       pci_info(child, "cap: child  T_POWER_ON %#06x usec (val %#04x scale %x)\n",
> +                calc_l12_pwron(child, scale2, val2), val2, scale2);
> +
>         if (calc_l12_pwron(parent, scale1, val1) >
>             calc_l12_pwron(child, scale2, val2)) {
>                 ctl2 |= FIELD_PREP(PCI_L1SS_CTL2_T_PWR_ON_SCALE, scale1) |
> @@ -675,7 +707,11 @@ static void aspm_calc_l12_info(struct pcie_link_state *link,
>          * least 4us.
>          */
>         l1_2_threshold = 2 + 4 + t_common_mode + t_power_on;
> +       pci_info(child, "t_common_mode %#04x t_power_on %#04x l1_2_threshold %#06x\n",
> +                t_common_mode, t_power_on, l1_2_threshold);
>         encode_l12_threshold(l1_2_threshold, &scale, &value);
> +       pci_info(child, "encoded LTR_L1.2_THRESHOLD value %#06x scale %x\n",
> +                value, scale);
>         ctl1 |= FIELD_PREP(PCI_L1SS_CTL1_CM_RESTORE_TIME, t_common_mode) |
>                 FIELD_PREP(PCI_L1SS_CTL1_LTR_L12_TH_VALUE, value) |
>                 FIELD_PREP(PCI_L1SS_CTL1_LTR_L12_TH_SCALE, scale);
> @@ -686,6 +722,28 @@ static void aspm_calc_l12_info(struct pcie_link_state *link,
>         pci_read_config_dword(child, child->l1ss + PCI_L1SS_CTL1, &cctl1);
>         pci_read_config_dword(child, child->l1ss + PCI_L1SS_CTL2, &cctl2);
>
> +       pci_info(child, "L1SS_CTL1 %#08x (parent %#010x child %#010x)\n",
> +                ctl1, pctl1, cctl1);
> +       pci_info(child, "L1SS_CTL2 %#08x (parent %#010x child %#010x)\n",
> +                ctl2, pctl2, cctl2);
> +
> +       cmrt = FIELD_GET(PCI_L1SS_CTL1_CM_RESTORE_TIME, pctl1);
> +       p_ltr_val = FIELD_GET(PCI_L1SS_CTL1_LTR_L12_TH_VALUE, pctl1);
> +       p_ltr_scale = FIELD_GET(PCI_L1SS_CTL1_LTR_L12_TH_SCALE, pctl1);
> +       p_ltr_threshold = decode_l12_threshold(p_ltr_scale, p_ltr_val);
> +       c_ltr_val = FIELD_GET(PCI_L1SS_CTL1_LTR_L12_TH_VALUE, cctl1);
> +       c_ltr_scale = FIELD_GET(PCI_L1SS_CTL1_LTR_L12_TH_SCALE, cctl1);
> +       c_ltr_threshold = decode_l12_threshold(c_ltr_scale, c_ltr_val);
> +       if (cmrt || p_ltr_threshold || c_ltr_threshold) {
> +               pci_info(child, "cur: parent CMRT %d usec\n", cmrt);
> +               pci_info(child, "cur: parent LTR_L1.2_THRESHOLD value %#06x scale %x decoded %#012llx ns\n",
> +                        p_ltr_val, p_ltr_scale, p_ltr_threshold);
> +               pci_info(child, "cur: child  LTR_L1.2_THRESHOLD value %#06x scale %x decoded %#012llx ns\n",
> +                        c_ltr_val, c_ltr_scale, c_ltr_threshold);
> +               pci_info(child, "skipping L1.2 config\n");
> +               return;
> +       }
> +
>         if (ctl1 == pctl1 && ctl1 == cctl1 &&
>             ctl2 == pctl2 && ctl2 == cctl2)
>                 return;
> @@ -703,14 +761,27 @@ static void aspm_calc_l12_info(struct pcie_link_state *link,
>                                                PCI_L1SS_CTL1_L1_2_MASK, 0);
>         }
>
> +       pci_read_config_dword(parent, parent->l1ss + PCI_L1SS_CTL1, &pctl1);
> +       pci_read_config_dword(child, child->l1ss + PCI_L1SS_CTL1, &cctl1);
> +       pci_info(child, "L1SS_CTL1 parent %#08x child %#08x (L1.2 disabled)\n",
> +                pctl1, cctl1);
> +
>         /* Program T_POWER_ON times in both ports */
>         pci_write_config_dword(parent, parent->l1ss + PCI_L1SS_CTL2, ctl2);
>         pci_write_config_dword(child, child->l1ss + PCI_L1SS_CTL2, ctl2);
>
> +       pci_read_config_dword(parent, parent->l1ss + PCI_L1SS_CTL2, &pctl2);
> +       pci_read_config_dword(child, child->l1ss + PCI_L1SS_CTL2, &cctl2);
> +       pci_info(child, "L1SS_CTL2 parent %#08x child %#08x (T_POWER_ON updated)\n",
> +                pctl2, cctl2);
> +
>         /* Program Common_Mode_Restore_Time in upstream device */
>         pci_clear_and_set_config_dword(parent, parent->l1ss + PCI_L1SS_CTL1,
>                                        PCI_L1SS_CTL1_CM_RESTORE_TIME, ctl1);
>
> +       pci_read_config_dword(parent, parent->l1ss + PCI_L1SS_CTL1, &pctl1);
> +       pci_info(child, "L1SS_CTL1 parent %#08x (CMRT updated)\n", pctl1);
> +
>         /* Program LTR_L1.2_THRESHOLD time in both ports */
>         pci_clear_and_set_config_dword(parent, parent->l1ss + PCI_L1SS_CTL1,
>                                        PCI_L1SS_CTL1_LTR_L12_TH_VALUE |
> @@ -721,6 +792,11 @@ static void aspm_calc_l12_info(struct pcie_link_state *link,
>                                        PCI_L1SS_CTL1_LTR_L12_TH_SCALE,
>                                        ctl1);
>
> +       pci_read_config_dword(parent, parent->l1ss + PCI_L1SS_CTL1, &pctl1);
> +       pci_read_config_dword(child, child->l1ss + PCI_L1SS_CTL1, &cctl1);
> +       pci_info(child, "L1SS_CTL1 parent %#08x child %#08x (LTR_L1.2_THRESHOLD updated)\n",
> +                pctl1, cctl1);
> +
>         if (pl1_2_enables || cl1_2_enables) {
>                 pci_clear_and_set_config_dword(parent,
>                                                parent->l1ss + PCI_L1SS_CTL1, 0,
> @@ -729,6 +805,11 @@ static void aspm_calc_l12_info(struct pcie_link_state *link,
>                                                child->l1ss + PCI_L1SS_CTL1, 0,
>                                                cl1_2_enables);
>         }
> +
> +       pci_read_config_dword(parent, parent->l1ss + PCI_L1SS_CTL1, &pctl1);
> +       pci_read_config_dword(child, child->l1ss + PCI_L1SS_CTL1, &cctl1);
> +       pci_info(child, "L1SS_CTL1 parent %#08x child %#08x (L1.2 restored)\n",
> +                pctl1, cctl1);
>  }
>
>  static void aspm_l1ss_init(struct pcie_link_state *link)

[-- Attachment #2: dmesg-6.14.info2.log --]
[-- Type: text/x-log, Size: 100631 bytes --]

[    0.000000] Linux version 6.14.0-00001-g13b71297a835 (dc@dc-hp) (gcc (Gentoo 14.2.1_p20241221 p7) 14.2.1 20241221, GNU ld (Gentoo 2.44 p1) 2.44.0) #45 SMP PREEMPT Sun Apr 20 09:40:19 BST 2025
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.14.0-00001-g13b71297a835 root=PARTUUID=1c79c386-6d27-4363-87fa-132b8751cf76 ro nowatchdog mitigations=off pcie_aspm=force pcie_aspm.policy=powersupersave resume=PARTUUID=0ce7b13e-c732-45f8-a889-75399119adb9 resume_offset=1017856 zram.num_devices=2
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000535e3fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000535e4000-0x0000000054e59fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000054e5a000-0x0000000054ee1fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000054ee2000-0x0000000055079fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000005507a000-0x000000005ab35fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005ab36000-0x000000005ac0efff] type 20
[    0.000000] BIOS-e820: [mem 0x000000005ac0f000-0x000000005ac0ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000005ac10000-0x000000005fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000049bffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by American Megatrends
[    0.000000] efi: ACPI 2.0=0x54e7d000 ACPI=0x54e7d000 SMBIOS=0x5a98a000 SMBIOS 3.0=0x5a989000 MEMATTR=0x52082818 ESRT=0x50228b98 
[    0.000000] efi: Remove mem49: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[    0.000000] efi: Not removing mem50: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[    0.000000] efi: Not removing mem51: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem52: MMIO range=[0xfed00000-0xfed03fff] (16KB) from e820 map
[    0.000000] efi: Not removing mem53: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[    0.000000] efi: Remove mem54: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI: HP HP Spectre x360 Convertible 15-df1xxx/863E, BIOS F.32 12/08/2023
[    0.000000] DMI: Memory slots populated: 2/2
[    0.000000] tsc: Detected 2600.000 MHz processor
[    0.000000] tsc: Detected 2599.992 MHz TSC
[    0.000004] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000006] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000011] last_pfn = 0x49c000 max_arch_pfn = 0x400000000
[    0.000014] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[    0.000015] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000247] last_pfn = 0x5ac10 max_arch_pfn = 0x400000000
[    0.000252] esrt: Reserving ESRT space from 0x0000000050228b98 to 0x0000000050228bd0.
[    0.000255] e820: update [mem 0x50228000-0x50228fff] usable ==> reserved
[    0.000264] Kernel/User page tables isolation: disabled on command line.
[    0.000265] Using GB pages for direct mapping
[    0.000391] Secure boot could not be determined
[    0.000392] ACPI: Early table checksum verification disabled
[    0.000393] ACPI: RSDP 0x0000000054E7D000 000024 (v02 HPQOEM)
[    0.000396] ACPI: XSDT 0x0000000054E7D0D0 00011C (v01 HPQOEM SLIC-MPC 01072009 HP   00010013)
[    0.000399] ACPI: FACP 0x0000000054EC82A8 000114 (v06 HPQOEM SLIC-MPC 01072009 HP   00010013)
[    0.000402] ACPI: DSDT 0x0000000054E7D278 04B02A (v02 HPQOEM 863E     01072009 ACPI 20160527)
[    0.000405] ACPI: FACS 0x0000000055077080 000040
[    0.000406] ACPI: APIC 0x0000000054EC83C0 0000F4 (v04 HPQOEM 863E     01072009 HP   00010013)
[    0.000408] ACPI: FPDT 0x0000000054EC84B8 000044 (v01 HPQOEM 863E     01072009 HP   00010013)
[    0.000409] ACPI: FIDT 0x0000000054EC8500 00009C (v01 HPQOEM 863E     01072009 HP   00010013)
[    0.000411] ACPI: MCFG 0x0000000054EC85A0 00003C (v01 HPQOEM 863E     01072009 HP   00000097)
[    0.000412] ACPI: SSDT 0x0000000054EC85E0 00557E (v02 HPQOEM 863E     00001000 ACPI 20160527)
[    0.000414] ACPI: SSDT 0x0000000054ECDB60 001B5F (v02 HPQOEM 863E     00003000 ACPI 20160527)
[    0.000416] ACPI: MSDM 0x0000000054ECF6C0 000055 (v03 HPQOEM SLIC-MPC 00000001 HP   00010013)
[    0.000417] ACPI: SSDT 0x0000000054ECF718 0031C6 (v02 HPQOEM 863E     00003000 ACPI 20160527)
[    0.000419] ACPI: SSDT 0x0000000054ED28E0 002631 (v02 HPQOEM 863E     00001000 ACPI 20160527)
[    0.000420] ACPI: HPET 0x0000000054ED4F18 000038 (v01 HPQOEM 863E     00000002 HP   01000013)
[    0.000422] ACPI: SSDT 0x0000000054ED4F50 002CFD (v02 HPQOEM 863E     00001000 ACPI 20160527)
[    0.000423] ACPI: SSDT 0x0000000054ED7C50 002FD0 (v02 HPQOEM 863E     00000000 ACPI 20160527)
[    0.000425] ACPI: UEFI 0x0000000054EDAC20 000042 (v01 HPQOEM 863E     00000002 HP   01000013)
[    0.000426] ACPI: LPIT 0x0000000054EDAC68 000094 (v01 HPQOEM 863E     00000002 HP   01000013)
[    0.000428] ACPI: SSDT 0x0000000054EDAD00 001423 (v02 HPQOEM 863E     00001000 ACPI 20160527)
[    0.000430] ACPI: SSDT 0x0000000054EDC128 0005D2 (v02 HPQOEM 863E     00000000 ACPI 20160527)
[    0.000431] ACPI: DBGP 0x0000000054EDC700 000034 (v01 HPQOEM 863E     00000002 HP   01000013)
[    0.000433] ACPI: DBG2 0x0000000054EDC738 000054 (v00 HPQOEM 863E     00000002 HP   01000013)
[    0.000434] ACPI: SSDT 0x0000000054EDC790 000DBC (v02 HPQOEM 863E     00001000 ACPI 20160527)
[    0.000436] ACPI: SSDT 0x0000000054EDD550 000144 (v02 HPQOEM 863E     00001000 ACPI 20160527)
[    0.000437] ACPI: SSDT 0x0000000054EDD698 0000AE (v02 HPQOEM 863E     00001000 ACPI 20160527)
[    0.000439] ACPI: NHLT 0x0000000054EDD748 00179E (v00 HPQOEM 863E     00000002 HP   01000013)
[    0.000440] ACPI: SSDT 0x0000000054EDEEE8 00009D (v01 HPQOEM 863E     00000001 ACPI 20160527)
[    0.000442] ACPI: SSDT 0x0000000054EDEF88 000060 (v01 HPQOEM 863E     00000001 ACPI 20160527)
[    0.000444] ACPI: UEFI 0x0000000054EDEFE8 00063A (v01 HPQOEM 863E     00000000 HP   00000000)
[    0.000446] ACPI: UEFI 0x0000000054EDF628 00005C (v01 HPQOEM 863E     00000000 HP   00000000)
[    0.000447] ACPI: SSDT 0x0000000054EDF688 002382 (v01 HPQOEM 863E     00001000 ACPI 20160527)
[    0.000449] ACPI: DMAR 0x0000000054EE1A10 0000A8 (v01 HPQOEM 863E     00000002 HP   01000013)
[    0.000450] ACPI: WSMT 0x0000000054EE1AB8 000028 (v01 HPQOEM 863E     01072009 HP   00010013)
[    0.000452] ACPI: BGRT 0x0000000054EE1AE0 000038 (v01 HPQOEM 863E     01072009 HP   00010013)
[    0.000453] ACPI: Reserving FACP table memory at [mem 0x54ec82a8-0x54ec83bb]
[    0.000454] ACPI: Reserving DSDT table memory at [mem 0x54e7d278-0x54ec82a1]
[    0.000455] ACPI: Reserving FACS table memory at [mem 0x55077080-0x550770bf]
[    0.000455] ACPI: Reserving APIC table memory at [mem 0x54ec83c0-0x54ec84b3]
[    0.000455] ACPI: Reserving FPDT table memory at [mem 0x54ec84b8-0x54ec84fb]
[    0.000456] ACPI: Reserving FIDT table memory at [mem 0x54ec8500-0x54ec859b]
[    0.000456] ACPI: Reserving MCFG table memory at [mem 0x54ec85a0-0x54ec85db]
[    0.000457] ACPI: Reserving SSDT table memory at [mem 0x54ec85e0-0x54ecdb5d]
[    0.000457] ACPI: Reserving SSDT table memory at [mem 0x54ecdb60-0x54ecf6be]
[    0.000458] ACPI: Reserving MSDM table memory at [mem 0x54ecf6c0-0x54ecf714]
[    0.000458] ACPI: Reserving SSDT table memory at [mem 0x54ecf718-0x54ed28dd]
[    0.000459] ACPI: Reserving SSDT table memory at [mem 0x54ed28e0-0x54ed4f10]
[    0.000459] ACPI: Reserving HPET table memory at [mem 0x54ed4f18-0x54ed4f4f]
[    0.000459] ACPI: Reserving SSDT table memory at [mem 0x54ed4f50-0x54ed7c4c]
[    0.000460] ACPI: Reserving SSDT table memory at [mem 0x54ed7c50-0x54edac1f]
[    0.000460] ACPI: Reserving UEFI table memory at [mem 0x54edac20-0x54edac61]
[    0.000461] ACPI: Reserving LPIT table memory at [mem 0x54edac68-0x54edacfb]
[    0.000461] ACPI: Reserving SSDT table memory at [mem 0x54edad00-0x54edc122]
[    0.000462] ACPI: Reserving SSDT table memory at [mem 0x54edc128-0x54edc6f9]
[    0.000462] ACPI: Reserving DBGP table memory at [mem 0x54edc700-0x54edc733]
[    0.000463] ACPI: Reserving DBG2 table memory at [mem 0x54edc738-0x54edc78b]
[    0.000463] ACPI: Reserving SSDT table memory at [mem 0x54edc790-0x54edd54b]
[    0.000464] ACPI: Reserving SSDT table memory at [mem 0x54edd550-0x54edd693]
[    0.000464] ACPI: Reserving SSDT table memory at [mem 0x54edd698-0x54edd745]
[    0.000465] ACPI: Reserving NHLT table memory at [mem 0x54edd748-0x54edeee5]
[    0.000465] ACPI: Reserving SSDT table memory at [mem 0x54edeee8-0x54edef84]
[    0.000466] ACPI: Reserving SSDT table memory at [mem 0x54edef88-0x54edefe7]
[    0.000466] ACPI: Reserving UEFI table memory at [mem 0x54edefe8-0x54edf621]
[    0.000466] ACPI: Reserving UEFI table memory at [mem 0x54edf628-0x54edf683]
[    0.000467] ACPI: Reserving SSDT table memory at [mem 0x54edf688-0x54ee1a09]
[    0.000467] ACPI: Reserving DMAR table memory at [mem 0x54ee1a10-0x54ee1ab7]
[    0.000468] ACPI: Reserving WSMT table memory at [mem 0x54ee1ab8-0x54ee1adf]
[    0.000468] ACPI: Reserving BGRT table memory at [mem 0x54ee1ae0-0x54ee1b17]
[    0.000489] No NUMA configuration found
[    0.000489] Faking a node at [mem 0x0000000000000000-0x000000049bffffff]
[    0.000492] NODE_DATA(0) allocated [mem 0x49bffd180-0x49bfffcbf]
[    0.000509] Zone ranges:
[    0.000510]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000511]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000512]   Normal   [mem 0x0000000100000000-0x000000049bffffff]
[    0.000513] Movable zone start for each node
[    0.000513] Early memory node ranges
[    0.000513]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000514]   node   0: [mem 0x0000000000100000-0x00000000535e3fff]
[    0.000515]   node   0: [mem 0x000000005ac0f000-0x000000005ac0ffff]
[    0.000516]   node   0: [mem 0x0000000100000000-0x000000049bffffff]
[    0.000517] Initmem setup node 0 [mem 0x0000000000001000-0x000000049bffffff]
[    0.000521] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.000540] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.002420] On node 0, zone DMA32: 30251 pages in unavailable ranges
[    0.020898] On node 0, zone Normal: 21488 pages in unavailable ranges
[    0.021044] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.021078] Reserving Intel graphics memory at [mem 0x5c000000-0x5fffffff]
[    0.025738] ACPI: PM-Timer IO Port: 0x1808
[    0.025743] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.025744] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.025745] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.025745] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.025745] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.025746] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.025746] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.025747] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.025747] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.025747] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.025748] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.025748] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.025814] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.025816] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.025817] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.025820] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.025821] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.025825] e820: update [mem 0x5016e000-0x50186fff] usable ==> reserved
[    0.025831] TSC deadline timer available
[    0.025835] CPU topo: Max. logical packages:   1
[    0.025835] CPU topo: Max. logical dies:       1
[    0.025835] CPU topo: Max. dies per package:   1
[    0.025838] CPU topo: Max. threads per core:   2
[    0.025839] CPU topo: Num. cores per package:     6
[    0.025839] CPU topo: Num. threads per package:  12
[    0.025840] CPU topo: Allowing 12 present CPUs plus 0 hotplug CPUs
[    0.025849] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.025850] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.025851] PM: hibernation: Registered nosave memory: [mem 0x5016e000-0x50186fff]
[    0.025853] PM: hibernation: Registered nosave memory: [mem 0x50228000-0x50228fff]
[    0.025853] PM: hibernation: Registered nosave memory: [mem 0x535e4000-0x54e59fff]
[    0.025854] PM: hibernation: Registered nosave memory: [mem 0x54e5a000-0x54ee1fff]
[    0.025854] PM: hibernation: Registered nosave memory: [mem 0x54ee2000-0x55079fff]
[    0.025855] PM: hibernation: Registered nosave memory: [mem 0x5507a000-0x5ab35fff]
[    0.025855] PM: hibernation: Registered nosave memory: [mem 0x5ab36000-0x5ac0efff]
[    0.025856] PM: hibernation: Registered nosave memory: [mem 0x5ac10000-0x5fffffff]
[    0.025856] PM: hibernation: Registered nosave memory: [mem 0x60000000-0xfdffffff]
[    0.025857] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.025857] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.025857] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.025858] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.025858] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[    0.025859] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfedfffff]
[    0.025859] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.025859] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[    0.025860] [mem 0x60000000-0xfdffffff] available for PCI devices
[    0.025862] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.030151] setup_percpu: NR_CPUS:12 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
[    0.030543] percpu: Embedded 59 pages/cpu s200984 r8192 d32488 u262144
[    0.030547] pcpu-alloc: s200984 r8192 d32488 u262144 alloc=1*2097152
[    0.030549] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- 
[    0.030562] Kernel command line: BOOT_IMAGE=/vmlinuz-6.14.0-00001-g13b71297a835 root=PARTUUID=1c79c386-6d27-4363-87fa-132b8751cf76 ro nowatchdog mitigations=off pcie_aspm=force pcie_aspm.policy=powersupersave resume=PARTUUID=0ce7b13e-c732-45f8-a889-75399119adb9 resume_offset=1017856 zram.num_devices=2
[    0.030593] PCIe ASPM is forcibly enabled
[    0.030607] Unknown kernel command line parameters "nowatchdog BOOT_IMAGE=/vmlinuz-6.14.0-00001-g13b71297a835", will be passed to user space.
[    0.030629] random: crng init done
[    0.030629] printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
[    0.031765] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.032336] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.032422] Fallback order for Node 0: 0 
[    0.032424] Built 1 zonelists, mobility grouping on.  Total pages: 4126083
[    0.032425] Policy zone: Normal
[    0.032426] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.032429] software IO TLB: area num 16.
[    0.063617] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[    0.063709] rcu: Preemptible hierarchical RCU implementation.
[    0.063710] 	Trampoline variant of Tasks RCU enabled.
[    0.063710] 	Tracing variant of Tasks RCU enabled.
[    0.063711] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.063717] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
[    0.063719] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
[    0.065069] NR_IRQS: 4352, nr_irqs: 2152, preallocated irqs: 16
[    0.065338] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.065686] Console: colour dummy device 80x25
[    0.065689] printk: legacy console [tty0] enabled
[    0.065721] ACPI: Core revision 20240827
[    0.065910] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.065970] APIC: Switch to symmetric I/O mode setup
[    0.065971] DMAR: Host address width 39
[    0.065972] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.065976] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[    0.065978] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.065980] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.065982] DMAR: RMRR base: 0x00000053dfc000 end: 0x00000053e1bfff
[    0.065983] DMAR: RMRR base: 0x0000005b800000 end: 0x0000005fffffff
[    0.065984] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.065985] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.069113] DMAR-IR: Enabled IRQ remapping in xapic mode
[    0.078386] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x257a34a6eea, max_idle_ns: 440795264358 ns
[    0.078390] Calibrating delay loop (skipped), value calculated using timer frequency.. 5202.65 BogoMIPS (lpj=8666640)
[    0.078409] CPU0: Thermal monitoring enabled (TM1)
[    0.078444] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.078445] Last level dTLB entries: 4KB 64, 2MB 32, 4MB 32, 1GB 4
[    0.078448] process: using mwait in idle threads
[    0.078450] Spectre V2 : User space: Vulnerable
[    0.078452] Speculative Store Bypass: Vulnerable
[    0.078454] SRBDS: Vulnerable
[    0.078458] GDS: Vulnerable
[    0.078462] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.078463] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.078463] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.078464] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.078464] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.078465] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.078466] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.078467] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.078468] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.081722] Freeing SMP alternatives memory: 40K
[    0.081722] pid_max: default: 32768 minimum: 301
[    0.081722] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.081722] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.081722] smpboot: CPU0: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz (family: 0x6, model: 0x9e, stepping: 0xa)
[    0.081722] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.081722] ... version:                4
[    0.081722] ... bit width:              48
[    0.081722] ... generic registers:      4
[    0.081722] ... value mask:             0000ffffffffffff
[    0.081722] ... max period:             00007fffffffffff
[    0.081722] ... fixed-purpose events:   3
[    0.081722] ... event mask:             000000070000000f
[    0.081722] signal: max sigframe size: 2032
[    0.081722] Estimated ratio of average max frequency by base frequency (times 1024): 1654
[    0.081722] rcu: Hierarchical SRCU implementation.
[    0.081722] rcu: 	Max phase no-delay instances is 1000.
[    0.081722] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[    0.081722] smp: Bringing up secondary CPUs ...
[    0.081722] smpboot: x86: Booting SMP configuration:
[    0.081722] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    0.082531] smp: Brought up 1 node, 12 CPUs
[    0.082531] smpboot: Total of 12 processors activated (62424.80 BogoMIPS)
[    0.085097] Memory: 16098440K/16504332K available (16636K kernel code, 1993K rwdata, 5708K rodata, 2608K init, 2548K bss, 393656K reserved, 0K cma-reserved)
[    0.085384] devtmpfs: initialized
[    0.085384] ACPI: PM: Registering ACPI NVS region [mem 0x54ee2000-0x55079fff] (1671168 bytes)
[    0.085384] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.085384] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.085384] pinctrl core: initialized pinctrl subsystem
[    0.085445] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.085539] audit: initializing netlink subsys (disabled)
[    0.085544] audit: type=2000 audit(1745139000.000:1): state=initialized audit_enabled=0 res=1
[    0.085544] thermal_sys: Registered thermal governor 'fair_share'
[    0.085544] thermal_sys: Registered thermal governor 'bang_bang'
[    0.085544] thermal_sys: Registered thermal governor 'step_wise'
[    0.085544] thermal_sys: Registered thermal governor 'user_space'
[    0.085544] cpuidle: using governor menu
[    0.085544] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.085544] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.085544] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[    0.085544] PCI: Using configuration type 1 for base access
[    0.085544] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.085544] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.085544] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.085544] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.085544] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.085544] ACPI: Added _OSI(Module Device)
[    0.085544] ACPI: Added _OSI(Processor Device)
[    0.085544] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.085544] ACPI: Added _OSI(Processor Aggregator Device)
[    0.128389] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.XDCI], AE_NOT_FOUND (20240827/dswload2-162)
[    0.128389] fbcon: Taking over console
[    0.131723] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20240827/psobject-220)
[    0.131723] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.131734] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.I2C2.TPD0], AE_NOT_FOUND (20240827/dswload2-162)
[    0.131734] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20240827/psobject-220)
[    0.131734] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.131734] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.I2C3.TPL1], AE_NOT_FOUND (20240827/dswload2-162)
[    0.131734] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20240827/psobject-220)
[    0.131734] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.131734] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.GPLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.131734] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.131734] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.131734] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.TPLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.131734] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.131734] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.131734] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.GUPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.131734] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.131734] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.131734] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.TUPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.131734] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.131734] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.131734] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.131734] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.131734] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.131734] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.131734] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.131734] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.131734] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.131734] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.131734] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.131734] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.131734] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.131734] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.135688] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.135693] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.135695] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.135697] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.135700] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.135703] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.137025] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.137029] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.137031] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.137033] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.137036] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.137038] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.138264] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.138268] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.138271] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.138272] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.138276] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.138278] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.139602] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.139606] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.139609] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.139610] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.139613] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.139616] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.140936] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.140940] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.140942] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.140943] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.140947] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.140949] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.142176] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.142180] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.142182] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.142184] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.142187] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.142189] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.143516] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.143520] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.143523] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.143524] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.143527] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.143530] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.144751] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.144756] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.144758] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.144759] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.144763] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.144765] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.145987] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS11._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.145992] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.145994] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.145995] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS11._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.145999] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.146001] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.147320] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS12._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.147324] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.147327] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.147328] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS12._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.147332] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.147334] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.148562] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS13._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.148566] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.148568] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.148570] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS13._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.148573] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.148575] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.149896] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS14._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.149900] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.149903] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.149904] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS14._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.149908] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.149910] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151240] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.USR1._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151244] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151246] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151248] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.USR1._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151251] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151253] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151256] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.USR2._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151259] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151261] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151263] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.USR2._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151266] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151268] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151296] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151299] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151302] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151303] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151306] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151309] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151335] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151339] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151342] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151343] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151346] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151348] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151375] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151379] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151381] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151382] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151386] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151388] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151415] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151418] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151421] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151422] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151425] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151428] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151454] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151458] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151460] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151462] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151465] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151467] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151494] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151498] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151500] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151501] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151505] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151507] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151533] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS07._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151537] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151539] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151541] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS07._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151544] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151546] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151573] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS08._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151577] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151579] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151580] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS08._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151584] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151586] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151613] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS09._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151616] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151619] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151620] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS09._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151623] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151626] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151652] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS10._UPC], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151656] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151658] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151660] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS10._PLD], AE_ALREADY_EXISTS (20240827/dswload2-326)
[    0.151663] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
[    0.151665] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.151722] ACPI: 15 ACPI AML tables successfully acquired and loaded
[    0.214508] ACPI: Dynamic OEM Table Load:
[    0.214508] ACPI: SSDT 0xFFFF9BF00103F400 000400 (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
[    0.215662] ACPI: Dynamic OEM Table Load:
[    0.215666] ACPI: SSDT 0xFFFF9BF001036000 000581 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
[    0.216475] ACPI: Dynamic OEM Table Load:
[    0.216478] ACPI: SSDT 0xFFFF9BF000FEB600 0000F4 (v02 PmRef  Cpu0Psd  00003000 INTL 20160527)
[    0.217229] ACPI: Dynamic OEM Table Load:
[    0.217232] ACPI: SSDT 0xFFFF9BF00163B000 000149 (v02 PmRef  Cpu0Hwp  00003000 INTL 20160527)
[    0.217946] ACPI: Dynamic OEM Table Load:
[    0.217950] ACPI: SSDT 0xFFFF9BF001030800 000724 (v02 PmRef  HwpLvt   00003000 INTL 20160527)
[    0.218840] ACPI: Dynamic OEM Table Load:
[    0.218844] ACPI: SSDT 0xFFFF9BF001035000 0005FC (v02 PmRef  ApIst    00003000 INTL 20160527)
[    0.219673] ACPI: Dynamic OEM Table Load:
[    0.219676] ACPI: SSDT 0xFFFF9BF00103E800 000317 (v02 PmRef  ApHwp    00003000 INTL 20160527)
[    0.220509] ACPI: Dynamic OEM Table Load:
[    0.220513] ACPI: SSDT 0xFFFF9BF001046000 000AB0 (v02 PmRef  ApPsd    00003000 INTL 20160527)
[    0.221734] ACPI: Dynamic OEM Table Load:
[    0.221738] ACPI: SSDT 0xFFFF9BF00103B400 00030A (v02 PmRef  ApCst    00003000 INTL 20160527)
[    0.226018] ACPI: EC: EC started
[    0.226019] ACPI: EC: interrupt blocked
[    0.242059] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.242061] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[    0.242062] ACPI: Interpreter enabled
[    0.242095] ACPI: PM: (supports S0 S4 S5)
[    0.242096] ACPI: Using IOAPIC for interrupt routing
[    0.242124] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.242125] PCI: Ignoring E820 reservations for host bridge windows
[    0.243050] ACPI: Enabled 12 GPEs in block 00 to 7F
[    0.247049] ACPI: \_SB_.PCI0.PEG0.PG00: New power resource
[    0.253454] ACPI: \_SB_.PCI0.RP15.PXSX.WRST: New power resource
[    0.253679] ACPI: \_SB_.PCI0.RP15.PXSX.DRST: New power resource
[    0.253919] ACPI: \_SB_.PCI0.RP17.PXP_: New power resource
[    0.260865] ACPI: \_SB_.PCI0.XHC_.RHUB.HS07.DBTP: New power resource
[    0.262990] ACPI: \_SB_.PCI0.PAUD: New power resource
[    0.264802] ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
[    0.265124] ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
[    0.265432] ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
[    0.268682] ACPI: \_SB_.PCI0.I2C2.PXTC: New power resource
[    0.269029] ACPI: \_SB_.PCI0.I2C3.PXTC: New power resource
[    0.271060] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
[    0.276464] ACPI: \PIN_: New power resource
[    0.277054] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.277059] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.278551] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.281514] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
[    0.281515] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.282528] PCI host bridge to bus 0000:00
[    0.282531] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.282532] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.282533] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.282534] pci_bus 0000:00: root bus resource [mem 0x60000000-0xdfffffff window]
[    0.282535] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.282536] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[    0.282537] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.282608] pci 0000:00:00.0: [8086:3ec4] type 00 class 0x060000 conventional PCI endpoint
[    0.282663] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 PCIe Root Port
[    0.282671] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.282673] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.282675] pci 0000:00:01.0:   bridge window [mem 0x8f000000-0x900fffff]
[    0.282679] pci 0000:00:01.0:   bridge window [mem 0x6050000000-0x6061ffffff 64bit pref]
[    0.282699] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.283035] pci 0000:00:02.0: [8086:3e9b] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[    0.283046] pci 0000:00:02.0: BAR 0 [mem 0x6062000000-0x6062ffffff 64bit]
[    0.283048] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.283049] pci 0000:00:02.0: BAR 4 [io  0x4000-0x403f]
[    0.283059] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.283169] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
[    0.283181] pci 0000:00:04.0: BAR 0 [mem 0x6063110000-0x6063117fff 64bit]
[    0.283496] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000 conventional PCI endpoint
[    0.283572] pci 0000:00:12.0: BAR 0 [mem 0x6063125000-0x6063125fff 64bit]
[    0.283772] pci 0000:00:13.0: [8086:a37c] type 00 class 0x070000 conventional PCI endpoint
[    0.283844] pci 0000:00:13.0: BAR 0 [mem 0x606311e000-0x606311ffff 64bit]
[    0.283907] pci 0000:00:13.0: PME# supported from D0 D3hot
[    0.284238] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330 conventional PCI endpoint
[    0.284314] pci 0000:00:14.0: BAR 0 [mem 0x6063100000-0x606310ffff 64bit]
[    0.284387] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.285610] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000 conventional PCI endpoint
[    0.285681] pci 0000:00:14.2: BAR 0 [mem 0x606311c000-0x606311dfff 64bit]
[    0.285686] pci 0000:00:14.2: BAR 2 [mem 0x6063124000-0x6063124fff 64bit]
[    0.286198] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000 conventional PCI endpoint
[    0.287611] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.289702] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000 conventional PCI endpoint
[    0.291114] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.292877] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000 conventional PCI endpoint
[    0.292949] pci 0000:00:16.0: BAR 0 [mem 0x6063121000-0x6063121fff 64bit]
[    0.293023] pci 0000:00:16.0: PME# supported from D3hot
[    0.293442] pci 0000:00:17.0: [8086:282a] type 00 class 0x010400 conventional PCI endpoint
[    0.293576] pci 0000:00:17.0: BAR 0 [mem 0x8e100000-0x8e101fff]
[    0.293580] pci 0000:00:17.0: BAR 1 [mem 0x8e103000-0x8e1030ff]
[    0.293583] pci 0000:00:17.0: BAR 2 [io  0x4090-0x4097]
[    0.293588] pci 0000:00:17.0: BAR 3 [io  0x4080-0x4083]
[    0.293591] pci 0000:00:17.0: BAR 4 [io  0x4060-0x407f]
[    0.293595] pci 0000:00:17.0: BAR 5 [mem 0x8e102000-0x8e1027ff]
[    0.293712] pci 0000:00:17.0: PME# supported from D3hot
[    0.294027] pci 0000:00:1b.0: [8086:a340] type 01 class 0x060400 PCIe Root Port
[    0.294076] pci 0000:00:1b.0: PCI bridge to [bus 02-6c]
[    0.294087] pci 0000:00:1b.0:   bridge window [mem 0x60000000-0x8e0fffff]
[    0.294105] pci 0000:00:1b.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.294231] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.294275] pci 0000:00:1b.0: PTM enabled (root), 4ns granularity
[    0.294849] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400 PCIe Root Port
[    0.294898] pci 0000:00:1d.0: PCI bridge to [bus 6d]
[    0.294908] pci 0000:00:1d.0:   bridge window [mem 0x90500000-0x905fffff]
[    0.295048] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.295091] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    0.295563] pci 0000:00:1d.2: [8086:a332] type 01 class 0x060400 PCIe Root Port
[    0.295612] pci 0000:00:1d.2: PCI bridge to [bus 6e]
[    0.295623] pci 0000:00:1d.2:   bridge window [mem 0x90400000-0x904fffff]
[    0.295760] pci 0000:00:1d.2: PME# supported from D0 D3hot D3cold
[    0.295803] pci 0000:00:1d.2: PTM enabled (root), 4ns granularity
[    0.296291] pci 0000:00:1d.6: [8086:a336] type 01 class 0x060400 PCIe Root Port
[    0.296340] pci 0000:00:1d.6: PCI bridge to [bus 6f]
[    0.296351] pci 0000:00:1d.6:   bridge window [mem 0x90300000-0x903fffff]
[    0.296486] pci 0000:00:1d.6: PME# supported from D0 D3hot D3cold
[    0.296526] pci 0000:00:1d.6: PTM enabled (root), 4ns granularity
[    0.296982] pci 0000:00:1d.7: [8086:a337] type 01 class 0x060400 PCIe Root Port
[    0.297031] pci 0000:00:1d.7: PCI bridge to [bus 70]
[    0.297042] pci 0000:00:1d.7:   bridge window [mem 0x90200000-0x902fffff]
[    0.297175] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.297216] pci 0000:00:1d.7: PTM enabled (root), 4ns granularity
[    0.297666] pci 0000:00:1f.0: [8086:a30d] type 00 class 0x060100 conventional PCI endpoint
[    0.298072] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040100 conventional PCI endpoint
[    0.298215] pci 0000:00:1f.3: BAR 0 [mem 0x6063118000-0x606311bfff 64bit]
[    0.298232] pci 0000:00:1f.3: BAR 4 [mem 0x6063000000-0x60630fffff 64bit]
[    0.298363] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.300749] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500 conventional PCI endpoint
[    0.301030] pci 0000:00:1f.4: BAR 0 [mem 0x6063120000-0x60631200ff 64bit]
[    0.301062] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
[    0.301321] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000 conventional PCI endpoint
[    0.301393] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[    0.301502] pci 0000:01:00.0: [10de:1f91] type 00 class 0x030000 PCIe Legacy Endpoint
[    0.301556] pci 0000:01:00.0: BAR 0 [mem 0x8f000000-0x8fffffff]
[    0.301560] pci 0000:01:00.0: BAR 1 [mem 0x6050000000-0x605fffffff 64bit pref]
[    0.301564] pci 0000:01:00.0: BAR 3 [mem 0x6060000000-0x6061ffffff 64bit pref]
[    0.301567] pci 0000:01:00.0: BAR 5 [io  0x3000-0x307f]
[    0.301569] pci 0000:01:00.0: ROM [mem 0x90000000-0x9007ffff pref]
[    0.301645] pci 0000:01:00.0: PME# supported from D0 D3hot
[    0.301696] pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
[    0.301913] pci 0000:01:00.1: [10de:10fa] type 00 class 0x040300 PCIe Endpoint
[    0.301968] pci 0000:01:00.1: BAR 0 [mem 0x90080000-0x90083fff]
[    0.302121] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.302471] pci 0000:02:00.0: [8086:15ea] type 01 class 0x060400 PCIe Switch Upstream Port
[    0.302520] pci 0000:02:00.0: PCI bridge to [bus 03-6c]
[    0.302534] pci 0000:02:00.0:   bridge window [mem 0x60000000-0x8e0fffff]
[    0.302552] pci 0000:02:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.302574] pci 0000:02:00.0: enabling Extended Tags
[    0.302759] pci 0000:02:00.0: supports D1 D2
[    0.302760] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.302934] pci 0000:02:00.0: PTM enabled, 4ns granularity
[    0.303172] pci 0000:02:00.0: cap: parent CMRT 0x28 child CMRT 0x00
[    0.303174] pci 0000:02:00.0: cap: parent T_POWER_ON 0x002c usec (val 0x16 scale 0)
[    0.303175] pci 0000:02:00.0: cap: child  T_POWER_ON 0x000a usec (val 0x05 scale 0)
[    0.303176] pci 0000:02:00.0: t_common_mode 0x28 t_power_on 0x2c l1_2_threshold 0x005a
[    0.303177] pci 0000:02:00.0: encoded LTR_L1.2_THRESHOLD value 0x0058 scale 2
[    0.303184] pci 0000:02:00.0: L1SS_CTL1 0x40582800 (parent 0x4050280f child 0x4050000f)
[    0.303185] pci 0000:02:00.0: L1SS_CTL2 0x0000b0 (parent 0x000000b0 child 0x000000b0)
[    0.303186] pci 0000:02:00.0: cur: parent CMRT 40 usec
[    0.303187] pci 0000:02:00.0: cur: parent LTR_L1.2_THRESHOLD value 0x0050 scale 2 decoded 0x0000014000 ns
[    0.303188] pci 0000:02:00.0: cur: child  LTR_L1.2_THRESHOLD value 0x0050 scale 2 decoded 0x0000014000 ns
[    0.303189] pci 0000:02:00.0: skipping L1.2 config
[    0.303199] pci 0000:00:1b.0: PCI bridge to [bus 02-6c]
[    0.303332] pci 0000:03:00.0: [8086:15ea] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.303381] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.303395] pci 0000:03:00.0:   bridge window [mem 0x8e000000-0x8e0fffff]
[    0.303436] pci 0000:03:00.0: enabling Extended Tags
[    0.303615] pci 0000:03:00.0: supports D1 D2
[    0.303616] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.303977] pci 0000:03:01.0: [8086:15ea] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.304026] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.304040] pci 0000:03:01.0:   bridge window [mem 0x60000000-0x77efffff]
[    0.304058] pci 0000:03:01.0:   bridge window [mem 0x6000000000-0x601fffffff 64bit pref]
[    0.304082] pci 0000:03:01.0: enabling Extended Tags
[    0.304268] pci 0000:03:01.0: supports D1 D2
[    0.304268] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304609] pci 0000:03:02.0: [8086:15ea] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.304658] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.304672] pci 0000:03:02.0:   bridge window [mem 0x77f00000-0x77ffffff]
[    0.304713] pci 0000:03:02.0: enabling Extended Tags
[    0.304889] pci 0000:03:02.0: supports D1 D2
[    0.304890] pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.305254] pci 0000:03:04.0: [8086:15ea] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.305303] pci 0000:03:04.0: PCI bridge to [bus 39-6c]
[    0.305317] pci 0000:03:04.0:   bridge window [mem 0x78000000-0x8dffffff]
[    0.305335] pci 0000:03:04.0:   bridge window [mem 0x6020000000-0x6049ffffff 64bit pref]
[    0.305358] pci 0000:03:04.0: enabling Extended Tags
[    0.305547] pci 0000:03:04.0: supports D1 D2
[    0.305548] pci 0000:03:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.305899] pci 0000:02:00.0: PCI bridge to [bus 03-6c]
[    0.306034] pci 0000:04:00.0: [8086:15eb] type 00 class 0x088000 PCIe Endpoint
[    0.306110] pci 0000:04:00.0: BAR 0 [mem 0x8e000000-0x8e03ffff]
[    0.306113] pci 0000:04:00.0: BAR 1 [mem 0x8e040000-0x8e040fff]
[    0.306135] pci 0000:04:00.0: enabling Extended Tags
[    0.306296] pci 0000:04:00.0: supports D1 D2
[    0.306297] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.306613] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.306694] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.306835] pci 0000:38:00.0: [8086:15ec] type 00 class 0x0c0330 PCIe Endpoint
[    0.306915] pci 0000:38:00.0: BAR 0 [mem 0x77f00000-0x77f0ffff]
[    0.307120] pci 0000:38:00.0: supports D1 D2
[    0.307121] pci 0000:38:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.307503] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.307584] pci 0000:03:04.0: PCI bridge to [bus 39-6c]
[    0.308430] pci 0000:6d:00.0: [8086:0975] type 00 class 0x010802 PCIe Endpoint
[    0.308506] pci 0000:6d:00.0: BAR 0 [mem 0x90500000-0x90503fff 64bit]
[    0.308968] pci 0000:6d:00.0: cap: parent CMRT 0x28 child CMRT 0x64
[    0.308969] pci 0000:6d:00.0: cap: parent T_POWER_ON 0x002c usec (val 0x16 scale 0)
[    0.308971] pci 0000:6d:00.0: cap: child  T_POWER_ON 0x0c1c usec (val 0x1f scale 2)
[    0.308972] pci 0000:6d:00.0: t_common_mode 0x64 t_power_on 0xc1c l1_2_threshold 0x0c86
[    0.308973] pci 0000:6d:00.0: encoded LTR_L1.2_THRESHOLD value 0x0062 scale 3
[    0.308980] pci 0000:6d:00.0: L1SS_CTL1 0x60626400 (parent 0x4050640f child 0x4050000f)
[    0.308981] pci 0000:6d:00.0: L1SS_CTL2 0x0000fa (parent 0x000000fa child 0x000000fa)
[    0.308982] pci 0000:6d:00.0: cur: parent CMRT 100 usec
[    0.308983] pci 0000:6d:00.0: cur: parent LTR_L1.2_THRESHOLD value 0x0050 scale 2 decoded 0x0000014000 ns
[    0.308984] pci 0000:6d:00.0: cur: child  LTR_L1.2_THRESHOLD value 0x0050 scale 2 decoded 0x0000014000 ns
[    0.308985] pci 0000:6d:00.0: skipping L1.2 config
[    0.308998] pci 0000:00:1d.0: PCI bridge to [bus 6d]
[    0.309297] pci 0000:6e:00.0: [8086:0975] type 00 class 0x010802 PCIe Endpoint
[    0.309373] pci 0000:6e:00.0: BAR 0 [mem 0x90410000-0x90413fff 64bit]
[    0.309382] pci 0000:6e:00.0: BAR 4 [mem 0x90400000-0x9040ffff 64bit]
[    0.309396] pci 0000:6e:00.0: enabling Extended Tags
[    0.309836] pci 0000:6e:00.0: cap: parent CMRT 0x28 child CMRT 0x64
[    0.309837] pci 0000:6e:00.0: cap: parent T_POWER_ON 0x002c usec (val 0x16 scale 0)
[    0.309838] pci 0000:6e:00.0: cap: child  T_POWER_ON 0x0c1c usec (val 0x1f scale 2)
[    0.309839] pci 0000:6e:00.0: t_common_mode 0x64 t_power_on 0xc1c l1_2_threshold 0x0c86
[    0.309839] pci 0000:6e:00.0: encoded LTR_L1.2_THRESHOLD value 0x0062 scale 3
[    0.309846] pci 0000:6e:00.0: L1SS_CTL1 0x60626400 (parent 0x4050640f child 0x4050000f)
[    0.309847] pci 0000:6e:00.0: L1SS_CTL2 0x0000fa (parent 0x000000fa child 0x000000fa)
[    0.309848] pci 0000:6e:00.0: cur: parent CMRT 100 usec
[    0.309849] pci 0000:6e:00.0: cur: parent LTR_L1.2_THRESHOLD value 0x0050 scale 2 decoded 0x0000014000 ns
[    0.309850] pci 0000:6e:00.0: cur: child  LTR_L1.2_THRESHOLD value 0x0050 scale 2 decoded 0x0000014000 ns
[    0.309850] pci 0000:6e:00.0: skipping L1.2 config
[    0.309863] pci 0000:00:1d.2: PCI bridge to [bus 6e]
[    0.310836] pci 0000:6f:00.0: [8086:2723] type 00 class 0x028000 PCIe Endpoint
[    0.311006] pci 0000:6f:00.0: BAR 0 [mem 0x90300000-0x90303fff 64bit]
[    0.312264] pci 0000:6f:00.0: PME# supported from D0 D3hot D3cold
[    0.314310] pci 0000:6f:00.0: cap: parent CMRT 0x28 child CMRT 0x1e
[    0.314311] pci 0000:6f:00.0: cap: parent T_POWER_ON 0x002c usec (val 0x16 scale 0)
[    0.314312] pci 0000:6f:00.0: cap: child  T_POWER_ON 0x0012 usec (val 0x09 scale 0)
[    0.314313] pci 0000:6f:00.0: t_common_mode 0x28 t_power_on 0x2c l1_2_threshold 0x005a
[    0.314314] pci 0000:6f:00.0: encoded LTR_L1.2_THRESHOLD value 0x0058 scale 2
[    0.314321] pci 0000:6f:00.0: L1SS_CTL1 0x40582800 (parent 0x4050280f child 0x4050000f)
[    0.314322] pci 0000:6f:00.0: L1SS_CTL2 0x0000b0 (parent 0x000000b0 child 0x000000b0)
[    0.314323] pci 0000:6f:00.0: cur: parent CMRT 40 usec
[    0.314324] pci 0000:6f:00.0: cur: parent LTR_L1.2_THRESHOLD value 0x0050 scale 2 decoded 0x0000014000 ns
[    0.314325] pci 0000:6f:00.0: cur: child  LTR_L1.2_THRESHOLD value 0x0050 scale 2 decoded 0x0000014000 ns
[    0.314326] pci 0000:6f:00.0: skipping L1.2 config
[    0.314485] pci 0000:00:1d.6: PCI bridge to [bus 6f]
[    0.314668] pci 0000:70:00.0: [10ec:525a] type 00 class 0xff0000 PCIe Endpoint
[    0.314740] pci 0000:70:00.0: BAR 1 [mem 0x90200000-0x90200fff]
[    0.314871] pci 0000:70:00.0: supports D1 D2
[    0.314872] pci 0000:70:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.315098] pci 0000:70:00.0: cap: parent CMRT 0x28 child CMRT 0x3c
[    0.315099] pci 0000:70:00.0: cap: parent T_POWER_ON 0x002c usec (val 0x16 scale 0)
[    0.315100] pci 0000:70:00.0: cap: child  T_POWER_ON 0x003c usec (val 0x06 scale 1)
[    0.315101] pci 0000:70:00.0: t_common_mode 0x3c t_power_on 0x3c l1_2_threshold 0x007e
[    0.315101] pci 0000:70:00.0: encoded LTR_L1.2_THRESHOLD value 0x007c scale 2
[    0.315108] pci 0000:70:00.0: L1SS_CTL1 0x407c3c00 (parent 0x40503c0f child 0x4050000f)
[    0.315109] pci 0000:70:00.0: L1SS_CTL2 0x000031 (parent 0x00000031 child 0x00000031)
[    0.315110] pci 0000:70:00.0: cur: parent CMRT 60 usec
[    0.315110] pci 0000:70:00.0: cur: parent LTR_L1.2_THRESHOLD value 0x0050 scale 2 decoded 0x0000014000 ns
[    0.315111] pci 0000:70:00.0: cur: child  LTR_L1.2_THRESHOLD value 0x0050 scale 2 decoded 0x0000014000 ns
[    0.315112] pci 0000:70:00.0: skipping L1.2 config
[    0.315126] pci 0000:00:1d.7: PCI bridge to [bus 70]
[    0.317254] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.317316] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[    0.317377] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.317437] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.317496] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.317556] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.317616] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.317675] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.324660] Low-power S0 idle used by default for system suspend
[    0.328854] ACPI: EC: interrupt unblocked
[    0.328856] ACPI: EC: event unblocked
[    0.328868] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.328868] ACPI: EC: GPE=0x17
[    0.328869] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[    0.328871] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[    0.328902] iommu: Default domain type: Translated
[    0.328902] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.328952] SCSI subsystem initialized
[    0.328956] libata version 3.00 loaded.
[    0.328958] ACPI: bus type USB registered
[    0.328965] usbcore: registered new interface driver usbfs
[    0.328968] usbcore: registered new interface driver hub
[    0.328972] usbcore: registered new device driver usb
[    0.331801] efivars: Registered efivars operations
[    0.331801] PCI: Using ACPI for IRQ routing
[    0.384210] PCI: pci_cache_line_size set to 64 bytes
[    0.385059] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.385060] e820: reserve RAM buffer [mem 0x5016e000-0x53ffffff]
[    0.385061] e820: reserve RAM buffer [mem 0x50228000-0x53ffffff]
[    0.385062] e820: reserve RAM buffer [mem 0x535e4000-0x53ffffff]
[    0.385063] e820: reserve RAM buffer [mem 0x5ac10000-0x5bffffff]
[    0.385086] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.385086] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.385086] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.385086] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.385086] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.385086] vgaarb: loaded
[    0.385368] wmi_bus wmi_bus-PNP0C14:05: [Firmware Info]: 8F1F6436-9F42-42C8-BADC-0E9424F20C9A has zero instances
[    0.385370] wmi_bus wmi_bus-PNP0C14:05: [Firmware Info]: 8F1F6435-9F42-42C8-BADC-0E9424F20C9A has zero instances
[    0.385371] wmi_bus wmi_bus-PNP0C14:05: [Firmware Info]: 7391A661-223A-47DB-A77A-7BE84C60822D has zero instances
[    0.385371] wmi_bus wmi_bus-PNP0C14:05: [Firmware Info]: DF4E63B6-3BBC-4858-9737-C74F82F821F3 has zero instances
[    0.388389] clocksource: Switched to clocksource tsc-early
[    0.388494] pnp: PnP ACPI init
[    0.388548] system 00:00: [mem 0x40000000-0x403fffff] could not be reserved
[    0.388678] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.388680] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.388782] system 00:03: [io  0x1854-0x1857] has been reserved
[    0.388923] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.388925] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.388926] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.388927] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    0.388928] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.388929] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.388930] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.388931] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.389106] system 00:06: [io  0x1800-0x18fe] could not be reserved
[    0.389108] system 00:06: [mem 0xfd000000-0xfd69ffff] has been reserved
[    0.389110] system 00:06: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[    0.389111] system 00:06: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    0.389112] system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.389113] system 00:06: [mem 0xfe200000-0xfe7fffff] has been reserved
[    0.389114] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[    0.389345] system 00:07: [io  0x2000-0x20fe] has been reserved
[    0.391983] pnp: PnP ACPI: found 9 devices
[    0.397328] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.397362] NET: Registered PF_INET protocol family
[    0.397455] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.399417] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.399435] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.399439] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.399529] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.399712] TCP: Hash tables configured (established 131072 bind 65536)
[    0.399726] UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.399773] UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.399835] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.399838] NET: Registered PF_XDP protocol family
[    0.399843] pci 0000:03:01.0: bridge window [io  0x1000-0x0fff] to [bus 05-37] add_size 1000
[    0.399845] pci 0000:03:04.0: bridge window [io  0x1000-0x0fff] to [bus 39-6c] add_size 1000
[    0.399847] pci 0000:02:00.0: bridge window [io  0x1000-0x0fff] to [bus 03-6c] add_size 2000
[    0.399848] pci 0000:00:1b.0: bridge window [io  0x1000-0x0fff] to [bus 02-6c] add_size 3000
[    0.399854] pci 0000:00:15.0: BAR 0 [mem 0x4010000000-0x4010000fff 64bit]: assigned
[    0.400123] pci 0000:00:15.1: BAR 0 [mem 0x4010001000-0x4010001fff 64bit]: assigned
[    0.400356] pci 0000:00:1b.0: bridge window [io  0x5000-0x7fff]: assigned
[    0.400357] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.400359] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.400361] pci 0000:00:01.0:   bridge window [mem 0x8f000000-0x900fffff]
[    0.400362] pci 0000:00:01.0:   bridge window [mem 0x6050000000-0x6061ffffff 64bit pref]
[    0.400365] pci 0000:02:00.0: bridge window [io  0x5000-0x6fff]: assigned
[    0.400367] pci 0000:03:01.0: bridge window [io  0x5000-0x5fff]: assigned
[    0.400368] pci 0000:03:04.0: bridge window [io  0x6000-0x6fff]: assigned
[    0.400369] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.400380] pci 0000:03:00.0:   bridge window [mem 0x8e000000-0x8e0fffff]
[    0.400393] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.400396] pci 0000:03:01.0:   bridge window [io  0x5000-0x5fff]
[    0.400402] pci 0000:03:01.0:   bridge window [mem 0x60000000-0x77efffff]
[    0.400407] pci 0000:03:01.0:   bridge window [mem 0x6000000000-0x601fffffff 64bit pref]
[    0.400416] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.400422] pci 0000:03:02.0:   bridge window [mem 0x77f00000-0x77ffffff]
[    0.400434] pci 0000:03:04.0: PCI bridge to [bus 39-6c]
[    0.400437] pci 0000:03:04.0:   bridge window [io  0x6000-0x6fff]
[    0.400443] pci 0000:03:04.0:   bridge window [mem 0x78000000-0x8dffffff]
[    0.400448] pci 0000:03:04.0:   bridge window [mem 0x6020000000-0x6049ffffff 64bit pref]
[    0.400457] pci 0000:02:00.0: PCI bridge to [bus 03-6c]
[    0.400459] pci 0000:02:00.0:   bridge window [io  0x5000-0x6fff]
[    0.400466] pci 0000:02:00.0:   bridge window [mem 0x60000000-0x8e0fffff]
[    0.400471] pci 0000:02:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.400478] pci 0000:00:1b.0: PCI bridge to [bus 02-6c]
[    0.400481] pci 0000:00:1b.0:   bridge window [io  0x5000-0x7fff]
[    0.400488] pci 0000:00:1b.0:   bridge window [mem 0x60000000-0x8e0fffff]
[    0.400492] pci 0000:00:1b.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.400501] pci 0000:00:1d.0: PCI bridge to [bus 6d]
[    0.400507] pci 0000:00:1d.0:   bridge window [mem 0x90500000-0x905fffff]
[    0.400520] pci 0000:00:1d.2: PCI bridge to [bus 6e]
[    0.400526] pci 0000:00:1d.2:   bridge window [mem 0x90400000-0x904fffff]
[    0.400538] pci 0000:00:1d.6: PCI bridge to [bus 6f]
[    0.400545] pci 0000:00:1d.6:   bridge window [mem 0x90300000-0x903fffff]
[    0.400557] pci 0000:00:1d.7: PCI bridge to [bus 70]
[    0.400563] pci 0000:00:1d.7:   bridge window [mem 0x90200000-0x902fffff]
[    0.400575] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.400577] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.400578] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.400579] pci_bus 0000:00: resource 7 [mem 0x60000000-0xdfffffff window]
[    0.400580] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[    0.400580] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[    0.400581] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.400582] pci_bus 0000:01: resource 1 [mem 0x8f000000-0x900fffff]
[    0.400583] pci_bus 0000:01: resource 2 [mem 0x6050000000-0x6061ffffff 64bit pref]
[    0.400584] pci_bus 0000:02: resource 0 [io  0x5000-0x7fff]
[    0.400585] pci_bus 0000:02: resource 1 [mem 0x60000000-0x8e0fffff]
[    0.400586] pci_bus 0000:02: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.400587] pci_bus 0000:03: resource 0 [io  0x5000-0x6fff]
[    0.400587] pci_bus 0000:03: resource 1 [mem 0x60000000-0x8e0fffff]
[    0.400588] pci_bus 0000:03: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.400589] pci_bus 0000:04: resource 1 [mem 0x8e000000-0x8e0fffff]
[    0.400590] pci_bus 0000:05: resource 0 [io  0x5000-0x5fff]
[    0.400591] pci_bus 0000:05: resource 1 [mem 0x60000000-0x77efffff]
[    0.400592] pci_bus 0000:05: resource 2 [mem 0x6000000000-0x601fffffff 64bit pref]
[    0.400593] pci_bus 0000:38: resource 1 [mem 0x77f00000-0x77ffffff]
[    0.400594] pci_bus 0000:39: resource 0 [io  0x6000-0x6fff]
[    0.400595] pci_bus 0000:39: resource 1 [mem 0x78000000-0x8dffffff]
[    0.400595] pci_bus 0000:39: resource 2 [mem 0x6020000000-0x6049ffffff 64bit pref]
[    0.400596] pci_bus 0000:6d: resource 1 [mem 0x90500000-0x905fffff]
[    0.400597] pci_bus 0000:6e: resource 1 [mem 0x90400000-0x904fffff]
[    0.400598] pci_bus 0000:6f: resource 1 [mem 0x90300000-0x903fffff]
[    0.400599] pci_bus 0000:70: resource 1 [mem 0x90200000-0x902fffff]
[    0.400990] pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
[    0.401011] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    0.401067] pci 0000:02:00.0: CLS mismatch (64 != 128), using 64 bytes
[    0.401149] pci 0000:02:00.0: enabling device (0002 -> 0003)
[    0.401401] DMAR: Intel-IOMMU force enabled due to platform opt in
[    0.401408] DMAR: No ATSR found
[    0.401409] DMAR: No SATC found
[    0.401409] DMAR: dmar0: Using Queued invalidation
[    0.401411] DMAR: dmar1: Using Queued invalidation
[    0.401639] pci 0000:00:02.0: Adding to iommu group 0
[    0.401661] pci 0000:00:00.0: Adding to iommu group 1
[    0.401671] pci 0000:00:01.0: Adding to iommu group 2
[    0.401678] pci 0000:00:04.0: Adding to iommu group 3
[    0.401687] pci 0000:00:12.0: Adding to iommu group 4
[    0.401693] pci 0000:00:13.0: Adding to iommu group 5
[    0.401706] pci 0000:00:14.0: Adding to iommu group 6
[    0.401712] pci 0000:00:14.2: Adding to iommu group 6
[    0.401724] pci 0000:00:15.0: Adding to iommu group 7
[    0.401730] pci 0000:00:15.1: Adding to iommu group 7
[    0.401739] pci 0000:00:16.0: Adding to iommu group 8
[    0.401746] pci 0000:00:17.0: Adding to iommu group 9
[    0.401759] pci 0000:00:1b.0: Adding to iommu group 10
[    0.401767] pci 0000:00:1d.0: Adding to iommu group 11
[    0.401776] pci 0000:00:1d.2: Adding to iommu group 12
[    0.401785] pci 0000:00:1d.6: Adding to iommu group 13
[    0.401795] pci 0000:00:1d.7: Adding to iommu group 14
[    0.401815] pci 0000:00:1f.0: Adding to iommu group 15
[    0.401822] pci 0000:00:1f.3: Adding to iommu group 15
[    0.401829] pci 0000:00:1f.4: Adding to iommu group 15
[    0.401836] pci 0000:00:1f.5: Adding to iommu group 15
[    0.401839] pci 0000:01:00.0: Adding to iommu group 2
[    0.401841] pci 0000:01:00.1: Adding to iommu group 2
[    0.401854] pci 0000:02:00.0: Adding to iommu group 16
[    0.401863] pci 0000:03:00.0: Adding to iommu group 17
[    0.401872] pci 0000:03:01.0: Adding to iommu group 18
[    0.401880] pci 0000:03:02.0: Adding to iommu group 19
[    0.401889] pci 0000:03:04.0: Adding to iommu group 20
[    0.401902] pci 0000:04:00.0: Adding to iommu group 21
[    0.401915] pci 0000:38:00.0: Adding to iommu group 22
[    0.401923] pci 0000:6d:00.0: Adding to iommu group 23
[    0.401932] pci 0000:6e:00.0: Adding to iommu group 24
[    0.401940] pci 0000:6f:00.0: Adding to iommu group 25
[    0.401949] pci 0000:70:00.0: Adding to iommu group 26
[    0.402093] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.402093] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.402094] software IO TLB: mapped [mem 0x000000004635b000-0x000000004a35b000] (64MB)
[    0.405363] Initialise system trusted keyrings
[    0.405368] Key type blacklist registered
[    0.405384] workingset: timestamp_bits=41 max_order=22 bucket_order=0
[    0.413725] NET: Registered PF_ALG protocol family
[    0.413727] Key type asymmetric registered
[    0.413727] Asymmetric key parser 'x509' registered
[    0.413734] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    0.413752] io scheduler mq-deadline registered
[    0.413753] io scheduler kyber registered
[    0.413758] io scheduler bfq registered
[    0.413927] pcieport 0000:00:01.0: PME: Signaling with IRQ 123
[    0.414059] pcieport 0000:00:1b.0: PME: Signaling with IRQ 124
[    0.414086] pcieport 0000:00:1b.0: pciehp: Slot #20 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.414375] pcieport 0000:00:1d.0: PME: Signaling with IRQ 125
[    0.414625] pcieport 0000:00:1d.2: PME: Signaling with IRQ 126
[    0.414871] pcieport 0000:00:1d.6: PME: Signaling with IRQ 127
[    0.415120] pcieport 0000:00:1d.7: PME: Signaling with IRQ 128
[    0.415597] pcieport 0000:03:01.0: enabling device (0002 -> 0003)
[    0.415718] pcieport 0000:03:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.416031] pcieport 0000:03:04.0: enabling device (0002 -> 0003)
[    0.416164] pcieport 0000:03:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.416351] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.417914] ACPI: AC: AC Adapter [ADP1] (on-line)
[    0.417989] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    0.418012] ACPI: button: Lid Switch [LID0]
[    0.418039] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.418058] ACPI: button: Power Button [PWRB]
[    0.433671] thermal LNXTHERM:00: registered as thermal_zone0
[    0.433676] ACPI: thermal: Thermal Zone [TZ01] (56 C)
[    0.433992] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.434742] serial 0000:00:13.0: enabling device (0000 -> 0002)
[    0.435507] hpet_acpi_add: no address or irqs in _CRS
[    0.435599] ACPI: bus type drm_connector registered
[    0.435798] i915 0000:00:02.0: [drm] Found coffeelake (device ID 3e9b) integrated display version 9.00 stepping N/A
[    0.436533] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    0.436565] i915 0000:00:02.0: vgaarb: deactivate vga console
[    0.436629] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[    0.448928] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
[    0.450485] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[    0.484809] ACPI: battery: Slot [BAT0] (battery present)
[    1.409599] tsc: Refined TSC clocksource calibration: 2592.000 MHz
[    1.409605] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x255cb6cc5db, max_idle_ns: 440795203504 ns
[    1.409678] clocksource: Switched to clocksource tsc
[    1.581790] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0
[    1.583837] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    1.583959] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    1.583973] ACPI: video: Video Device [PEGP] (multi-head: no  rom: yes  post: no)
[    1.583986] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:13/LNXVIDEO:01/input/input3
[    1.608890] fbcon: i915drmfb (fb0) is primary device
[    2.728486] Console: switching to colour frame buffer device 240x67
[    2.736961] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    2.737836] ahci 0000:00:17.0: version 3.0
[    2.737906] nvme nvme0: pci function 0000:6d:00.0
[    2.737921] nvme nvme1: pci function 0000:6e:00.0
[    2.749523] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 3 Gbps, RAID mode
[    2.749526] ahci 0000:00:17.0: 0/16 ports implemented (port mask 0x0)
[    2.749527] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst 
[    2.752105] scsi host0: ahci
[    2.754033] scsi host1: ahci
[    2.756944] scsi host2: ahci
[    2.758356] scsi host3: ahci
[    2.758667] scsi host4: ahci
[    2.759110] scsi host5: ahci
[    2.759730] scsi host6: ahci
[    2.760276] scsi host7: ahci
[    2.760489] scsi host8: ahci
[    2.760909] scsi host9: ahci
[    2.761166] scsi host10: ahci
[    2.761335] scsi host11: ahci
[    2.761422] scsi host12: ahci
[    2.761526] scsi host13: ahci
[    2.761673] scsi host14: ahci
[    2.761715] scsi host15: ahci
[    2.761842] ata1: DUMMY
[    2.761843] ata2: DUMMY
[    2.761843] ata3: DUMMY
[    2.761843] ata4: DUMMY
[    2.761844] ata5: DUMMY
[    2.761844] ata6: DUMMY
[    2.761845] ata7: DUMMY
[    2.761845] ata8: DUMMY
[    2.761845] ata9: DUMMY
[    2.761846] ata10: DUMMY
[    2.761846] ata11: DUMMY
[    2.761846] ata12: DUMMY
[    2.761847] ata13: DUMMY
[    2.761847] ata14: DUMMY
[    2.761848] ata15: DUMMY
[    2.761848] ata16: DUMMY
[    2.762002] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    2.762003] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    2.763232] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.763682] rtc_cmos 00:02: RTC can wake from S4
[    2.767427] rtc_cmos 00:02: registered as rtc0
[    2.768239] rtc_cmos 00:02: setting system clock to 2025-04-20T08:50:02 UTC (1745139002)
[    2.768301] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram
[    2.768623] nvme nvme0: 8/0/0 default/read/poll queues
[    2.769498] intel_pstate: Intel P-state driver initializing
[    2.770259] intel_pstate: Disabling energy efficiency optimization
[    2.770260] intel_pstate: HWP enabled
[    2.770310] drop_monitor: Initializing network drop monitor service
[    2.770354] NET: Registered PF_PACKET protocol family
[    2.770503]  nvme0n1: p1 p2 p3 p4 p5 p6 p7
[    2.771103] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    2.771439] microcode: Current revision: 0x000000fa
[    2.771441] microcode: Updated early from: 0x000000f4
[    2.771891] IPI shorthand broadcast: enabled
[    2.773207] sched_clock: Marking stable (2760000850, 12741227)->(2796351265, -23609188)
[    2.773403] registered taskstats version 1
[    2.773924] Loading compiled-in X.509 certificates
[    2.774608] Loaded X.509 cert 'Build time autogenerated kernel key: f848dbce02d0f5d6c2cb631f5a88a63fe86f9422'
[    2.776579] zswap: loaded using pool zstd/zsmalloc
[    2.776649] Demotion targets for Node 0: null
[    2.776882] RAS: Correctable Errors collector initialized.
[    2.777177] PM: Image not found (code -22)
[    2.777188] clk: Disabling unused clocks
[    2.781278] nvme nvme1: 8/0/0 default/read/poll queues
[    2.786582]  nvme1n1: p1
[    2.827144] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    2.828138] EXT4-fs (nvme1n1p1): mounted filesystem 97f88a37-e20a-456b-bd0e-2b9d7d0b95bb ro with ordered data mode. Quota mode: disabled.
[    2.828147] VFS: Mounted root (ext4 filesystem) readonly on device 259:9.
[    2.828316] devtmpfs: mounted
[    2.828788] Freeing unused kernel image (initmem) memory: 2608K
[    2.828800] Write protecting the kernel read-only data: 24576k
[    2.829414] Freeing unused kernel image (text/rodata gap) memory: 1792K
[    2.829558] Freeing unused kernel image (rodata/data gap) memory: 436K
[    2.840712] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.840716] Run /sbin/init as init process
[    2.840717]   with arguments:
[    2.840718]     /sbin/init
[    2.840719]     nowatchdog
[    2.840720]   with environment:
[    2.840721]     HOME=/
[    2.840721]     TERM=linux
[    2.840722]     BOOT_IMAGE=/vmlinuz-6.14.0-00001-g13b71297a835
[    2.999535] NET: Registered PF_INET6 protocol family
[    2.999970] Segment Routing with IPv6
[    2.999984] In-situ OAM (IOAM) with IPv6
[    4.257099] input: Wireless hotkeys as /devices/virtual/input/input5
[    4.273182] hid: raw HID events driver (C) Jiri Kosina
[    4.275190] input: Intel HID events as /devices/platform/INT33D5:00/input/input6
[    4.276806] intel_pmc_core INT33A1:00:  initialized
[    4.277136] intel-hid INT33D5:00: platform supports 5 button array
[    4.278914] input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input7
[    4.290429] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    4.290568] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    4.291773] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[    4.292809] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    4.295312] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    4.295551] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    4.295554] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    4.295557] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    4.295644] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
[    4.295659] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.295661] usb usb1: Product: xHCI Host Controller
[    4.295662] usb usb1: Manufacturer: Linux 6.14.0-00001-g13b71297a835 xhci-hcd
[    4.295663] usb usb1: SerialNumber: 0000:00:14.0
[    4.297787] hub 1-0:1.0: USB hub found
[    4.297822] hub 1-0:1.0: 16 ports detected
[    4.298954] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    4.301216] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[    4.304109] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    4.311677] ACPI: bus type thunderbolt registered
[    4.311881] intel_rapl_common: Found RAPL domain package
[    4.311885] intel_rapl_common: Found RAPL domain core
[    4.311885] intel_rapl_common: Found RAPL domain uncore
[    4.311886] intel_rapl_common: Found RAPL domain dram
[    4.311981] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    4.312015] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    4.313702] rtsx_pci 0000:70:00.0: enabling device (0000 -> 0002)
[    4.314148] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[    4.320564] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14
[    4.320569] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.320570] usb usb2: Product: xHCI Host Controller
[    4.320572] usb usb2: Manufacturer: Linux 6.14.0-00001-g13b71297a835 xhci-hcd
[    4.320573] usb usb2: SerialNumber: 0000:00:14.0
[    4.324322] hub 2-0:1.0: USB hub found
[    4.324342] hub 2-0:1.0: 8 ports detected
[    4.326542] pstore: Using crash dump compression: deflate
[    4.337463] intel_rapl_common: Found RAPL domain package
[    4.337634] intel_rapl_common: Found RAPL domain dram
[    4.339430] spi-nor spi0.0: supply vcc not found, using dummy regulator
[    4.354780] Creating 1 MTD partitions on "0000:00:1f.5":
[    4.354784] 0x000000000000-0x000001000000 : "BIOS"
[    4.370881] xhci_hcd 0000:38:00.0: xHCI Host Controller
[    4.370889] xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 3
[    4.372613] xhci_hcd 0000:38:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
[    4.375216] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    4.375218] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    4.375219] RAPL PMU: hw unit of domain package 2^-14 Joules
[    4.375220] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    4.375221] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    4.376336] xhci_hcd 0000:38:00.0: xHCI Host Controller
[    4.376341] xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 4
[    4.376345] xhci_hcd 0000:38:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    4.376399] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
[    4.376402] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.376404] usb usb3: Product: xHCI Host Controller
[    4.376406] usb usb3: Manufacturer: Linux 6.14.0-00001-g13b71297a835 xhci-hcd
[    4.376407] usb usb3: SerialNumber: 0000:38:00.0
[    4.377092] hub 3-0:1.0: USB hub found
[    4.377112] hub 3-0:1.0: 2 ports detected
[    4.378534] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14
[    4.378536] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.378537] usb usb4: Product: xHCI Host Controller
[    4.378538] usb usb4: Manufacturer: Linux 6.14.0-00001-g13b71297a835 xhci-hcd
[    4.378539] usb usb4: SerialNumber: 0000:38:00.0
[    4.382690] hub 4-0:1.0: USB hub found
[    4.382718] hub 4-0:1.0: 2 ports detected
[    4.453435] i2c_hid_acpi i2c-ELAN2514:00: i2c_hid_get_input: IRQ triggered but there's no data
[    4.468388] pstore: Registered efi_pstore as persistent store backend
[    4.470031] nvidia: loading out-of-tree module taints kernel.
[    4.470037] nvidia: module license 'NVIDIA' taints kernel.
[    4.470038] Disabling lock debugging due to kernel taint
[    4.470040] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[    4.470040] nvidia: module license taints kernel.
[    4.566083] usb 1-4: new full-speed USB device number 2 using xhci_hcd
[    4.595952] cryptd: max_cpu_qlen set to 1000
[    4.596319] input: ELAN2514:00 04F3:2990 Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN2514:00/0018:04F3:2990.0001/input/input8
[    4.597869] nvidia-nvlink: Nvlink Core is being initialized, major device number 243

[    4.598668] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    4.601772] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    4.601964] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    4.602377] AES CTR mode by8 optimization enabled
[    4.606963] snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
[    4.607008] input: HP WMI hotkeys as /devices/virtual/input/input14
[    4.607061] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[    4.607123] snd_hda_intel 0000:01:00.1: Disabling MSI
[    4.607129] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    4.610723] intel_tcc_cooling: Programmable TCC Offset detected
[    4.610734] Intel(R) Wireless WiFi driver for Linux
[    4.611114] iwlwifi 0000:6f:00.0: enabling device (0000 -> 0002)
[    4.621496] iwlwifi 0000:6f:00.0: Detected crf-id 0x3617, cnv-id 0x100530 wfpm id 0x80000000
[    4.621908] iwlwifi 0000:6f:00.0: PCI dev 2723/008c, rev=0x340, rfid=0x10a100
[    4.621911] iwlwifi 0000:6f:00.0: Detected Intel(R) Wi-Fi 6 AX200 160MHz
[    4.627412] iwlwifi 0000:6f:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
[    4.627652] iwlwifi 0000:6f:00.0: loaded firmware version 77.b405f9d4.0 cc-a0-77.ucode op_mode iwlmvm
[    4.643060] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card0/input15
[    4.666608] input: ELAN2514:00 04F3:2990 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN2514:00/0018:04F3:2990.0001/input/input9
[    4.666840] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card0/input16
[    4.666968] input: ELAN2514:00 04F3:2990 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN2514:00/0018:04F3:2990.0001/input/input10
[    4.667002] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card0/input17
[    4.667088] input: ELAN2514:00 04F3:2990 Stylus as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN2514:00/0018:04F3:2990.0001/input/input11
[    4.667145] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card0/input18
[    4.667207] hid-generic 0018:04F3:2990.0001: input,hidraw0: I2C HID v1.00 Device [ELAN2514:00 04F3:2990] on i2c-ELAN2514:00
[    4.667776] input: SYNA329A:00 06CB:CD4F Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-8/i2c-SYNA329A:00/0018:06CB:CD4F.0002/input/input19
[    4.667954] input: SYNA329A:00 06CB:CD4F Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-8/i2c-SYNA329A:00/0018:06CB:CD4F.0002/input/input21
[    4.668176] hid-generic 0018:06CB:CD4F.0002: input,hidraw1: I2C HID v1.00 Mouse [SYNA329A:00 06CB:CD4F] on i2c-SYNA329A:00
[    4.691469] hp_wmi: Registered as platform profile handler
[    4.701007] usb 1-4: New USB device found, idVendor=06cb, idProduct=00bb, bcdDevice= 1.64
[    4.701010] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[    4.701011] usb 1-4: SerialNumber: f61a948625ee
[    4.706852] sof-audio-pci-intel-cnl 0000:00:1f.3: enabling device (0000 -> 0002)
[    4.706947] sof-audio-pci-intel-cnl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
[    4.706977] sof-audio-pci-intel-cnl 0000:00:1f.3: bound 0000:00:02.0 (ops 0xffffffffa10fa260)
[    4.716010] sof-audio-pci-intel-cnl 0000:00:1f.3: use msi interrupt mode
[    4.733560] sof-audio-pci-intel-cnl 0000:00:1f.3: hda codecs found, mask 5
[    4.733563] sof-audio-pci-intel-cnl 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
[    4.733564] sof-audio-pci-intel-cnl 0000:00:1f.3: BT link detected in NHLT tables: 0x0
[    4.733566] sof-audio-pci-intel-cnl 0000:00:1f.3: DMICs detected in NHLT tables: 2
[    4.736603] sof-audio-pci-intel-cnl 0000:00:1f.3: Firmware paths/files for ipc type 0:
[    4.736605] sof-audio-pci-intel-cnl 0000:00:1f.3:  Firmware file:     intel/sof/sof-cfl.ri
[    4.736606] sof-audio-pci-intel-cnl 0000:00:1f.3:  Topology file:     intel/sof-tplg/sof-hda-generic-2ch.tplg
[    4.736894] nvidia 0000:01:00.0: enabling device (0000 -> 0003)
[    4.736953] nvidia 0000:01:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
[    4.737919] sof-audio-pci-intel-cnl 0000:00:1f.3: Firmware info: version 2:2:0-57864
[    4.737920] sof-audio-pci-intel-cnl 0000:00:1f.3: Firmware: ABI 3:22:1 Kernel ABI 3:23:1
[    4.782858] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  570.133.07  Fri Mar 14 13:12:07 UTC 2025
[    4.790542] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  570.133.07  Fri Mar 14 12:42:57 UTC 2025
[    4.791612] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[    4.817261] typec port1: bound usb4-port1 (ops 0xffffffffa114dfd0)
[    4.817267] typec port1: bound usb1-port2 (ops 0xffffffffa114dfd0)
[    4.822751] usb 1-6: new high-speed USB device number 3 using xhci_hcd
[    4.830780] input: ELAN2514:00 04F3:2990 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN2514:00/0018:04F3:2990.0001/input/input22
[    4.830913] input: ELAN2514:00 04F3:2990 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN2514:00/0018:04F3:2990.0001/input/input23
[    4.831134] input: ELAN2514:00 04F3:2990 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN2514:00/0018:04F3:2990.0001/input/input24
[    4.831310] input: ELAN2514:00 04F3:2990 Stylus as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN2514:00/0018:04F3:2990.0001/input/input25
[    4.831567] hid-multitouch 0018:04F3:2990.0001: input,hidraw0: I2C HID v1.00 Device [ELAN2514:00 04F3:2990] on i2c-ELAN2514:00
[    4.850315] iwlwifi 0000:6f:00.0: Detected RF HR B3, rfid=0x10a100
[    4.877683] sof-audio-pci-intel-cnl 0000:00:1f.3: Firmware info: version 2:2:0-57864
[    4.877686] sof-audio-pci-intel-cnl 0000:00:1f.3: Firmware: ABI 3:22:1 Kernel ABI 3:23:1
[    4.881050] sof-audio-pci-intel-cnl 0000:00:1f.3: Topology: ABI 3:22:1 Kernel ABI 3:23:1
[    4.881223] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: Parent card not yet available, widget card binding deferred
[    4.899333] snd_hda_codec_realtek ehdaudio0D0: ALC285: picked fixup HP Spectre x360 15-df1xxx for PCI SSID 103c:863e
[    4.908560] input: SYNA329A:00 06CB:CD4F Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-8/i2c-SYNA329A:00/0018:06CB:CD4F.0002/input/input28
[    4.908607] input: SYNA329A:00 06CB:CD4F Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-8/i2c-SYNA329A:00/0018:06CB:CD4F.0002/input/input30
[    4.908653] hid-multitouch 0018:06CB:CD4F.0002: input,hidraw1: I2C HID v1.00 Mouse [SYNA329A:00 06CB:CD4F] on i2c-SYNA329A:00
[    4.911736] mousedev: PS/2 mouse device common for all mice
[    4.921820] iwlwifi 0000:6f:00.0: base HW address: 50:eb:71:32:48:f3
[    4.923840] snd_hda_codec_realtek ehdaudio0D0: autoconfig for ALC285: line_outs=2 (0x14/0x17/0x0/0x0/0x0) type:speaker
[    4.923844] snd_hda_codec_realtek ehdaudio0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.923846] snd_hda_codec_realtek ehdaudio0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    4.923848] snd_hda_codec_realtek ehdaudio0D0:    mono: mono_out=0x0
[    4.923849] snd_hda_codec_realtek ehdaudio0D0:    inputs:
[    4.923851] snd_hda_codec_realtek ehdaudio0D0:      Mic=0x19
[    4.956532] EXT4-fs (nvme1n1p1): re-mounted 97f88a37-e20a-456b-bd0e-2b9d7d0b95bb r/w. Quota mode: disabled.
[    4.960581] EXT4-fs (nvme1n1p1): re-mounted 97f88a37-e20a-456b-bd0e-2b9d7d0b95bb r/w. Quota mode: disabled.
[    4.965023] iwlwifi 0000:6f:00.0 wlo1: renamed from wlan0
[    4.966791] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=4
[    4.978451] hid-generic 001F:8087:0AC2.0003: hidraw2: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    4.989189] hid-generic 001F:8087:0AC2.0004: hidraw3: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    4.999347] hid-generic 001F:8087:0AC2.0005: hidraw4: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    5.001271] EXT4-fs (nvme0n1p4): mounted filesystem 5d633ed2-0d9c-433c-a301-088337831aa6 r/w with ordered data mode. Quota mode: disabled.
[    5.002266] hid-generic 001F:8087:0AC3.0006: hidraw5: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC3] on 
[    5.002624] EXT4-fs (nvme0n1p7): mounted filesystem 7caf2eed-b428-4022-95f7-5d7fc532eeca r/w with ordered data mode. Quota mode: disabled.
[    5.005188] hid-sensor-hub 001F:8087:0AC2.0003: hidraw2: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    5.006521] EXT4-fs (nvme0n1p5): mounted filesystem 31ba8130-28a2-4bb8-9c13-36fd9d2a8eb4 r/w with ordered data mode. Quota mode: disabled.
[    5.006634] hid-sensor-hub 001F:8087:0AC2.0004: hidraw3: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    5.007920] hid-sensor-hub 001F:8087:0AC2.0005: hidraw4: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    5.008395] hid-sensor-hub 001F:8087:0AC3.0006: hidraw5: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC3] on 
[    5.013078] fuse: init (API version 7.42)
[    5.113607] usb 1-6: New USB device found, idVendor=04f2, idProduct=b67b, bcdDevice= 0.11
[    5.113611] usb 1-6: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    5.113612] usb 1-6: Product: HP Wide Vision FHD Camera
[    5.113613] usb 1-6: Manufacturer: Generic
[    5.113614] usb 1-6: SerialNumber: 200901010001
[    5.256086] usb 1-7: new full-speed USB device number 4 using xhci_hcd
[    5.257840] Adding 7340028k swap on /home/swapfile.  Priority:-2 extents:44 across:13918208k SS
[    5.276841] zram: Added device: zram0
[    5.276955] zram: Added device: zram1
[    5.288269] zram0: detected capacity change from 0 to 16777216
[    5.325161] EXT4-fs (zram0): mounted filesystem ab23ee13-ab0a-45a1-b88e-5e97e2debce5 r/w without journal. Quota mode: disabled.
[    5.336777] zram1: detected capacity change from 0 to 16777216
[    5.372368] EXT4-fs (zram1): mounted filesystem 72a76429-1ec4-4d89-921f-96acc3408f13 r/w without journal. Quota mode: disabled.
[    5.388252] usb 1-7: New USB device found, idVendor=8087, idProduct=0029, bcdDevice= 0.01
[    5.388255] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.400602] mc: Linux media interface: v0.10
[    5.407227] videodev: Linux video capture interface: v2.00
[    5.409351] Bluetooth: Core ver 2.22
[    5.409367] NET: Registered PF_BLUETOOTH protocol family
[    5.409369] Bluetooth: HCI device and connection manager initialized
[    5.409372] Bluetooth: HCI socket layer initialized
[    5.409374] Bluetooth: L2CAP socket layer initialized
[    5.409377] Bluetooth: SCO socket layer initialized
[    5.414499] usbcore: registered new interface driver btusb
[    5.424088] Bluetooth: hci0: Found device firmware: intel/ibt-20-1-3.sfi
[    5.424141] Bluetooth: hci0: Boot Address: 0x24800
[    5.424142] Bluetooth: hci0: Firmware Version: 132-3.24
[    5.424143] Bluetooth: hci0: Firmware already loaded
[    5.427504] Bluetooth: hci0: HCI LE Coded PHY feature bit is set, but its usage is not supported.
[    5.435885] usb 1-6: Found UVC 1.50 device HP Wide Vision FHD Camera (04f2:b67b)
[    5.442738] [drm] Initialized nvidia-drm 0.0.0 for 0000:01:00.0 on minor 1
[    5.581715] usb 1-6: Found UVC 1.50 device HP Wide Vision FHD Camera (04f2:b67b)
[    5.615399] usbcore: registered new interface driver uvcvideo
[    5.735901] input: sof-hda-dsp Mic as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card1/input31
[    5.735944] input: sof-hda-dsp Headphone as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card1/input32
[    5.735979] input: sof-hda-dsp HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card1/input33
[    5.736015] input: sof-hda-dsp HDMI/DP,pcm=4 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card1/input34
[    5.736058] input: sof-hda-dsp HDMI/DP,pcm=5 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card1/input35
[    7.417168] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    7.417171] Bluetooth: BNEP filters: protocol multicast
[    7.417173] Bluetooth: BNEP socket layer initialized
[    7.417848] Bluetooth: MGMT ver 1.23
[   10.314987] wlo1: authenticate with a6:89:90:79:10:37 (local address=50:eb:71:32:48:f3)
[   10.317355] wlo1: send auth to a6:89:90:79:10:37 (try 1/3)
[   10.406817] wlo1: authenticated
[   10.409599] wlo1: associate with a6:89:90:79:10:37 (try 1/3)
[   10.466219] wlo1: RX AssocResp from a6:89:90:79:10:37 (capab=0x1531 status=0 aid=2)
[   10.483997] wlo1: associated
[   10.569292] wlo1: Limiting TX power to 14 (14 - 0) dBm as advertised by a6:89:90:79:10:37
[   11.484847] nvidia_uvm: module uses symbols nvUvmInterfaceDisableAccessCntr from proprietary module nvidia, inheriting taint.
[   12.350167] nvme nvme0: using unchecked data buffer
[   12.360518] block nvme0n1: No UUID available providing old NGUID
[   12.836110] Bluetooth: RFCOMM TTY layer initialized
[   12.836130] Bluetooth: RFCOMM socket layer initialized
[   12.836139] Bluetooth: RFCOMM ver 1.11

[-- Attachment #3: lspci.6.14.info2.log --]
[-- Type: text/x-log, Size: 110872 bytes --]

00:00.0 Host bridge: Intel Corporation 8th Gen Core Processor Host Bridge/DRAM Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
	Latency: 0
	IOMMU group: 1
	Capabilities: [e0] Vendor Specific Information: Len=10 <?>
	Kernel driver in use: skl_uncore

00:01.0 PCI bridge: Intel Corporation 6th-10th Gen Core Processor PCIe Controller (x16) (rev 07) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 123
	IOMMU group: 2
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 3000-3fff [size=4K] [16-bit]
	Memory behind bridge: 8f000000-900fffff [size=17M] [32-bit]
	Prefetchable memory behind bridge: 6050000000-6061ffffff [size=288M] [32-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [88] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: fee00238  Data: 0000
	Capabilities: [a0] Express (v2) Root Port (Slot+), IntMsgNum 0
		DevCap:	MaxPayload 256 bytes, PhantFunc 0
			ExtTag- RBE+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #2, Speed 8GT/s, Width x8, ASPM L0s L1, Exit Latency L0s <256ns, L1 <8us
			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
		LnkSta:	Speed 8GT/s, Width x8
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #1, PowerLimit 75W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState-
		RootCap: CRSVisible-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Via WAKE#, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-
			 AtomicOpsCap: Routing- 32bit+ 64bit+ 128bitCAS+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Via WAKE#, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [140 v1] Root Complex Link
		Desc:	PortNumber=02 ComponentID=01 EltType=Config
		Link0:	Desc:	TargetPort=00 TargetComponent=01 AssocRCRB- LinkType=MemMapped LinkValid+
			Addr:	00000000fed19000
	Capabilities: [d94 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Kernel driver in use: pcieport

00:02.0 VGA compatible controller: Intel Corporation CoffeeLake-H GT2 [UHD Graphics 630] (prog-if 00 [VGA controller])
	DeviceName:  Onboard IGD
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 131
	IOMMU group: 0
	Region 0: Memory at 6062000000 (64-bit, non-prefetchable) [size=16M]
	Region 2: Memory at 4000000000 (64-bit, prefetchable) [size=256M]
	Region 4: I/O ports at 4000 [size=64]
	Expansion ROM at 000c0000 [virtual] [disabled] [size=128K]
	Capabilities: [40] Vendor Specific Information: Len=0c <?>
	Capabilities: [70] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag- RBE+ FLReset+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
			 AtomicOpsCtl: ReqEn-
			 IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
	Capabilities: [ac] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: fee00018  Data: 0000
	Capabilities: [d0] Power Management version 2
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Process Address Space ID (PASID)
		PASIDCap: Exec- Priv-, Max PASID Width: 14
		PASIDCtl: Enable- Exec- Priv-
	Capabilities: [200 v1] Address Translation Service (ATS)
		ATSCap:	Invalidate Queue Depth: 00
		ATSCtl:	Enable-, Smallest Translation Unit: 00
	Capabilities: [300 v1] Page Request Interface (PRI)
		PRICtl: Enable- Reset-
		PRISta: RF- UPRGI- Stopped+ PASID+
		Page Request Capacity: 00008000, Page Request Allocation: 00000000
	Kernel driver in use: i915

00:04.0 Signal processing controller: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem (rev 07)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 16
	IOMMU group: 3
	Region 0: Memory at 6063110000 (64-bit, non-prefetchable) [size=32K]
	Capabilities: [90] MSI: Enable- Count=1/1 Maskable- 64bit-
		Address: 00000000  Data: 0000
	Capabilities: [d0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [e0] Vendor Specific Information: Len=0c <?>
	Kernel driver in use: proc_thermal
	Kernel modules: processor_thermal_device_pci_legacy

00:12.0 Signal processing controller: Intel Corporation Cannon Lake PCH Thermal Controller (rev 10)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 16
	IOMMU group: 4
	Region 0: Memory at 6063125000 (64-bit, non-prefetchable) [size=4K]
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
		Address: 00000000  Data: 0000
	Kernel driver in use: intel_pch_thermal
	Kernel modules: intel_pch_thermal

00:13.0 Serial controller: Intel Corporation Device a37c (rev 10) (prog-if 00 [8250])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 20
	IOMMU group: 5
	Region 0: Memory at 606311e000 (64-bit, non-prefetchable) [size=8K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [90] Vendor Specific Information: Len=14 <?>
	Kernel driver in use: intel_ish_ipc
	Kernel modules: intel_ish_ipc

00:14.0 USB controller: Intel Corporation Cannon Lake PCH USB 3.1 xHCI Host Controller (rev 10) (prog-if 30 [XHCI])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 151
	IOMMU group: 6
	Region 0: Memory at 6063100000 (64-bit, non-prefetchable) [size=64K]
	Capabilities: [70] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
	Capabilities: [80] MSI: Enable+ Count=8/8 Maskable- 64bit+
		Address: 00000000fee00618  Data: 0000
	Capabilities: [90] Vendor Specific Information: Len=14 <?>
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

00:14.2 RAM memory: Intel Corporation Cannon Lake PCH Shared SRAM (rev 10)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	IOMMU group: 6
	Region 0: Memory at 606311c000 (64-bit, non-prefetchable) [disabled] [size=8K]
	Region 2: Memory at 6063124000 (64-bit, non-prefetchable) [disabled] [size=4K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

00:15.0 Serial bus controller: Intel Corporation Cannon Lake PCH Serial IO I2C Controller #0 (rev 10)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 16
	IOMMU group: 7
	Region 0: Memory at 4010000000 (64-bit, non-prefetchable) [size=4K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D3 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [90] Vendor Specific Information: Len=14 <?>
	Kernel driver in use: intel-lpss
	Kernel modules: intel_lpss_pci

00:15.1 Serial bus controller: Intel Corporation Cannon Lake PCH Serial IO I2C Controller #1 (rev 10)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 17
	IOMMU group: 7
	Region 0: Memory at 4010001000 (64-bit, non-prefetchable) [size=4K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D3 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [90] Vendor Specific Information: Len=14 <?>
	Kernel driver in use: intel-lpss
	Kernel modules: intel_lpss_pci

00:16.0 Communication controller: Intel Corporation Cannon Lake PCH HECI Controller (rev 10)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 159
	IOMMU group: 8
	Region 0: Memory at 6063121000 (64-bit, non-prefetchable) [size=4K]
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [8c] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee005f8  Data: 0000
	Capabilities: [a4] Vendor Specific Information: Len=14 <?>
	Kernel driver in use: mei_me
	Kernel modules: mei_me

00:17.0 RAID bus controller: Intel Corporation 82801 Mobile SATA Controller [RAID mode] (rev 10)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 16
	IOMMU group: 9
	Region 0: Memory at 8e100000 (32-bit, non-prefetchable) [size=8K]
	Region 1: Memory at 8e103000 (32-bit, non-prefetchable) [size=256]
	Region 2: I/O ports at 4090 [size=8]
	Region 3: I/O ports at 4080 [size=4]
	Region 4: I/O ports at 4060 [size=32]
	Region 5: Memory at 8e102000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: [d0] MSI-X: Enable+ Count=1 Masked-
		Vector table: BAR=0 offset=00000000
		PBA: BAR=1 offset=00000000
	Capabilities: [70] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold-)
		Status: D3 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000004
	Kernel driver in use: ahci

00:1b.0 PCI bridge: Intel Corporation Cannon Lake PCH PCI Express Root Port #17 (rev f0) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 124
	IOMMU group: 10
	Bus: primary=00, secondary=02, subordinate=6c, sec-latency=0
	I/O behind bridge: 5000-7fff [size=12K] [16-bit]
	Memory behind bridge: 60000000-8e0fffff [size=737M] [32-bit]
	Prefetchable memory behind bridge: 6000000000-6049ffffff [size=1184M] [32-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag- RBE+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #17, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <16us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
		LnkSta:	Speed 8GT/s, Width x4
			TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #20, PowerLimit 25W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq+ LinkChg+
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState-
		RootCap: CRSVisible-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
			 AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: fee00258  Data: 0000
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [a0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO+ CmpltAbrt- UnxCmplt+ RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
		RootCmd: CERptEn- NFERptEn- FERptEn-
		RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
			 FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
		ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
	Capabilities: [140 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [150 v1] Precision Time Measurement
		PTMCap: Requester- Responder+ Root+
		PTMClockGranularity: 4ns
		PTMControl: Enabled+ RootSelected+
		PTMEffectiveGranularity: Unknown
	Capabilities: [200 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=40us PortTPowerOnTime=44us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=40us LTR1.2_Threshold=81920ns
		L1SubCtl2: T_PwrOn=44us
	Capabilities: [220 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [250 v1] Downstream Port Containment
		DpcCap:	IntMsgNum 0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
		DpcCtl:	Trigger:0 Cmpl- INT- ErrCor- PoisonedTLP- SwTrigger- DL_ActiveErr-
		DpcSta:	Trigger- Reason:00 INT- RPBusy- TriggerExt:00 RP PIO ErrPtr:1f
		Source:	0000
	Kernel driver in use: pcieport

00:1d.0 PCI bridge: Intel Corporation Cannon Lake PCH PCI Express Root Port #9 (rev f0) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 125
	IOMMU group: 11
	Bus: primary=00, secondary=6d, subordinate=6d, sec-latency=0
	I/O behind bridge: [disabled] [16-bit]
	Memory behind bridge: 90500000-905fffff [size=1M] [32-bit]
	Prefetchable memory behind bridge: [disabled] [64-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag- RBE+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #9, Speed 8GT/s, Width x2, ASPM L0s L1, Exit Latency L0s <1us, L1 <16us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
		LnkSta:	Speed 8GT/s, Width x2
			TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #12, PowerLimit 25W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		RootCap: CRSVisible-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
			 AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: fee00278  Data: 0000
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [a0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
		RootCmd: CERptEn- NFERptEn- FERptEn-
		RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
			 FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
		ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
	Capabilities: [140 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [150 v1] Precision Time Measurement
		PTMCap: Requester- Responder+ Root+
		PTMClockGranularity: 4ns
		PTMControl: Enabled+ RootSelected+
		PTMEffectiveGranularity: Unknown
	Capabilities: [200 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=40us PortTPowerOnTime=44us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=100us LTR1.2_Threshold=81920ns
		L1SubCtl2: T_PwrOn=3100us
	Capabilities: [220 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [250 v1] Downstream Port Containment
		DpcCap:	IntMsgNum 0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
		DpcCtl:	Trigger:0 Cmpl- INT- ErrCor- PoisonedTLP- SwTrigger- DL_ActiveErr-
		DpcSta:	Trigger- Reason:00 INT- RPBusy- TriggerExt:00 RP PIO ErrPtr:1f
		Source:	0000
	Kernel driver in use: pcieport

00:1d.2 PCI bridge: Intel Corporation Cannon Lake PCH PCI Express Root Port #11 (rev f0) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 126
	IOMMU group: 12
	Bus: primary=00, secondary=6e, subordinate=6e, sec-latency=0
	I/O behind bridge: [disabled] [16-bit]
	Memory behind bridge: 90400000-904fffff [size=1M] [32-bit]
	Prefetchable memory behind bridge: [disabled] [64-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag- RBE+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #11, Speed 8GT/s, Width x2, ASPM L0s L1, Exit Latency L0s <1us, L1 <16us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
		LnkSta:	Speed 8GT/s, Width x2
			TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #14, PowerLimit 25W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		RootCap: CRSVisible-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
			 AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd+
			 AtomicOpsCtl: ReqEn- EgressBlck-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: fee00298  Data: 0000
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [a0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr+ BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
		RootCmd: CERptEn- NFERptEn- FERptEn-
		RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
			 FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
		ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
	Capabilities: [140 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [150 v1] Precision Time Measurement
		PTMCap: Requester- Responder+ Root+
		PTMClockGranularity: 4ns
		PTMControl: Enabled+ RootSelected+
		PTMEffectiveGranularity: Unknown
	Capabilities: [200 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=40us PortTPowerOnTime=44us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=100us LTR1.2_Threshold=81920ns
		L1SubCtl2: T_PwrOn=3100us
	Capabilities: [220 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [250 v1] Downstream Port Containment
		DpcCap:	IntMsgNum 0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
		DpcCtl:	Trigger:0 Cmpl- INT- ErrCor- PoisonedTLP- SwTrigger- DL_ActiveErr-
		DpcSta:	Trigger- Reason:00 INT- RPBusy- TriggerExt:00 RP PIO ErrPtr:1f
		Source:	0000
	Kernel driver in use: pcieport

00:1d.6 PCI bridge: Intel Corporation Cannon Lake PCH PCI Express Root Port #15 (rev f0) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 127
	IOMMU group: 13
	Bus: primary=00, secondary=6f, subordinate=6f, sec-latency=0
	I/O behind bridge: [disabled] [16-bit]
	Memory behind bridge: 90300000-903fffff [size=1M] [32-bit]
	Prefetchable memory behind bridge: [disabled] [64-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag- RBE+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #15, Speed 8GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <16us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
		LnkSta:	Speed 5GT/s, Width x1
			TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #18, PowerLimit 10W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		RootCap: CRSVisible-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
			 AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: fee002b8  Data: 0000
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [a0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
		RootCmd: CERptEn- NFERptEn- FERptEn-
		RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
			 FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
		ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
	Capabilities: [140 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [150 v1] Precision Time Measurement
		PTMCap: Requester- Responder+ Root+
		PTMClockGranularity: 4ns
		PTMControl: Enabled+ RootSelected+
		PTMEffectiveGranularity: Unknown
	Capabilities: [200 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=40us PortTPowerOnTime=44us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=40us LTR1.2_Threshold=81920ns
		L1SubCtl2: T_PwrOn=44us
	Capabilities: [220 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [250 v1] Downstream Port Containment
		DpcCap:	IntMsgNum 0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
		DpcCtl:	Trigger:0 Cmpl- INT- ErrCor- PoisonedTLP- SwTrigger- DL_ActiveErr-
		DpcSta:	Trigger- Reason:00 INT- RPBusy- TriggerExt:00 RP PIO ErrPtr:1f
		Source:	0000
	Kernel driver in use: pcieport

00:1d.7 PCI bridge: Intel Corporation Cannon Lake PCH PCI Express Root Port #16 (rev f0) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 128
	IOMMU group: 14
	Bus: primary=00, secondary=70, subordinate=70, sec-latency=0
	I/O behind bridge: [disabled] [16-bit]
	Memory behind bridge: 90200000-902fffff [size=1M] [32-bit]
	Prefetchable memory behind bridge: [disabled] [64-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Express (v2) Root Port (Slot+), IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag- RBE+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #16, Speed 8GT/s, Width x1, ASPM L1, Exit Latency L1 <16us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
		LnkSta:	Speed 5GT/s, Width x1
			TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #19, PowerLimit 10W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		RootCap: CRSVisible-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
			 AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: fee002f8  Data: 0000
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [a0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
		RootCmd: CERptEn- NFERptEn- FERptEn-
		RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
			 FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
		ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
	Capabilities: [140 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [150 v1] Precision Time Measurement
		PTMCap: Requester- Responder+ Root+
		PTMClockGranularity: 4ns
		PTMControl: Enabled+ RootSelected+
		PTMEffectiveGranularity: Unknown
	Capabilities: [200 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=40us PortTPowerOnTime=44us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=60us LTR1.2_Threshold=81920ns
		L1SubCtl2: T_PwrOn=60us
	Capabilities: [220 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [250 v1] Downstream Port Containment
		DpcCap:	IntMsgNum 0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
		DpcCtl:	Trigger:0 Cmpl- INT- ErrCor- PoisonedTLP- SwTrigger- DL_ActiveErr-
		DpcSta:	Trigger- Reason:00 INT- RPBusy- TriggerExt:00 RP PIO ErrPtr:1f
		Source:	0000
	Kernel driver in use: pcieport

00:1f.0 ISA bridge: Intel Corporation HM470 Chipset LPC/eSPI Controller (rev 10)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	IOMMU group: 15

00:1f.3 Multimedia audio controller: Intel Corporation Cannon Lake PCH cAVS (rev 10)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 201
	IOMMU group: 15
	Region 0: Memory at 6063118000 (64-bit, non-prefetchable) [size=16K]
	Region 4: Memory at 6063000000 (64-bit, non-prefetchable) [size=1M]
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
	Capabilities: [80] Vendor Specific Information: Len=14 <?>
	Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee00bf8  Data: 0000
	Kernel driver in use: sof-audio-pci-intel-cnl
	Kernel modules: snd_hda_intel, snd_sof_pci_intel_cnl

00:1f.4 SMBus: Intel Corporation Cannon Lake PCH SMBus Controller (rev 10)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 16
	IOMMU group: 15
	Region 0: Memory at 6063120000 (64-bit, non-prefetchable) [size=256]
	Region 4: I/O ports at efa0 [size=32]
	Kernel driver in use: i801_smbus
	Kernel modules: i2c_i801

00:1f.5 Serial bus controller: Intel Corporation Cannon Lake PCH SPI Controller (rev 10)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	IOMMU group: 15
	Region 0: Memory at fe010000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: intel-spi
	Kernel modules: spi_intel_pci

01:00.0 VGA compatible controller: NVIDIA Corporation TU117M [GeForce GTX 1650 Mobile / Max-Q] (rev a1) (prog-if 00 [VGA controller])
	DeviceName: NVIDIA GeForce GTX 1650
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 202
	IOMMU group: 2
	Region 0: Memory at 8f000000 (32-bit, non-prefetchable) [size=16M]
	Region 1: Memory at 6050000000 (64-bit, prefetchable) [size=256M]
	Region 3: Memory at 6060000000 (64-bit, prefetchable) [size=32M]
	Region 5: I/O ports at 3000 [size=128]
	Expansion ROM at 90000000 [virtual] [disabled] [size=512K]
	Capabilities: [60] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [68] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee00c18  Data: 0000
	Capabilities: [78] Express (v2) Legacy Endpoint, IntMsgNum 0
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s, Width x8 (downgraded)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range AB, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Via message, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
			 AtomicOpsCtl: ReqEn-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [250 v1] Latency Tolerance Reporting
		Max snoop latency: 34326183936ns
		Max no snoop latency: 34326183936ns
	Capabilities: [258 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=255us PortTPowerOnTime=10us
		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
			   T_CommonMode=0us LTR1.2_Threshold=0ns
		L1SubCtl2: T_PwrOn=10us
	Capabilities: [128 v1] Power Budgeting <?>
	Capabilities: [420 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
	Capabilities: [900 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [bb0 v1] Physical Resizable BAR
		BAR 0: current size: 16MB, supported: 16MB
		BAR 1: current size: 256MB, supported: 64MB 128MB 256MB
		BAR 3: current size: 32MB, supported: 32MB
	Kernel driver in use: nvidia
	Kernel modules: nvidia_drm, nvidia

01:00.1 Audio device: NVIDIA Corporation Device 10fa (rev a1)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 17
	IOMMU group: 2
	Region 0: Memory at 90080000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [60] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D3 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [78] Express (v2) Endpoint, IntMsgNum 0
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 75W TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s, Width x8 (downgraded)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range AB, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Via message, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
			 AtomicOpsCtl: ReqEn-
			 IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

02:00.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Physical Slot: 20
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 128 bytes
	Interrupt: pin A routed to IRQ 16
	IOMMU group: 16
	Bus: primary=02, secondary=03, subordinate=6c, sec-latency=0
	I/O behind bridge: 5000-6fff [size=8K] [16-bit]
	Memory behind bridge: 60000000-8e0fffff [size=737M] [32-bit]
	Prefetchable memory behind bridge: 6000000000-6049ffffff [size=1184M] [32-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [ac] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [c0] Express (v2) Upstream Port, IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 25W TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <2us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; LnkDisable- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s, Width x4
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
			 AtomicOpsCtl: EgressBlck-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [50] Capability ID 0x15 [0000]
	Capabilities: [100 v1] Device Serial Number 46-ad-24-91-d1-00-aa-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [800 v1] Latency Tolerance Reporting
		Max snoop latency: 3145728ns
		Max no snoop latency: 3145728ns
	Capabilities: [a00 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=0us PortTPowerOnTime=10us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=0us LTR1.2_Threshold=81920ns
		L1SubCtl2: T_PwrOn=44us
	Capabilities: [b00 v1] Precision Time Measurement
		PTMCap: Requester- Responder- Root-
		PTMClockGranularity: Unimplemented
		PTMControl: Enabled+ RootSelected-
		PTMEffectiveGranularity: 4ns
	Kernel driver in use: pcieport

03:00.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 128 bytes
	Interrupt: pin A routed to IRQ 16
	IOMMU group: 17
	Bus: primary=03, secondary=04, subordinate=04, sec-latency=0
	I/O behind bridge: [disabled] [32-bit]
	Memory behind bridge: 8e000000-8e0fffff [size=1M] [32-bit]
	Prefetchable memory behind bridge: [disabled] [64-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [ac] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; LnkDisable- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
			 AtomicOpsCtl: EgressBlck-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [50] Capability ID 0x15 [0000]
	Capabilities: [100 v1] Device Serial Number 46-ad-24-91-d1-00-aa-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=1 RefClk=100ns PATEntryBits=1
		Arb:	Fixed+ WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
		VC1:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable- ID=1 ArbSelect=Fixed TC/VC=00
			Status:	NegoPending+ InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [900 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
	Kernel driver in use: pcieport

03:01.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 128 bytes
	Interrupt: pin A routed to IRQ 129
	IOMMU group: 18
	Bus: primary=03, secondary=05, subordinate=37, sec-latency=0
	I/O behind bridge: 5000-5fff [size=4K] [16-bit]
	Memory behind bridge: 60000000-77efffff [size=383M] [32-bit]
	Prefetchable memory behind bridge: 6000000000-601fffffff [size=512M] [32-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee00338  Data: 0000
	Capabilities: [ac] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #1, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; LnkDisable- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #1, PowerLimit 0W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
			 AtomicOpsCtl: EgressBlck-
			 IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [50] Capability ID 0x15 [0000]
	Capabilities: [100 v1] Device Serial Number 46-ad-24-91-d1-00-aa-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending+ InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [900 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
	Kernel driver in use: pcieport

03:02.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 128 bytes
	Interrupt: pin A routed to IRQ 18
	IOMMU group: 19
	Bus: primary=03, secondary=38, subordinate=38, sec-latency=0
	I/O behind bridge: [disabled] [32-bit]
	Memory behind bridge: 77f00000-77ffffff [size=1M] [32-bit]
	Prefetchable memory behind bridge: [disabled] [64-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [ac] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr+ FatalErr- UnsupReq+ AuxPwr+ TransPend-
		LnkCap:	Port #2, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; LnkDisable- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
			 AtomicOpsCtl: EgressBlck-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [50] Capability ID 0x15 [0000]
	Capabilities: [100 v1] Device Serial Number 46-ad-24-91-d1-00-aa-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq+ ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 14, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 34000000 00000010 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [900 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
	Kernel driver in use: pcieport

03:04.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 128 bytes
	Interrupt: pin A routed to IRQ 130
	IOMMU group: 20
	Bus: primary=03, secondary=39, subordinate=6c, sec-latency=0
	I/O behind bridge: 6000-6fff [size=4K] [16-bit]
	Memory behind bridge: 78000000-8dffffff [size=352M] [32-bit]
	Prefetchable memory behind bridge: 6020000000-6049ffffff [size=672M] [32-bit]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee00358  Data: 0000
	Capabilities: [ac] Subsystem: Hewlett-Packard Company Device 863e
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+ TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #4, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; LnkDisable- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #4, PowerLimit 0W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
			 AtomicOpsCtl: EgressBlck-
			 IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [50] Capability ID 0x15 [0000]
	Capabilities: [100 v1] Device Serial Number 46-ad-24-91-d1-00-aa-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending+ InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [900 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
	Kernel driver in use: pcieport

04:00.0 System peripheral: Intel Corporation JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018] (rev 06)
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 128 bytes
	Interrupt: pin A routed to IRQ 16
	IOMMU group: 21
	Region 0: Memory at 8e000000 (32-bit, non-prefetchable) [size=256K]
	Region 1: Memory at 8e040000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] Express (v2) Endpoint, IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0W TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range B, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
			 AtomicOpsCtl: ReqEn-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI-X: Enable+ Count=16 Masked-
		Vector table: BAR=1 offset=00000000
		PBA: BAR=1 offset=00000fa0
	Capabilities: [100 v1] Device Serial Number 46-ad-24-91-d1-00-aa-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Latency Tolerance Reporting
		Max snoop latency: 3145728ns
		Max no snoop latency: 3145728ns
	Kernel driver in use: thunderbolt
	Kernel modules: thunderbolt

38:00.0 USB controller: Intel Corporation JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018] (rev 06) (prog-if 30 [XHCI])
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 178
	IOMMU group: 22
	Region 0: Memory at 77f00000 (32-bit, non-prefetchable) [size=64K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D3 NoSoftRst- PME-Enable+ DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable+ Count=8/8 Maskable- 64bit+
		Address: 00000000fee00a18  Data: 0000
	Capabilities: [c0] Express (v2) Endpoint, IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0W TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range B, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
			 AtomicOpsCtl: ReqEn-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Device Serial Number 46-ad-24-91-d1-00-aa-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [800 v1] Latency Tolerance Reporting
		Max snoop latency: 3145728ns
		Max no snoop latency: 3145728ns
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

6d:00.0 Non-Volatile memory controller: Intel Corporation Optane NVME SSD H10 with Solid State Storage [Teton Glacier] (rev 03) (prog-if 02 [NVM Express])
	Subsystem: Intel Corporation Device 8410
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 16
	IOMMU group: 23
	Region 0: Memory at 90500000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI: Enable- Count=1/8 Maskable+ 64bit+
		Address: 0000000000000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [70] Express (v2) Endpoint, IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 25W TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x2, ASPM L1, Exit Latency L1 <8us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s, Width x2
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
			 AtomicOpsCtl: ReqEn-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [b0] MSI-X: Enable+ Count=16 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00002100
	Capabilities: [100 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr+ HeaderOF+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [158 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [178 v1] Latency Tolerance Reporting
		Max snoop latency: 3145728ns
		Max no snoop latency: 3145728ns
	Capabilities: [180 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=100us PortTPowerOnTime=3100us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=0us LTR1.2_Threshold=81920ns
		L1SubCtl2: T_PwrOn=3100us
	Kernel driver in use: nvme

6e:00.0 Non-Volatile memory controller: Intel Corporation Optane NVME SSD H10 with Solid State Storage [Teton Glacier] (prog-if 02 [NVM Express])
	Subsystem: Intel Corporation Device 8510
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 18
	IOMMU group: 24
	Region 0: Memory at 90410000 (64-bit, non-prefetchable) [size=16K]
	Region 4: Memory at 90400000 (64-bit, non-prefetchable) [size=64K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI-X: Enable+ Count=9 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [60] Express (v2) Endpoint, IntMsgNum 0
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0W TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+ FLReset-
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x2, ASPM L1, Exit Latency L1 unlimited
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s, Width x2
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
			 AtomicOpsCtl: ReqEn-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/16 Maskable+ 64bit+
		Address: 0000000000000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [150 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [180 v1] Power Budgeting <?>
	Capabilities: [190 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 0
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [2a0 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2d0 v1] Latency Tolerance Reporting
		Max snoop latency: 3145728ns
		Max no snoop latency: 3145728ns
	Capabilities: [310 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=100us PortTPowerOnTime=3100us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=0us LTR1.2_Threshold=81920ns
		L1SubCtl2: T_PwrOn=3100us
	Kernel driver in use: nvme

6f:00.0 Network controller: Intel Corporation Wi-Fi 6 AX200 (rev 1a)
	DeviceName: Intel Dual Band Wireless-AC 9560 802.11 AC 2x2 WiFi + BT 5 Combo Adapter
	Subsystem: Intel Corporation Device 008c
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 18
	IOMMU group: 25
	Region 0: Memory at 90300000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [c8] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [40] Express (v2) Endpoint, IntMsgNum 0
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <512ns, L1 unlimited
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0W TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr+ NoSnoop+ FLReset-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x1, ASPM L1, Exit Latency L1 <8us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x1
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range B, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Via WAKE#, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 16ms to 55ms, TimeoutDis-
			 AtomicOpsCtl: ReqEn-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-5GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [80] MSI-X: Enable+ Count=16 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [14c v1] Latency Tolerance Reporting
		Max snoop latency: 3145728ns
		Max no snoop latency: 3145728ns
	Capabilities: [154 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=30us PortTPowerOnTime=18us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=0us LTR1.2_Threshold=81920ns
		L1SubCtl2: T_PwrOn=44us
	Kernel driver in use: iwlwifi
	Kernel modules: iwlwifi

70:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader (rev 01)
	DeviceName: Realtek PCIE CardReader
	Subsystem: Hewlett-Packard Company Device 863e
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 164
	IOMMU group: 26
	Region 1: Memory at 90200000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0-,D1+,D2+,D3hot+,D3cold+)
		Status: D3 NoSoftRst- PME-Enable+ DSel=0 DScale=0 PME-
	Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee00798  Data: 0000
	Capabilities: [b0] Express (v2) Endpoint, IntMsgNum 0
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 10W TEE-IO-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s unlimited, L1 <64us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x1
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Via message/WAKE#, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
			 AtomicOpsCtl: ReqEn-
			 IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
			 10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
		LnkCap2: Supported Link Speeds: 2.5-5GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
			ECRC- UnsupReq- ACSViol- UncorrIntErr+ BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
			PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr+ HeaderOF-
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [148 v1] Device Serial Number 00-00-00-01-00-4c-e0-00
	Capabilities: [158 v1] Latency Tolerance Reporting
		Max snoop latency: 3145728ns
		Max no snoop latency: 3145728ns
	Capabilities: [160 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=60us PortTPowerOnTime=60us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=0us LTR1.2_Threshold=81920ns
		L1SubCtl2: T_PwrOn=60us
	Kernel driver in use: rtsx_pci
	Kernel modules: rtsx_pci


  reply	other threads:[~2025-04-20 12:42 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <bug-219984-41252@https.bugzilla.kernel.org/>
2025-04-07 15:57 ` [Bug 219984] New: [BISECTED] High power usage since 'PCI/ASPM: Correct LTR_L1.2_THRESHOLD computation' Bjorn Helgaas
2025-04-07 16:10   ` Bjorn Helgaas
2025-04-07 18:33     ` Sergey Dolgov
2025-04-08 16:36       ` Bjorn Helgaas
2025-04-08 20:02         ` Sergey Dolgov
2025-04-08 23:18           ` Bjorn Helgaas
2025-04-10 13:59             ` Sergey Dolgov
2025-04-10 22:09               ` Bjorn Helgaas
2025-04-13 11:59                 ` Sergey Dolgov
2025-04-18 22:55                   ` Bjorn Helgaas
2025-04-20 12:42                     ` Sergey Dolgov [this message]
2025-05-02 21:30                 ` David E. Box
2025-05-06 11:57                   ` Sergey Dolgov
2025-07-08 18:02                     ` Sergey Dolgov
2025-07-08 18:37                       ` Bjorn Helgaas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAONYan9gQHD2bcO4jFECEP4XA7axkw0KBV33qvneoxzc7Oz39g@mail.gmail.com \
    --to=sergey.v.dolgov@gmail.com \
    --cc=aros@gmx.com \
    --cc=david.e.box@linux.intel.com \
    --cc=helgaas@kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=mika.westerberg@linux.intel.com \
    --cc=sathyanarayanan.kuppuswamy@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).