[PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips

Werner Sembach posted 1 patch 2 weeks, 3 days ago
There is a newer version of this series
drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
[PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Werner Sembach 2 weeks, 3 days ago
From: Mario Limonciello <mario.limonciello@amd.com>

commit 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
sets the policy that all PCIe ports are allowed to use D3.  When
the system is suspended if the port is not power manageable by the
platform and won't be used for wakeup via a PME this sets up the
policy for these ports to go into D3hot.

This policy generally makes sense from an OSPM perspective but it leads
to problems with wakeup from suspend on the TUXEDO Sirius 16 Gen 1 with
an unupdated BIOS.

- On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
  interrupt.
- On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.

On the affected Device + BIOS combination, add a quirk for the PCI device
ID used by the problematic root port on both chips to ensure that these
root ports are not put into D3hot at suspend.

This patch is based on
https://lore.kernel.org/linux-pci/20230708214457.1229-2-mario.limonciello@amd.com/
but with the added condition both in the documentation and in the code to
apply only to the TUXEDO Sirius 16 Gen 1 with the original unpatched BIOS.

Co-developed-by: Georg Gottleuber <ggo@tuxedocomputers.com>
Signed-off-by: Georg Gottleuber <ggo@tuxedocomputers.com>
Co-developed-by: Werner Sembach <wse@tuxedocomputers.com>
Signed-off-by: Werner Sembach <wse@tuxedocomputers.com>
Cc: stable@vger.kernel.org # 6.1+
Reported-by: Iain Lane <iain@orangesquash.org.uk>
Closes: https://forums.lenovo.com/t5/Ubuntu/Z13-can-t-resume-from-suspend-with-external-USB-keyboard/m-p/5217121
Fixes: 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
---
 drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 76f4df75b08a1..2226dca56197d 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -3908,6 +3908,37 @@ static void quirk_apple_poweroff_thunderbolt(struct pci_dev *dev)
 DECLARE_PCI_FIXUP_SUSPEND_LATE(PCI_VENDOR_ID_INTEL,
 			       PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C,
 			       quirk_apple_poweroff_thunderbolt);
+
+/*
+ * Putting PCIe root ports on Ryzen SoCs with USB4 controllers into D3hot
+ * may cause problems when the system attempts wake up from s2idle.
+ *
+ * On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
+ * interrupt.
+ * On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
+ *
+ * This fix is still required on the TUXEDO Sirius 16 Gen1 with the original
+ * unupdated BIOS.
+ */
+static const struct dmi_system_id quirk_ryzen_rp_d3_dmi_table[] = {
+	{
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"),
+			DMI_MATCH(DMI_BOARD_NAME, "APX958"),
+			DMI_MATCH(DMI_BIOS_VERSION, "V1.00A00"),
+		},
+	},
+	{}
+};
+
+static void quirk_ryzen_rp_d3(struct pci_dev *pdev)
+{
+	if (dmi_check_system(quirk_ryzen_rp_d3_dmi_table) &&
+	    !acpi_pci_power_manageable(pdev))
+		pdev->dev_flags |= PCI_DEV_FLAGS_NO_D3;
+}
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14b9, quirk_ryzen_rp_d3);
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14eb, quirk_ryzen_rp_d3);
 #endif
 
 /*
-- 
2.43.0
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Mario Limonciello 2 weeks, 3 days ago
On 12/9/2024 13:36, Werner Sembach wrote:
> From: Mario Limonciello <mario.limonciello@amd.com>
> 
> commit 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
> sets the policy that all PCIe ports are allowed to use D3.  When
> the system is suspended if the port is not power manageable by the
> platform and won't be used for wakeup via a PME this sets up the
> policy for these ports to go into D3hot.
> 
> This policy generally makes sense from an OSPM perspective but it leads
> to problems with wakeup from suspend on the TUXEDO Sirius 16 Gen 1 with
> an unupdated BIOS.
> 
> - On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
>    interrupt.
> - On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
> 
> On the affected Device + BIOS combination, add a quirk for the PCI device
> ID used by the problematic root port on both chips to ensure that these
> root ports are not put into D3hot at suspend.
> 
> This patch is based on
> https://lore.kernel.org/linux-pci/20230708214457.1229-2-mario.limonciello@amd.com/
> but with the added condition both in the documentation and in the code to
> apply only to the TUXEDO Sirius 16 Gen 1 with the original unpatched BIOS.
> 
> Co-developed-by: Georg Gottleuber <ggo@tuxedocomputers.com>
> Signed-off-by: Georg Gottleuber <ggo@tuxedocomputers.com>
> Co-developed-by: Werner Sembach <wse@tuxedocomputers.com>
> Signed-off-by: Werner Sembach <wse@tuxedocomputers.com>
> Cc: stable@vger.kernel.org # 6.1+
> Reported-by: Iain Lane <iain@orangesquash.org.uk>
> Closes: https://forums.lenovo.com/t5/Ubuntu/Z13-can-t-resume-from-suspend-with-external-USB-keyboard/m-p/5217121
> Fixes: 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
> ---
>   drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
>   1 file changed, 31 insertions(+)
> 
> diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
> index 76f4df75b08a1..2226dca56197d 100644
> --- a/drivers/pci/quirks.c
> +++ b/drivers/pci/quirks.c
> @@ -3908,6 +3908,37 @@ static void quirk_apple_poweroff_thunderbolt(struct pci_dev *dev)
>   DECLARE_PCI_FIXUP_SUSPEND_LATE(PCI_VENDOR_ID_INTEL,
>   			       PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C,
>   			       quirk_apple_poweroff_thunderbolt);
> +
> +/*
> + * Putting PCIe root ports on Ryzen SoCs with USB4 controllers into D3hot
> + * may cause problems when the system attempts wake up from s2idle.
> + *
> + * On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
> + * interrupt.
> + * On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
> + *
> + * This fix is still required on the TUXEDO Sirius 16 Gen1 with the original
> + * unupdated BIOS.
> + */
> +static const struct dmi_system_id quirk_ryzen_rp_d3_dmi_table[] = {
> +	{
> +		.matches = {
> +			DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"),
> +			DMI_MATCH(DMI_BOARD_NAME, "APX958"),
> +			DMI_MATCH(DMI_BIOS_VERSION, "V1.00A00"),
> +		},
> +	},
> +	{}
> +};
> +
> +static void quirk_ryzen_rp_d3(struct pci_dev *pdev)
> +{
> +	if (dmi_check_system(quirk_ryzen_rp_d3_dmi_table) &&
> +	    !acpi_pci_power_manageable(pdev))
> +		pdev->dev_flags |= PCI_DEV_FLAGS_NO_D3;
> +}
> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14b9, quirk_ryzen_rp_d3);
> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14eb, quirk_ryzen_rp_d3);
>   #endif
>   
>   /*

Wait, what is wrong with:

commit 7d08f21f8c630 ("x86/PCI: Avoid PME from D3hot/D3cold for AMD 
Rembrandt and Phoenix USB4")

Is that not activating on your system for some reason?
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Werner Sembach 2 weeks, 2 days ago
Hi,

Am 09.12.24 um 20:45 schrieb Mario Limonciello:
> On 12/9/2024 13:36, Werner Sembach wrote:
>> From: Mario Limonciello <mario.limonciello@amd.com>
>>
>> commit 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>> sets the policy that all PCIe ports are allowed to use D3.  When
>> the system is suspended if the port is not power manageable by the
>> platform and won't be used for wakeup via a PME this sets up the
>> policy for these ports to go into D3hot.
>>
>> This policy generally makes sense from an OSPM perspective but it leads
>> to problems with wakeup from suspend on the TUXEDO Sirius 16 Gen 1 with
>> an unupdated BIOS.
>>
>> - On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
>>    interrupt.
>> - On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
>>
>> On the affected Device + BIOS combination, add a quirk for the PCI device
>> ID used by the problematic root port on both chips to ensure that these
>> root ports are not put into D3hot at suspend.
>>
>> This patch is based on
>> https://lore.kernel.org/linux-pci/20230708214457.1229-2-mario.limonciello@amd.com/ 
>>
>> but with the added condition both in the documentation and in the code to
>> apply only to the TUXEDO Sirius 16 Gen 1 with the original unpatched BIOS.
>>
>> Co-developed-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>> Signed-off-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>> Co-developed-by: Werner Sembach <wse@tuxedocomputers.com>
>> Signed-off-by: Werner Sembach <wse@tuxedocomputers.com>
>> Cc: stable@vger.kernel.org # 6.1+
>> Reported-by: Iain Lane <iain@orangesquash.org.uk>
>> Closes: 
>> https://forums.lenovo.com/t5/Ubuntu/Z13-can-t-resume-from-suspend-with-external-USB-keyboard/m-p/5217121
>> Fixes: 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>> ---
>>   drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
>>   1 file changed, 31 insertions(+)
>>
>> diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
>> index 76f4df75b08a1..2226dca56197d 100644
>> --- a/drivers/pci/quirks.c
>> +++ b/drivers/pci/quirks.c
>> @@ -3908,6 +3908,37 @@ static void quirk_apple_poweroff_thunderbolt(struct 
>> pci_dev *dev)
>>   DECLARE_PCI_FIXUP_SUSPEND_LATE(PCI_VENDOR_ID_INTEL,
>>                      PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C,
>>                      quirk_apple_poweroff_thunderbolt);
>> +
>> +/*
>> + * Putting PCIe root ports on Ryzen SoCs with USB4 controllers into D3hot
>> + * may cause problems when the system attempts wake up from s2idle.
>> + *
>> + * On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
>> + * interrupt.
>> + * On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
>> + *
>> + * This fix is still required on the TUXEDO Sirius 16 Gen1 with the original
>> + * unupdated BIOS.
>> + */
>> +static const struct dmi_system_id quirk_ryzen_rp_d3_dmi_table[] = {
>> +    {
>> +        .matches = {
>> +            DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"),
>> +            DMI_MATCH(DMI_BOARD_NAME, "APX958"),
>> +            DMI_MATCH(DMI_BIOS_VERSION, "V1.00A00"),
>> +        },
>> +    },
>> +    {}
>> +};
>> +
>> +static void quirk_ryzen_rp_d3(struct pci_dev *pdev)
>> +{
>> +    if (dmi_check_system(quirk_ryzen_rp_d3_dmi_table) &&
>> +        !acpi_pci_power_manageable(pdev))
>> +        pdev->dev_flags |= PCI_DEV_FLAGS_NO_D3;
>> +}
>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14b9, quirk_ryzen_rp_d3);
>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14eb, quirk_ryzen_rp_d3);
>>   #endif
>>     /*
>
> Wait, what is wrong with:
>
> commit 7d08f21f8c630 ("x86/PCI: Avoid PME from D3hot/D3cold for AMD Rembrandt 
> and Phoenix USB4")
>
> Is that not activating on your system for some reason?

Doesn't seem so, tested with the old BIOS and 6.13-rc2 and had blackscreen on 
wakeup.

With a newer BIOS for that device suspend and resume however works.

Looking in the patch the device id's are different (0x162e, 0x162f, 0x1668, and 
0x1669).

Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Mario Limonciello 2 weeks, 2 days ago
On 12/10/2024 09:24, Werner Sembach wrote:
> Hi,
> 
> Am 09.12.24 um 20:45 schrieb Mario Limonciello:
>> On 12/9/2024 13:36, Werner Sembach wrote:
>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>
>>> commit 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>> sets the policy that all PCIe ports are allowed to use D3.  When
>>> the system is suspended if the port is not power manageable by the
>>> platform and won't be used for wakeup via a PME this sets up the
>>> policy for these ports to go into D3hot.
>>>
>>> This policy generally makes sense from an OSPM perspective but it leads
>>> to problems with wakeup from suspend on the TUXEDO Sirius 16 Gen 1 with
>>> an unupdated BIOS.
>>>
>>> - On family 19h model 44h (PCI 0x14b9) this manifests as a missing 
>>> wakeup
>>>    interrupt.
>>> - On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
>>>
>>> On the affected Device + BIOS combination, add a quirk for the PCI 
>>> device
>>> ID used by the problematic root port on both chips to ensure that these
>>> root ports are not put into D3hot at suspend.
>>>
>>> This patch is based on
>>> https://lore.kernel.org/linux-pci/20230708214457.1229-2- 
>>> mario.limonciello@amd.com/
>>> but with the added condition both in the documentation and in the 
>>> code to
>>> apply only to the TUXEDO Sirius 16 Gen 1 with the original unpatched 
>>> BIOS.
>>>
>>> Co-developed-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>> Signed-off-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>> Co-developed-by: Werner Sembach <wse@tuxedocomputers.com>
>>> Signed-off-by: Werner Sembach <wse@tuxedocomputers.com>
>>> Cc: stable@vger.kernel.org # 6.1+
>>> Reported-by: Iain Lane <iain@orangesquash.org.uk>
>>> Closes: https://forums.lenovo.com/t5/Ubuntu/Z13-can-t-resume-from- 
>>> suspend-with-external-USB-keyboard/m-p/5217121
>>> Fixes: 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>> ---
>>>   drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
>>>   1 file changed, 31 insertions(+)
>>>
>>> diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
>>> index 76f4df75b08a1..2226dca56197d 100644
>>> --- a/drivers/pci/quirks.c
>>> +++ b/drivers/pci/quirks.c
>>> @@ -3908,6 +3908,37 @@ static void 
>>> quirk_apple_poweroff_thunderbolt(struct pci_dev *dev)
>>>   DECLARE_PCI_FIXUP_SUSPEND_LATE(PCI_VENDOR_ID_INTEL,
>>>                      PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C,
>>>                      quirk_apple_poweroff_thunderbolt);
>>> +
>>> +/*
>>> + * Putting PCIe root ports on Ryzen SoCs with USB4 controllers into 
>>> D3hot
>>> + * may cause problems when the system attempts wake up from s2idle.
>>> + *
>>> + * On family 19h model 44h (PCI 0x14b9) this manifests as a missing 
>>> wakeup
>>> + * interrupt.
>>> + * On family 19h model 74h (PCI 0x14eb) this manifests as a system 
>>> hang.
>>> + *
>>> + * This fix is still required on the TUXEDO Sirius 16 Gen1 with the 
>>> original
>>> + * unupdated BIOS.
>>> + */
>>> +static const struct dmi_system_id quirk_ryzen_rp_d3_dmi_table[] = {
>>> +    {
>>> +        .matches = {
>>> +            DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"),
>>> +            DMI_MATCH(DMI_BOARD_NAME, "APX958"),
>>> +            DMI_MATCH(DMI_BIOS_VERSION, "V1.00A00"),
>>> +        },
>>> +    },
>>> +    {}
>>> +};
>>> +
>>> +static void quirk_ryzen_rp_d3(struct pci_dev *pdev)
>>> +{
>>> +    if (dmi_check_system(quirk_ryzen_rp_d3_dmi_table) &&
>>> +        !acpi_pci_power_manageable(pdev))
>>> +        pdev->dev_flags |= PCI_DEV_FLAGS_NO_D3;
>>> +}
>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14b9, quirk_ryzen_rp_d3);
>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14eb, quirk_ryzen_rp_d3);
>>>   #endif
>>>     /*
>>
>> Wait, what is wrong with:
>>
>> commit 7d08f21f8c630 ("x86/PCI: Avoid PME from D3hot/D3cold for AMD 
>> Rembrandt and Phoenix USB4")
>>
>> Is that not activating on your system for some reason?
> 
> Doesn't seem so, tested with the old BIOS and 6.13-rc2 and had 
> blackscreen on wakeup.

OK, I think we need to dig a layer deeper to see which root port is 
causing problems to understand this.

> 
> With a newer BIOS for that device suspend and resume however works.
> 

Is there any reason that people would realistically be staying on the 
old BIOS and instead we need to carry this quirk in the kernel for eternity?

With the Linux ecosystem for BIOS updates through fwupd + LVFS it's not 
a very big barrier to entry to do an update like it was 20 years ago.

> Looking in the patch the device id's are different (0x162e, 0x162f, 
> 0x1668, and 0x1669).
> 

TUXEDO Sirius 16 Gen1 is Phoenix based, right?  So at a minimum you 
shouldn't be including PCI IDs from Rembrandt (0x14b9)

Here is the topology from a Phoenix system on my side:

https://gist.github.com/superm1/85bf0c053008435458bdb39418e109d8

That's why 7d08f21f8c630 intentionally matches the NHI and then changes 
the root port right above that instead of all the root ports - because 
that is where the problem was.

You can see the PCIe ID 0x14eb covers quite a few root ports for a lot 
of devices.
If you're disabling D3 for all of them, that's going to be too broad.

Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Werner Sembach 2 weeks, 1 day ago
Hi,

Am 10.12.24 um 17:00 schrieb Mario Limonciello:
> On 12/10/2024 09:24, Werner Sembach wrote:
>> Hi,
>>
>> Am 09.12.24 um 20:45 schrieb Mario Limonciello:
>>> On 12/9/2024 13:36, Werner Sembach wrote:
>>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>>
>>>> commit 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>>> sets the policy that all PCIe ports are allowed to use D3. When
>>>> the system is suspended if the port is not power manageable by the
>>>> platform and won't be used for wakeup via a PME this sets up the
>>>> policy for these ports to go into D3hot.
>>>>
>>>> This policy generally makes sense from an OSPM perspective but it leads
>>>> to problems with wakeup from suspend on the TUXEDO Sirius 16 Gen 1 with
>>>> an unupdated BIOS.
>>>>
>>>> - On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
>>>>    interrupt.
>>>> - On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
>>>>
>>>> On the affected Device + BIOS combination, add a quirk for the PCI device
>>>> ID used by the problematic root port on both chips to ensure that these
>>>> root ports are not put into D3hot at suspend.
>>>>
>>>> This patch is based on
>>>> https://lore.kernel.org/linux-pci/20230708214457.1229-2- 
>>>> mario.limonciello@amd.com/
>>>> but with the added condition both in the documentation and in the code to
>>>> apply only to the TUXEDO Sirius 16 Gen 1 with the original unpatched BIOS.
>>>>
>>>> Co-developed-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>>> Signed-off-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>>> Co-developed-by: Werner Sembach <wse@tuxedocomputers.com>
>>>> Signed-off-by: Werner Sembach <wse@tuxedocomputers.com>
>>>> Cc: stable@vger.kernel.org # 6.1+
>>>> Reported-by: Iain Lane <iain@orangesquash.org.uk>
>>>> Closes: https://forums.lenovo.com/t5/Ubuntu/Z13-can-t-resume-from- 
>>>> suspend-with-external-USB-keyboard/m-p/5217121
>>>> Fixes: 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>>> ---
>>>>   drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
>>>>   1 file changed, 31 insertions(+)
>>>>
>>>> diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
>>>> index 76f4df75b08a1..2226dca56197d 100644
>>>> --- a/drivers/pci/quirks.c
>>>> +++ b/drivers/pci/quirks.c
>>>> @@ -3908,6 +3908,37 @@ static void quirk_apple_poweroff_thunderbolt(struct 
>>>> pci_dev *dev)
>>>>   DECLARE_PCI_FIXUP_SUSPEND_LATE(PCI_VENDOR_ID_INTEL,
>>>>                      PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C,
>>>>                      quirk_apple_poweroff_thunderbolt);
>>>> +
>>>> +/*
>>>> + * Putting PCIe root ports on Ryzen SoCs with USB4 controllers into D3hot
>>>> + * may cause problems when the system attempts wake up from s2idle.
>>>> + *
>>>> + * On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
>>>> + * interrupt.
>>>> + * On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
>>>> + *
>>>> + * This fix is still required on the TUXEDO Sirius 16 Gen1 with the original
>>>> + * unupdated BIOS.
>>>> + */
>>>> +static const struct dmi_system_id quirk_ryzen_rp_d3_dmi_table[] = {
>>>> +    {
>>>> +        .matches = {
>>>> +            DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"),
>>>> +            DMI_MATCH(DMI_BOARD_NAME, "APX958"),
>>>> +            DMI_MATCH(DMI_BIOS_VERSION, "V1.00A00"),
>>>> +        },
>>>> +    },
>>>> +    {}
>>>> +};
>>>> +
>>>> +static void quirk_ryzen_rp_d3(struct pci_dev *pdev)
>>>> +{
>>>> +    if (dmi_check_system(quirk_ryzen_rp_d3_dmi_table) &&
>>>> +        !acpi_pci_power_manageable(pdev))
>>>> +        pdev->dev_flags |= PCI_DEV_FLAGS_NO_D3;
>>>> +}
>>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14b9, quirk_ryzen_rp_d3);
>>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14eb, quirk_ryzen_rp_d3);
>>>>   #endif
>>>>     /*
>>>
>>> Wait, what is wrong with:
>>>
>>> commit 7d08f21f8c630 ("x86/PCI: Avoid PME from D3hot/D3cold for AMD 
>>> Rembrandt and Phoenix USB4")
>>>
>>> Is that not activating on your system for some reason?
>>
>> Doesn't seem so, tested with the old BIOS and 6.13-rc2 and had blackscreen on 
>> wakeup.
>
> OK, I think we need to dig a layer deeper to see which root port is causing 
> problems to understand this.
>
>>
>> With a newer BIOS for that device suspend and resume however works.
>>
>
> Is there any reason that people would realistically be staying on the old BIOS 
> and instead we need to carry this quirk in the kernel for eternity?
Fear of device bricking or not knowing an update is available.
>
> With the Linux ecosystem for BIOS updates through fwupd + LVFS it's not a very 
> big barrier to entry to do an update like it was 20 years ago.
Sadly fwupd/LVFS does not support executing arbitrary efi binaries/nsh scripts 
which still is the main form ODMs provide bios updates.
>
>> Looking in the patch the device id's are different (0x162e, 0x162f, 0x1668, 
>> and 0x1669).
>>
>
> TUXEDO Sirius 16 Gen1 is Phoenix based, right?  So at a minimum you shouldn't 
> be including PCI IDs from Rembrandt (0x14b9)
Thanks for the hint, I can delete that then.
>
> Here is the topology from a Phoenix system on my side:
>
> https://gist.github.com/superm1/85bf0c053008435458bdb39418e109d8

Sorry for the noob question: How do I get that format? it's not lspci -tvnn on 
my system

But i think this contains the same information:

$ lspci -Pnn
00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Root 
Complex [1022:14e8]
00:00.2 IOMMU [0806]: Advanced Micro Devices, Inc. [AMD] Phoenix IOMMU [1022:14e9]
00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
Host Bridge [1022:14ea]
00:01.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP Bridge 
[1022:14ed]
00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
Host Bridge [1022:14ea]
00:02.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP Bridge 
[1022:14ee]
00:02.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP Bridge 
[1022:14ee]
00:02.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP Bridge 
[1022:14ee]
00:02.4 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP Bridge 
[1022:14ee]
00:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
Host Bridge [1022:14ea]
00:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Family 19h 
USB4/Thunderbolt PCIe tunnel [1022:14ef]
00:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
Host Bridge [1022:14ea]
00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
Host Bridge [1022:14ea]
00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix Internal 
GPP Bridge to Bus [C:A] [1022:14eb]
00:08.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix Internal 
GPP Bridge to Bus [C:A] [1022:14eb]
00:08.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix Internal 
GPP Bridge to Bus [C:A] [1022:14eb]
00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller 
[1022:790b] (rev 71)
00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge 
[1022:790e] (rev 51)
00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
Fabric; Function 0 [1022:14f0]
00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
Fabric; Function 1 [1022:14f1]
00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
Fabric; Function 2 [1022:14f2]
00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
Fabric; Function 3 [1022:14f3]
00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
Fabric; Function 4 [1022:14f4]
00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
Fabric; Function 5 [1022:14f5]
00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
Fabric; Function 6 [1022:14f6]
00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
Fabric; Function 7 [1022:14f7]
00:01.1/00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 10 
XL Upstream Port of PCI Express Switch [1002:1478] (rev 12)
00:01.1/00.0/00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 
10 XL Downstream Port of PCI Express Switch [1002:1479] (rev 12)
00:01.1/00.0/00.0/00.0 VGA compatible controller [0300]: Advanced Micro Devices, 
Inc. [AMD/ATI] Navi 33 [Radeon RX 7600/7600 XT/7600M XT/7600S/7700S / PRO W7600] 
[1002:7480] (rev c7)
00:01.1/00.0/00.0/00.1 Audio device [0403]: Advanced Micro Devices, Inc. 
[AMD/ATI] Navi 31 HDMI/DP Audio [1002:ab30]
00:02.1/00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 15)
00:02.2/00.0 Network controller [0280]: Intel Corporation Wi-Fi 6E(802.11ax) 
AX210/AX1675* 2x2 [Typhoon Peak] [8086:2725] (rev 1a)
00:02.4/00.0 Non-Volatile memory controller [0108]: Samsung Electronics Co Ltd 
NVMe SSD Controller SM981/PM981/PM983 [144d:a808]
00:08.1/00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. 
[AMD/ATI] Phoenix1 [1002:15bf] (rev c1)
00:08.1/00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] 
Rembrandt Radeon High Definition Audio Controller [1002:1640]
00:08.1/00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] 
Phoenix CCP/PSP 3.0 Device [1022:15c7]
00:08.1/00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
[1022:15b9]
00:08.1/00.4 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
[1022:15ba]
00:08.1/00.5 Multimedia controller [0480]: Advanced Micro Devices, Inc. [AMD] 
ACP/ACP3X/ACP6x Audio Coprocessor [1022:15e2] (rev 63)
00:08.1/00.6 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Family 
17h/19h/1ah HD Audio Controller [1022:15e3]
00:08.2/00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. 
[AMD] Phoenix Dummy Function [1022:14ec]
00:08.2/00.1 Signal processing controller [1180]: Advanced Micro Devices, Inc. 
[AMD] AMD IPU Device [1022:1502]
00:08.3/00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. 
[AMD] Phoenix Dummy Function [1022:14ec]
00:08.3/00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
[1022:15c0]
00:08.3/00.4 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
[1022:15c1]
00:08.3/00.5 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Pink 
Sardine USB4/Thunderbolt NHI controller #1 [1022:1668]

>
> That's why 7d08f21f8c630 intentionally matches the NHI and then changes the 
> root port right above that instead of all the root ports - because that is 
> where the problem was.
For some reason it doesn't seem to trigger on my system (added debug output) I 
will look further into it why that happens.
>
> You can see the PCIe ID 0x14eb covers quite a few root ports for a lot of 
> devices.
> If you're disabling D3 for all of them, that's going to be too broad.
>
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Mario Limonciello 2 weeks ago
On 12/11/2024 06:47, Werner Sembach wrote:
> Hi,
> 
> Am 10.12.24 um 17:00 schrieb Mario Limonciello:
>> On 12/10/2024 09:24, Werner Sembach wrote:
>>> Hi,
>>>
>>> Am 09.12.24 um 20:45 schrieb Mario Limonciello:
>>>> On 12/9/2024 13:36, Werner Sembach wrote:
>>>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>>>
>>>>> commit 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>>>> sets the policy that all PCIe ports are allowed to use D3. When
>>>>> the system is suspended if the port is not power manageable by the
>>>>> platform and won't be used for wakeup via a PME this sets up the
>>>>> policy for these ports to go into D3hot.
>>>>>
>>>>> This policy generally makes sense from an OSPM perspective but it 
>>>>> leads
>>>>> to problems with wakeup from suspend on the TUXEDO Sirius 16 Gen 1 
>>>>> with
>>>>> an unupdated BIOS.
>>>>>
>>>>> - On family 19h model 44h (PCI 0x14b9) this manifests as a missing 
>>>>> wakeup
>>>>>    interrupt.
>>>>> - On family 19h model 74h (PCI 0x14eb) this manifests as a system 
>>>>> hang.
>>>>>
>>>>> On the affected Device + BIOS combination, add a quirk for the PCI 
>>>>> device
>>>>> ID used by the problematic root port on both chips to ensure that 
>>>>> these
>>>>> root ports are not put into D3hot at suspend.
>>>>>
>>>>> This patch is based on
>>>>> https://lore.kernel.org/linux-pci/20230708214457.1229-2- 
>>>>> mario.limonciello@amd.com/
>>>>> but with the added condition both in the documentation and in the 
>>>>> code to
>>>>> apply only to the TUXEDO Sirius 16 Gen 1 with the original 
>>>>> unpatched BIOS.
>>>>>
>>>>> Co-developed-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>>>> Signed-off-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>>>> Co-developed-by: Werner Sembach <wse@tuxedocomputers.com>
>>>>> Signed-off-by: Werner Sembach <wse@tuxedocomputers.com>
>>>>> Cc: stable@vger.kernel.org # 6.1+
>>>>> Reported-by: Iain Lane <iain@orangesquash.org.uk>
>>>>> Closes: https://forums.lenovo.com/t5/Ubuntu/Z13-can-t-resume-from- 
>>>>> suspend-with-external-USB-keyboard/m-p/5217121
>>>>> Fixes: 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>>>> ---
>>>>>   drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
>>>>>   1 file changed, 31 insertions(+)
>>>>>
>>>>> diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
>>>>> index 76f4df75b08a1..2226dca56197d 100644
>>>>> --- a/drivers/pci/quirks.c
>>>>> +++ b/drivers/pci/quirks.c
>>>>> @@ -3908,6 +3908,37 @@ static void 
>>>>> quirk_apple_poweroff_thunderbolt(struct pci_dev *dev)
>>>>>   DECLARE_PCI_FIXUP_SUSPEND_LATE(PCI_VENDOR_ID_INTEL,
>>>>>                      PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C,
>>>>>                      quirk_apple_poweroff_thunderbolt);
>>>>> +
>>>>> +/*
>>>>> + * Putting PCIe root ports on Ryzen SoCs with USB4 controllers 
>>>>> into D3hot
>>>>> + * may cause problems when the system attempts wake up from s2idle.
>>>>> + *
>>>>> + * On family 19h model 44h (PCI 0x14b9) this manifests as a 
>>>>> missing wakeup
>>>>> + * interrupt.
>>>>> + * On family 19h model 74h (PCI 0x14eb) this manifests as a system 
>>>>> hang.
>>>>> + *
>>>>> + * This fix is still required on the TUXEDO Sirius 16 Gen1 with 
>>>>> the original
>>>>> + * unupdated BIOS.
>>>>> + */
>>>>> +static const struct dmi_system_id quirk_ryzen_rp_d3_dmi_table[] = {
>>>>> +    {
>>>>> +        .matches = {
>>>>> +            DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"),
>>>>> +            DMI_MATCH(DMI_BOARD_NAME, "APX958"),
>>>>> +            DMI_MATCH(DMI_BIOS_VERSION, "V1.00A00"),
>>>>> +        },
>>>>> +    },
>>>>> +    {}
>>>>> +};
>>>>> +
>>>>> +static void quirk_ryzen_rp_d3(struct pci_dev *pdev)
>>>>> +{
>>>>> +    if (dmi_check_system(quirk_ryzen_rp_d3_dmi_table) &&
>>>>> +        !acpi_pci_power_manageable(pdev))
>>>>> +        pdev->dev_flags |= PCI_DEV_FLAGS_NO_D3;
>>>>> +}
>>>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14b9, 
>>>>> quirk_ryzen_rp_d3);
>>>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14eb, 
>>>>> quirk_ryzen_rp_d3);
>>>>>   #endif
>>>>>     /*
>>>>
>>>> Wait, what is wrong with:
>>>>
>>>> commit 7d08f21f8c630 ("x86/PCI: Avoid PME from D3hot/D3cold for AMD 
>>>> Rembrandt and Phoenix USB4")
>>>>
>>>> Is that not activating on your system for some reason?
>>>
>>> Doesn't seem so, tested with the old BIOS and 6.13-rc2 and had 
>>> blackscreen on wakeup.
>>
>> OK, I think we need to dig a layer deeper to see which root port is 
>> causing problems to understand this.
>>
>>>
>>> With a newer BIOS for that device suspend and resume however works.
>>>
>>
>> Is there any reason that people would realistically be staying on the 
>> old BIOS and instead we need to carry this quirk in the kernel for 
>> eternity?
> Fear of device bricking or not knowing an update is available.

The not knowing is solved by publishing firmware to LVFS.

Most "popular" distributions include fwupd, regularly check for updates 
and will notify users through the MOTD or a graphical application that 
there is something available.

>>
>> With the Linux ecosystem for BIOS updates through fwupd + LVFS it's 
>> not a very big barrier to entry to do an update like it was 20 years ago.
> Sadly fwupd/LVFS does not support executing arbitrary efi binaries/nsh 
> scripts which still is the main form ODMs provide bios updates.

It's tangential to this thread; but generally ODMs will provide you a 
capsule if you ask for one.

Anyhow if you are providing scripts and random EFI binaries in order to 
get things updated, that explains why this is a large enough chunk of 
people to justify a patch like this.

>>
>>> Looking in the patch the device id's are different (0x162e, 0x162f, 
>>> 0x1668, and 0x1669).
>>>
>>
>> TUXEDO Sirius 16 Gen1 is Phoenix based, right?  So at a minimum you 
>> shouldn't be including PCI IDs from Rembrandt (0x14b9)
> Thanks for the hint, I can delete that then.
>>
>> Here is the topology from a Phoenix system on my side:
>>
>> https://gist.github.com/superm1/85bf0c053008435458bdb39418e109d8
> 
> Sorry for the noob question: How do I get that format? it's not lspci - 
> tvnn on my system

No worry.

Having looked at a lot of s2idle bugs I've found it's generally helpful 
to know what ACPI companion is assigned to devices and what are parents.

So it's actually created by this function in the s2idle issue triage 
script, amd_s2idle.py.

https://gitlab.freedesktop.org/drm/amd/-/blob/master/scripts/amd_s2idle.py#L1945

And while on the topic, does your "broken" BIOS report this from that 
script?

'''
Platform may hang resuming.  Upgrade your firmware or add 
pcie_port_pm=off to kernel command line if you have problems
'''

> 
> But i think this contains the same information:
> 
> $ lspci -Pnn
> 00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Root Complex [1022:14e8]
> 00:00.2 IOMMU [0806]: Advanced Micro Devices, Inc. [AMD] Phoenix IOMMU 
> [1022:14e9]
> 00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Dummy Host Bridge [1022:14ea]
> 00:01.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> GPP Bridge [1022:14ed]
> 00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Dummy Host Bridge [1022:14ea]
> 00:02.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> GPP Bridge [1022:14ee]
> 00:02.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> GPP Bridge [1022:14ee]
> 00:02.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> GPP Bridge [1022:14ee]
> 00:02.4 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> GPP Bridge [1022:14ee]
> 00:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Dummy Host Bridge [1022:14ea]
> 00:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Family 19h 
> USB4/Thunderbolt PCIe tunnel [1022:14ef]
> 00:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Dummy Host Bridge [1022:14ea]
> 00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Dummy Host Bridge [1022:14ea]
> 00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Internal GPP Bridge to Bus [C:A] [1022:14eb]
> 00:08.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Internal GPP Bridge to Bus [C:A] [1022:14eb]
> 00:08.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Internal GPP Bridge to Bus [C:A] [1022:14eb]
> 00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus 
> Controller [1022:790b] (rev 71)
> 00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC 
> Bridge [1022:790e] (rev 51)
> 00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Data Fabric; Function 0 [1022:14f0]
> 00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Data Fabric; Function 1 [1022:14f1]
> 00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Data Fabric; Function 2 [1022:14f2]
> 00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Data Fabric; Function 3 [1022:14f3]
> 00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Data Fabric; Function 4 [1022:14f4]
> 00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Data Fabric; Function 5 [1022:14f5]
> 00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Data Fabric; Function 6 [1022:14f6]
> 00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix 
> Data Fabric; Function 7 [1022:14f7]
> 00:01.1/00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] 
> Navi 10 XL Upstream Port of PCI Express Switch [1002:1478] (rev 12)
> 00:01.1/00.0/00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ 
> ATI] Navi 10 XL Downstream Port of PCI Express Switch [1002:1479] (rev 12)
> 00:01.1/00.0/00.0/00.0 VGA compatible controller [0300]: Advanced Micro 
> Devices, Inc. [AMD/ATI] Navi 33 [Radeon RX 7600/7600 XT/7600M 
> XT/7600S/7700S / PRO W7600] [1002:7480] (rev c7)
> 00:01.1/00.0/00.0/00.1 Audio device [0403]: Advanced Micro Devices, Inc. 
> [AMD/ATI] Navi 31 HDMI/DP Audio [1002:ab30]
> 00:02.1/00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
> RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller 
> [10ec:8168] (rev 15)
> 00:02.2/00.0 Network controller [0280]: Intel Corporation Wi-Fi 
> 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak] [8086:2725] (rev 1a)
> 00:02.4/00.0 Non-Volatile memory controller [0108]: Samsung Electronics 
> Co Ltd NVMe SSD Controller SM981/PM981/PM983 [144d:a808]
> 00:08.1/00.0 VGA compatible controller [0300]: Advanced Micro Devices, 
> Inc. [AMD/ATI] Phoenix1 [1002:15bf] (rev c1)
> 00:08.1/00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] 
> Rembrandt Radeon High Definition Audio Controller [1002:1640]
> 00:08.1/00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. 
> [AMD] Phoenix CCP/PSP 3.0 Device [1022:15c7]
> 00:08.1/00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] 
> Device [1022:15b9]
> 00:08.1/00.4 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] 
> Device [1022:15ba]
> 00:08.1/00.5 Multimedia controller [0480]: Advanced Micro Devices, Inc. 
> [AMD] ACP/ACP3X/ACP6x Audio Coprocessor [1022:15e2] (rev 63)
> 00:08.1/00.6 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] 
> Family 17h/19h/1ah HD Audio Controller [1022:15e3]
> 00:08.2/00.0 Non-Essential Instrumentation [1300]: Advanced Micro 
> Devices, Inc. [AMD] Phoenix Dummy Function [1022:14ec]
> 00:08.2/00.1 Signal processing controller [1180]: Advanced Micro 
> Devices, Inc. [AMD] AMD IPU Device [1022:1502]
> 00:08.3/00.0 Non-Essential Instrumentation [1300]: Advanced Micro 
> Devices, Inc. [AMD] Phoenix Dummy Function [1022:14ec]
> 00:08.3/00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] 
> Device [1022:15c0]
> 00:08.3/00.4 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] 
> Device [1022:15c1]
> 00:08.3/00.5 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] 
> Pink Sardine USB4/Thunderbolt NHI controller #1 [1022:1668]
> 
>>
>> That's why 7d08f21f8c630 intentionally matches the NHI and then 
>> changes the root port right above that instead of all the root ports - 
>> because that is where the problem was.
> For some reason it doesn't seem to trigger on my system (added debug 
> output) I will look further into it why that happens.

You never see this message in your logs at suspend time (even on a 
"fixed" BIOS)?

"quirk: disabling D3cold for suspend"

I'm /suspecting/ you do see it, but you're having problems with another 
root port.

I mentioned this in my previous iterations of patches that eventually 
landed on that quirk, but Windows and Linux handle root ports 
differently at suspend time and that could be why it's exposing your 
BIOS bug.

If you can please narrow down which root ports actually need the quirk 
for your side (feel free to do a similar style to 7d08f21f8c630) I think 
we could land on something more narrow and upstreamable.

At a minimum what you're doing today is covering both Rembrandt and 
Phoenix and it should only apply to Phoenix.

Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Werner Sembach 1 week, 2 days ago
Hi,

some more testing below.

Am 11.12.24 um 22:24 schrieb Mario Limonciello:
> On 12/11/2024 06:47, Werner Sembach wrote:
>> Hi,
>>
>> Am 10.12.24 um 17:00 schrieb Mario Limonciello:
>>> On 12/10/2024 09:24, Werner Sembach wrote:
>>>> Hi,
>>>>
>>>> Am 09.12.24 um 20:45 schrieb Mario Limonciello:
>>>>> On 12/9/2024 13:36, Werner Sembach wrote:
>>>>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>>>>
>>>>>> commit 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>>>>> sets the policy that all PCIe ports are allowed to use D3. When
>>>>>> the system is suspended if the port is not power manageable by the
>>>>>> platform and won't be used for wakeup via a PME this sets up the
>>>>>> policy for these ports to go into D3hot.
>>>>>>
>>>>>> This policy generally makes sense from an OSPM perspective but it leads
>>>>>> to problems with wakeup from suspend on the TUXEDO Sirius 16 Gen 1 with
>>>>>> an unupdated BIOS.
>>>>>>
>>>>>> - On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
>>>>>>    interrupt.
>>>>>> - On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
>>>>>>
>>>>>> On the affected Device + BIOS combination, add a quirk for the PCI device
>>>>>> ID used by the problematic root port on both chips to ensure that these
>>>>>> root ports are not put into D3hot at suspend.
>>>>>>
>>>>>> This patch is based on
>>>>>> https://lore.kernel.org/linux-pci/20230708214457.1229-2- 
>>>>>> mario.limonciello@amd.com/
>>>>>> but with the added condition both in the documentation and in the code to
>>>>>> apply only to the TUXEDO Sirius 16 Gen 1 with the original unpatched BIOS.
>>>>>>
>>>>>> Co-developed-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>>>>> Signed-off-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>>>>> Co-developed-by: Werner Sembach <wse@tuxedocomputers.com>
>>>>>> Signed-off-by: Werner Sembach <wse@tuxedocomputers.com>
>>>>>> Cc: stable@vger.kernel.org # 6.1+
>>>>>> Reported-by: Iain Lane <iain@orangesquash.org.uk>
>>>>>> Closes: https://forums.lenovo.com/t5/Ubuntu/Z13-can-t-resume-from- 
>>>>>> suspend-with-external-USB-keyboard/m-p/5217121
>>>>>> Fixes: 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>>>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>>>>> ---
>>>>>>   drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
>>>>>>   1 file changed, 31 insertions(+)
>>>>>>
>>>>>> diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
>>>>>> index 76f4df75b08a1..2226dca56197d 100644
>>>>>> --- a/drivers/pci/quirks.c
>>>>>> +++ b/drivers/pci/quirks.c
>>>>>> @@ -3908,6 +3908,37 @@ static void 
>>>>>> quirk_apple_poweroff_thunderbolt(struct pci_dev *dev)
>>>>>>   DECLARE_PCI_FIXUP_SUSPEND_LATE(PCI_VENDOR_ID_INTEL,
>>>>>> PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C,
>>>>>>                      quirk_apple_poweroff_thunderbolt);
>>>>>> +
>>>>>> +/*
>>>>>> + * Putting PCIe root ports on Ryzen SoCs with USB4 controllers into D3hot
>>>>>> + * may cause problems when the system attempts wake up from s2idle.
>>>>>> + *
>>>>>> + * On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
>>>>>> + * interrupt.
>>>>>> + * On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
>>>>>> + *
>>>>>> + * This fix is still required on the TUXEDO Sirius 16 Gen1 with the 
>>>>>> original
>>>>>> + * unupdated BIOS.
>>>>>> + */
>>>>>> +static const struct dmi_system_id quirk_ryzen_rp_d3_dmi_table[] = {
>>>>>> +    {
>>>>>> +        .matches = {
>>>>>> +            DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"),
>>>>>> +            DMI_MATCH(DMI_BOARD_NAME, "APX958"),
>>>>>> +            DMI_MATCH(DMI_BIOS_VERSION, "V1.00A00"),
>>>>>> +        },
>>>>>> +    },
>>>>>> +    {}
>>>>>> +};
>>>>>> +
>>>>>> +static void quirk_ryzen_rp_d3(struct pci_dev *pdev)
>>>>>> +{
>>>>>> +    if (dmi_check_system(quirk_ryzen_rp_d3_dmi_table) &&
>>>>>> +        !acpi_pci_power_manageable(pdev))
>>>>>> +        pdev->dev_flags |= PCI_DEV_FLAGS_NO_D3;
>>>>>> +}
>>>>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14b9, quirk_ryzen_rp_d3);
>>>>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14eb, quirk_ryzen_rp_d3);
>>>>>>   #endif
>>>>>>     /*
>>>>>
>>>>> Wait, what is wrong with:
>>>>>
>>>>> commit 7d08f21f8c630 ("x86/PCI: Avoid PME from D3hot/D3cold for AMD 
>>>>> Rembrandt and Phoenix USB4")
>>>>>
>>>>> Is that not activating on your system for some reason?
>>>>
>>>> Doesn't seem so, tested with the old BIOS and 6.13-rc2 and had blackscreen 
>>>> on wakeup.
>>>
>>> OK, I think we need to dig a layer deeper to see which root port is causing 
>>> problems to understand this.
>>>
>>>>
>>>> With a newer BIOS for that device suspend and resume however works.
>>>>
>>>
>>> Is there any reason that people would realistically be staying on the old 
>>> BIOS and instead we need to carry this quirk in the kernel for eternity?
>> Fear of device bricking or not knowing an update is available.
>
> The not knowing is solved by publishing firmware to LVFS.
>
> Most "popular" distributions include fwupd, regularly check for updates and 
> will notify users through the MOTD or a graphical application that there is 
> something available.
>
>>>
>>> With the Linux ecosystem for BIOS updates through fwupd + LVFS it's not a 
>>> very big barrier to entry to do an update like it was 20 years ago.
>> Sadly fwupd/LVFS does not support executing arbitrary efi binaries/nsh 
>> scripts which still is the main form ODMs provide bios updates.
>
> It's tangential to this thread; but generally ODMs will provide you a capsule 
> if you ask for one.
>
> Anyhow if you are providing scripts and random EFI binaries in order to get 
> things updated, that explains why this is a large enough chunk of people to 
> justify a patch like this.
>
>>>
>>>> Looking in the patch the device id's are different (0x162e, 0x162f, 0x1668, 
>>>> and 0x1669).
>>>>
>>>
>>> TUXEDO Sirius 16 Gen1 is Phoenix based, right?  So at a minimum you 
>>> shouldn't be including PCI IDs from Rembrandt (0x14b9)
>> Thanks for the hint, I can delete that then.
>>>
>>> Here is the topology from a Phoenix system on my side:
>>>
>>> https://gist.github.com/superm1/85bf0c053008435458bdb39418e109d8
>>
>> Sorry for the noob question: How do I get that format? it's not lspci - tvnn 
>> on my system
>
> No worry.
>
> Having looked at a lot of s2idle bugs I've found it's generally helpful to 
> know what ACPI companion is assigned to devices and what are parents.
>
> So it's actually created by this function in the s2idle issue triage script, 
> amd_s2idle.py.
>
> https://gitlab.freedesktop.org/drm/amd/-/blob/master/scripts/amd_s2idle.py#L1945
>
> And while on the topic, does your "broken" BIOS report this from that script?
>
> '''
> Platform may hang resuming.  Upgrade your firmware or add pcie_port_pm=off to 
> kernel command line if you have problems
> '''
Yes, full log attached (kernel 6.13-rc3 one time without sudo one time with sudo)
>
>>
>> But i think this contains the same information:
>>
>> $ lspci -Pnn
>> 00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Root 
>> Complex [1022:14e8]
>> 00:00.2 IOMMU [0806]: Advanced Micro Devices, Inc. [AMD] Phoenix IOMMU 
>> [1022:14e9]
>> 00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
>> Host Bridge [1022:14ea]
>> 00:01.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP 
>> Bridge [1022:14ed]
>> 00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
>> Host Bridge [1022:14ea]
>> 00:02.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP 
>> Bridge [1022:14ee]
>> 00:02.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP 
>> Bridge [1022:14ee]
>> 00:02.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP 
>> Bridge [1022:14ee]
>> 00:02.4 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP 
>> Bridge [1022:14ee]
>> 00:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
>> Host Bridge [1022:14ea]
>> 00:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Family 19h 
>> USB4/Thunderbolt PCIe tunnel [1022:14ef]
>> 00:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
>> Host Bridge [1022:14ea]
>> 00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
>> Host Bridge [1022:14ea]
>> 00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>> Internal GPP Bridge to Bus [C:A] [1022:14eb]
>> 00:08.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>> Internal GPP Bridge to Bus [C:A] [1022:14eb]
>> 00:08.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>> Internal GPP Bridge to Bus [C:A] [1022:14eb]
>> 00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller 
>> [1022:790b] (rev 71)
>> 00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge 
>> [1022:790e] (rev 51)
>> 00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 0 [1022:14f0]
>> 00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 1 [1022:14f1]
>> 00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 2 [1022:14f2]
>> 00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 3 [1022:14f3]
>> 00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 4 [1022:14f4]
>> 00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 5 [1022:14f5]
>> 00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 6 [1022:14f6]
>> 00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 7 [1022:14f7]
>> 00:01.1/00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 
>> 10 XL Upstream Port of PCI Express Switch [1002:1478] (rev 12)
>> 00:01.1/00.0/00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ ATI] 
>> Navi 10 XL Downstream Port of PCI Express Switch [1002:1479] (rev 12)
>> 00:01.1/00.0/00.0/00.0 VGA compatible controller [0300]: Advanced Micro 
>> Devices, Inc. [AMD/ATI] Navi 33 [Radeon RX 7600/7600 XT/7600M XT/7600S/7700S 
>> / PRO W7600] [1002:7480] (rev c7)
>> 00:01.1/00.0/00.0/00.1 Audio device [0403]: Advanced Micro Devices, Inc. 
>> [AMD/ATI] Navi 31 HDMI/DP Audio [1002:ab30]
>> 00:02.1/00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
>> RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] 
>> (rev 15)
>> 00:02.2/00.0 Network controller [0280]: Intel Corporation Wi-Fi 6E(802.11ax) 
>> AX210/AX1675* 2x2 [Typhoon Peak] [8086:2725] (rev 1a)
>> 00:02.4/00.0 Non-Volatile memory controller [0108]: Samsung Electronics Co 
>> Ltd NVMe SSD Controller SM981/PM981/PM983 [144d:a808]
>> 00:08.1/00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. 
>> [AMD/ATI] Phoenix1 [1002:15bf] (rev c1)
>> 00:08.1/00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] 
>> Rembrandt Radeon High Definition Audio Controller [1002:1640]
>> 00:08.1/00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] 
>> Phoenix CCP/PSP 3.0 Device [1022:15c7]
>> 00:08.1/00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
>> [1022:15b9]
>> 00:08.1/00.4 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
>> [1022:15ba]
>> 00:08.1/00.5 Multimedia controller [0480]: Advanced Micro Devices, Inc. [AMD] 
>> ACP/ACP3X/ACP6x Audio Coprocessor [1022:15e2] (rev 63)
>> 00:08.1/00.6 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Family 
>> 17h/19h/1ah HD Audio Controller [1022:15e3]
>> 00:08.2/00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, 
>> Inc. [AMD] Phoenix Dummy Function [1022:14ec]
>> 00:08.2/00.1 Signal processing controller [1180]: Advanced Micro Devices, 
>> Inc. [AMD] AMD IPU Device [1022:1502]
>> 00:08.3/00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, 
>> Inc. [AMD] Phoenix Dummy Function [1022:14ec]
>> 00:08.3/00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
>> [1022:15c0]
>> 00:08.3/00.4 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
>> [1022:15c1]
>> 00:08.3/00.5 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Pink 
>> Sardine USB4/Thunderbolt NHI controller #1 [1022:1668]
>>
>>>
>>> That's why 7d08f21f8c630 intentionally matches the NHI and then changes the 
>>> root port right above that instead of all the root ports - because that is 
>>> where the problem was.
>> For some reason it doesn't seem to trigger on my system (added debug output) 
>> I will look further into it why that happens.
>
> You never see this message in your logs at suspend time (even on a "fixed" BIOS)?
>
> "quirk: disabling D3cold for suspend"
On the fixed BIOS I see that line. On the unfixed BIOS it aborts the functions 
at "if (pm_suspend_target_state == PM_SUSPEND_ON)". Skipping the check on the 
unfixed BIOS it still hangs on resume.
>
> I'm /suspecting/ you do see it, but you're having problems with another root 
> port.
>
> I mentioned this in my previous iterations of patches that eventually landed 
> on that quirk, but Windows and Linux handle root ports differently at suspend 
> time and that could be why it's exposing your BIOS bug.
>
> If you can please narrow down which root ports actually need the quirk for 
> your side (feel free to do a similar style to 7d08f21f8c630) I think we could 
> land on something more narrow and upstreamable.
>
> At a minimum what you're doing today is covering both Rembrandt and Phoenix 
> and it should only apply to Phoenix.

I also try to find out how many devices where actually shipped with this very 
first BIOS version.

Kind regards,

Werner Sembach
2024-12-17 14:39:27,959 INFO:	Debugging script for s2idle on AMD systems
2024-12-17 14:39:27,959 INFO:	💻 TUXEDO TUXEDO Sirius 16 Gen1 (Sirius Gen1) running BIOS 0.8 (V1.00A00_20240108) released 01/08/2024 and EC 0.28
2024-12-17 14:39:27,959 INFO:	🐧 TUXEDO OS
2024-12-17 14:39:27,959 INFO:	🐧 Kernel 6.13.0-rc3
2024-12-17 14:39:27,962 DEBUG:	BAT0 energy level is 78478000 µWh
2024-12-17 14:39:27,962 INFO:	🔋 Battery BAT0 (AMD Battery Li-ion Real Battery) is operating at 100.00% of design
2024-12-17 14:39:27,975 DEBUG:	Thermal zones
2024-12-17 14:39:27,976 DEBUG:	└─ LNXTHERM:00
2024-12-17 14:39:27,976 DEBUG:	  	 temp: 34.0°C
2024-12-17 14:39:27,976 DEBUG:	  	 critical trip: 110.0°C
2024-12-17 14:39:27,976 INFO:	Checking prerequisites for s2idle
2024-12-17 14:39:27,976 INFO:	✅ Logs are provided via systemd
2024-12-17 14:39:27,976 INFO:	✅ AMD Ryzen 9 7940HS w/ Radeon 780M Graphics (family 19 model 74)
2024-12-17 14:39:27,976 INFO:	✅ ASPM policy set to 'default'
2024-12-17 14:39:27,976 DEBUG:	SMT control: on
2024-12-17 14:39:27,976 INFO:	✅ SMT enabled
2024-12-17 14:39:27,977 INFO:	✅ LPS0 _DSM enabled
2024-12-17 14:39:27,994 INFO:	✅ ACPI FADT supports Low-power S0 idle
2024-12-17 14:39:27,994 DEBUG:	/sys/module/gpiolib_acpi/parameters/ignore_wake is not configured
2024-12-17 14:39:27,994 DEBUG:	/sys/module/gpiolib_acpi/parameters/ignore_interrupt is not configured
2024-12-17 14:39:27,994 DEBUG:	/proc/cmdline: amdgpu.dcdebugmask=0x10 udev.log_level=3 udev.log_level=3
2024-12-17 14:39:27,996 DEBUG:	LOGIND: no configuration changes
2024-12-17 14:39:27,996 INFO:	✅ HSMP driver `amd_hsmp` not detected (blocked: False)
2024-12-17 14:39:27,998 WARNING:	Platform may hang resuming.  Upgrade your firmware or add pcie_port_pm=off to kernel command line if you have problems.
2024-12-17 14:39:27,998 INFO:	✅ PMC driver `amd_pmc` loaded (Program 4 Firmware 76.18.0)
2024-12-17 14:39:28,001 INFO:	✅ USB4 driver `thunderbolt` bound to 0000:6a:00.5
2024-12-17 14:39:28,004 INFO:	✅ GPU driver `amdgpu` bound to 0000:03:00.0
2024-12-17 14:39:28,005 INFO:	✅ GPU driver `amdgpu` bound to 0000:68:00.0
2024-12-17 14:39:28,050 INFO:	✅ System is configured for s2idle
2024-12-17 14:39:28,082 INFO:	✅ NVME Samsung Electronics Co Ltd NVMe SSD Controller SM981/PM981/PM983 (SSD 970 EVO/PRO) is configured for s2idle in BIOS
2024-12-17 14:39:28,084 INFO:	✅ GPIO driver `pinctrl_amd` available
2024-12-17 14:39:28,086 DEBUG:	Winblue GPIO 0 debounce: disabled
2024-12-17 14:39:28,086 DEBUG:	gpio	  int|active|trigger|S0i3| S3|S4/S5| Z|wake|pull|  orient|       debounce|reg
2024-12-17 14:39:28,086 DEBUG:	#0	   😛|     ↑|   edge|  ⏰| ⏰|     |⏰|    |  ↑ |input  ↑|b (🕑 046875us)|0x81578e3
2024-12-17 14:39:28,086 DEBUG:	#2	   😷|     ↓|  level|    |   |     |  |    |  ↑ |input  ↑|               |0x150b00
2024-12-17 14:39:28,086 DEBUG:	#8	   😛|     ↓|  level|    |   |     |  |    |  ↑ |input  ↑|               |0x151b00
2024-12-17 14:39:28,086 DEBUG:	#16	   😛|     ↓|   edge|  ⏰| ⏰|     |  |    |  ↑ |input  ↑|               |0x157a00
2024-12-17 14:39:28,086 DEBUG:	#17	   😛|     ↓|   edge|  ⏰| ⏰|     |  |    |  ↑ |input  ↑|               |0x157a00
2024-12-17 14:39:28,086 DEBUG:	#18	   😛|     ↓|   edge|  ⏰| ⏰|     |  |    |  ↑ |input  ↑|               |0x157a00
2024-12-17 14:39:28,086 DEBUG:	#44	   😷|     ↑|   edge|    |   |     |  |    |    |input  ↓|               |0x800
2024-12-17 14:39:28,086 DEBUG:	#52	   😷|     ↑|  level|    |   |     |  |    |    |input  ↓|               |0x900
2024-12-17 14:39:28,086 DEBUG:	#54	   😛|     ↑|   edge|    |   |     |  |    |    |input  ↓|               |0x1800
2024-12-17 14:39:28,086 DEBUG:	#58	   😛|     ↑|  level|  ⏰| ⏰|     |⏰|    |    |input  ↓|               |0x8007900
2024-12-17 14:39:28,086 DEBUG:	#59	   😛|     ↑|  level|  ⏰| ⏰|     |⏰|    |    |input  ↓|               |0x8007900
2024-12-17 14:39:28,086 DEBUG:	#61	   😛|     ↑|  level|  ⏰| ⏰|     |  |    |    |input  ↓|               |0x7900
2024-12-17 14:39:28,086 DEBUG:	#62	   😛|     ↑|  level|  ⏰| ⏰|     |  |    |    |input  ↓|               |0x7900
2024-12-17 14:39:28,086 DEBUG:	#172	   😷|     ↑|  level|    |   |     |  |    |    |input  ↓|               |0x900
2024-12-17 14:39:28,091 WARNING:	🚦 Device firmware checks unavailable without fwupd gobject introspection
2024-12-17 14:39:28,094 DEBUG:	enp4s0 supports WoL
2024-12-17 14:39:28,094 WARNING:	Platform may have low hardware sleep residency with Wake-on-lan disabled. Run `ethtool -s enp4s0 wol g` to enable it if necessary.
2024-12-17 14:39:28,139 DEBUG:	Lockdown: [none] integrity confidentiality
2024-12-17 14:39:28,139 DEBUG:	VCE feature version: 0, firmware version: 0x00000000
2024-12-17 14:39:28,139 DEBUG:	UVD feature version: 0, firmware version: 0x00000000
2024-12-17 14:39:28,139 DEBUG:	MC feature version: 0, firmware version: 0x00000000
2024-12-17 14:39:28,139 DEBUG:	ME feature version: 29, firmware version: 0x00000600
2024-12-17 14:39:28,139 DEBUG:	PFP feature version: 29, firmware version: 0x000006a5
2024-12-17 14:39:28,139 DEBUG:	CE feature version: 0, firmware version: 0x00000000
2024-12-17 14:39:28,139 DEBUG:	RLC feature version: 1, firmware version: 0x00000058
2024-12-17 14:39:28,139 DEBUG:	RLC SRLC feature version: 0, firmware version: 0x00000000
2024-12-17 14:39:28,139 DEBUG:	RLC SRLG feature version: 0, firmware version: 0x00000000
2024-12-17 14:39:28,139 DEBUG:	RLC SRLS feature version: 0, firmware version: 0x00000000
2024-12-17 14:39:28,139 DEBUG:	RLCP feature version: 1, firmware version: 0x00000015
2024-12-17 14:39:28,140 DEBUG:	RLCV feature version: 1, firmware version: 0x00000013
2024-12-17 14:39:28,140 DEBUG:	MEC feature version: 29, firmware version: 0x00000226
2024-12-17 14:39:28,140 DEBUG:	IMU feature version: 0, firmware version: 0x0b214600
2024-12-17 14:39:28,140 DEBUG:	SOS feature version: 3342368, firmware version: 0x00330020
2024-12-17 14:39:28,140 DEBUG:	ASD feature version: 553648327, firmware version: 0x210000c7
2024-12-17 14:39:28,140 DEBUG:	TA XGMI feature version: 0x00000000, firmware version: 0x00000000
2024-12-17 14:39:28,140 DEBUG:	TA RAS feature version: 0x00000000, firmware version: 0x00000000
2024-12-17 14:39:28,140 DEBUG:	TA HDCP feature version: 0x00000000, firmware version: 0x1700003c
2024-12-17 14:39:28,140 DEBUG:	TA DTM feature version: 0x00000000, firmware version: 0x12000016
2024-12-17 14:39:28,140 DEBUG:	TA RAP feature version: 0x00000000, firmware version: 0x00000000
2024-12-17 14:39:28,140 DEBUG:	TA SECUREDISPLAY feature version: 0x00000000, firmware version: 0x00000000
2024-12-17 14:39:28,140 DEBUG:	SMC feature version: 0, program: 0, firmware version: 0x00525800 (82.88.0)
2024-12-17 14:39:28,140 DEBUG:	SDMA0 feature version: 60, firmware version: 0x00000010
2024-12-17 14:39:28,140 DEBUG:	SDMA1 feature version: 60, firmware version: 0x00000010
2024-12-17 14:39:28,140 DEBUG:	VCN feature version: 0, firmware version: 0x07113000
2024-12-17 14:39:28,140 DEBUG:	DMCU feature version: 0, firmware version: 0x00000000
2024-12-17 14:39:28,140 DEBUG:	DMCUB feature version: 0, firmware version: 0x07002800
2024-12-17 14:39:28,140 DEBUG:	TOC feature version: 12, firmware version: 0x0000000c
2024-12-17 14:39:28,140 DEBUG:	MES_KIQ feature version: 6, firmware version: 0x00000077
2024-12-17 14:39:28,140 DEBUG:	MES feature version: 1, firmware version: 0x00000052
2024-12-17 14:39:28,140 DEBUG:	VPE feature version: 0, firmware version: 0x00000000
2024-12-17 14:39:28,140 DEBUG:	VBIOS version: 113-BRT118083.001
2024-12-17 14:39:28,144 DEBUG:	PCI devices
2024-12-17 14:39:28,144 DEBUG:	│ 0000:00:00.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14e8] : \_SB_.PCI0.D002
2024-12-17 14:39:28,144 DEBUG:	│ 0000:00:00.2 : Advanced Micro Devices, Inc. [AMD] IOMMU [1022:14e9] : \_SB_.PCI0.IOMA
2024-12-17 14:39:28,144 DEBUG:	│ 0000:00:01.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14ea]
2024-12-17 14:39:28,144 DEBUG:	│ 0000:00:01.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ed] : \_SB_.PCI0.GPP0
2024-12-17 14:39:28,144 DEBUG:	├─ 0000:01:00.0 : Advanced Micro Devices, Inc. [AMD/ATI] PCI bridge [1002:1478] : \_SB_.PCI0.GPP0.SWUS
2024-12-17 14:39:28,144 DEBUG:	├─ 0000:02:00.0 : Advanced Micro Devices, Inc. [AMD/ATI] PCI bridge [1002:1479] : \_SB_.PCI0.GPP0.SWUS.SWDS
2024-12-17 14:39:28,144 DEBUG:	├─ 0000:03:00.0 : Advanced Micro Devices, Inc. [AMD/ATI] VGA compatible controller [1002:7480] : \_SB_.PCI0.GPP0.SWUS.SWDS.VGA_
2024-12-17 14:39:28,144 DEBUG:	├─ 0000:03:00.1 : Advanced Micro Devices, Inc. [AMD/ATI] Audio device [1002:ab30] : \_SB_.PCI0.GPP0.SWUS.SWDS.HDAU
2024-12-17 14:39:28,145 DEBUG:	│ 0000:00:02.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14ea]
2024-12-17 14:39:28,145 DEBUG:	│ 0000:00:02.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ee] : \_SB_.PCI0.GPP5
2024-12-17 14:39:28,145 DEBUG:	├─ 0000:04:00.0 : Realtek Semiconductor Co., Ltd. Ethernet controller [10ec:8168] : \_SB_.PCI0.GPP5.RTL8
2024-12-17 14:39:28,145 DEBUG:	│ 0000:00:02.2 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ee] : \_SB_.PCI0.GPP6
2024-12-17 14:39:28,145 DEBUG:	├─ 0000:05:00.0 : Intel Corporation Network controller [8086:2725] : \_SB_.PCI0.GPP6.WLAN
2024-12-17 14:39:28,145 DEBUG:	│ 0000:00:02.3 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ee] : \_SB_.PCI0.GPP7
2024-12-17 14:39:28,145 DEBUG:	│ 0000:00:02.4 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ee] : \_SB_.PCI0.GPP8
2024-12-17 14:39:28,145 DEBUG:	├─ 0000:07:00.0 : Samsung Electronics Co Ltd Non-Volatile memory controller [144d:a808] : \_SB_.PCI0.GPP8.NVME
2024-12-17 14:39:28,145 DEBUG:	│ 0000:00:03.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14ea]
2024-12-17 14:39:28,145 DEBUG:	│ 0000:00:03.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ef] : \_SB_.PCI0.GP11
2024-12-17 14:39:28,145 DEBUG:	│ 0000:00:04.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14ea]
2024-12-17 14:39:28,145 DEBUG:	│ 0000:00:08.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14ea]
2024-12-17 14:39:28,146 DEBUG:	│ 0000:00:08.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14eb] : \_SB_.PCI0.GP17
2024-12-17 14:39:28,146 DEBUG:	├─ 0000:68:00.0 : Advanced Micro Devices, Inc. [AMD/ATI] VGA compatible controller [1002:15bf] : \_SB_.PCI0.GP17.VGA_
2024-12-17 14:39:28,146 DEBUG:	├─ 0000:68:00.1 : Advanced Micro Devices, Inc. [AMD/ATI] Audio device [1002:1640] : \_SB_.PCI0.GP17.HDAU
2024-12-17 14:39:28,146 DEBUG:	├─ 0000:68:00.2 : Advanced Micro Devices, Inc. [AMD] Encryption controller [1022:15c7] : \_SB_.PCI0.GP17.APSP
2024-12-17 14:39:28,146 DEBUG:	├─ 0000:68:00.3 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:15b9] : \_SB_.PCI0.GP17.XHC0
2024-12-17 14:39:28,146 DEBUG:	├─ 0000:68:00.4 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:15ba] : \_SB_.PCI0.GP17.XHC1
2024-12-17 14:39:28,146 DEBUG:	├─ 0000:68:00.5 : Advanced Micro Devices, Inc. [AMD] Multimedia controller [1022:15e2] : \_SB_.PCI0.GP17.ACP_
2024-12-17 14:39:28,146 DEBUG:	├─ 0000:68:00.6 : Advanced Micro Devices, Inc. [AMD] Audio device [1022:15e3] : \_SB_.PCI0.GP17.AZAL
2024-12-17 14:39:28,146 DEBUG:	│ 0000:00:08.2 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14eb] : \_SB_.PCI0.GP18
2024-12-17 14:39:28,146 DEBUG:	├─ 0000:69:00.0 : Advanced Micro Devices, Inc. [AMD]  [1022:14ec]
2024-12-17 14:39:28,146 DEBUG:	├─ 0000:69:00.1 : Advanced Micro Devices, Inc. [AMD] Signal processing controller [1022:1502] : \_SB_.PCI0.GP18.IPU_
2024-12-17 14:39:28,147 DEBUG:	│ 0000:00:08.3 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14eb] : \_SB_.PCI0.GP19
2024-12-17 14:39:28,147 DEBUG:	├─ 0000:6a:00.0 : Advanced Micro Devices, Inc. [AMD]  [1022:14ec] : \_SB_.PCI0.GP19.XHC2
2024-12-17 14:39:28,147 DEBUG:	├─ 0000:6a:00.3 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:15c0] : \_SB_.PCI0.GP19.XHC3
2024-12-17 14:39:28,147 DEBUG:	├─ 0000:6a:00.4 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:15c1] : \_SB_.PCI0.GP19.XHC4
2024-12-17 14:39:28,147 DEBUG:	├─ 0000:6a:00.5 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:1668] : \_SB_.PCI0.GP19.NHI0
2024-12-17 14:39:28,147 DEBUG:	│ 0000:00:14.0 : Advanced Micro Devices, Inc. [AMD] SMBus [1022:790b] : \_SB_.PCI0.D02B
2024-12-17 14:39:28,147 DEBUG:	│ 0000:00:14.3 : Advanced Micro Devices, Inc. [AMD] ISA bridge [1022:790e] : \_SB_.PCI0.SBRG
2024-12-17 14:39:28,147 DEBUG:	│ 0000:00:18.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f0]
2024-12-17 14:39:28,147 DEBUG:	│ 0000:00:18.1 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f1]
2024-12-17 14:39:28,147 DEBUG:	│ 0000:00:18.2 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f2]
2024-12-17 14:39:28,147 DEBUG:	│ 0000:00:18.3 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f3]
2024-12-17 14:39:28,147 DEBUG:	│ 0000:00:18.4 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f4]
2024-12-17 14:39:28,148 DEBUG:	│ 0000:00:18.5 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f5]
2024-12-17 14:39:28,148 DEBUG:	│ 0000:00:18.6 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f6]
2024-12-17 14:39:28,148 DEBUG:	└─0000:00:18.7 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f7]
2024-12-17 14:39:28,391 DEBUG:	Interrupts
2024-12-17 14:39:28,391 DEBUG:	│ 0: Timer
2024-12-17 14:39:28,391 DEBUG:	│ 1: PS/2 controller
2024-12-17 14:39:28,391 DEBUG:	│ 2: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 3: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 4: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 5: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 6: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 7: GPIO Controller
2024-12-17 14:39:28,391 DEBUG:	│ 8: RTC
2024-12-17 14:39:28,391 DEBUG:	│ 9: ACPI SCI
2024-12-17 14:39:28,391 DEBUG:	│ 10: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 11: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 12: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 13: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 14: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 15: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 24: Advanced Micro Devices, Inc. [AMD] Generic system peripheral (0000:00:00.2) (AMD-Vi)
2024-12-17 14:39:28,391 DEBUG:	│ 25: GPIO 0 (ACPI:Event)
2024-12-17 14:39:28,391 DEBUG:	│ 26: GPIO 61 (ACPI:Event)
2024-12-17 14:39:28,391 DEBUG:	│ 27: GPIO 62 (ACPI:Event)
2024-12-17 14:39:28,391 DEBUG:	│ 28: GPIO 58 (ACPI:Event)
2024-12-17 14:39:28,391 DEBUG:	│ 29: GPIO 59 (ACPI:Event)
2024-12-17 14:39:28,391 DEBUG:	│ 30: GPIO 17 (ACPI:Event)
2024-12-17 14:39:28,391 DEBUG:	│ 31: GPIO 18 (ACPI:Event)
2024-12-17 14:39:28,391 DEBUG:	│ 32: GPIO 16 (ACPI:Event)
2024-12-17 14:39:28,391 DEBUG:	│ 33: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:01.1) (PCIe PME,pciehp,PCIe bwctrl)
2024-12-17 14:39:28,391 DEBUG:	│ 34: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:02.1) (PCIe PME,pciehp,PCIe bwctrl)
2024-12-17 14:39:28,391 DEBUG:	│ 35: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:02.2) (PCIe PME,PCIe bwctrl)
2024-12-17 14:39:28,391 DEBUG:	│ 36: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:02.3) (PCIe PME,pciehp,PCIe bwctrl)
2024-12-17 14:39:28,391 DEBUG:	│ 37: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:02.4) (PCIe PME,PCIe bwctrl)
2024-12-17 14:39:28,391 DEBUG:	│ 38: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:03.1) (PCIe PME,pciehp)
2024-12-17 14:39:28,391 DEBUG:	│ 39: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:08.1) (PCIe PME,PCIe bwctrl)
2024-12-17 14:39:28,391 DEBUG:	│ 40: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:08.2) (PCIe PME,PCIe bwctrl)
2024-12-17 14:39:28,391 DEBUG:	│ 41: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:08.3) (PCIe PME,PCIe bwctrl)
2024-12-17 14:39:28,391 DEBUG:	│ 42: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 43: Advanced Micro Devices, Inc. [AMD/ATI] Bridge (0000:02:00.0) (PCIe bwctrl)
2024-12-17 14:39:28,391 DEBUG:	│ 44: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 45: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:68:00.3) (xhci_hcd)
2024-12-17 14:39:28,391 DEBUG:	│ 46: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 47: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:68:00.4) (xhci_hcd)
2024-12-17 14:39:28,391 DEBUG:	│ 48: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 49: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.3) (xhci_hcd)
2024-12-17 14:39:28,391 DEBUG:	│ 50: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 51: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.4) (xhci_hcd)
2024-12-17 14:39:28,391 DEBUG:	│ 52: GPIO 8 (PNP0C50:0b)
2024-12-17 14:39:28,391 DEBUG:	│ 53: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 54: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5) (thunderbolt)
2024-12-17 14:39:28,391 DEBUG:	│ 55: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5) (thunderbolt)
2024-12-17 14:39:28,391 DEBUG:	│ 56: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 57: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 58: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 59: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 60: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 61: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 62: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 63: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 64: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 65: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 66: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 67: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 68: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 69: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:39:28,391 DEBUG:	│ 70: Disabled interrupt
2024-12-17 14:39:28,391 DEBUG:	│ 71: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q0)
2024-12-17 14:39:28,391 DEBUG:	│ 72: Realtek Semiconductor Co., Ltd. Network controller (0000:04:00.0) (enp4s0)
2024-12-17 14:39:28,391 DEBUG:	│ 73: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q1)
2024-12-17 14:39:28,391 DEBUG:	│ 74: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q2)
2024-12-17 14:39:28,391 DEBUG:	│ 75: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q3)
2024-12-17 14:39:28,391 DEBUG:	│ 76: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q4)
2024-12-17 14:39:28,392 DEBUG:	│ 77: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q5)
2024-12-17 14:39:28,392 DEBUG:	│ 78: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q6)
2024-12-17 14:39:28,392 DEBUG:	│ 79: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q7)
2024-12-17 14:39:28,392 DEBUG:	│ 80: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q8)
2024-12-17 14:39:28,392 DEBUG:	│ 81: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q9)
2024-12-17 14:39:28,392 DEBUG:	│ 82: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q10)
2024-12-17 14:39:28,392 DEBUG:	│ 83: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q11)
2024-12-17 14:39:28,392 DEBUG:	│ 84: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q12)
2024-12-17 14:39:28,392 DEBUG:	│ 85: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q13)
2024-12-17 14:39:28,392 DEBUG:	│ 86: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q14)
2024-12-17 14:39:28,392 DEBUG:	│ 87: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q15)
2024-12-17 14:39:28,392 DEBUG:	│ 88: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q16)
2024-12-17 14:39:28,392 DEBUG:	│ 89: Disabled interrupt
2024-12-17 14:39:28,392 DEBUG:	│ 90: Advanced Micro Devices, Inc. [AMD] Encryption controller (0000:68:00.2) (psp-1)
2024-12-17 14:39:28,392 DEBUG:	│ 91: Advanced Micro Devices, Inc. [AMD] Encryption controller (0000:68:00.2)
2024-12-17 14:39:28,392 DEBUG:	│ 92: Disabled interrupt
2024-12-17 14:39:28,392 DEBUG:	│ 93: Disabled interrupt
2024-12-17 14:39:28,392 DEBUG:	│ 94: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:default_queue)
2024-12-17 14:39:28,392 DEBUG:	│ 95: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_1)
2024-12-17 14:39:28,392 DEBUG:	│ 96: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_2)
2024-12-17 14:39:28,392 DEBUG:	│ 97: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_3)
2024-12-17 14:39:28,392 DEBUG:	│ 98: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_4)
2024-12-17 14:39:28,392 DEBUG:	│ 99: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_5)
2024-12-17 14:39:28,392 DEBUG:	│ 100: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_6)
2024-12-17 14:39:28,392 DEBUG:	│ 101: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_7)
2024-12-17 14:39:28,392 DEBUG:	│ 102: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_8)
2024-12-17 14:39:28,392 DEBUG:	│ 103: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_9)
2024-12-17 14:39:28,392 DEBUG:	│ 104: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_10)
2024-12-17 14:39:28,392 DEBUG:	│ 105: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_11)
2024-12-17 14:39:28,392 DEBUG:	│ 106: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_12)
2024-12-17 14:39:28,392 DEBUG:	│ 107: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_13)
2024-12-17 14:39:28,392 DEBUG:	│ 108: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_14)
2024-12-17 14:39:28,392 DEBUG:	│ 109: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:exception)
2024-12-17 14:39:28,392 DEBUG:	│ 110: Advanced Micro Devices, Inc. [AMD/ATI] Multimedia controller (0000:03:00.1) (snd_hda_intel:card0)
2024-12-17 14:39:28,392 DEBUG:	│ 111: Advanced Micro Devices, Inc. [AMD/ATI] Multimedia controller (0000:68:00.1) (snd_hda_intel:card1)
2024-12-17 14:39:28,392 DEBUG:	│ 112: Advanced Micro Devices, Inc. [AMD] Multimedia controller (0000:68:00.6) (snd_hda_intel:card2)
2024-12-17 14:39:28,392 DEBUG:	│ 113: Advanced Micro Devices, Inc. [AMD/ATI] Display controller (0000:03:00.0) (amdgpu)
2024-12-17 14:39:28,392 DEBUG:	└─114: Advanced Micro Devices, Inc. [AMD/ATI] Display controller (0000:68:00.0) (amdgpu)
2024-12-17 14:39:28,402 DEBUG:	I2C HID devices
2024-12-17 14:39:28,402 DEBUG:	│ "PNP0C50:0b 0911:5288 Mouse" [PNP0C50] : \_SB_.I2CD.TPDD
2024-12-17 14:39:28,402 DEBUG:	└─"PNP0C50:0b 0911:5288 Touchpad" [PNP0C50] : \_SB_.I2CD.TPDD
2024-12-17 14:39:28,420 DEBUG:	Wakeup sources:
2024-12-17 14:39:28,420 DEBUG:	│ ACPI Battery [PNP0C0A:00]: enabled
2024-12-17 14:39:28,420 DEBUG:	│ ACPI Lid Switch [PNP0C0D:00]: enabled
2024-12-17 14:39:28,420 DEBUG:	│ ACPI Power Button [PNP0C0C:00]: enabled
2024-12-17 14:39:28,420 DEBUG:	│ AT Translated Set 2 keyboard [serio0]: enabled
2024-12-17 14:39:28,420 DEBUG:	│ Advanced Micro Devices, Inc. [AMD/ATI] PCI bridge [0000:01:00.0]: enabled
2024-12-17 14:39:28,420 DEBUG:	│ Advanced Micro Devices, Inc. [AMD/ATI] PCI bridge [0000:02:00.0]: enabled
2024-12-17 14:39:28,420 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] ISA bridge [0000:00:14.3]: enabled
2024-12-17 14:39:28,420 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] Multimedia controller [0000:68:00.5]: enabled
2024-12-17 14:39:28,420 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:01.1]: enabled
2024-12-17 14:39:28,420 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:02.2]: enabled
2024-12-17 14:39:28,420 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:03.1]: enabled
2024-12-17 14:39:28,421 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:68:00.3]: enabled
2024-12-17 14:39:28,421 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:68:00.3]: enabled
2024-12-17 14:39:28,421 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:68:00.4]: enabled
2024-12-17 14:39:28,421 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:6a:00.3]: enabled
2024-12-17 14:39:28,421 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:6a:00.4]: enabled
2024-12-17 14:39:28,421 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:6a:00.5]: enabled
2024-12-17 14:39:28,421 DEBUG:	│ PNP0C50:0b 0911:5288 Mouse [i2c-PNP0C50:0b]: enabled
2024-12-17 14:39:28,421 DEBUG:	│ Plug-n-play Real Time Clock [00:01]: enabled
2024-12-17 14:39:28,421 DEBUG:	│ Real Time Clock alarm timer [rtc0]: enabled
2024-12-17 14:39:28,421 DEBUG:	│ Thunderbolt domain [domain0]: enabled
2024-12-17 14:39:28,421 DEBUG:	└─USB4 host controller [0-0]: enabled
2024-12-17 14:39:28,437 DEBUG:	/*
2024-12-17 14:39:28,437 DEBUG:	 * Intel ACPI Component Architecture
2024-12-17 14:39:28,437 DEBUG:	 * AML/ASL+ Disassembler version 20230628 (64-bit version)
2024-12-17 14:39:28,437 DEBUG:	 * Copyright (c) 2000 - 2023 Intel Corporation
2024-12-17 14:39:28,437 DEBUG:	 *
2024-12-17 14:39:28,437 DEBUG:	 * Disassembling to symbolic ASL+ operators
2024-12-17 14:39:28,437 DEBUG:	 *
2024-12-17 14:39:28,437 DEBUG:	 * Disassembly of /sys/firmware/acpi/tables/SSDT25, Tue Dec 17 14:39:28 2024
2024-12-17 14:39:28,437 DEBUG:	 *
2024-12-17 14:39:28,437 DEBUG:	 * Original Table Header:
2024-12-17 14:39:28,437 DEBUG:	 *     Signature        "SSDT"
2024-12-17 14:39:28,437 DEBUG:	 *     Length           0x00000B6E (2926)
2024-12-17 14:39:28,437 DEBUG:	 *     Revision         0x02
2024-12-17 14:39:28,437 DEBUG:	 *     Checksum         0x95
2024-12-17 14:39:28,437 DEBUG:	 *     OEM ID           "AMD"
2024-12-17 14:39:28,437 DEBUG:	 *     OEM Table ID     "CPMGPIO0"
2024-12-17 14:39:28,437 DEBUG:	 *     OEM Revision     0x00000001 (1)
2024-12-17 14:39:28,437 DEBUG:	 *     Compiler ID      "INTL"
2024-12-17 14:39:28,437 DEBUG:	 *     Compiler Version 0x20220331 (539099953)
2024-12-17 14:39:28,437 DEBUG:	 */
2024-12-17 14:39:28,437 DEBUG:	DefinitionBlock ("", "SSDT", 2, "AMD", "CPMGPIO0", 0x00000001)
2024-12-17 14:39:28,437 DEBUG:	{
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.GPIO, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GP17.ACP_, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GP17.AZAL, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GP17.MP2C, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GP17.XHC0, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GP17.XHC1, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GPP0, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GPP1, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GPP2, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GPP5, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GPP6, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.GPP7, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.SBRG.H_EC.B1PN, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PCI0.SBRG.H_EC.BAT0, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (_SB_.PWRB, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M000, MethodObj)    // 1 Arguments
2024-12-17 14:39:28,438 DEBUG:	    External (M037, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M046, IntObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M050, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M051, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M052, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M053, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M054, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M055, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M056, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M057, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M058, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M059, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M062, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M068, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M069, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M070, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M071, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M072, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M074, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M075, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M076, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M077, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M078, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M079, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M080, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M081, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M082, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M083, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M084, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M085, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M086, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M087, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M088, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M089, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M090, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M091, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M092, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M093, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M094, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M095, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M096, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M097, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M098, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M099, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M100, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M101, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M102, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M103, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M104, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M105, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M106, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M107, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M108, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M109, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M110, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M115, BuffObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M116, BuffFieldObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M117, BuffFieldObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M118, BuffFieldObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M119, BuffFieldObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M120, BuffFieldObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M122, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M127, DeviceObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M128, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M131, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M132, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M133, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M134, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M135, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M136, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M220, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M221, FieldUnitObj)
2024-12-17 14:39:28,438 DEBUG:	    External (M226, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M227, DeviceObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M229, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M231, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M233, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M235, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M23A, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M251, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M280, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M290, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M29A, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M310, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M31C, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M320, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M321, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M322, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M323, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M324, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M325, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M326, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M327, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M328, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M329, DeviceObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M32A, DeviceObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M32B, DeviceObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M330, DeviceObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M331, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M378, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M379, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M380, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M381, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M382, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M383, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M384, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M385, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M386, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M387, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M388, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M389, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M390, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M391, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M392, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M404, BuffObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M408, MutexObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M414, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M444, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M449, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M453, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M454, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M455, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M456, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M457, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M460, MethodObj)    // 7 Arguments
2024-12-17 14:39:28,439 DEBUG:	    External (M4C0, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M4F0, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M610, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M620, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M631, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	    External (M652, FieldUnitObj)
2024-12-17 14:39:28,439 DEBUG:	
2024-12-17 14:39:28,439 DEBUG:	    Scope (\_SB.GPIO)
2024-12-17 14:39:28,439 DEBUG:	    {
2024-12-17 14:39:28,439 DEBUG:	        Method (_AEI, 0, NotSerialized)  // _AEI: ACPI Event Interrupts
2024-12-17 14:39:28,439 DEBUG:	        {
2024-12-17 14:39:28,439 DEBUG:	            Name (BUF0, ResourceTemplate ()
2024-12-17 14:39:28,439 DEBUG:	            {
2024-12-17 14:39:28,439 DEBUG:	                GpioInt (Edge, ActiveHigh, ExclusiveAndWake, PullDefault, 0x1388,
2024-12-17 14:39:28,439 DEBUG:	                    "\\_SB.GPIO", 0x00, ResourceConsumer, ,
2024-12-17 14:39:28,439 DEBUG:	                    )
2024-12-17 14:39:28,439 DEBUG:	                    {   // Pin list
2024-12-17 14:39:28,439 DEBUG:	                        0x0000
2024-12-17 14:39:28,439 DEBUG:	                    }
2024-12-17 14:39:28,439 DEBUG:	                GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
2024-12-17 14:39:28,439 DEBUG:	                    "\\_SB.GPIO", 0x00, ResourceConsumer, ,
2024-12-17 14:39:28,439 DEBUG:	                    )
2024-12-17 14:39:28,439 DEBUG:	                    {   // Pin list
2024-12-17 14:39:28,439 DEBUG:	                        0x003D
2024-12-17 14:39:28,439 DEBUG:	                    }
2024-12-17 14:39:28,439 DEBUG:	                GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
2024-12-17 14:39:28,439 DEBUG:	                    "\\_SB.GPIO", 0x00, ResourceConsumer, ,
2024-12-17 14:39:28,439 DEBUG:	                    )
2024-12-17 14:39:28,439 DEBUG:	                    {   // Pin list
2024-12-17 14:39:28,439 DEBUG:	                        0x003E
2024-12-17 14:39:28,439 DEBUG:	                    }
2024-12-17 14:39:28,439 DEBUG:	                GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
2024-12-17 14:39:28,439 DEBUG:	                    "\\_SB.GPIO", 0x00, ResourceConsumer, ,
2024-12-17 14:39:28,440 DEBUG:	                    )
2024-12-17 14:39:28,440 DEBUG:	                    {   // Pin list
2024-12-17 14:39:28,440 DEBUG:	                        0x003A
2024-12-17 14:39:28,440 DEBUG:	                    }
2024-12-17 14:39:28,440 DEBUG:	                GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
2024-12-17 14:39:28,440 DEBUG:	                    "\\_SB.GPIO", 0x00, ResourceConsumer, ,
2024-12-17 14:39:28,440 DEBUG:	                    )
2024-12-17 14:39:28,440 DEBUG:	                    {   // Pin list
2024-12-17 14:39:28,440 DEBUG:	                        0x003B
2024-12-17 14:39:28,440 DEBUG:	                    }
2024-12-17 14:39:28,440 DEBUG:	                GpioInt (Edge, ActiveLow, ExclusiveAndWake, PullNone, 0x0000,
2024-12-17 14:39:28,440 DEBUG:	                    "\\_SB.GPIO", 0x00, ResourceConsumer, ,
2024-12-17 14:39:28,440 DEBUG:	                    )
2024-12-17 14:39:28,440 DEBUG:	                    {   // Pin list
2024-12-17 14:39:28,440 DEBUG:	                        0x0011
2024-12-17 14:39:28,440 DEBUG:	                    }
2024-12-17 14:39:28,440 DEBUG:	                GpioInt (Edge, ActiveLow, ExclusiveAndWake, PullNone, 0x0000,
2024-12-17 14:39:28,440 DEBUG:	                    "\\_SB.GPIO", 0x00, ResourceConsumer, ,
2024-12-17 14:39:28,440 DEBUG:	                    )
2024-12-17 14:39:28,440 DEBUG:	                    {   // Pin list
2024-12-17 14:39:28,440 DEBUG:	                        0x0012
2024-12-17 14:39:28,440 DEBUG:	                    }
2024-12-17 14:39:28,440 DEBUG:	                GpioInt (Edge, ActiveLow, ExclusiveAndWake, PullNone, 0x0000,
2024-12-17 14:39:28,440 DEBUG:	                    "\\_SB.GPIO", 0x00, ResourceConsumer, ,
2024-12-17 14:39:28,440 DEBUG:	                    )
2024-12-17 14:39:28,440 DEBUG:	                    {   // Pin list
2024-12-17 14:39:28,440 DEBUG:	                        0x0010
2024-12-17 14:39:28,440 DEBUG:	                    }
2024-12-17 14:39:28,440 DEBUG:	            })
2024-12-17 14:39:28,440 DEBUG:	            M460 ("  OEM-ASL-\\_SB.GPIO._AEI\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,440 DEBUG:	            Return (BUF0) /* \_SB_.GPIO._AEI.BUF0 */
2024-12-17 14:39:28,440 DEBUG:	        }
2024-12-17 14:39:28,440 DEBUG:	
2024-12-17 14:39:28,440 DEBUG:	        Method (_EVT, 1, Serialized)  // _EVT: Event
2024-12-17 14:39:28,440 DEBUG:	        {
2024-12-17 14:39:28,440 DEBUG:	            Name (HPDW, 0x55)
2024-12-17 14:39:28,440 DEBUG:	            M460 ("  OEM-ASL-\\_SB.GPIO._EVT-Start Case %d\n", ToInteger (Arg0), Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,440 DEBUG:	            Switch (ToInteger (Arg0))
2024-12-17 14:39:28,440 DEBUG:	            {
2024-12-17 14:39:28,440 DEBUG:	                Case (Zero)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x3900)
2024-12-17 14:39:28,440 DEBUG:	                    If (\_SB.PCI0.SBRG.H_EC.B1PN)
2024-12-17 14:39:28,440 DEBUG:	                    {
2024-12-17 14:39:28,440 DEBUG:	                        M460 ("    Notify (\\_SB.PCI0.SBRG.H_EC.BAT0)\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,440 DEBUG:	                        \_SB.PCI0.SBRG.H_EC.B1PN = Zero
2024-12-17 14:39:28,440 DEBUG:	                        Notify (\_SB.PCI0.SBRG.H_EC.BAT0, 0x80) // Status Change
2024-12-17 14:39:28,440 DEBUG:	                        Notify (\_SB.PCI0.SBRG.H_EC.BAT0, 0x81) // Information Change
2024-12-17 14:39:28,440 DEBUG:	                    }
2024-12-17 14:39:28,440 DEBUG:	                    Else
2024-12-17 14:39:28,440 DEBUG:	                    {
2024-12-17 14:39:28,440 DEBUG:	                        M460 ("    Notify (\\_SB.PWRB, 0x80)\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,440 DEBUG:	                        Notify (\_SB.PWRB, 0x80) // Status Change
2024-12-17 14:39:28,440 DEBUG:	                    }
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x02)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x3902)
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x03)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x3902)
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x0B)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x390B)
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x10)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x3910)
2024-12-17 14:39:28,440 DEBUG:	                    M460 ("    Notify (\\_SB.PCI0.GPP5, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,440 DEBUG:	                    Notify (\_SB.PCI0.GPP5, 0x02) // Device Wake
2024-12-17 14:39:28,440 DEBUG:	                    Notify (\_SB.PWRB, 0x02) // Device Wake
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x11)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x3911)
2024-12-17 14:39:28,440 DEBUG:	                    M460 ("    Notify (\\_SB.PCI0.GPP2, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,440 DEBUG:	                    Notify (\_SB.PCI0.GPP2, 0x02) // Device Wake
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x12)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x3912)
2024-12-17 14:39:28,440 DEBUG:	                    M460 ("    Notify (\\_SB.PCI0.GPP6, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,440 DEBUG:	                    Notify (\_SB.PCI0.GPP6, 0x02) // Device Wake
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x18)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x3918)
2024-12-17 14:39:28,440 DEBUG:	                    M460 ("    Notify (\\_SB.PCI0.GPP5, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,440 DEBUG:	                    Notify (\_SB.PCI0.GPP5, 0x02) // Device Wake
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x36)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x3936)
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x3A)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x393A)
2024-12-17 14:39:28,440 DEBUG:	                    M460 ("    Notify (\\_SB.PCI0.GP17.XHC0, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,440 DEBUG:	                    Notify (\_SB.PCI0.GP17.XHC0, 0x02) // Device Wake
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x3B)
2024-12-17 14:39:28,440 DEBUG:	                {
2024-12-17 14:39:28,440 DEBUG:	                    M000 (0x393B)
2024-12-17 14:39:28,440 DEBUG:	                    M460 ("    Notify (\\_SB.PCI0.GP17.XHC1, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,440 DEBUG:	                    Notify (\_SB.PCI0.GP17.XHC1, 0x02) // Device Wake
2024-12-17 14:39:28,440 DEBUG:	                }
2024-12-17 14:39:28,440 DEBUG:	                Case (0x2A)
2024-12-17 14:39:28,441 DEBUG:	                {
2024-12-17 14:39:28,441 DEBUG:	                    M000 (0x392A)
2024-12-17 14:39:28,441 DEBUG:	                }
2024-12-17 14:39:28,441 DEBUG:	                Case (0x3D)
2024-12-17 14:39:28,441 DEBUG:	                {
2024-12-17 14:39:28,441 DEBUG:	                    M000 (0x393D)
2024-12-17 14:39:28,441 DEBUG:	                    M460 ("    Notify (\\_SB.PCI0.GP17.AZAL, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,441 DEBUG:	                    Notify (\_SB.PCI0.GP17.AZAL, 0x02) // Device Wake
2024-12-17 14:39:28,441 DEBUG:	                }
2024-12-17 14:39:28,441 DEBUG:	                Case (0x3E)
2024-12-17 14:39:28,441 DEBUG:	                {
2024-12-17 14:39:28,441 DEBUG:	                    M000 (0x393D)
2024-12-17 14:39:28,441 DEBUG:	                    M460 ("    Notify (\\_SB.PCI0.GP17.ACP, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,441 DEBUG:	                    Notify (\_SB.PCI0.GP17.ACP, 0x02) // Device Wake
2024-12-17 14:39:28,441 DEBUG:	                }
2024-12-17 14:39:28,441 DEBUG:	
2024-12-17 14:39:28,441 DEBUG:	            }
2024-12-17 14:39:28,441 DEBUG:	
2024-12-17 14:39:28,441 DEBUG:	            M460 ("  OEM-ASL-\\_SB.GPIO._EVT-End Case %d\n", ToInteger (Arg0), Zero, Zero, Zero, Zero, Zero)
2024-12-17 14:39:28,441 DEBUG:	        }
2024-12-17 14:39:28,441 DEBUG:	    }
2024-12-17 14:39:28,441 DEBUG:	}
2024-12-17 14:39:28,441 DEBUG:	Power profiles:
2024-12-17 14:39:28,477 DEBUG:	 * performance:
2024-12-17 14:39:28,477 DEBUG:	     CpuDriver:	amd_pstate
2024-12-17 14:39:28,477 DEBUG:	     PlatformDriver:	platform_profile
2024-12-17 14:39:28,477 DEBUG:	     Degraded:   no
2024-12-17 14:39:28,477 DEBUG:	 
2024-12-17 14:39:28,477 DEBUG:	   balanced:
2024-12-17 14:39:28,477 DEBUG:	     CpuDriver:	amd_pstate
2024-12-17 14:39:28,477 DEBUG:	     PlatformDriver:	platform_profile
2024-12-17 14:39:28,477 DEBUG:	 
2024-12-17 14:39:28,477 DEBUG:	   power-saver:
2024-12-17 14:39:28,477 DEBUG:	     CpuDriver:	amd_pstate
2024-12-17 14:39:28,477 DEBUG:	     PlatformDriver:	platform_profile
2024-12-17 14:39:28,477 DEBUG:	 
2024-12-17 14:39:28,478 ERROR:	❌ Kernel is tainted: 12288
2024-12-17 14:39:28,478 INFO:	Your system does not meet s2idle prerequisites!
2024-12-17 14:39:28,478 DEBUG:	Linux version 6.13.0-rc3 (wse@wse-pc) (gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #4 SMP PREEMPT_DYNAMIC Tue Dec 17 14:33:23 CET 2024
2024-12-17 14:39:28,478 DEBUG:	Command line: BOOT_IMAGE=/boot/vmlinuz-6.13.0-rc3 root=UUID=ce3cb892-12dc-4d50-8a6d-0c5bb2df1de7 ro quiet splash amdgpu.dcdebugmask=0x10 loglevel=3 udev.log_level=3 loglevel=3 udev.log_level=3 vt.handoff=7
2024-12-17 14:39:28,478 DEBUG:	KERNEL supported cpus:
2024-12-17 14:39:28,478 DEBUG:	  Intel GenuineIntel
2024-12-17 14:39:28,478 DEBUG:	  AMD AuthenticAMD
2024-12-17 14:39:28,478 DEBUG:	  Hygon HygonGenuine
2024-12-17 14:39:28,478 DEBUG:	  Centaur CentaurHauls
2024-12-17 14:39:28,478 DEBUG:	  zhaoxin   Shanghai  
2024-12-17 14:39:28,478 DEBUG:	BIOS-provided physical RAM map:
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x0000000000100000-0x0000000009a7efff] usable
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x0000000009a7f000-0x0000000009ffffff] reserved
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000000a200000-0x000000000a23bfff] ACPI NVS
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000000a23c000-0x000000008f82cfff] usable
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000008f82d000-0x000000009238afff] reserved
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000009238b000-0x0000000092416fff] ACPI data
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x0000000092417000-0x0000000097490fff] ACPI NVS
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x0000000097491000-0x000000009adfefff] reserved
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000009adff000-0x000000009bff8fff] usable
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000009bff9000-0x000000009bffcfff] reserved
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000009bffd000-0x000000009bffefff] usable
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000009bfff000-0x000000009cffffff] reserved
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000009d790000-0x000000009d7effff] reserved
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000009d7f5000-0x000000009fffffff] reserved
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x0000000100000000-0x000000043e2fffff] usable
2024-12-17 14:39:28,479 DEBUG:	BIOS-e820: [mem 0x000000043f340000-0x00000004801fffff] reserved
2024-12-17 14:39:28,479 DEBUG:	NX (Execute Disable) protection: active
2024-12-17 14:39:28,479 DEBUG:	APIC: Static calls initialized
2024-12-17 14:39:28,479 DEBUG:	e820: update [mem 0x7e988018-0x7e9a3857] usable ==> usable
2024-12-17 14:39:28,479 DEBUG:	e820: update [mem 0x8aad4018-0x8aad7057] usable ==> usable
2024-12-17 14:39:28,479 DEBUG:	extended physical RAM map:
2024-12-17 14:39:28,479 DEBUG:	reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x0000000000100000-0x0000000009a7efff] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x0000000009a7f000-0x0000000009ffffff] reserved
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000000a200000-0x000000000a23bfff] ACPI NVS
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000000a23c000-0x000000007e988017] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000007e988018-0x000000007e9a3857] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000007e9a3858-0x000000008aad4017] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000008aad4018-0x000000008aad7057] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000008aad7058-0x000000008f82cfff] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000008f82d000-0x000000009238afff] reserved
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000009238b000-0x0000000092416fff] ACPI data
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x0000000092417000-0x0000000097490fff] ACPI NVS
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x0000000097491000-0x000000009adfefff] reserved
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000009adff000-0x000000009bff8fff] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000009bff9000-0x000000009bffcfff] reserved
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000009bffd000-0x000000009bffefff] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000009bfff000-0x000000009cffffff] reserved
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000009d790000-0x000000009d7effff] reserved
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000009d7f5000-0x000000009fffffff] reserved
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x0000000100000000-0x000000043e2fffff] usable
2024-12-17 14:39:28,480 DEBUG:	reserve setup_data: [mem 0x000000043f340000-0x00000004801fffff] reserved
2024-12-17 14:39:28,480 DEBUG:	efi: EFI v2.8 by American Megatrends
2024-12-17 14:39:28,480 DEBUG:	efi: ACPI=0x97477000 ACPI 2.0=0x97477014 TPMFinalLog=0x97443000 SMBIOS=0x9ab6d000 SMBIOS 3.0=0x9ab6c000 MEMATTR=0x8c2fe018 ESRT=0x8dd56c98 MOKvar=0x9abca000 INITRD=0x8afef518 RNG=0x923a6018 TPMEventLog=0x92398018 
2024-12-17 14:39:28,480 DEBUG:	random: crng init done
2024-12-17 14:39:28,481 DEBUG:	efi: Remove mem60: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
2024-12-17 14:39:28,481 DEBUG:	e820: remove [mem 0xe0000000-0xefffffff] reserved
2024-12-17 14:39:28,481 DEBUG:	efi: Remove mem61: MMIO range=[0xfd000000-0xfedfffff] (30MB) from e820 map
2024-12-17 14:39:28,481 DEBUG:	e820: remove [mem 0xfd000000-0xfedfffff] reserved
2024-12-17 14:39:28,481 DEBUG:	efi: Not removing mem62: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
2024-12-17 14:39:28,481 DEBUG:	efi: Remove mem63: MMIO range=[0xfee01000-0xffffffff] (17MB) from e820 map
2024-12-17 14:39:28,481 DEBUG:	e820: remove [mem 0xfee01000-0xffffffff] reserved
2024-12-17 14:39:28,481 DEBUG:	efi: Remove mem65: MMIO range=[0x460000000-0x4801fffff] (514MB) from e820 map
2024-12-17 14:39:28,481 DEBUG:	e820: remove [mem 0x460000000-0x4801fffff] reserved
2024-12-17 14:39:28,481 DEBUG:	SMBIOS 3.5.0 present.
2024-12-17 14:39:28,481 DEBUG:	DMI: TUXEDO TUXEDO Sirius 16 Gen1/APX958, BIOS V1.00A00_20240108 01/08/2024
2024-12-17 14:39:28,481 DEBUG:	DMI: Memory slots populated: 2/2
2024-12-17 14:39:28,481 DEBUG:	tsc: Fast TSC calibration using PIT
2024-12-17 14:39:28,481 DEBUG:	tsc: Detected 3992.802 MHz processor
2024-12-17 14:39:28,481 DEBUG:	e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
2024-12-17 14:39:28,481 DEBUG:	e820: remove [mem 0x000a0000-0x000fffff] usable
2024-12-17 14:39:28,481 DEBUG:	last_pfn = 0x43e300 max_arch_pfn = 0x400000000
2024-12-17 14:39:28,481 DEBUG:	MTRR map: 5 entries (3 fixed + 2 variable; max 20), built from 9 variable MTRRs
2024-12-17 14:39:28,481 DEBUG:	x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
2024-12-17 14:39:28,481 DEBUG:	e820: update [mem 0xa0000000-0xffffffff] usable ==> reserved
2024-12-17 14:39:28,481 DEBUG:	last_pfn = 0x9bfff max_arch_pfn = 0x400000000
2024-12-17 14:39:28,481 DEBUG:	esrt: Reserving ESRT space from 0x000000008dd56c98 to 0x000000008dd56cf8.
2024-12-17 14:39:28,481 DEBUG:	e820: update [mem 0x8dd56000-0x8dd56fff] usable ==> reserved
2024-12-17 14:39:28,481 DEBUG:	Using GB pages for direct mapping
2024-12-17 14:39:28,481 DEBUG:	Secure boot disabled
2024-12-17 14:39:28,481 DEBUG:	RAMDISK: [mem 0x7e9a4000-0x820fefff]
2024-12-17 14:39:28,481 DEBUG:	ACPI: Early table checksum verification disabled
2024-12-17 14:39:28,481 DEBUG:	ACPI: RSDP 0x0000000097477014 000024 (v02 ALASKA)
2024-12-17 14:39:28,482 DEBUG:	ACPI: XSDT 0x0000000097476728 000154 (v01 ALASKA A M I    01072009 AMI  01000013)
2024-12-17 14:39:28,482 DEBUG:	ACPI: FACP 0x000000009240C000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
2024-12-17 14:39:28,482 DEBUG:	ACPI: DSDT 0x00000000923FE000 00DA7C (v02 ALASKA A M I    01072009 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: FACS 0x0000000093430000 000040
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x000000009240E000 008416 (v02 AMD    AmdTable 00000002 MSFT 02000002)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x000000009240D000 000221 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
2024-12-17 14:39:28,482 DEBUG:	ACPI: FIDT 0x00000000923FD000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
2024-12-17 14:39:28,482 DEBUG:	ACPI: MCFG 0x00000000923FC000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
2024-12-17 14:39:28,482 DEBUG:	ACPI: FPDT 0x00000000923FB000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
2024-12-17 14:39:28,482 DEBUG:	ACPI: VFCT 0x00000000923E9000 0112A0 (v01 ALASKA A M I    00000001 AMD  33504F47)
2024-12-17 14:39:28,482 DEBUG:	ACPI: BGRT 0x00000000923E8000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
2024-12-17 14:39:28,482 DEBUG:	ACPI: TPM2 0x00000000923E7000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923E1000 00547E (v02 AMD    AmdTable 00000001 AMD  00000001)
2024-12-17 14:39:28,482 DEBUG:	ACPI: CRAT 0x00000000923E0000 000EE8 (v01 AMD    AmdTable 00000001 AMD  00000001)
2024-12-17 14:39:28,482 DEBUG:	ACPI: CDIT 0x00000000923DF000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923DD000 0015C0 (v02 AMD    CPMDFIG2 00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923DA000 002A87 (v02 AMD    CDFAAIG2 00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923D9000 00092F (v02 AMD    CPMDFDG2 00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923D7000 001BA8 (v02 AMD    CPMD3CLD 00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923D6000 000650 (v02 AMD    DFDGCNEV 00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923D4000 00144D (v02 AMD    CPMPMF   00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923D3000 000CDE (v02 AMD    OEMACP   00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923D2000 000634 (v02 AMD    OEMPMF   00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923C8000 0096F8 (v02 AMD    CPMCMN   00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923C7000 00073F (v02 AMD    NVME     00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923C6000 000952 (v02 AMD    GpMsSsdt 00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: SSDT 0x00000000923C4000 001710 (v02 AMD    UPEP     00000001 INTL 20220331)
2024-12-17 14:39:28,482 DEBUG:	ACPI: WSMT 0x00000000923C3000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
2024-12-17 14:39:28,483 DEBUG:	ACPI: APIC 0x00000000923C2000 0000E8 (v05 ALASKA A M I    01072009 AMI  00010013)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923BF000 0022B2 (v02 AMD    AOD      00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: IVRS 0x00000000923BE000 0001A4 (v02 AMD    AmdTable 00000001 AMD  00000001)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923BD000 00094E (v02 AMD    CPMMSOSC 00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923BC000 000EA5 (v02 AMD    CPMACPV5 00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923BB000 000600 (v02 AMD    TOUCHPNL 00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923BA000 000601 (v02 AMD    TOUCHPAD 00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923B9000 0007D5 (v02 AMD    THERMAL0 00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923B8000 000FEF (v02 AMD    GPP_PME_ 00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923AE000 009837 (v02 AMD    INTGPP03 00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923A9000 004FE3 (v02 AMD    INTGPP01 00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923A8000 000B6E (v02 AMD    CPMGPIO0 00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: SSDT 0x00000000923A7000 00008D (v02 AMD    CPMMSLPI 00000001 INTL 20220331)
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving FACP table memory at [mem 0x9240c000-0x9240c113]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving DSDT table memory at [mem 0x923fe000-0x9240ba7b]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving FACS table memory at [mem 0x93430000-0x9343003f]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x9240e000-0x92416415]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x9240d000-0x9240d220]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving FIDT table memory at [mem 0x923fd000-0x923fd09b]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving MCFG table memory at [mem 0x923fc000-0x923fc03b]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving FPDT table memory at [mem 0x923fb000-0x923fb043]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving VFCT table memory at [mem 0x923e9000-0x923fa29f]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving BGRT table memory at [mem 0x923e8000-0x923e8037]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving TPM2 table memory at [mem 0x923e7000-0x923e704b]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923e1000-0x923e647d]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving CRAT table memory at [mem 0x923e0000-0x923e0ee7]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving CDIT table memory at [mem 0x923df000-0x923df028]
2024-12-17 14:39:28,483 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923dd000-0x923de5bf]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923da000-0x923dca86]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d9000-0x923d992e]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d7000-0x923d8ba7]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d6000-0x923d664f]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d4000-0x923d544c]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d3000-0x923d3cdd]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d2000-0x923d2633]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923c8000-0x923d16f7]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923c7000-0x923c773e]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923c6000-0x923c6951]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923c4000-0x923c570f]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving WSMT table memory at [mem 0x923c3000-0x923c3027]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving APIC table memory at [mem 0x923c2000-0x923c20e7]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923bf000-0x923c12b1]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving IVRS table memory at [mem 0x923be000-0x923be1a3]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923bd000-0x923bd94d]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923bc000-0x923bcea4]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923bb000-0x923bb5ff]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923ba000-0x923ba600]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923b9000-0x923b97d4]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923b8000-0x923b8fee]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923ae000-0x923b7836]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923a9000-0x923adfe2]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923a8000-0x923a8b6d]
2024-12-17 14:39:28,484 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923a7000-0x923a708c]
2024-12-17 14:39:28,484 DEBUG:	No NUMA configuration found
2024-12-17 14:39:28,484 DEBUG:	Faking a node at [mem 0x0000000000000000-0x000000043e2fffff]
2024-12-17 14:39:28,484 DEBUG:	NODE_DATA(0) allocated [mem 0x43e2d5680-0x43e2fffff]
2024-12-17 14:39:28,485 DEBUG:	Zone ranges:
2024-12-17 14:39:28,485 DEBUG:	  DMA      [mem 0x0000000000001000-0x0000000000ffffff]
2024-12-17 14:39:28,485 DEBUG:	  DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
2024-12-17 14:39:28,485 DEBUG:	  Normal   [mem 0x0000000100000000-0x000000043e2fffff]
2024-12-17 14:39:28,485 DEBUG:	  Device   empty
2024-12-17 14:39:28,485 DEBUG:	Movable zone start for each node
2024-12-17 14:39:28,485 DEBUG:	Early memory node ranges
2024-12-17 14:39:28,485 DEBUG:	  node   0: [mem 0x0000000000001000-0x000000000009ffff]
2024-12-17 14:39:28,485 DEBUG:	  node   0: [mem 0x0000000000100000-0x0000000009a7efff]
2024-12-17 14:39:28,485 DEBUG:	  node   0: [mem 0x000000000a000000-0x000000000a1fffff]
2024-12-17 14:39:28,485 DEBUG:	  node   0: [mem 0x000000000a23c000-0x000000008f82cfff]
2024-12-17 14:39:28,485 DEBUG:	  node   0: [mem 0x000000009adff000-0x000000009bff8fff]
2024-12-17 14:39:28,485 DEBUG:	  node   0: [mem 0x000000009bffd000-0x000000009bffefff]
2024-12-17 14:39:28,485 DEBUG:	  node   0: [mem 0x0000000100000000-0x000000043e2fffff]
2024-12-17 14:39:28,485 DEBUG:	Initmem setup node 0 [mem 0x0000000000001000-0x000000043e2fffff]
2024-12-17 14:39:28,485 DEBUG:	On node 0, zone DMA: 1 pages in unavailable ranges
2024-12-17 14:39:28,485 DEBUG:	On node 0, zone DMA: 96 pages in unavailable ranges
2024-12-17 14:39:28,485 DEBUG:	On node 0, zone DMA32: 1409 pages in unavailable ranges
2024-12-17 14:39:28,485 DEBUG:	On node 0, zone DMA32: 60 pages in unavailable ranges
2024-12-17 14:39:28,485 DEBUG:	On node 0, zone DMA32: 13778 pages in unavailable ranges
2024-12-17 14:39:28,485 DEBUG:	On node 0, zone DMA32: 4 pages in unavailable ranges
2024-12-17 14:39:28,485 DEBUG:	On node 0, zone Normal: 16385 pages in unavailable ranges
2024-12-17 14:39:28,485 DEBUG:	On node 0, zone Normal: 7424 pages in unavailable ranges
2024-12-17 14:39:28,485 DEBUG:	ACPI: PM-Timer IO Port: 0x808
2024-12-17 14:39:28,485 DEBUG:	ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
2024-12-17 14:39:28,485 DEBUG:	IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
2024-12-17 14:39:28,485 DEBUG:	IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
2024-12-17 14:39:28,485 DEBUG:	ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
2024-12-17 14:39:28,486 DEBUG:	ACPI: INT_SRC_OVR (bus 0 bus_irq 1 global_irq 1 low edge)
2024-12-17 14:39:28,486 DEBUG:	ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
2024-12-17 14:39:28,486 DEBUG:	ACPI: Using ACPI (MADT) for SMP configuration information
2024-12-17 14:39:28,486 DEBUG:	e820: update [mem 0x8c348000-0x8c3c3fff] usable ==> reserved
2024-12-17 14:39:28,486 DEBUG:	CPU topo: Max. logical packages:   1
2024-12-17 14:39:28,486 DEBUG:	CPU topo: Max. logical dies:       1
2024-12-17 14:39:28,486 DEBUG:	CPU topo: Max. dies per package:   1
2024-12-17 14:39:28,486 DEBUG:	CPU topo: Max. threads per core:   2
2024-12-17 14:39:28,486 DEBUG:	CPU topo: Num. cores per package:     8
2024-12-17 14:39:28,486 DEBUG:	CPU topo: Num. threads per package:  16
2024-12-17 14:39:28,486 DEBUG:	CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x09a7f000-0x09ffffff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a23bfff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x7e988000-0x7e988fff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x7e9a3000-0x7e9a3fff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x8aad4000-0x8aad4fff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x8aad7000-0x8aad7fff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x8c348000-0x8c3c3fff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x8dd56000-0x8dd56fff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x8f82d000-0x9238afff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9238b000-0x92416fff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x92417000-0x97490fff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x97491000-0x9adfefff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9bff9000-0x9bffcfff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9bfff000-0x9cffffff]
2024-12-17 14:39:28,486 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9d000000-0x9d78ffff]
2024-12-17 14:39:28,487 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9d790000-0x9d7effff]
2024-12-17 14:39:28,487 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9d7f0000-0x9d7f4fff]
2024-12-17 14:39:28,487 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9d7f5000-0x9fffffff]
2024-12-17 14:39:28,487 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0xa0000000-0xfedfffff]
2024-12-17 14:39:28,487 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
2024-12-17 14:39:28,487 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
2024-12-17 14:39:28,487 DEBUG:	[mem 0xa0000000-0xfedfffff] available for PCI devices
2024-12-17 14:39:28,487 DEBUG:	Booting paravirtualized kernel on bare hardware
2024-12-17 14:39:28,487 DEBUG:	clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
2024-12-17 14:39:28,487 DEBUG:	setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
2024-12-17 14:39:28,487 DEBUG:	percpu: Embedded 88 pages/cpu s237568 r8192 d114688 u524288
2024-12-17 14:39:28,487 DEBUG:	pcpu-alloc: s237568 r8192 d114688 u524288 alloc=1*2097152
2024-12-17 14:39:28,487 DEBUG:	pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
2024-12-17 14:39:28,487 DEBUG:	pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15 
2024-12-17 14:39:28,487 DEBUG:	Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.13.0-rc3 root=UUID=ce3cb892-12dc-4d50-8a6d-0c5bb2df1de7 ro quiet splash amdgpu.dcdebugmask=0x10 loglevel=3 udev.log_level=3 loglevel=3 udev.log_level=3 vt.handoff=7
2024-12-17 14:39:28,487 DEBUG:	Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-6.13.0-rc3", will be passed to user space.
2024-12-17 14:39:28,487 DEBUG:	printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes
2024-12-17 14:39:28,487 DEBUG:	Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
2024-12-17 14:39:28,487 DEBUG:	Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
2024-12-17 14:39:28,487 DEBUG:	Fallback order for Node 0: 0 
2024-12-17 14:39:28,487 DEBUG:	Built 1 zonelists, mobility grouping on.  Total pages: 3991307
2024-12-17 14:39:28,487 DEBUG:	Policy zone: Normal
2024-12-17 14:39:28,487 DEBUG:	mem auto-init: stack:all(zero), heap alloc:on, heap free:off
2024-12-17 14:39:28,487 DEBUG:	software IO TLB: area num 16.
2024-12-17 14:39:28,487 DEBUG:	SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
2024-12-17 14:39:28,487 DEBUG:	ftrace: allocating 56476 entries in 221 pages
2024-12-17 14:39:28,487 DEBUG:	ftrace: allocated 221 pages with 6 groups
2024-12-17 14:39:28,487 DEBUG:	Dynamic Preempt: voluntary
2024-12-17 14:39:28,488 DEBUG:	rcu: Preemptible hierarchical RCU implementation.
2024-12-17 14:39:28,488 DEBUG:	rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
2024-12-17 14:39:28,488 DEBUG:		Trampoline variant of Tasks RCU enabled.
2024-12-17 14:39:28,488 DEBUG:		Rude variant of Tasks RCU enabled.
2024-12-17 14:39:28,488 DEBUG:		Tracing variant of Tasks RCU enabled.
2024-12-17 14:39:28,488 DEBUG:	rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
2024-12-17 14:39:28,488 DEBUG:	rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
2024-12-17 14:39:28,488 DEBUG:	RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
2024-12-17 14:39:28,488 DEBUG:	RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
2024-12-17 14:39:28,488 DEBUG:	RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
2024-12-17 14:39:28,488 DEBUG:	NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
2024-12-17 14:39:28,488 DEBUG:	rcu: srcu_init: Setting srcu_struct sizes based on contention.
2024-12-17 14:39:28,488 DEBUG:	Console: colour dummy device 80x25
2024-12-17 14:39:28,488 DEBUG:	printk: legacy console [tty0] enabled
2024-12-17 14:39:28,488 DEBUG:	ACPI: Core revision 20240827
2024-12-17 14:39:28,488 DEBUG:	APIC: Switch to symmetric I/O mode setup
2024-12-17 14:39:28,488 DEBUG:	AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160
2024-12-17 14:39:28,488 DEBUG:	AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160
2024-12-17 14:39:28,488 DEBUG:	AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160
2024-12-17 14:39:28,488 DEBUG:	AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160
2024-12-17 14:39:28,488 DEBUG:	AMD-Vi: Using global IVHD EFR:0x246577efa2254afa, EFR2:0x0
2024-12-17 14:39:28,488 DEBUG:	x2apic: IRQ remapping doesn't support X2APIC mode
2024-12-17 14:39:28,488 DEBUG:	..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
2024-12-17 14:39:28,488 DEBUG:	clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x731b99d6951, max_idle_ns: 881590939448 ns
2024-12-17 14:39:28,488 DEBUG:	Calibrating delay loop (skipped), value calculated using timer frequency.. 7985.60 BogoMIPS (lpj=3992802)
2024-12-17 14:39:28,488 DEBUG:	x86/cpu: User Mode Instruction Prevention (UMIP) activated
2024-12-17 14:39:28,488 DEBUG:	LVT offset 1 assigned for vector 0xf9
2024-12-17 14:39:28,488 DEBUG:	LVT offset 2 assigned for vector 0xf4
2024-12-17 14:39:28,489 DEBUG:	Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
2024-12-17 14:39:28,489 DEBUG:	Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
2024-12-17 14:39:28,489 DEBUG:	process: using mwait in idle threads
2024-12-17 14:39:28,489 DEBUG:	Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
2024-12-17 14:39:28,489 DEBUG:	Spectre V2 : Mitigation: Enhanced / Automatic IBRS
2024-12-17 14:39:28,489 DEBUG:	Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
2024-12-17 14:39:28,489 DEBUG:	Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
2024-12-17 14:39:28,489 DEBUG:	Spectre V2 : User space: Mitigation: STIBP always-on protection
2024-12-17 14:39:28,489 DEBUG:	Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
2024-12-17 14:39:28,489 DEBUG:	Speculative Return Stack Overflow: IBPB-extending microcode not applied!
2024-12-17 14:39:28,489 DEBUG:	Speculative Return Stack Overflow: WARNING: See https://kernel.org/doc/html/latest/admin-guide/hw-vuln/srso.html for mitigation options.
2024-12-17 14:39:28,489 DEBUG:	Speculative Return Stack Overflow: Vulnerable: Safe RET, no microcode
2024-12-17 14:39:28,489 DEBUG:	x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
2024-12-17 14:39:28,490 DEBUG:	x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
2024-12-17 14:39:28,490 DEBUG:	x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
2024-12-17 14:39:28,490 DEBUG:	x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: xstate_offset[11]: 2440, xstate_sizes[11]:   16
2024-12-17 14:39:28,491 DEBUG:	x86/fpu: Enabled xstate features 0xae7, context size is 2456 bytes, using 'compacted' format.
2024-12-17 14:39:28,491 DEBUG:	Freeing SMP alternatives memory: 48K
2024-12-17 14:39:28,491 DEBUG:	pid_max: default: 32768 minimum: 301
2024-12-17 14:39:28,491 DEBUG:	LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
2024-12-17 14:39:28,491 DEBUG:	landlock: Up and running.
2024-12-17 14:39:28,491 DEBUG:	Yama: becoming mindful.
2024-12-17 14:39:28,491 DEBUG:	AppArmor: AppArmor initialized
2024-12-17 14:39:28,492 DEBUG:	Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
2024-12-17 14:39:28,492 DEBUG:	Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
2024-12-17 14:39:28,492 DEBUG:	smpboot: CPU0: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics (family: 0x19, model: 0x74, stepping: 0x1)
2024-12-17 14:39:28,492 DEBUG:	Performance Events: Fam17h+ 16-deep LBR, core perfctr, AMD PMU driver.
2024-12-17 14:39:28,492 DEBUG:	... version:                2
2024-12-17 14:39:28,492 DEBUG:	... bit width:              48
2024-12-17 14:39:28,492 DEBUG:	... generic registers:      6
2024-12-17 14:39:28,492 DEBUG:	... value mask:             0000ffffffffffff
2024-12-17 14:39:28,492 DEBUG:	... max period:             00007fffffffffff
2024-12-17 14:39:28,492 DEBUG:	... fixed-purpose events:   0
2024-12-17 14:39:28,492 DEBUG:	... event mask:             000000000000003f
2024-12-17 14:39:28,492 DEBUG:	signal: max sigframe size: 3376
2024-12-17 14:39:28,492 DEBUG:	rcu: Hierarchical SRCU implementation.
2024-12-17 14:39:28,492 DEBUG:	rcu: 	Max phase no-delay instances is 400.
2024-12-17 14:39:28,492 DEBUG:	Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
2024-12-17 14:39:28,492 DEBUG:	NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
2024-12-17 14:39:28,492 DEBUG:	smp: Bringing up secondary CPUs ...
2024-12-17 14:39:28,492 DEBUG:	smpboot: x86: Booting SMP configuration:
2024-12-17 14:39:28,492 DEBUG:	.... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
2024-12-17 14:39:28,492 DEBUG:	Spectre V2 : Update user space SMT mitigation: STIBP always-on
2024-12-17 14:39:28,492 DEBUG:	smp: Brought up 1 node, 16 CPUs
2024-12-17 14:39:28,492 DEBUG:	smpboot: Total of 16 processors activated (127769.66 BogoMIPS)
2024-12-17 14:39:28,493 DEBUG:	Memory: 15487140K/15965228K available (22528K kernel code, 4614K rwdata, 8420K rodata, 5092K init, 4436K bss, 453868K reserved, 0K cma-reserved)
2024-12-17 14:39:28,493 DEBUG:	devtmpfs: initialized
2024-12-17 14:39:28,493 DEBUG:	x86/mm: Memory block size: 128MB
2024-12-17 14:39:28,493 DEBUG:	ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a23bfff] (245760 bytes)
2024-12-17 14:39:28,493 DEBUG:	ACPI: PM: Registering ACPI NVS region [mem 0x92417000-0x97490fff] (84385792 bytes)
2024-12-17 14:39:28,493 DEBUG:	clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
2024-12-17 14:39:28,493 DEBUG:	futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
2024-12-17 14:39:28,493 DEBUG:	pinctrl core: initialized pinctrl subsystem
2024-12-17 14:39:28,493 DEBUG:	PM: RTC time: 13:38:18, date: 2024-12-17
2024-12-17 14:39:28,493 DEBUG:	NET: Registered PF_NETLINK/PF_ROUTE protocol family
2024-12-17 14:39:28,493 DEBUG:	DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
2024-12-17 14:39:28,493 DEBUG:	DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
2024-12-17 14:39:28,493 DEBUG:	DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
2024-12-17 14:39:28,493 DEBUG:	audit: initializing netlink subsys (disabled)
2024-12-17 14:39:28,493 DEBUG:	audit: type=2000 audit(1734442698.161:1): state=initialized audit_enabled=0 res=1
2024-12-17 14:39:28,493 DEBUG:	thermal_sys: Registered thermal governor 'fair_share'
2024-12-17 14:39:28,493 DEBUG:	thermal_sys: Registered thermal governor 'bang_bang'
2024-12-17 14:39:28,493 DEBUG:	thermal_sys: Registered thermal governor 'step_wise'
2024-12-17 14:39:28,493 DEBUG:	thermal_sys: Registered thermal governor 'user_space'
2024-12-17 14:39:28,493 DEBUG:	thermal_sys: Registered thermal governor 'power_allocator'
2024-12-17 14:39:28,493 DEBUG:	EISA bus registered
2024-12-17 14:39:28,493 DEBUG:	cpuidle: using governor ladder
2024-12-17 14:39:28,493 DEBUG:	cpuidle: using governor menu
2024-12-17 14:39:28,493 DEBUG:	acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
2024-12-17 14:39:28,493 DEBUG:	PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
2024-12-17 14:39:28,493 DEBUG:	PCI: Using configuration type 1 for base access
2024-12-17 14:39:28,494 DEBUG:	kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
2024-12-17 14:39:28,494 DEBUG:	HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
2024-12-17 14:39:28,494 DEBUG:	HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
2024-12-17 14:39:28,494 DEBUG:	HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
2024-12-17 14:39:28,494 DEBUG:	HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
2024-12-17 14:39:28,494 DEBUG:	ACPI: Added _OSI(Module Device)
2024-12-17 14:39:28,494 DEBUG:	ACPI: Added _OSI(Processor Device)
2024-12-17 14:39:28,494 DEBUG:	ACPI: Added _OSI(3.0 _SCP Extensions)
2024-12-17 14:39:28,494 DEBUG:	ACPI: Added _OSI(Processor Aggregator Device)
2024-12-17 14:39:28,494 DEBUG:	ACPI BIOS Error (bug): Failure creating named object [\_SB.I2CA.TPNL], AE_ALREADY_EXISTS (20240827/dswload2-326)
2024-12-17 14:39:28,494 DEBUG:	ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
2024-12-17 14:39:28,494 DEBUG:	ACPI: Skipping parse of AML opcode: Device (0x5B82)
2024-12-17 14:39:28,494 DEBUG:	ACPI BIOS Error (bug): Failure creating named object [\_SB.I2CD.TPDD], AE_ALREADY_EXISTS (20240827/dswload2-326)
2024-12-17 14:39:28,494 DEBUG:	ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
2024-12-17 14:39:28,494 DEBUG:	ACPI: Skipping parse of AML opcode: Device (0x5B82)
2024-12-17 14:39:28,494 DEBUG:	ACPI: 27 ACPI AML tables successfully acquired and loaded
2024-12-17 14:39:28,494 DEBUG:	ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
2024-12-17 14:39:28,494 DEBUG:	ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
2024-12-17 14:39:28,494 DEBUG:	ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
2024-12-17 14:39:28,494 DEBUG:	ACPI: EC: EC started
2024-12-17 14:39:28,494 DEBUG:	ACPI: EC: interrupt blocked
2024-12-17 14:39:28,494 DEBUG:	ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
2024-12-17 14:39:28,494 DEBUG:	ACPI: \_SB_.PCI0.SBRG.H_EC: Boot DSDT EC used to handle transactions
2024-12-17 14:39:28,494 DEBUG:	ACPI: Interpreter enabled
2024-12-17 14:39:28,494 DEBUG:	ACPI: PM: (supports S0 S4 S5)
2024-12-17 14:39:28,495 DEBUG:	ACPI: Using IOAPIC for interrupt routing
2024-12-17 14:39:28,495 DEBUG:	PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
2024-12-17 14:39:28,495 DEBUG:	PCI: Ignoring E820 reservations for host bridge windows
2024-12-17 14:39:28,495 DEBUG:	ACPI: Enabled 5 GPEs in block 00 to 1F
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GPP0.M237: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GPP0.SWUS.M237: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GPP0.SWUS.SWDS.M237: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GPP8.P0NV: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP11.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP11.SWUS.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP12.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP12.SWUS.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP17.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP17.VGA_.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP17.HDAU.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP17.ACP_.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP17.AZAL.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP17.XHC0.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP17.XHC1.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP19.XHC2.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP19.XHC3.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP19.XHC4.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP19.NHI0.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: \_SB_.PCI0.GP19.NHI1.PWRS: New power resource
2024-12-17 14:39:28,495 DEBUG:	ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
2024-12-17 14:39:28,496 DEBUG:	acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
2024-12-17 14:39:28,496 DEBUG:	acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
2024-12-17 14:39:28,496 DEBUG:	acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
2024-12-17 14:39:28,496 DEBUG:	PCI host bridge to bus 0000:00
2024-12-17 14:39:28,496 DEBUG:	pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
2024-12-17 14:39:28,496 DEBUG:	pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
2024-12-17 14:39:28,496 DEBUG:	pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
2024-12-17 14:39:28,496 DEBUG:	pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
2024-12-17 14:39:28,496 DEBUG:	pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
2024-12-17 14:39:28,496 DEBUG:	pci_bus 0000:00: root bus resource [mem 0xfa000000-0xfcffffff window]
2024-12-17 14:39:28,496 DEBUG:	pci_bus 0000:00: root bus resource [mem 0xf0000000-0xf9ffffff window]
2024-12-17 14:39:28,496 DEBUG:	pci_bus 0000:00: root bus resource [mem 0xa0000000-0xdfffffff window]
2024-12-17 14:39:28,496 DEBUG:	pci_bus 0000:00: root bus resource [mem 0x460000000-0x7fffffffff window]
2024-12-17 14:39:28,496 DEBUG:	pci_bus 0000:00: root bus resource [bus 00-ff]
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:00.0: [1022:14e8] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:00.2: [1022:14e9] type 00 class 0x080600 conventional PCI endpoint
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:01.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:01.1: [1022:14ed] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:01.1: PCI bridge to [bus 01-03]
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:01.1:   bridge window [io  0xf000-0xffff]
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:01.1:   bridge window [mem 0xdc900000-0xdcbfffff]
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:01.1:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:02.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:02.1: [1022:14ee] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:02.1: PCI bridge to [bus 04]
2024-12-17 14:39:28,496 DEBUG:	pci 0000:00:02.1:   bridge window [io  0xe000-0xefff]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.1:   bridge window [mem 0xdcf00000-0xdcffffff]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.1: enabling Extended Tags
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.2: [1022:14ee] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.2: PCI bridge to [bus 05]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.2:   bridge window [mem 0xdce00000-0xdcefffff]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.2: enabling Extended Tags
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.3: [1022:14ee] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.3: PCI bridge to [bus 06]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.3: enabling Extended Tags
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.4: [1022:14ee] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.4: PCI bridge to [bus 07]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.4:   bridge window [mem 0xdcd00000-0xdcdfffff]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.4: enabling Extended Tags
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:03.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:03.1: [1022:14ef] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:03.1: PCI bridge to [bus 08-67]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:03.1:   bridge window [io  0x9000-0xcfff]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:03.1:   bridge window [mem 0xc4000000-0xdbffffff]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:03.1:   bridge window [mem 0x7d00000000-0x7effffffff 64bit pref]
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:03.1: enabling Extended Tags
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:04.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,497 DEBUG:	pci 0000:00:08.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.1: [1022:14eb] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.1: PCI bridge to [bus 68]
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.1:   bridge window [io  0xd000-0xdfff]
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.1:   bridge window [mem 0xdc000000-0xdc5fffff]
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.1:   bridge window [mem 0x7f00000000-0x7f107fffff 64bit pref]
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.1: enabling Extended Tags
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.2: [1022:14eb] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.2: PCI bridge to [bus 69]
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.2:   bridge window [mem 0xdcc00000-0xdccfffff]
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.2:   bridge window [mem 0x7f10900000-0x7f109fffff 64bit pref]
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.2: enabling Extended Tags
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.3: [1022:14eb] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.3: PCI bridge to [bus 6a]
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.3:   bridge window [mem 0xdc600000-0xdc8fffff]
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.3: enabling Extended Tags
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:18.0: [1022:14f0] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:18.1: [1022:14f1] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:18.2: [1022:14f2] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:18.3: [1022:14f3] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:18.4: [1022:14f4] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:18.5: [1022:14f5] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:18.6: [1022:14f6] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,498 DEBUG:	pci 0000:00:18.7: [1022:14f7] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:39:28,499 DEBUG:	pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
2024-12-17 14:39:28,499 DEBUG:	pci 0000:01:00.0: BAR 0 [mem 0xdcb00000-0xdcb03fff]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:01:00.0: PCI bridge to [bus 02-03]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:01:00.0:   bridge window [io  0xf000-0xffff]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:01:00.0:   bridge window [mem 0xdc900000-0xdcafffff]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:01:00.0:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,499 DEBUG:	pci 0000:00:01.1: PCI bridge to [bus 01-03]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
2024-12-17 14:39:28,499 DEBUG:	pci 0000:02:00.0: PCI bridge to [bus 03]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:02:00.0:   bridge window [io  0xf000-0xffff]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:02:00.0:   bridge window [mem 0xdc900000-0xdcafffff]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:02:00.0:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,499 DEBUG:	pci 0000:01:00.0: PCI bridge to [bus 02-03]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:03:00.0: [1002:7480] type 00 class 0x030000 PCIe Legacy Endpoint
2024-12-17 14:39:28,499 DEBUG:	pci 0000:03:00.0: BAR 0 [mem 0x7a00000000-0x7bffffffff 64bit pref]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:03:00.0: BAR 2 [mem 0x7c00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:03:00.0: BAR 4 [io  0xf000-0xf0ff]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:03:00.0: BAR 5 [mem 0xdc900000-0xdc9fffff]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:03:00.0: ROM [mem 0xdca00000-0xdca1ffff pref]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
2024-12-17 14:39:28,499 DEBUG:	pci 0000:03:00.1: [1002:ab30] type 00 class 0x040300 PCIe Legacy Endpoint
2024-12-17 14:39:28,499 DEBUG:	pci 0000:03:00.1: BAR 0 [mem 0xdca20000-0xdca23fff]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
2024-12-17 14:39:28,499 DEBUG:	pci 0000:02:00.0: PCI bridge to [bus 03]
2024-12-17 14:39:28,499 DEBUG:	pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
2024-12-17 14:39:28,500 DEBUG:	pci 0000:04:00.0: BAR 0 [io  0xe000-0xe0ff]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:04:00.0: BAR 2 [mem 0xdcf04000-0xdcf04fff 64bit]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:04:00.0: BAR 4 [mem 0xdcf00000-0xdcf03fff 64bit]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:04:00.0: supports D1 D2
2024-12-17 14:39:28,500 DEBUG:	pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
2024-12-17 14:39:28,500 DEBUG:	pci 0000:00:02.1: PCI bridge to [bus 04]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:05:00.0: [8086:2725] type 00 class 0x028000 PCIe Endpoint
2024-12-17 14:39:28,500 DEBUG:	pci 0000:05:00.0: BAR 0 [mem 0xdce00000-0xdce03fff 64bit]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,500 DEBUG:	pci 0000:00:02.2: PCI bridge to [bus 05]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:00:02.3: PCI bridge to [bus 06]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:07:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
2024-12-17 14:39:28,500 DEBUG:	pci 0000:07:00.0: BAR 0 [mem 0xdcd00000-0xdcd03fff 64bit]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:00:02.4: PCI bridge to [bus 07]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:00:03.1: PCI bridge to [bus 08-67]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.0: [1002:15bf] type 00 class 0x030000 PCIe Legacy Endpoint
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.0: BAR 0 [mem 0x7f00000000-0x7f0fffffff 64bit pref]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.0: BAR 2 [mem 0xdc000000-0xdc1fffff 64bit pref]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.0: BAR 4 [io  0xd000-0xd0ff]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.0: BAR 5 [mem 0xdc500000-0xdc57ffff]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.0: enabling Extended Tags
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.0: PME# supported from D1 D2 D3hot D3cold
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.1: [1002:1640] type 00 class 0x040300 PCIe Legacy Endpoint
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.1: BAR 0 [mem 0xdc5c8000-0xdc5cbfff]
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.1: enabling Extended Tags
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.1: PME# supported from D1 D2 D3hot D3cold
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.2: [1022:15c7] type 00 class 0x108000 PCIe Endpoint
2024-12-17 14:39:28,500 DEBUG:	pci 0000:68:00.2: BAR 2 [mem 0xdc400000-0xdc4fffff]
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.2: BAR 5 [mem 0xdc5cc000-0xdc5cdfff]
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.2: enabling Extended Tags
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.3: [1022:15b9] type 00 class 0x0c0330 PCIe Endpoint
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.3: BAR 0 [mem 0xdc300000-0xdc3fffff 64bit]
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.3: enabling Extended Tags
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.3: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.4: [1022:15ba] type 00 class 0x0c0330 PCIe Endpoint
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.4: BAR 0 [mem 0xdc200000-0xdc2fffff 64bit]
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.4: enabling Extended Tags
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.4: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.5: BAR 0 [mem 0xdc580000-0xdc5bffff]
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.5: BAR 2 [mem 0x7f10000000-0x7f107fffff 64bit pref]
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.5: enabling Extended Tags
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.5: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.6: BAR 0 [mem 0xdc5c0000-0xdc5c7fff]
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.6: enabling Extended Tags
2024-12-17 14:39:28,501 DEBUG:	pci 0000:68:00.6: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,501 DEBUG:	pci 0000:00:08.1: PCI bridge to [bus 68]
2024-12-17 14:39:28,501 DEBUG:	pci 0000:69:00.0: [1022:14ec] type 00 class 0x130000 PCIe Endpoint
2024-12-17 14:39:28,501 DEBUG:	pci 0000:69:00.0: enabling Extended Tags
2024-12-17 14:39:28,501 DEBUG:	pci 0000:69:00.0: PME# supported from D3hot D3cold
2024-12-17 14:39:28,501 DEBUG:	pci 0000:69:00.1: [1022:1502] type 00 class 0x118000 PCIe Endpoint
2024-12-17 14:39:28,501 DEBUG:	pci 0000:69:00.1: BAR 0 [mem 0xdcc00000-0xdcc7ffff]
2024-12-17 14:39:28,501 DEBUG:	pci 0000:69:00.1: BAR 1 [mem 0xdccc0000-0xdccc1fff]
2024-12-17 14:39:28,501 DEBUG:	pci 0000:69:00.1: BAR 2 [mem 0x7f10900000-0x7f1093ffff 64bit pref]
2024-12-17 14:39:28,502 DEBUG:	pci 0000:69:00.1: BAR 4 [mem 0xdcc80000-0xdccbffff]
2024-12-17 14:39:28,502 DEBUG:	pci 0000:69:00.1: enabling Extended Tags
2024-12-17 14:39:28,502 DEBUG:	pci 0000:00:08.2: PCI bridge to [bus 69]
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.0: [1022:14ec] type 00 class 0x130000 PCIe Endpoint
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.0: enabling Extended Tags
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.3: [1022:15c0] type 00 class 0x0c0330 PCIe Endpoint
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.3: BAR 0 [mem 0xdc700000-0xdc7fffff 64bit]
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.3: enabling Extended Tags
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.3: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.4: [1022:15c1] type 00 class 0x0c0330 PCIe Endpoint
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.4: BAR 0 [mem 0xdc600000-0xdc6fffff 64bit]
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.4: enabling Extended Tags
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.4: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.5: [1022:1668] type 00 class 0x0c0340 PCIe Endpoint
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.5: BAR 0 [mem 0xdc800000-0xdc87ffff 64bit]
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.5: enabling Extended Tags
2024-12-17 14:39:28,502 DEBUG:	pci 0000:6a:00.5: PME# supported from D0 D3hot D3cold
2024-12-17 14:39:28,502 DEBUG:	pci 0000:00:08.3: PCI bridge to [bus 6a]
2024-12-17 14:39:28,502 DEBUG:	ACPI: PCI: Interrupt link LNKA configured for IRQ 0
2024-12-17 14:39:28,502 DEBUG:	ACPI: PCI: Interrupt link LNKB configured for IRQ 0
2024-12-17 14:39:28,502 DEBUG:	ACPI: PCI: Interrupt link LNKC configured for IRQ 0
2024-12-17 14:39:28,502 DEBUG:	ACPI: PCI: Interrupt link LNKD configured for IRQ 0
2024-12-17 14:39:28,502 DEBUG:	ACPI: PCI: Interrupt link LNKE configured for IRQ 0
2024-12-17 14:39:28,502 DEBUG:	ACPI: PCI: Interrupt link LNKF configured for IRQ 0
2024-12-17 14:39:28,502 DEBUG:	ACPI: PCI: Interrupt link LNKG configured for IRQ 0
2024-12-17 14:39:28,502 DEBUG:	ACPI: PCI: Interrupt link LNKH configured for IRQ 0
2024-12-17 14:39:28,502 DEBUG:	Low-power S0 idle used by default for system suspend
2024-12-17 14:39:28,502 DEBUG:	ACPI: EC: interrupt unblocked
2024-12-17 14:39:28,503 DEBUG:	ACPI: EC: event unblocked
2024-12-17 14:39:28,503 DEBUG:	ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
2024-12-17 14:39:28,503 DEBUG:	ACPI: EC: GPE=0x5
2024-12-17 14:39:28,503 DEBUG:	ACPI: \_SB_.PCI0.SBRG.H_EC: Boot DSDT EC initialization complete
2024-12-17 14:39:28,503 DEBUG:	ACPI: \_SB_.PCI0.SBRG.H_EC: EC: Used to handle transactions and events
2024-12-17 14:39:28,503 DEBUG:	iommu: Default domain type: Translated
2024-12-17 14:39:28,503 DEBUG:	iommu: DMA domain TLB invalidation policy: lazy mode
2024-12-17 14:39:28,503 DEBUG:	SCSI subsystem initialized
2024-12-17 14:39:28,503 DEBUG:	libata version 3.00 loaded.
2024-12-17 14:39:28,503 DEBUG:	ACPI: bus type USB registered
2024-12-17 14:39:28,503 DEBUG:	usbcore: registered new interface driver usbfs
2024-12-17 14:39:28,503 DEBUG:	usbcore: registered new interface driver hub
2024-12-17 14:39:28,503 DEBUG:	usbcore: registered new device driver usb
2024-12-17 14:39:28,503 DEBUG:	pps_core: LinuxPPS API ver. 1 registered
2024-12-17 14:39:28,503 DEBUG:	pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
2024-12-17 14:39:28,503 DEBUG:	PTP clock support registered
2024-12-17 14:39:28,503 DEBUG:	EDAC MC: Ver: 3.0.0
2024-12-17 14:39:28,503 DEBUG:	efivars: Registered efivars operations
2024-12-17 14:39:28,503 DEBUG:	NetLabel: Initializing
2024-12-17 14:39:28,503 DEBUG:	NetLabel:  domain hash size = 128
2024-12-17 14:39:28,503 DEBUG:	NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
2024-12-17 14:39:28,503 DEBUG:	NetLabel:  unlabeled traffic allowed by default
2024-12-17 14:39:28,503 DEBUG:	mctp: management component transport protocol core
2024-12-17 14:39:28,503 DEBUG:	NET: Registered PF_MCTP protocol family
2024-12-17 14:39:28,503 DEBUG:	PCI: Using ACPI for IRQ routing
2024-12-17 14:39:28,503 DEBUG:	PCI: pci_cache_line_size set to 64 bytes
2024-12-17 14:39:28,503 DEBUG:	e820: reserve RAM buffer [mem 0x09a7f000-0x0bffffff]
2024-12-17 14:39:28,503 DEBUG:	e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
2024-12-17 14:39:28,504 DEBUG:	e820: reserve RAM buffer [mem 0x7e988018-0x7fffffff]
2024-12-17 14:39:28,504 DEBUG:	e820: reserve RAM buffer [mem 0x8aad4018-0x8bffffff]
2024-12-17 14:39:28,504 DEBUG:	e820: reserve RAM buffer [mem 0x8c348000-0x8fffffff]
2024-12-17 14:39:28,504 DEBUG:	e820: reserve RAM buffer [mem 0x8dd56000-0x8fffffff]
2024-12-17 14:39:28,504 DEBUG:	e820: reserve RAM buffer [mem 0x8f82d000-0x8fffffff]
2024-12-17 14:39:28,504 DEBUG:	e820: reserve RAM buffer [mem 0x9bff9000-0x9bffffff]
2024-12-17 14:39:28,504 DEBUG:	e820: reserve RAM buffer [mem 0x9bfff000-0x9bffffff]
2024-12-17 14:39:28,504 DEBUG:	e820: reserve RAM buffer [mem 0x43e300000-0x43fffffff]
2024-12-17 14:39:28,504 DEBUG:	pci 0000:03:00.0: vgaarb: setting as boot VGA device
2024-12-17 14:39:28,504 DEBUG:	pci 0000:03:00.0: vgaarb: bridge control possible
2024-12-17 14:39:28,504 DEBUG:	pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
2024-12-17 14:39:28,504 DEBUG:	pci 0000:68:00.0: vgaarb: setting as boot VGA device (overriding previous)
2024-12-17 14:39:28,504 DEBUG:	pci 0000:68:00.0: vgaarb: bridge control possible
2024-12-17 14:39:28,504 DEBUG:	pci 0000:68:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
2024-12-17 14:39:28,504 DEBUG:	vgaarb: loaded
2024-12-17 14:39:28,504 DEBUG:	clocksource: Switched to clocksource tsc-early
2024-12-17 14:39:28,504 DEBUG:	VFS: Disk quotas dquot_6.6.0
2024-12-17 14:39:28,504 DEBUG:	VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
2024-12-17 14:39:28,504 DEBUG:	AppArmor: AppArmor Filesystem Enabled
2024-12-17 14:39:28,504 DEBUG:	pnp: PnP ACPI init
2024-12-17 14:39:28,504 DEBUG:	system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
2024-12-17 14:39:28,504 DEBUG:	ACPI: IRQ 1 override to edge, low(!)
2024-12-17 14:39:28,504 DEBUG:	system 00:03: [io  0x04d0-0x04d1] has been reserved
2024-12-17 14:39:28,504 DEBUG:	system 00:03: [io  0x040b] has been reserved
2024-12-17 14:39:28,504 DEBUG:	system 00:03: [io  0x04d6] has been reserved
2024-12-17 14:39:28,504 DEBUG:	system 00:03: [io  0x0c00-0x0c01] has been reserved
2024-12-17 14:39:28,504 DEBUG:	system 00:03: [io  0x0c14] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0c50-0x0c51] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0c52] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0c6c] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0c6f] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0cd0-0x0cd1] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0cd2-0x0cd3] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0cd4-0x0cd5] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0cd6-0x0cd7] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0cd8-0x0cdf] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0800-0x089f] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0b00-0x0b0f] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0b20-0x0b3f] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0900-0x090f] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [io  0x0910-0x091f] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
2024-12-17 14:39:28,505 DEBUG:	system 00:03: [mem 0xff000000-0xffffffff] has been reserved
2024-12-17 14:39:28,505 DEBUG:	pnp: PnP ACPI: found 4 devices
2024-12-17 14:39:28,505 DEBUG:	clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
2024-12-17 14:39:28,505 DEBUG:	NET: Registered PF_INET protocol family
2024-12-17 14:39:28,505 DEBUG:	IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
2024-12-17 14:39:28,505 DEBUG:	tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
2024-12-17 14:39:28,505 DEBUG:	Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
2024-12-17 14:39:28,505 DEBUG:	TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
2024-12-17 14:39:28,506 DEBUG:	TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
2024-12-17 14:39:28,506 DEBUG:	TCP: Hash tables configured (established 131072 bind 65536)
2024-12-17 14:39:28,506 DEBUG:	MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
2024-12-17 14:39:28,506 DEBUG:	UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
2024-12-17 14:39:28,506 DEBUG:	UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
2024-12-17 14:39:28,506 DEBUG:	NET: Registered PF_UNIX/PF_LOCAL protocol family
2024-12-17 14:39:28,506 DEBUG:	NET: Registered PF_XDP protocol family
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:02.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:02.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:02.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000 add_align 100000
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:02.3: bridge window [mem 0x00100000-0x000fffff] to [bus 06] add_size 200000 add_align 100000
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:02.1: bridge window [mem 0x460000000-0x4601fffff 64bit pref]: assigned
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:02.3: bridge window [mem 0xfa000000-0xfa1fffff]: assigned
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:02.3: bridge window [mem 0x460200000-0x4603fffff 64bit pref]: assigned
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:02.3: bridge window [io  0x1000-0x1fff]: assigned
2024-12-17 14:39:28,506 DEBUG:	pci 0000:02:00.0: PCI bridge to [bus 03]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:02:00.0:   bridge window [io  0xf000-0xffff]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:02:00.0:   bridge window [mem 0xdc900000-0xdcafffff]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:02:00.0:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:01:00.0: PCI bridge to [bus 02-03]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:01:00.0:   bridge window [io  0xf000-0xffff]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:01:00.0:   bridge window [mem 0xdc900000-0xdcafffff]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:01:00.0:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:01.1: PCI bridge to [bus 01-03]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:01.1:   bridge window [io  0xf000-0xffff]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:01.1:   bridge window [mem 0xdc900000-0xdcbfffff]
2024-12-17 14:39:28,506 DEBUG:	pci 0000:00:01.1:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.1: PCI bridge to [bus 04]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.1:   bridge window [io  0xe000-0xefff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.1:   bridge window [mem 0xdcf00000-0xdcffffff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.1:   bridge window [mem 0x460000000-0x4601fffff 64bit pref]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.2: PCI bridge to [bus 05]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.2:   bridge window [mem 0xdce00000-0xdcefffff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.3: PCI bridge to [bus 06]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.3:   bridge window [io  0x1000-0x1fff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.3:   bridge window [mem 0xfa000000-0xfa1fffff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.3:   bridge window [mem 0x460200000-0x4603fffff 64bit pref]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.4: PCI bridge to [bus 07]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:02.4:   bridge window [mem 0xdcd00000-0xdcdfffff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:03.1: PCI bridge to [bus 08-67]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:03.1:   bridge window [io  0x9000-0xcfff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:03.1:   bridge window [mem 0xc4000000-0xdbffffff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:03.1:   bridge window [mem 0x7d00000000-0x7effffffff 64bit pref]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:08.1: PCI bridge to [bus 68]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:08.1:   bridge window [io  0xd000-0xdfff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:08.1:   bridge window [mem 0xdc000000-0xdc5fffff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:08.1:   bridge window [mem 0x7f00000000-0x7f107fffff 64bit pref]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:08.2: PCI bridge to [bus 69]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:08.2:   bridge window [mem 0xdcc00000-0xdccfffff]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:08.2:   bridge window [mem 0x7f10900000-0x7f109fffff 64bit pref]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:08.3: PCI bridge to [bus 6a]
2024-12-17 14:39:28,507 DEBUG:	pci 0000:00:08.3:   bridge window [mem 0xdc600000-0xdc8fffff]
2024-12-17 14:39:28,507 DEBUG:	pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
2024-12-17 14:39:28,507 DEBUG:	pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:00: resource 9 [mem 0xfa000000-0xfcffffff window]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:00: resource 10 [mem 0xf0000000-0xf9ffffff window]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:00: resource 11 [mem 0xa0000000-0xdfffffff window]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:00: resource 12 [mem 0x460000000-0x7fffffffff window]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:01: resource 1 [mem 0xdc900000-0xdcbfffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:01: resource 2 [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:02: resource 1 [mem 0xdc900000-0xdcafffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:02: resource 2 [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:03: resource 0 [io  0xf000-0xffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:03: resource 1 [mem 0xdc900000-0xdcafffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:03: resource 2 [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:04: resource 0 [io  0xe000-0xefff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:04: resource 1 [mem 0xdcf00000-0xdcffffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:04: resource 2 [mem 0x460000000-0x4601fffff 64bit pref]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:05: resource 1 [mem 0xdce00000-0xdcefffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:06: resource 0 [io  0x1000-0x1fff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:06: resource 1 [mem 0xfa000000-0xfa1fffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:06: resource 2 [mem 0x460200000-0x4603fffff 64bit pref]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:07: resource 1 [mem 0xdcd00000-0xdcdfffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:08: resource 0 [io  0x9000-0xcfff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:08: resource 1 [mem 0xc4000000-0xdbffffff]
2024-12-17 14:39:28,508 DEBUG:	pci_bus 0000:08: resource 2 [mem 0x7d00000000-0x7effffffff 64bit pref]
2024-12-17 14:39:28,509 DEBUG:	pci_bus 0000:68: resource 0 [io  0xd000-0xdfff]
2024-12-17 14:39:28,509 DEBUG:	pci_bus 0000:68: resource 1 [mem 0xdc000000-0xdc5fffff]
2024-12-17 14:39:28,509 DEBUG:	pci_bus 0000:68: resource 2 [mem 0x7f00000000-0x7f107fffff 64bit pref]
2024-12-17 14:39:28,509 DEBUG:	pci_bus 0000:69: resource 1 [mem 0xdcc00000-0xdccfffff]
2024-12-17 14:39:28,509 DEBUG:	pci_bus 0000:69: resource 2 [mem 0x7f10900000-0x7f109fffff 64bit pref]
2024-12-17 14:39:28,509 DEBUG:	pci_bus 0000:6a: resource 1 [mem 0xdc600000-0xdc8fffff]
2024-12-17 14:39:28,509 DEBUG:	pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
2024-12-17 14:39:28,509 DEBUG:	pci 0000:68:00.1: D0 power state depends on 0000:68:00.0
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:08.1: can't derive routing for PCI INT A
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:08.1: PCI INT A: not connected
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:08.3: can't derive routing for PCI INT A
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:08.3: PCI INT A: not connected
2024-12-17 14:39:28,509 DEBUG:	PCI: CLS 64 bytes, default 64
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
2024-12-17 14:39:28,509 DEBUG:	Trying to unpack rootfs image as initramfs...
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:01.0: Adding to iommu group 0
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:01.1: Adding to iommu group 1
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:02.0: Adding to iommu group 2
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:02.1: Adding to iommu group 3
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:02.2: Adding to iommu group 4
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:02.3: Adding to iommu group 5
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:02.4: Adding to iommu group 6
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:03.0: Adding to iommu group 7
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:03.1: Adding to iommu group 7
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:04.0: Adding to iommu group 8
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:08.0: Adding to iommu group 9
2024-12-17 14:39:28,509 DEBUG:	pci 0000:00:08.1: Adding to iommu group 10
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:08.2: Adding to iommu group 11
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:08.3: Adding to iommu group 12
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:14.0: Adding to iommu group 13
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:14.3: Adding to iommu group 13
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:18.0: Adding to iommu group 14
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:18.1: Adding to iommu group 14
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:18.2: Adding to iommu group 14
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:18.3: Adding to iommu group 14
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:18.4: Adding to iommu group 14
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:18.5: Adding to iommu group 14
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:18.6: Adding to iommu group 14
2024-12-17 14:39:28,510 DEBUG:	pci 0000:00:18.7: Adding to iommu group 14
2024-12-17 14:39:28,510 DEBUG:	pci 0000:01:00.0: Adding to iommu group 15
2024-12-17 14:39:28,510 DEBUG:	pci 0000:02:00.0: Adding to iommu group 16
2024-12-17 14:39:28,510 DEBUG:	pci 0000:03:00.0: Adding to iommu group 17
2024-12-17 14:39:28,510 DEBUG:	pci 0000:03:00.1: Adding to iommu group 18
2024-12-17 14:39:28,510 DEBUG:	pci 0000:04:00.0: Adding to iommu group 19
2024-12-17 14:39:28,510 DEBUG:	pci 0000:05:00.0: Adding to iommu group 20
2024-12-17 14:39:28,510 DEBUG:	pci 0000:07:00.0: Adding to iommu group 21
2024-12-17 14:39:28,510 DEBUG:	pci 0000:68:00.0: Adding to iommu group 22
2024-12-17 14:39:28,510 DEBUG:	pci 0000:68:00.1: Adding to iommu group 23
2024-12-17 14:39:28,510 DEBUG:	pci 0000:68:00.2: Adding to iommu group 24
2024-12-17 14:39:28,510 DEBUG:	pci 0000:68:00.3: Adding to iommu group 25
2024-12-17 14:39:28,510 DEBUG:	pci 0000:68:00.4: Adding to iommu group 26
2024-12-17 14:39:28,510 DEBUG:	pci 0000:68:00.5: Adding to iommu group 27
2024-12-17 14:39:28,510 DEBUG:	pci 0000:68:00.6: Adding to iommu group 28
2024-12-17 14:39:28,510 DEBUG:	pci 0000:69:00.0: Adding to iommu group 29
2024-12-17 14:39:28,511 DEBUG:	pci 0000:69:00.1: Adding to iommu group 30
2024-12-17 14:39:28,511 DEBUG:	pci 0000:6a:00.0: Adding to iommu group 31
2024-12-17 14:39:28,511 DEBUG:	pci 0000:6a:00.3: Adding to iommu group 32
2024-12-17 14:39:28,511 DEBUG:	pci 0000:6a:00.4: Adding to iommu group 33
2024-12-17 14:39:28,511 DEBUG:	pci 0000:6a:00.5: Adding to iommu group 34
2024-12-17 14:39:28,511 DEBUG:	AMD-Vi: Extended features (0x246577efa2254afa, 0x0): PPR NX GT [5] IA GA PC GA_vAPIC
2024-12-17 14:39:28,511 DEBUG:	AMD-Vi: Interrupt remapping enabled
2024-12-17 14:39:28,511 DEBUG:	AMD-Vi: Virtual APIC enabled
2024-12-17 14:39:28,511 DEBUG:	PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
2024-12-17 14:39:28,511 DEBUG:	software IO TLB: mapped [mem 0x0000000086ad4000-0x000000008aad4000] (64MB)
2024-12-17 14:39:28,511 DEBUG:	LVT offset 0 assigned for vector 0x400
2024-12-17 14:39:28,511 DEBUG:	perf: AMD IBS detected (0x00000bff)
2024-12-17 14:39:28,511 DEBUG:	perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
2024-12-17 14:39:28,511 DEBUG:	Initialise system trusted keyrings
2024-12-17 14:39:28,511 DEBUG:	Key type blacklist registered
2024-12-17 14:39:28,511 DEBUG:	workingset: timestamp_bits=36 max_order=22 bucket_order=0
2024-12-17 14:39:28,511 DEBUG:	zbud: loaded
2024-12-17 14:39:28,511 DEBUG:	squashfs: version 4.0 (2009/01/31) Phillip Lougher
2024-12-17 14:39:28,511 DEBUG:	fuse: init (API version 7.41)
2024-12-17 14:39:28,511 DEBUG:	integrity: Platform Keyring initialized
2024-12-17 14:39:28,511 DEBUG:	integrity: Machine keyring initialized
2024-12-17 14:39:28,511 DEBUG:	Key type asymmetric registered
2024-12-17 14:39:28,511 DEBUG:	Asymmetric key parser 'x509' registered
2024-12-17 14:39:28,511 DEBUG:	Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
2024-12-17 14:39:28,511 DEBUG:	io scheduler mq-deadline registered
2024-12-17 14:39:28,511 DEBUG:	ledtrig-cpu: registered to indicate activity on CPUs
2024-12-17 14:39:28,511 DEBUG:	pcieport 0000:00:01.1: PME: Signaling with IRQ 33
2024-12-17 14:39:28,511 DEBUG:	pcieport 0000:00:01.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:02.1: PME: Signaling with IRQ 34
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:02.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:02.2: PME: Signaling with IRQ 35
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:02.3: PME: Signaling with IRQ 36
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:02.3: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:02.4: PME: Signaling with IRQ 37
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:03.1: PME: Signaling with IRQ 38
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:03.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:08.1: PME: Signaling with IRQ 39
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:08.2: can't derive routing for PCI INT A
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:08.2: PCI INT A: not connected
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:08.2: PME: Signaling with IRQ 40
2024-12-17 14:39:28,512 DEBUG:	pcieport 0000:00:08.3: PME: Signaling with IRQ 41
2024-12-17 14:39:28,512 DEBUG:	shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
2024-12-17 14:39:28,512 DEBUG:	ACPI: AC: AC Adapter [ADP1] (on-line)
2024-12-17 14:39:28,512 DEBUG:	input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:54/PNP0C09:00/PNP0C0D:00/input/input0
2024-12-17 14:39:28,512 DEBUG:	ACPI: button: Lid Switch [LID0]
2024-12-17 14:39:28,512 DEBUG:	input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
2024-12-17 14:39:28,512 DEBUG:	ACPI: button: Power Button [PWRB]
2024-12-17 14:39:28,512 DEBUG:	Monitor-Mwait will be used to enter C-1 state
2024-12-17 14:39:28,512 DEBUG:	Estimated ratio of average max frequency by base frequency (times 1024): 1185
2024-12-17 14:39:28,512 DEBUG:	thermal LNXTHERM:00: registered as thermal_zone0
2024-12-17 14:39:28,512 DEBUG:	ACPI: thermal: Thermal Zone [TZ01] (63 C)
2024-12-17 14:39:28,512 DEBUG:	Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
2024-12-17 14:39:28,512 DEBUG:	hpet_acpi_add: no address or irqs in _CRS
2024-12-17 14:39:28,512 DEBUG:	Linux agpgart interface v0.103
2024-12-17 14:39:28,512 DEBUG:	ACPI: battery: Slot [BAT0] (battery present)
2024-12-17 14:39:28,512 DEBUG:	tpm_crb MSFT0101:00: Disabling hwrng
2024-12-17 14:39:28,513 DEBUG:	ACPI: bus type drm_connector registered
2024-12-17 14:39:28,513 DEBUG:	loop: module loaded
2024-12-17 14:39:28,513 DEBUG:	tun: Universal TUN/TAP device driver, 1.6
2024-12-17 14:39:28,513 DEBUG:	PPP generic driver version 2.4.2
2024-12-17 14:39:28,513 DEBUG:	xhci_hcd 0000:68:00.3: xHCI Host Controller
2024-12-17 14:39:28,513 DEBUG:	xhci_hcd 0000:68:00.3: new USB bus registered, assigned bus number 1
2024-12-17 14:39:28,513 DEBUG:	xhci_hcd 0000:68:00.3: hcc params 0x0128ffc5 hci version 0x120 quirks 0x0000000200000010
2024-12-17 14:39:28,513 DEBUG:	xhci_hcd 0000:68:00.3: xHCI Host Controller
2024-12-17 14:39:28,513 DEBUG:	xhci_hcd 0000:68:00.3: new USB bus registered, assigned bus number 2
2024-12-17 14:39:28,513 DEBUG:	xhci_hcd 0000:68:00.3: Host supports USB 3.1 Enhanced SuperSpeed
2024-12-17 14:39:28,513 DEBUG:	usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
2024-12-17 14:39:28,513 DEBUG:	usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:39:28,513 DEBUG:	usb usb1: Product: xHCI Host Controller
2024-12-17 14:39:28,513 DEBUG:	usb usb1: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:39:28,513 DEBUG:	usb usb1: SerialNumber: 0000:68:00.3
2024-12-17 14:39:28,513 DEBUG:	hub 1-0:1.0: USB hub found
2024-12-17 14:39:28,513 DEBUG:	hub 1-0:1.0: 5 ports detected
2024-12-17 14:39:28,513 DEBUG:	usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
2024-12-17 14:39:28,513 DEBUG:	usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
2024-12-17 14:39:28,513 DEBUG:	usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:39:28,513 DEBUG:	usb usb2: Product: xHCI Host Controller
2024-12-17 14:39:28,513 DEBUG:	usb usb2: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:39:28,513 DEBUG:	usb usb2: SerialNumber: 0000:68:00.3
2024-12-17 14:39:28,513 DEBUG:	hub 2-0:1.0: USB hub found
2024-12-17 14:39:28,513 DEBUG:	hub 2-0:1.0: 2 ports detected
2024-12-17 14:39:28,513 DEBUG:	xhci_hcd 0000:68:00.4: xHCI Host Controller
2024-12-17 14:39:28,513 DEBUG:	xhci_hcd 0000:68:00.4: new USB bus registered, assigned bus number 3
2024-12-17 14:39:28,514 DEBUG:	xhci_hcd 0000:68:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
2024-12-17 14:39:28,514 DEBUG:	xhci_hcd 0000:68:00.4: xHCI Host Controller
2024-12-17 14:39:28,514 DEBUG:	xhci_hcd 0000:68:00.4: new USB bus registered, assigned bus number 4
2024-12-17 14:39:28,514 DEBUG:	xhci_hcd 0000:68:00.4: Host supports USB 3.1 Enhanced SuperSpeed
2024-12-17 14:39:28,514 DEBUG:	usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
2024-12-17 14:39:28,514 DEBUG:	usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:39:28,514 DEBUG:	usb usb3: Product: xHCI Host Controller
2024-12-17 14:39:28,514 DEBUG:	usb usb3: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:39:28,514 DEBUG:	usb usb3: SerialNumber: 0000:68:00.4
2024-12-17 14:39:28,514 DEBUG:	hub 3-0:1.0: USB hub found
2024-12-17 14:39:28,514 DEBUG:	hub 3-0:1.0: 1 port detected
2024-12-17 14:39:28,514 DEBUG:	usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
2024-12-17 14:39:28,514 DEBUG:	usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
2024-12-17 14:39:28,514 DEBUG:	usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:39:28,514 DEBUG:	usb usb4: Product: xHCI Host Controller
2024-12-17 14:39:28,514 DEBUG:	usb usb4: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:39:28,514 DEBUG:	usb usb4: SerialNumber: 0000:68:00.4
2024-12-17 14:39:28,514 DEBUG:	hub 4-0:1.0: USB hub found
2024-12-17 14:39:28,514 DEBUG:	hub 4-0:1.0: 1 port detected
2024-12-17 14:39:28,514 DEBUG:	xhci_hcd 0000:6a:00.3: xHCI Host Controller
2024-12-17 14:39:28,514 DEBUG:	xhci_hcd 0000:6a:00.3: new USB bus registered, assigned bus number 5
2024-12-17 14:39:28,514 DEBUG:	xhci_hcd 0000:6a:00.3: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
2024-12-17 14:39:28,514 DEBUG:	xhci_hcd 0000:6a:00.3: xHCI Host Controller
2024-12-17 14:39:28,514 DEBUG:	xhci_hcd 0000:6a:00.3: new USB bus registered, assigned bus number 6
2024-12-17 14:39:28,514 DEBUG:	xhci_hcd 0000:6a:00.3: Host supports USB 3.1 Enhanced SuperSpeed
2024-12-17 14:39:28,514 DEBUG:	usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
2024-12-17 14:39:28,514 DEBUG:	usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:39:28,515 DEBUG:	usb usb5: Product: xHCI Host Controller
2024-12-17 14:39:28,515 DEBUG:	usb usb5: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:39:28,515 DEBUG:	usb usb5: SerialNumber: 0000:6a:00.3
2024-12-17 14:39:28,515 DEBUG:	hub 5-0:1.0: USB hub found
2024-12-17 14:39:28,515 DEBUG:	hub 5-0:1.0: 1 port detected
2024-12-17 14:39:28,515 DEBUG:	usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
2024-12-17 14:39:28,515 DEBUG:	usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
2024-12-17 14:39:28,515 DEBUG:	usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:39:28,515 DEBUG:	usb usb6: Product: xHCI Host Controller
2024-12-17 14:39:28,515 DEBUG:	usb usb6: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:39:28,515 DEBUG:	usb usb6: SerialNumber: 0000:6a:00.3
2024-12-17 14:39:28,515 DEBUG:	hub 6-0:1.0: USB hub found
2024-12-17 14:39:28,515 DEBUG:	hub 6-0:1.0: 1 port detected
2024-12-17 14:39:28,515 DEBUG:	xhci_hcd 0000:6a:00.4: xHCI Host Controller
2024-12-17 14:39:28,515 DEBUG:	xhci_hcd 0000:6a:00.4: new USB bus registered, assigned bus number 7
2024-12-17 14:39:28,515 DEBUG:	xhci_hcd 0000:6a:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
2024-12-17 14:39:28,515 DEBUG:	xhci_hcd 0000:6a:00.4: xHCI Host Controller
2024-12-17 14:39:28,515 DEBUG:	xhci_hcd 0000:6a:00.4: new USB bus registered, assigned bus number 8
2024-12-17 14:39:28,515 DEBUG:	xhci_hcd 0000:6a:00.4: Host supports USB 3.1 Enhanced SuperSpeed
2024-12-17 14:39:28,515 DEBUG:	usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
2024-12-17 14:39:28,515 DEBUG:	usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:39:28,515 DEBUG:	usb usb7: Product: xHCI Host Controller
2024-12-17 14:39:28,515 DEBUG:	usb usb7: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:39:28,515 DEBUG:	usb usb7: SerialNumber: 0000:6a:00.4
2024-12-17 14:39:28,515 DEBUG:	hub 7-0:1.0: USB hub found
2024-12-17 14:39:28,515 DEBUG:	hub 7-0:1.0: 1 port detected
2024-12-17 14:39:28,515 DEBUG:	usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
2024-12-17 14:39:28,515 DEBUG:	usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
2024-12-17 14:39:28,516 DEBUG:	usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:39:28,516 DEBUG:	usb usb8: Product: xHCI Host Controller
2024-12-17 14:39:28,516 DEBUG:	usb usb8: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:39:28,516 DEBUG:	usb usb8: SerialNumber: 0000:6a:00.4
2024-12-17 14:39:28,516 DEBUG:	hub 8-0:1.0: USB hub found
2024-12-17 14:39:28,516 DEBUG:	hub 8-0:1.0: 1 port detected
2024-12-17 14:39:28,516 DEBUG:	i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
2024-12-17 14:39:28,516 DEBUG:	i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
2024-12-17 14:39:28,516 DEBUG:	serio: i8042 KBD port at 0x60,0x64 irq 1
2024-12-17 14:39:28,516 DEBUG:	mousedev: PS/2 mouse device common for all mice
2024-12-17 14:39:28,516 DEBUG:	rtc_cmos 00:01: RTC can wake from S4
2024-12-17 14:39:28,516 DEBUG:	rtc_cmos 00:01: registered as rtc0
2024-12-17 14:39:28,516 DEBUG:	rtc_cmos 00:01: setting system clock to 2024-12-17T13:38:19 UTC (1734442699)
2024-12-17 14:39:28,516 DEBUG:	rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram
2024-12-17 14:39:28,516 DEBUG:	i2c_dev: i2c /dev entries driver
2024-12-17 14:39:28,516 DEBUG:	device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
2024-12-17 14:39:28,516 DEBUG:	device-mapper: uevent: version 1.0.3
2024-12-17 14:39:28,516 DEBUG:	device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
2024-12-17 14:39:28,516 DEBUG:	platform eisa.0: Probing EISA bus 0
2024-12-17 14:39:28,516 DEBUG:	platform eisa.0: EISA: Cannot allocate resource for mainboard
2024-12-17 14:39:28,516 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 1
2024-12-17 14:39:28,516 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 2
2024-12-17 14:39:28,516 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 3
2024-12-17 14:39:28,516 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 4
2024-12-17 14:39:28,516 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 5
2024-12-17 14:39:28,516 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 6
2024-12-17 14:39:28,516 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 7
2024-12-17 14:39:28,517 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 8
2024-12-17 14:39:28,517 DEBUG:	platform eisa.0: EISA: Detected 0 cards
2024-12-17 14:39:28,517 DEBUG:	[drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
2024-12-17 14:39:28,517 DEBUG:	fbcon: Deferring console take-over
2024-12-17 14:39:28,517 DEBUG:	simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
2024-12-17 14:39:28,517 DEBUG:	drop_monitor: Initializing network drop monitor service
2024-12-17 14:39:28,517 DEBUG:	NET: Registered PF_INET6 protocol family
2024-12-17 14:39:28,517 DEBUG:	Freeing initrd memory: 56684K
2024-12-17 14:39:28,517 DEBUG:	Segment Routing with IPv6
2024-12-17 14:39:28,517 DEBUG:	In-situ OAM (IOAM) with IPv6
2024-12-17 14:39:28,517 DEBUG:	NET: Registered PF_PACKET protocol family
2024-12-17 14:39:28,517 DEBUG:	Key type dns_resolver registered
2024-12-17 14:39:28,517 DEBUG:	microcode: Current revision: 0x0a704103
2024-12-17 14:39:28,517 DEBUG:	resctrl: L3 allocation detected
2024-12-17 14:39:28,517 DEBUG:	resctrl: MB allocation detected
2024-12-17 14:39:28,517 DEBUG:	resctrl: SMBA allocation detected
2024-12-17 14:39:28,517 DEBUG:	resctrl: L3 monitoring detected
2024-12-17 14:39:28,517 DEBUG:	IPI shorthand broadcast: enabled
2024-12-17 14:39:28,517 DEBUG:	sched_clock: Marking stable (794490945, -692810)->(811560493, -17762358)
2024-12-17 14:39:28,517 DEBUG:	registered taskstats version 1
2024-12-17 14:39:28,517 DEBUG:	Loading compiled-in X.509 certificates
2024-12-17 14:39:28,517 DEBUG:	Loaded X.509 cert 'Build time autogenerated kernel key: 85fc91e85a49bfeb107173f508e5679ffd8160d2'
2024-12-17 14:39:28,517 DEBUG:	Demotion targets for Node 0: null
2024-12-17 14:39:28,517 DEBUG:	Key type .fscrypt registered
2024-12-17 14:39:28,517 DEBUG:	Key type fscrypt-provisioning registered
2024-12-17 14:39:28,517 DEBUG:	Key type trusted registered
2024-12-17 14:39:28,517 DEBUG:	cryptd: max_cpu_qlen set to 1000
2024-12-17 14:39:28,517 DEBUG:	AES CTR mode by8 optimization enabled
2024-12-17 14:39:28,518 DEBUG:	Key type encrypted registered
2024-12-17 14:39:28,518 DEBUG:	AppArmor: AppArmor sha256 policy hashing enabled
2024-12-17 14:39:28,518 DEBUG:	integrity: Loading X.509 certificate: UEFI:db
2024-12-17 14:39:28,518 DEBUG:	integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
2024-12-17 14:39:28,518 DEBUG:	integrity: Loading X.509 certificate: UEFI:db
2024-12-17 14:39:28,518 DEBUG:	integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
2024-12-17 14:39:28,518 DEBUG:	Loading compiled-in module X.509 certificates
2024-12-17 14:39:28,518 DEBUG:	Loaded X.509 cert 'Build time autogenerated kernel key: 85fc91e85a49bfeb107173f508e5679ffd8160d2'
2024-12-17 14:39:28,518 DEBUG:	ima: Allocated hash algorithm: sha256
2024-12-17 14:39:28,518 DEBUG:	ima: No architecture policies found
2024-12-17 14:39:28,518 DEBUG:	evm: Initialising EVM extended attributes:
2024-12-17 14:39:28,518 DEBUG:	evm: security.selinux
2024-12-17 14:39:28,518 DEBUG:	evm: security.SMACK64
2024-12-17 14:39:28,518 DEBUG:	evm: security.SMACK64EXEC
2024-12-17 14:39:28,518 DEBUG:	evm: security.SMACK64TRANSMUTE
2024-12-17 14:39:28,518 DEBUG:	evm: security.SMACK64MMAP
2024-12-17 14:39:28,518 DEBUG:	evm: security.apparmor
2024-12-17 14:39:28,518 DEBUG:	evm: security.ima
2024-12-17 14:39:28,518 DEBUG:	evm: security.capability
2024-12-17 14:39:28,518 DEBUG:	evm: HMAC attrs: 0x1
2024-12-17 14:39:28,518 DEBUG:	PM:   Magic number: 4:275:635
2024-12-17 14:39:28,518 DEBUG:	RAS: Correctable Errors collector initialized.
2024-12-17 14:39:28,518 DEBUG:	clk: Disabling unused clocks
2024-12-17 14:39:28,518 DEBUG:	PM: genpd: Disabling unused power domains
2024-12-17 14:39:28,518 DEBUG:	Freeing unused decrypted memory: 2028K
2024-12-17 14:39:28,518 DEBUG:	Freeing unused kernel image (initmem) memory: 5092K
2024-12-17 14:39:28,518 DEBUG:	Write protecting the kernel read-only data: 32768k
2024-12-17 14:39:28,518 DEBUG:	Freeing unused kernel image (rodata/data gap) memory: 1820K
2024-12-17 14:39:28,519 DEBUG:	x86/mm: Checked W+X mappings: passed, no W+X pages found.
2024-12-17 14:39:28,519 DEBUG:	Run /init as init process
2024-12-17 14:39:28,519 DEBUG:	  with arguments:
2024-12-17 14:39:28,519 DEBUG:	    /init
2024-12-17 14:39:28,519 DEBUG:	    splash
2024-12-17 14:39:28,519 DEBUG:	  with environment:
2024-12-17 14:39:28,519 DEBUG:	    HOME=/
2024-12-17 14:39:28,519 DEBUG:	    TERM=linux
2024-12-17 14:39:28,519 DEBUG:	    BOOT_IMAGE=/boot/vmlinuz-6.13.0-rc3
2024-12-17 14:39:28,519 DEBUG:	atkbd serio0: Failed to deactivate keyboard on isa0060/serio0
2024-12-17 14:39:28,519 DEBUG:	usb 3-1: new high-speed USB device number 2 using xhci_hcd
2024-12-17 14:39:28,519 DEBUG:	usb 1-2: new low-speed USB device number 2 using xhci_hcd
2024-12-17 14:39:28,519 DEBUG:	hid: raw HID events driver (C) Jiri Kosina
2024-12-17 14:39:28,519 DEBUG:	wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WMBB method block execution control method not found
2024-12-17 14:39:28,519 DEBUG:	ACPI: bus type thunderbolt registered
2024-12-17 14:39:28,519 DEBUG:	usb 1-2: New USB device found, idVendor=046d, idProduct=c016, bcdDevice= 3.40
2024-12-17 14:39:28,519 DEBUG:	usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
2024-12-17 14:39:28,519 DEBUG:	usb 1-2: Product: Optical USB Mouse
2024-12-17 14:39:28,519 DEBUG:	usb 1-2: Manufacturer: Logitech
2024-12-17 14:39:28,519 DEBUG:	usb 3-1: New USB device found, idVendor=0c45, idProduct=6362, bcdDevice= 1.01
2024-12-17 14:39:28,519 DEBUG:	usb 3-1: New USB device strings: Mfr=2, Product=1, SerialNumber=3
2024-12-17 14:39:28,519 DEBUG:	usb 3-1: Product: Integrated Camera
2024-12-17 14:39:28,519 DEBUG:	usb 3-1: Manufacturer: Sonix Technology Co., Ltd.
2024-12-17 14:39:28,519 DEBUG:	usb 3-1: SerialNumber: SN0001
2024-12-17 14:39:28,519 DEBUG:	ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
2024-12-17 14:39:28,519 DEBUG:	input: PNP0C50:0b 0911:5288 Mouse as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0b/0018:0911:5288.0001/input/input3
2024-12-17 14:39:28,519 DEBUG:	input: PNP0C50:0b 0911:5288 Touchpad as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0b/0018:0911:5288.0001/input/input4
2024-12-17 14:39:28,520 DEBUG:	input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:25/LNXVIDEO:00/input/input5
2024-12-17 14:39:28,520 DEBUG:	hid-generic 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [PNP0C50:0b 0911:5288] on i2c-PNP0C50:0b
2024-12-17 14:39:28,520 DEBUG:	nvme 0000:07:00.0: platform quirk: setting simple suspend
2024-12-17 14:39:28,520 DEBUG:	nvme nvme0: pci function 0000:07:00.0
2024-12-17 14:39:28,520 DEBUG:	r8169 0000:04:00.0 eth0: RTL8168h/8111h, 50:a1:32:23:65:65, XID 541, IRQ 72
2024-12-17 14:39:28,520 DEBUG:	r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
2024-12-17 14:39:28,520 DEBUG:	nvme nvme0: missing or invalid SUBNQN field.
2024-12-17 14:39:28,520 DEBUG:	nvme nvme0: D3 entry latency set to 8 seconds
2024-12-17 14:39:28,520 DEBUG:	usb 1-3: new full-speed USB device number 3 using xhci_hcd
2024-12-17 14:39:28,520 DEBUG:	nvme nvme0: 16/0/0 default/read/poll queues
2024-12-17 14:39:28,520 DEBUG:	 nvme0n1: p1 p2 p3 p4 p5 p6 p7
2024-12-17 14:39:28,520 DEBUG:	r8169 0000:04:00.0 enp4s0: renamed from eth0
2024-12-17 14:39:28,520 DEBUG:	input: PNP0C50:0b 0911:5288 Mouse as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0b/0018:0911:5288.0001/input/input6
2024-12-17 14:39:28,520 DEBUG:	input: PNP0C50:0b 0911:5288 Touchpad as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0b/0018:0911:5288.0001/input/input7
2024-12-17 14:39:28,520 DEBUG:	hid-multitouch 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [PNP0C50:0b 0911:5288] on i2c-PNP0C50:0b
2024-12-17 14:39:28,520 DEBUG:	atkbd serio0: Failed to enable keyboard on isa0060/serio0
2024-12-17 14:39:28,520 DEBUG:	input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
2024-12-17 14:39:28,520 DEBUG:	usb 1-3: New USB device found, idVendor=27c6, idProduct=60c2, bcdDevice= 1.00
2024-12-17 14:39:28,520 DEBUG:	usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
2024-12-17 14:39:28,520 DEBUG:	usb 1-3: Product: Goodix USB2.0 MISC
2024-12-17 14:39:28,520 DEBUG:	usb 1-3: Manufacturer: Goodix Technology Co., Ltd.
2024-12-17 14:39:28,520 DEBUG:	usb 1-3: SerialNumber: UIDBBCCDF58_XXXX_MOC_B0
2024-12-17 14:39:28,520 DEBUG:	usb 1-4: new full-speed USB device number 4 using xhci_hcd
2024-12-17 14:39:28,520 DEBUG:	usb 1-4: New USB device found, idVendor=048d, idProduct=8910, bcdDevice=24.29
2024-12-17 14:39:28,520 DEBUG:	usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
2024-12-17 14:39:28,520 DEBUG:	usb 1-4: Product: ITE Device
2024-12-17 14:39:28,520 DEBUG:	usb 1-4: Manufacturer: ITE Tech. Inc.
2024-12-17 14:39:28,521 DEBUG:	tsc: Refined TSC clocksource calibration: 3992.499 MHz
2024-12-17 14:39:28,521 DEBUG:	clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x73195d51b0d, max_idle_ns: 881590506186 ns
2024-12-17 14:39:28,521 DEBUG:	clocksource: Switched to clocksource tsc
2024-12-17 14:39:28,521 DEBUG:	usb 1-5: new full-speed USB device number 5 using xhci_hcd
2024-12-17 14:39:28,521 DEBUG:	usb 1-5: New USB device found, idVendor=8087, idProduct=0032, bcdDevice= 0.00
2024-12-17 14:39:28,521 DEBUG:	usb 1-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
2024-12-17 14:39:28,521 DEBUG:	input: Logitech Optical USB Mouse as /devices/pci0000:00/0000:00:08.1/0000:68:00.3/usb1/1-2/1-2:1.0/0003:046D:C016.0002/input/input8
2024-12-17 14:39:28,521 DEBUG:	hid-generic 0003:046D:C016.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:68:00.3-2/input0
2024-12-17 14:39:28,521 DEBUG:	input: ITE Tech. Inc. ITE Device Keyboard as /devices/pci0000:00/0000:00:08.1/0000:68:00.3/usb1/1-4/1-4:1.0/0003:048D:8910.0003/input/input9
2024-12-17 14:39:28,521 DEBUG:	input: ITE Tech. Inc. ITE Device Wireless Radio Control as /devices/pci0000:00/0000:00:08.1/0000:68:00.3/usb1/1-4/1-4:1.0/0003:048D:8910.0003/input/input10
2024-12-17 14:39:28,521 DEBUG:	hid-generic 0003:048D:8910.0003: input,hiddev0,hidraw2: USB HID v1.10 Keyboard [ITE Tech. Inc. ITE Device] on usb-0000:68:00.3-4/input0
2024-12-17 14:39:28,521 DEBUG:	usbcore: registered new interface driver usbhid
2024-12-17 14:39:28,521 DEBUG:	usbhid: USB HID core driver
2024-12-17 14:39:28,521 DEBUG:	EXT4-fs (nvme0n1p7): mounted filesystem ce3cb892-12dc-4d50-8a6d-0c5bb2df1de7 ro with ordered data mode. Quota mode: none.
2024-12-17 14:39:28,521 DEBUG:	Inserted module 'autofs4'
2024-12-17 14:39:28,521 DEBUG:	systemd 255.4-1ubuntu8.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
2024-12-17 14:39:28,521 DEBUG:	Detected architecture x86-64.
2024-12-17 14:39:28,521 DEBUG:	Hostname set to <tuxedo-os>.
2024-12-17 14:39:28,521 DEBUG:	Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
2024-12-17 14:39:28,521 DEBUG:	Configuration file /etc/systemd/system/dualboot.service is marked executable. Please remove executable permission bits. Proceeding anyway.
2024-12-17 14:39:28,521 DEBUG:	Queued start job for default target graphical.target.
2024-12-17 14:39:28,521 DEBUG:	Created slice system-modprobe.slice - Slice /system/modprobe.
2024-12-17 14:39:28,521 DEBUG:	Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
2024-12-17 14:39:28,521 DEBUG:	Created slice user.slice - User and Session Slice.
2024-12-17 14:39:28,521 DEBUG:	Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
2024-12-17 14:39:28,521 DEBUG:	Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
2024-12-17 14:39:28,521 DEBUG:	Expecting device dev-disk-by\x2duuid-5DE1\x2d7D98.device - /dev/disk/by-uuid/5DE1-7D98...
2024-12-17 14:39:28,521 DEBUG:	Expecting device dev-disk-by\x2duuid-673ca5e2\x2d4877\x2d4932\x2d9d92\x2d10a67f87218c.device - /dev/disk/by-uuid/673ca5e2-4877-4932-9d92-10a67f87218c...
2024-12-17 14:39:28,522 DEBUG:	Reached target integritysetup.target - Local Integrity Protected Volumes.
2024-12-17 14:39:28,522 DEBUG:	Reached target nss-user-lookup.target - User and Group Name Lookups.
2024-12-17 14:39:28,522 DEBUG:	Reached target remote-fs.target - Remote File Systems.
2024-12-17 14:39:28,522 DEBUG:	Reached target slices.target - Slice Units.
2024-12-17 14:39:28,522 DEBUG:	Reached target veritysetup.target - Local Verity Protected Volumes.
2024-12-17 14:39:28,522 DEBUG:	Listening on syslog.socket - Syslog Socket.
2024-12-17 14:39:28,522 DEBUG:	Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
2024-12-17 14:39:28,522 DEBUG:	Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
2024-12-17 14:39:28,522 DEBUG:	Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
2024-12-17 14:39:28,522 DEBUG:	Listening on systemd-journald.socket - Journal Socket.
2024-12-17 14:39:28,522 DEBUG:	systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
2024-12-17 14:39:28,522 DEBUG:	Listening on systemd-udevd-control.socket - udev Control Socket.
2024-12-17 14:39:28,522 DEBUG:	Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
2024-12-17 14:39:28,522 DEBUG:	Mounting dev-hugepages.mount - Huge Pages File System...
2024-12-17 14:39:28,522 DEBUG:	Mounting dev-mqueue.mount - POSIX Message Queue File System...
2024-12-17 14:39:28,522 DEBUG:	Mounting sys-kernel-debug.mount - Kernel Debug File System...
2024-12-17 14:39:28,522 DEBUG:	Mounting sys-kernel-tracing.mount - Kernel Trace File System...
2024-12-17 14:39:28,522 DEBUG:	Starting systemd-journald.service - Journal Service...
2024-12-17 14:39:28,522 DEBUG:	Starting keyboard-setup.service - Set the console keyboard layout...
2024-12-17 14:39:28,522 DEBUG:	Starting kmod-static-nodes.service - Create List of Static Device Nodes...
2024-12-17 14:39:28,522 DEBUG:	Starting modprobe@configfs.service - Load Kernel Module configfs...
2024-12-17 14:39:28,522 DEBUG:	Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
2024-12-17 14:39:28,522 DEBUG:	Starting modprobe@drm.service - Load Kernel Module drm...
2024-12-17 14:39:28,522 DEBUG:	Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
2024-12-17 14:39:28,522 DEBUG:	Starting modprobe@fuse.service - Load Kernel Module fuse...
2024-12-17 14:39:28,522 DEBUG:	Starting modprobe@loop.service - Load Kernel Module loop...
2024-12-17 14:39:28,522 DEBUG:	Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
2024-12-17 14:39:28,523 DEBUG:	systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
2024-12-17 14:39:28,523 DEBUG:	Starting systemd-modules-load.service - Load Kernel Modules...
2024-12-17 14:39:28,523 DEBUG:	systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
2024-12-17 14:39:28,523 DEBUG:	Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
2024-12-17 14:39:28,523 DEBUG:	systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
2024-12-17 14:39:28,523 DEBUG:	Starting systemd-udev-trigger.service - Coldplug All udev Devices...
2024-12-17 14:39:28,523 DEBUG:	pstore: Using crash dump compression: deflate
2024-12-17 14:39:28,523 DEBUG:	Collecting audit messages is disabled.
2024-12-17 14:39:28,523 DEBUG:	Mounted dev-hugepages.mount - Huge Pages File System.
2024-12-17 14:39:28,523 DEBUG:	Mounted dev-mqueue.mount - POSIX Message Queue File System.
2024-12-17 14:39:28,523 DEBUG:	Mounted sys-kernel-debug.mount - Kernel Debug File System.
2024-12-17 14:39:28,523 DEBUG:	Mounted sys-kernel-tracing.mount - Kernel Trace File System.
2024-12-17 14:39:28,523 DEBUG:	pstore: Registered efi_pstore as persistent store backend
2024-12-17 14:39:28,523 DEBUG:	Finished kmod-static-nodes.service - Create List of Static Device Nodes.
2024-12-17 14:39:28,523 DEBUG:	modprobe@configfs.service: Deactivated successfully.
2024-12-17 14:39:28,523 DEBUG:	Finished modprobe@configfs.service - Load Kernel Module configfs.
2024-12-17 14:39:28,523 DEBUG:	modprobe@dm_mod.service: Deactivated successfully.
2024-12-17 14:39:28,523 DEBUG:	Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
2024-12-17 14:39:28,523 DEBUG:	modprobe@drm.service: Deactivated successfully.
2024-12-17 14:39:28,523 DEBUG:	Finished modprobe@drm.service - Load Kernel Module drm.
2024-12-17 14:39:28,523 DEBUG:	modprobe@efi_pstore.service: Deactivated successfully.
2024-12-17 14:39:28,523 DEBUG:	Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
2024-12-17 14:39:28,523 DEBUG:	Key type psk registered
2024-12-17 14:39:28,523 DEBUG:	modprobe@fuse.service: Deactivated successfully.
2024-12-17 14:39:28,523 DEBUG:	Finished modprobe@fuse.service - Load Kernel Module fuse.
2024-12-17 14:39:28,523 DEBUG:	modprobe@loop.service: Deactivated successfully.
2024-12-17 14:39:28,523 DEBUG:	Finished modprobe@loop.service - Load Kernel Module loop.
2024-12-17 14:39:28,523 DEBUG:	Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
2024-12-17 14:39:28,524 DEBUG:	Mounting sys-kernel-config.mount - Kernel Configuration File System...
2024-12-17 14:39:28,524 DEBUG:	systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
2024-12-17 14:39:28,524 DEBUG:	Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
2024-12-17 14:39:28,524 DEBUG:	modprobe@nvme_fabrics.service: Deactivated successfully.
2024-12-17 14:39:28,524 DEBUG:	Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
2024-12-17 14:39:28,524 DEBUG:	Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
2024-12-17 14:39:28,524 DEBUG:	Mounted sys-kernel-config.mount - Kernel Configuration File System.
2024-12-17 14:39:28,524 DEBUG:	lp: driver loaded but no devices found
2024-12-17 14:39:28,524 DEBUG:	ppdev: user-space parallel port driver
2024-12-17 14:39:28,524 DEBUG:	Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
2024-12-17 14:39:28,524 DEBUG:	Finished systemd-modules-load.service - Load Kernel Modules.
2024-12-17 14:39:28,524 DEBUG:	EXT4-fs (nvme0n1p7): re-mounted ce3cb892-12dc-4d50-8a6d-0c5bb2df1de7 r/w. Quota mode: none.
2024-12-17 14:39:28,524 DEBUG:	Starting systemd-sysctl.service - Apply Kernel Variables...
2024-12-17 14:39:28,524 DEBUG:	Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
2024-12-17 14:39:28,524 DEBUG:	Finished keyboard-setup.service - Set the console keyboard layout.
2024-12-17 14:39:28,524 DEBUG:	systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
2024-12-17 14:39:28,524 DEBUG:	systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
2024-12-17 14:39:28,524 DEBUG:	Starting systemd-random-seed.service - Load/Save OS Random Seed...
2024-12-17 14:39:28,524 DEBUG:	systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
2024-12-17 14:39:28,524 DEBUG:	Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
2024-12-17 14:39:28,524 DEBUG:	systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
2024-12-17 14:39:28,524 DEBUG:	Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
2024-12-17 14:39:28,524 DEBUG:	Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
2024-12-17 14:39:28,524 DEBUG:	Finished systemd-sysctl.service - Apply Kernel Variables.
2024-12-17 14:39:28,524 DEBUG:	Finished systemd-random-seed.service - Load/Save OS Random Seed.
2024-12-17 14:39:28,524 DEBUG:	Started systemd-journald.service - Journal Service.
2024-12-17 14:39:28,524 DEBUG:	Received client request to flush runtime journal.
2024-12-17 14:39:28,525 DEBUG:	/var/log/journal/b54d92d5b40cb1a2071fa809674ee5f6/system.journal: Journal file uses a different sequence number ID, rotating.
2024-12-17 14:39:28,525 DEBUG:	Rotating system journal.
2024-12-17 14:39:28,525 DEBUG:	tuxi_acpi: loading out-of-tree module taints kernel.
2024-12-17 14:39:28,525 DEBUG:	tuxi_acpi: module verification failed: signature and/or required key missing - tainting kernel
2024-12-17 14:39:28,525 DEBUG:	tuxi_acpi: interface initialized
2024-12-17 14:39:28,525 DEBUG:	piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
2024-12-17 14:39:28,525 DEBUG:	piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
2024-12-17 14:39:28,525 DEBUG:	i2c i2c-1: Successfully instantiated SPD at 0x50
2024-12-17 14:39:28,525 DEBUG:	i2c i2c-1: Successfully instantiated SPD at 0x51
2024-12-17 14:39:28,525 DEBUG:	piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
2024-12-17 14:39:28,525 DEBUG:	ccp 0000:68:00.2: enabling device (0000 -> 0002)
2024-12-17 14:39:28,525 DEBUG:	ccp 0000:68:00.2: tee enabled
2024-12-17 14:39:28,525 DEBUG:	ccp 0000:68:00.2: psp enabled
2024-12-17 14:39:28,525 DEBUG:	amd-tee driver initialization successful
2024-12-17 14:39:28,525 DEBUG:	spd5118 1-0050: DDR5 temperature sensor: vendor 0x00:0xb3 revision 2.2
2024-12-17 14:39:28,525 DEBUG:	spd5118 1-0051: DDR5 temperature sensor: vendor 0x00:0xb3 revision 2.2
2024-12-17 14:39:28,525 DEBUG:	Adding 8191996k swap on /dev/nvme0n1p6.  Priority:-2 extents:1 across:8191996k SS
2024-12-17 14:39:28,525 DEBUG:	amd-pmf AMDI0102:00: registered PMF device successfully
2024-12-17 14:39:28,525 DEBUG:	cfg80211: Loading compiled-in X.509 certificates for regulatory database
2024-12-17 14:39:28,525 DEBUG:	Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
2024-12-17 14:39:28,525 DEBUG:	Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
2024-12-17 14:39:28,525 DEBUG:	mc: Linux media interface: v0.10
2024-12-17 14:39:28,525 DEBUG:	Bluetooth: Core ver 2.22
2024-12-17 14:39:28,525 DEBUG:	RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
2024-12-17 14:39:28,525 DEBUG:	RAPL PMU: hw unit of domain package 2^-16 Joules
2024-12-17 14:39:28,525 DEBUG:	input: TUXEDO Keyboard Events as /devices/virtual/input/input11
2024-12-17 14:39:28,525 DEBUG:	videodev: Linux video capture interface: v2.00
2024-12-17 14:39:28,526 DEBUG:	Intel(R) Wireless WiFi driver for Linux
2024-12-17 14:39:28,526 DEBUG:	iwlwifi 0000:05:00.0: enabling device (0000 -> 0002)
2024-12-17 14:39:28,526 DEBUG:	NET: Registered PF_BLUETOOTH protocol family
2024-12-17 14:39:28,526 DEBUG:	Bluetooth: HCI device and connection manager initialized
2024-12-17 14:39:28,526 DEBUG:	Bluetooth: HCI socket layer initialized
2024-12-17 14:39:28,526 DEBUG:	Bluetooth: L2CAP socket layer initialized
2024-12-17 14:39:28,526 DEBUG:	Bluetooth: SCO socket layer initialized
2024-12-17 14:39:28,526 DEBUG:	kvm_amd: TSC scaling supported
2024-12-17 14:39:28,526 DEBUG:	kvm_amd: Nested Virtualization enabled
2024-12-17 14:39:28,526 DEBUG:	kvm_amd: Nested Paging enabled
2024-12-17 14:39:28,526 DEBUG:	kvm_amd: LBR virtualization supported
2024-12-17 14:39:28,526 DEBUG:	kvm_amd: Virtual GIF supported
2024-12-17 14:39:28,526 DEBUG:	kvm_amd: Virtual NMI enabled
2024-12-17 14:39:28,526 DEBUG:	usb 3-1: Found UVC 1.00 device Integrated Camera (0c45:6362)
2024-12-17 14:39:28,526 DEBUG:	audit: type=1400 audit(1734442701.468:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="devhelp" pid=724 comm="apparmor_parser"
2024-12-17 14:39:28,526 DEBUG:	audit: type=1400 audit(1734442701.468:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=712 comm="apparmor_parser"
2024-12-17 14:39:28,526 DEBUG:	audit: type=1400 audit(1734442701.468:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="element-desktop" pid=725 comm="apparmor_parser"
2024-12-17 14:39:28,526 DEBUG:	audit: type=1400 audit(1734442701.468:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chrome" pid=720 comm="apparmor_parser"
2024-12-17 14:39:28,526 DEBUG:	audit: type=1400 audit(1734442701.468:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=708 comm="apparmor_parser"
2024-12-17 14:39:28,526 DEBUG:	audit: type=1400 audit(1734442701.468:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=721 comm="apparmor_parser"
2024-12-17 14:39:28,526 DEBUG:	audit: type=1400 audit(1734442701.468:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=715 comm="apparmor_parser"
2024-12-17 14:39:28,526 DEBUG:	audit: type=1400 audit(1734442701.468:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=713 comm="apparmor_parser"
2024-12-17 14:39:28,526 DEBUG:	audit: type=1400 audit(1734442701.468:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=719 comm="apparmor_parser"
2024-12-17 14:39:28,526 DEBUG:	usbcore: registered new interface driver btusb
2024-12-17 14:39:28,526 DEBUG:	usbcore: registered new interface driver uvcvideo
2024-12-17 14:39:28,526 DEBUG:	Bluetooth: hci0: Device revision is 0
2024-12-17 14:39:28,526 DEBUG:	Bluetooth: hci0: Secure boot is enabled
2024-12-17 14:39:28,526 DEBUG:	Bluetooth: hci0: OTP lock is enabled
2024-12-17 14:39:28,527 DEBUG:	Bluetooth: hci0: API lock is enabled
2024-12-17 14:39:28,527 DEBUG:	Bluetooth: hci0: Debug lock is disabled
2024-12-17 14:39:28,527 DEBUG:	Bluetooth: hci0: Minimum firmware build 1 week 10 2014
2024-12-17 14:39:28,527 DEBUG:	Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
2024-12-17 14:39:28,527 DEBUG:	MCE: In-kernel MCE decoding enabled.
2024-12-17 14:39:28,527 DEBUG:	snd_pci_ps 0000:68:00.5: enabling device (0000 -> 0002)
2024-12-17 14:39:28,527 DEBUG:	amd_atl: AMD Address Translation Library initialized
2024-12-17 14:39:28,527 DEBUG:	intel_rapl_common: Found RAPL domain package
2024-12-17 14:39:28,527 DEBUG:	intel_rapl_common: Found RAPL domain core
2024-12-17 14:39:28,527 DEBUG:	Bluetooth: hci0: No support for _PRR ACPI method
2024-12-17 14:39:28,527 DEBUG:	snd_hda_intel 0000:03:00.1: enabling device (0000 -> 0002)
2024-12-17 14:39:28,527 DEBUG:	Bluetooth: hci0: Found device firmware: intel/ibt-0041-0041.sfi
2024-12-17 14:39:28,527 DEBUG:	Bluetooth: hci0: Boot Address: 0x100800
2024-12-17 14:39:28,527 DEBUG:	Bluetooth: hci0: Firmware Version: 60-48.23
2024-12-17 14:39:28,527 DEBUG:	snd_hda_intel 0000:03:00.1: Handle vga_switcheroo audio client
2024-12-17 14:39:28,527 DEBUG:	snd_hda_intel 0000:03:00.1: Force to non-snoop mode
2024-12-17 14:39:28,527 DEBUG:	snd_hda_intel 0000:68:00.1: enabling device (0000 -> 0002)
2024-12-17 14:39:28,527 DEBUG:	snd_hda_intel 0000:68:00.1: Handle vga_switcheroo audio client
2024-12-17 14:39:28,527 DEBUG:	snd_hda_intel 0000:68:00.6: enabling device (0000 -> 0002)
2024-12-17 14:39:28,527 DEBUG:	iwlwifi 0000:05:00.0: Detected crf-id 0x400410, cnv-id 0x400410 wfpm id 0x80000000
2024-12-17 14:39:28,527 DEBUG:	iwlwifi 0000:05:00.0: PCI dev 2725/0024, rev=0x420, rfid=0x10d000
2024-12-17 14:39:28,527 DEBUG:	iwlwifi 0000:05:00.0: Detected Intel(R) Wi-Fi 6 AX210 160MHz
2024-12-17 14:39:28,527 DEBUG:	iwlwifi 0000:05:00.0: Direct firmware load for iwlwifi-ty-a0-gf-a0-89.ucode failed with error -2
2024-12-17 14:39:28,527 DEBUG:	iwlwifi 0000:05:00.0: Direct firmware load for iwlwifi-ty-a0-gf-a0-88.ucode failed with error -2
2024-12-17 14:39:28,527 DEBUG:	iwlwifi 0000:05:00.0: Direct firmware load for iwlwifi-ty-a0-gf-a0-87.ucode failed with error -2
2024-12-17 14:39:28,527 DEBUG:	iwlwifi 0000:05:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
2024-12-17 14:39:28,527 DEBUG:	iwlwifi 0000:05:00.0: loaded firmware version 86.fb5c9aeb.0 ty-a0-gf-a0-86.ucode op_mode iwlmvm
2024-12-17 14:39:28,528 DEBUG:	[drm] amdgpu kernel modesetting enabled.
2024-12-17 14:39:28,528 DEBUG:	amdgpu: vga_switcheroo: detected switching method \_SB_.PCI0.GP17.VGA_.ATPX handle
2024-12-17 14:39:28,528 DEBUG:	amdgpu: ATPX version 1, functions 0x00000201
2024-12-17 14:39:28,528 DEBUG:	amdgpu: ATPX Hybrid Graphics
2024-12-17 14:39:28,528 DEBUG:	snd_hda_codec_conexant hdaudioC2D0: CX11970: BIOS auto-probing.
2024-12-17 14:39:28,528 DEBUG:	input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input12
2024-12-17 14:39:28,528 DEBUG:	input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:68:00.1/sound/card1/input16
2024-12-17 14:39:28,528 DEBUG:	input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input13
2024-12-17 14:39:28,528 DEBUG:	snd_hda_codec_conexant hdaudioC2D0: CX11970: picked fixup  for codec SSID 2782:12c3
2024-12-17 14:39:28,528 DEBUG:	input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input14
2024-12-17 14:39:28,528 DEBUG:	snd_hda_codec_conexant hdaudioC2D0: autoconfig for CX11970: line_outs=2 (0x17/0x1d/0x0/0x0/0x0) type:speaker
2024-12-17 14:39:28,528 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
2024-12-17 14:39:28,528 DEBUG:	input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input15
2024-12-17 14:39:28,528 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:    hp_outs=1 (0x16/0x0/0x0/0x0/0x0)
2024-12-17 14:39:28,528 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:    mono: mono_out=0x0
2024-12-17 14:39:28,528 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:    inputs:
2024-12-17 14:39:28,528 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:      Mic=0x19
2024-12-17 14:39:28,528 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:      Mic=0x18
2024-12-17 14:39:28,528 DEBUG:	amdgpu: Virtual CRAT table created for CPU
2024-12-17 14:39:28,528 DEBUG:	amdgpu: Topology: Add CPU node
2024-12-17 14:39:28,528 DEBUG:	amdgpu 0000:03:00.0: enabling device (0006 -> 0007)
2024-12-17 14:39:28,528 DEBUG:	[drm] initializing kernel modesetting (IP DISCOVERY 0x1002:0x7480 0x2782:0x12C3 0xC7).
2024-12-17 14:39:28,528 DEBUG:	input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:68:00.6/sound/card2/input17
2024-12-17 14:39:28,528 DEBUG:	input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:68:00.6/sound/card2/input18
2024-12-17 14:39:28,528 DEBUG:	input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:68:00.6/sound/card2/input19
2024-12-17 14:39:28,528 DEBUG:	[drm] register mmio base: 0xDC900000
2024-12-17 14:39:28,528 DEBUG:	[drm] register mmio size: 1048576
2024-12-17 14:39:28,528 DEBUG:	[drm] add ip block number 0 <soc21_common>
2024-12-17 14:39:28,529 DEBUG:	[drm] add ip block number 1 <gmc_v11_0>
2024-12-17 14:39:28,529 DEBUG:	[drm] add ip block number 2 <ih_v6_0>
2024-12-17 14:39:28,529 DEBUG:	[drm] add ip block number 3 <psp>
2024-12-17 14:39:28,529 DEBUG:	[drm] add ip block number 4 <smu>
2024-12-17 14:39:28,529 DEBUG:	[drm] add ip block number 5 <dm>
2024-12-17 14:39:28,529 DEBUG:	[drm] add ip block number 6 <gfx_v11_0>
2024-12-17 14:39:28,529 DEBUG:	[drm] add ip block number 7 <sdma_v6_0>
2024-12-17 14:39:28,529 DEBUG:	[drm] add ip block number 8 <vcn_v4_0>
2024-12-17 14:39:28,529 DEBUG:	[drm] add ip block number 9 <jpeg_v4_0>
2024-12-17 14:39:28,529 DEBUG:	[drm] add ip block number 10 <mes_v11_0>
2024-12-17 14:39:28,529 DEBUG:	amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from ATRM
2024-12-17 14:39:28,529 DEBUG:	amdgpu: ATOM BIOS: 113-BRT118083.001
2024-12-17 14:39:28,529 DEBUG:	amdgpu 0000:03:00.0: amdgpu: CP RS64 enable
2024-12-17 14:39:28,529 DEBUG:	amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
2024-12-17 14:39:28,529 DEBUG:	[drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
2024-12-17 14:39:28,529 DEBUG:	amdgpu 0000:03:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
2024-12-17 14:39:28,529 DEBUG:	amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x00007FFF00000000 - 0x00007FFF1FFFFFFF
2024-12-17 14:39:28,529 DEBUG:	[drm] Detected VRAM RAM=8176M, BAR=8192M
2024-12-17 14:39:28,529 DEBUG:	[drm] RAM width 128bits GDDR6
2024-12-17 14:39:28,529 DEBUG:	[drm] amdgpu: 8176M of VRAM memory ready
2024-12-17 14:39:28,529 DEBUG:	[drm] amdgpu: 7605M of GTT memory ready.
2024-12-17 14:39:28,529 DEBUG:	[drm] GART: num cpu pages 131072, num gpu pages 131072
2024-12-17 14:39:28,529 DEBUG:	[drm] PCIE GART of 512M enabled (table at 0x00000081FEB00000).
2024-12-17 14:39:28,529 DEBUG:	[drm] Loading DMUB firmware via PSP: version=0x07002800
2024-12-17 14:39:28,529 DEBUG:	[drm] Found VCN firmware Version ENC: 1.19 DEC: 7 VEP: 0 Revision: 0
2024-12-17 14:39:28,529 DEBUG:	iwlwifi 0000:05:00.0: WFPM_UMAC_PD_NOTIFICATION: 0x20
2024-12-17 14:39:28,529 DEBUG:	iwlwifi 0000:05:00.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
2024-12-17 14:39:28,530 DEBUG:	iwlwifi 0000:05:00.0: WFPM_AUTH_KEY_0: 0x90
2024-12-17 14:39:28,530 DEBUG:	iwlwifi 0000:05:00.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
2024-12-17 14:39:28,530 DEBUG:	iwlwifi 0000:05:00.0: loaded PNVM version e28bb9d7
2024-12-17 14:39:28,530 DEBUG:	amdgpu 0000:03:00.0: amdgpu: reserve 0x1300000 from 0x81fc000000 for PSP TMR
2024-12-17 14:39:28,530 DEBUG:	iwlwifi 0000:05:00.0: Detected RF GF, rfid=0x10d000
2024-12-17 14:39:28,530 DEBUG:	iwlwifi 0000:05:00.0: base HW address: 00:93:37:95:6f:a5
2024-12-17 14:39:28,530 DEBUG:	amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
2024-12-17 14:39:28,530 DEBUG:	amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
2024-12-17 14:39:28,530 DEBUG:	amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
2024-12-17 14:39:28,530 DEBUG:	amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x00000035, smu fw if version = 0x00000040, smu fw program = 0, smu fw version = 0x00525800 (82.88.0)
2024-12-17 14:39:28,530 DEBUG:	amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
2024-12-17 14:39:28,530 DEBUG:	iwlwifi 0000:05:00.0 wlp5s0: renamed from wlan0
2024-12-17 14:39:28,530 DEBUG:	Bluetooth: hci0: Waiting for firmware download to complete
2024-12-17 14:39:28,530 DEBUG:	Bluetooth: hci0: Firmware loaded in 1179382 usecs
2024-12-17 14:39:28,530 DEBUG:	Bluetooth: hci0: Waiting for device to boot
2024-12-17 14:39:28,530 DEBUG:	amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
2024-12-17 14:39:28,530 DEBUG:	amdgpu 0000:03:00.0: [drm] Unsupported pwrseq engine id: 4!
2024-12-17 14:39:28,530 DEBUG:	------------[ cut here ]------------
2024-12-17 14:39:28,530 DEBUG:	WARNING: CPU: 3 PID: 494 at drivers/gpu/drm/amd/amdgpu/../display/dc/dcn31/dcn31_panel_cntl.c:186 dcn31_panel_cntl_construct+0x8c/0xa0 [amdgpu]
2024-12-17 14:39:28,530 DEBUG:	Modules linked in: iwlmvm snd_soc_dmic snd_soc_ps_mach snd_ps_pdm_dma snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp mac80211 snd_sof snd_hda_codec_conexant snd_sof_utils snd_hda_codec_generic libarc4 snd_hda_codec_hdmi intel_rapl_msr amd_atl intel_rapl_common amdgpu(+) snd_pci_ps snd_soc_acpi_amd_match snd_amd_sdw_acpi soundwire_amd soundwire_generic_allocation snd_hda_intel soundwire_bus snd_intel_dspcfg snd_intel_sdw_acpi snd_soc_sdca edac_mce_amd snd_hda_codec binfmt_misc amdxcp snd_soc_core drm_exec snd_hda_core gpu_sched snd_hwdep btusb drm_buddy snd_compress uvcvideo btrtl drm_ttm_helper snd_seq_midi ac97_bus kvm_amd btintel videobuf2_vmalloc snd_seq_midi_event snd_pcm_dmaengine ttm uvc btbcm videobuf2_memops snd_rpl_pci_acp6x videobuf2_v4l2 btmtk drm_suballoc_helper snd_rawmidi snd_acp_pci videobuf2_common kvm snd_acp_legacy_common drm_display_helper snd_seq snd_pci_acp6x iwlwifi videodev tuxedo_nb04_kbd_backlight(OE)
2024-12-17 14:39:28,530 DEBUG:	 tuxedo_nb04_sensors(OE) tuxedo_nb04_keyboard(OE) tuxedo_nb04_wmi_ab(OE) tuxedo_nb04_wmi_bs(OE) nls_iso8859_1 rapl cec wmi_bmof sparse_keymap tuxedo_compatibility_check(OE) k10temp mc snd_pcm snd_seq_device amd_pmf snd_timer bluetooth spd5118 amdtee cfg80211 snd_pci_acp5x snd snd_rn_pci_acp3x snd_acp_config rc_core soundcore snd_soc_acpi i2c_algo_bit snd_pci_acp3x ccp i2c_piix4 i2c_smbus amd_sfh tuxedo_tuxi_fan_control(OE) tuxi_acpi(OE) tee led_class_multicolor soc_button_array platform_profile amd_pmc input_leds joydev serio_raw mac_hid sch_fq_codel msr parport_pc ppdev lp parport dm_crypt nvme_fabrics nvme_keyring efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 usbhid nvme crct10dif_pclmul crc32_pclmul hid_multitouch polyval_clmulni nvme_core polyval_generic r8169 hid_generic ghash_clmulni_intel video sha256_ssse3 sha1_ssse3 thunderbolt nvme_auth realtek wmi i2c_hid_acpi i2c_hid hid aesni_intel crypto_simd cryptd
2024-12-17 14:39:28,530 DEBUG:	CPU: 3 UID: 0 PID: 494 Comm: (udev-worker) Tainted: G           OE      6.13.0-rc3 #4
2024-12-17 14:39:28,530 DEBUG:	Tainted: [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
2024-12-17 14:39:28,530 DEBUG:	Hardware name: TUXEDO TUXEDO Sirius 16 Gen1/APX958, BIOS V1.00A00_20240108 01/08/2024
2024-12-17 14:39:28,530 DEBUG:	RIP: 0010:dcn31_panel_cntl_construct+0x8c/0xa0 [amdgpu]
2024-12-17 14:39:28,530 DEBUG:	Code: 5d 31 c0 31 d2 31 f6 31 ff e9 9b f2 cb d8 48 8b 40 10 48 8b 38 48 85 ff 74 04 48 8b 7f 08 48 c7 c6 28 70 54 c2 e8 14 d5 45 d8 <0f> 0b 41 bc 0f 00 00 00 48 8b 43 08 eb a0 66 0f 1f 44 00 00 90 90
2024-12-17 14:39:28,530 DEBUG:	RSP: 0018:ffffbdc6407d3458 EFLAGS: 00010246
2024-12-17 14:39:28,531 DEBUG:	RAX: 0000000000000000 RBX: ffff9a7011649dc0 RCX: 0000000000000000
2024-12-17 14:39:28,531 DEBUG:	RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
2024-12-17 14:39:28,531 DEBUG:	RBP: ffffbdc6407d3470 R08: 0000000000000000 R09: 0000000000000000
2024-12-17 14:39:28,531 DEBUG:	R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000001
2024-12-17 14:39:28,531 DEBUG:	R13: ffffffffc23d0ec0 R14: 0000000000000004 R15: ffff9a7002226000
2024-12-17 14:39:28,531 DEBUG:	FS:  000073f1c40318c0(0000) GS:ffff9a732e580000(0000) knlGS:0000000000000000
2024-12-17 14:39:28,531 DEBUG:	CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2024-12-17 14:39:28,531 DEBUG:	CR2: 000062bf0150afd0 CR3: 000000010cff6000 CR4: 0000000000f50ef0
2024-12-17 14:39:28,531 DEBUG:	PKRU: 55555554
2024-12-17 14:39:28,531 DEBUG:	Call Trace:
2024-12-17 14:39:28,531 DEBUG:	 <TASK>
2024-12-17 14:39:28,531 DEBUG:	 ? show_regs+0x6c/0x80
2024-12-17 14:39:28,531 DEBUG:	 ? __warn+0x8d/0x150
2024-12-17 14:39:28,531 DEBUG:	 ? dcn31_panel_cntl_construct+0x8c/0xa0 [amdgpu]
2024-12-17 14:39:28,531 DEBUG:	 ? report_bug+0x182/0x1b0
2024-12-17 14:39:28,531 DEBUG:	 ? handle_bug+0x6e/0xb0
2024-12-17 14:39:28,531 DEBUG:	 ? exc_invalid_op+0x18/0x80
2024-12-17 14:39:28,531 DEBUG:	 ? asm_exc_invalid_op+0x1b/0x20
2024-12-17 14:39:28,531 DEBUG:	 ? dcn31_panel_cntl_construct+0x8c/0xa0 [amdgpu]
2024-12-17 14:39:28,531 DEBUG:	 ? dcn31_panel_cntl_construct+0x8c/0xa0 [amdgpu]
2024-12-17 14:39:28,531 DEBUG:	 dcn32_panel_cntl_create+0x67/0x80 [amdgpu]
2024-12-17 14:39:28,531 DEBUG:	 link_create+0xbd4/0xee0 [amdgpu]
2024-12-17 14:39:28,531 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,531 DEBUG:	 create_links+0x189/0x550 [amdgpu]
2024-12-17 14:39:28,531 DEBUG:	 dc_create+0x42f/0x7d0 [amdgpu]
2024-12-17 14:39:28,531 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,531 DEBUG:	 ? dmi_matches+0xa0/0x240
2024-12-17 14:39:28,531 DEBUG:	 amdgpu_dm_init+0x319/0x2b60 [amdgpu]
2024-12-17 14:39:28,532 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,532 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,532 DEBUG:	 ? irq_work_queue+0x2f/0x70
2024-12-17 14:39:28,532 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,532 DEBUG:	 ? __wake_up_klogd.part.0+0x40/0x70
2024-12-17 14:39:28,532 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,532 DEBUG:	 ? vprintk_emit+0x181/0x3f0
2024-12-17 14:39:28,532 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,532 DEBUG:	 ? __pfx_smu_hw_init+0x10/0x10 [amdgpu]
2024-12-17 14:39:28,532 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,532 DEBUG:	 ? dev_printk_emit+0xa1/0xe0
2024-12-17 14:39:28,532 DEBUG:	 ? __pfx_dm_hw_init+0x10/0x10 [amdgpu]
2024-12-17 14:39:28,532 DEBUG:	 dm_hw_init+0x18/0x40 [amdgpu]
2024-12-17 14:39:28,532 DEBUG:	 amdgpu_device_init+0x249e/0x3130 [amdgpu]
2024-12-17 14:39:28,532 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,532 DEBUG:	 amdgpu_driver_load_kms+0x1a/0xd0 [amdgpu]
2024-12-17 14:39:28,532 DEBUG:	 amdgpu_pci_probe+0x1d1/0x650 [amdgpu]
2024-12-17 14:39:28,532 DEBUG:	 local_pci_probe+0x44/0xb0
2024-12-17 14:39:28,532 DEBUG:	 pci_device_probe+0xf4/0x270
2024-12-17 14:39:28,532 DEBUG:	 really_probe+0xee/0x3c0
2024-12-17 14:39:28,532 DEBUG:	 __driver_probe_device+0x8c/0x180
2024-12-17 14:39:28,532 DEBUG:	 driver_probe_device+0x24/0xd0
2024-12-17 14:39:28,532 DEBUG:	 __driver_attach+0x10b/0x210
2024-12-17 14:39:28,532 DEBUG:	 ? __pfx___driver_attach+0x10/0x10
2024-12-17 14:39:28,532 DEBUG:	 bus_for_each_dev+0x8a/0xf0
2024-12-17 14:39:28,532 DEBUG:	 driver_attach+0x1e/0x30
2024-12-17 14:39:28,532 DEBUG:	 bus_add_driver+0x14e/0x290
2024-12-17 14:39:28,532 DEBUG:	 driver_register+0x5e/0x130
2024-12-17 14:39:28,533 DEBUG:	 ? __pfx_amdgpu_init+0x10/0x10 [amdgpu]
2024-12-17 14:39:28,533 DEBUG:	 __pci_register_driver+0x5e/0x70
2024-12-17 14:39:28,533 DEBUG:	 amdgpu_init+0x76/0xff0 [amdgpu]
2024-12-17 14:39:28,533 DEBUG:	 do_one_initcall+0x5b/0x340
2024-12-17 14:39:28,533 DEBUG:	 do_init_module+0x97/0x290
2024-12-17 14:39:28,533 DEBUG:	 load_module+0x2281/0x25b0
2024-12-17 14:39:28,533 DEBUG:	 init_module_from_file+0x97/0xe0
2024-12-17 14:39:28,533 DEBUG:	 ? init_module_from_file+0x97/0xe0
2024-12-17 14:39:28,533 DEBUG:	 idempotent_init_module+0x110/0x300
2024-12-17 14:39:28,533 DEBUG:	 __x64_sys_finit_module+0x77/0x100
2024-12-17 14:39:28,533 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,533 DEBUG:	 x64_sys_call+0x1f37/0x2650
2024-12-17 14:39:28,533 DEBUG:	 do_syscall_64+0x7e/0x170
2024-12-17 14:39:28,533 DEBUG:	 ? syscall_exit_to_user_mode+0x38/0x1d0
2024-12-17 14:39:28,533 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,533 DEBUG:	 ? do_syscall_64+0x8a/0x170
2024-12-17 14:39:28,533 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:39:28,533 DEBUG:	 ? do_syscall_64+0x8a/0x170
2024-12-17 14:39:28,533 DEBUG:	 ? sysvec_apic_timer_interrupt+0x57/0xc0
2024-12-17 14:39:28,533 DEBUG:	 entry_SYSCALL_64_after_hwframe+0x76/0x7e
2024-12-17 14:39:28,533 DEBUG:	RIP: 0033:0x73f1c3f2725d
2024-12-17 14:39:28,533 DEBUG:	Code: ff c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 8b bb 0d 00 f7 d8 64 89 01 48
2024-12-17 14:39:28,533 DEBUG:	RSP: 002b:00007ffe9fe40748 EFLAGS: 00000246 ORIG_RAX: 0000000000000139
2024-12-17 14:39:28,533 DEBUG:	RAX: ffffffffffffffda RBX: 000062bf014e1690 RCX: 000073f1c3f2725d
2024-12-17 14:39:28,533 DEBUG:	RDX: 0000000000000000 RSI: 000062bf01510b90 RDI: 0000000000000047
2024-12-17 14:39:28,533 DEBUG:	RBP: 00007ffe9fe40800 R08: 0000000000000040 R09: 00007ffe9fe40790
2024-12-17 14:39:28,533 DEBUG:	R10: 000073f1c4003b20 R11: 0000000000000246 R12: 000062bf01510b90
2024-12-17 14:39:28,533 DEBUG:	R13: 0000000000020000 R14: 000062bf014dfde0 R15: 000062bf014ff0c0
2024-12-17 14:39:28,534 DEBUG:	 </TASK>
2024-12-17 14:39:28,534 DEBUG:	---[ end trace 0000000000000000 ]---
2024-12-17 14:39:28,534 DEBUG:	[drm] Display Core v3.2.310 initialized on DCN 3.2.1
2024-12-17 14:39:28,534 DEBUG:	[drm] DP-HDMI FRL PCON supported
2024-12-17 14:39:28,534 DEBUG:	[drm] DMUB hardware initialized: version=0x07002800
2024-12-17 14:39:28,534 DEBUG:	Bluetooth: hci0: Device booted in 27441 usecs
2024-12-17 14:39:28,534 DEBUG:	Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0041-0041.ddc
2024-12-17 14:39:28,534 DEBUG:	Bluetooth: hci0: Applying Intel DDC parameters completed
2024-12-17 14:39:28,534 DEBUG:	Bluetooth: hci0: Firmware timestamp 2023.48 buildtype 1 build 75324
2024-12-17 14:39:28,534 DEBUG:	Bluetooth: hci0: Firmware SHA1: 0x23bac558
2024-12-17 14:39:28,534 DEBUG:	Bluetooth: hci0: Fseq status: Success (0x00)
2024-12-17 14:39:28,534 DEBUG:	Bluetooth: hci0: Fseq executed: 00.00.02.41
2024-12-17 14:39:28,534 DEBUG:	Bluetooth: hci0: Fseq BT Top: 00.00.02.41
2024-12-17 14:39:28,534 DEBUG:	snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
2024-12-17 14:39:28,534 DEBUG:	amdgpu: HMM registered 8176MB device memory
2024-12-17 14:39:28,534 DEBUG:	kfd kfd: amdgpu: Allocated 3969056 bytes on gart
2024-12-17 14:39:28,534 DEBUG:	kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
2024-12-17 14:39:28,534 DEBUG:	amdgpu: Virtual CRAT table created for GPU
2024-12-17 14:39:28,534 DEBUG:	amdgpu: Topology: Add dGPU node [0x7480:0x1002]
2024-12-17 14:39:28,534 DEBUG:	kfd kfd: amdgpu: added device 1002:7480
2024-12-17 14:39:28,534 DEBUG:	amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 32
2024-12-17 14:39:28,534 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
2024-12-17 14:39:28,534 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
2024-12-17 14:39:28,534 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
2024-12-17 14:39:28,534 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
2024-12-17 14:39:28,534 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
2024-12-17 14:39:28,534 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
2024-12-17 14:39:28,534 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
2024-12-17 14:39:28,535 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
2024-12-17 14:39:28,535 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
2024-12-17 14:39:28,535 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
2024-12-17 14:39:28,535 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
2024-12-17 14:39:28,535 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
2024-12-17 14:39:28,535 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
2024-12-17 14:39:28,535 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 14 on hub 0
2024-12-17 14:39:28,535 DEBUG:	[drm] ring gfx_32768.1.1 was added
2024-12-17 14:39:28,535 DEBUG:	[drm] ring compute_32768.2.2 was added
2024-12-17 14:39:28,535 DEBUG:	[drm] ring sdma_32768.3.3 was added
2024-12-17 14:39:28,535 DEBUG:	[drm] ring gfx_32768.1.1 ib test pass
2024-12-17 14:39:28,535 DEBUG:	[drm] ring compute_32768.2.2 ib test pass
2024-12-17 14:39:28,535 DEBUG:	[drm] ring sdma_32768.3.3 ib test pass
2024-12-17 14:39:28,535 DEBUG:	amdgpu 0000:03:00.0: amdgpu: Using BOCO for runtime pm
2024-12-17 14:39:28,535 DEBUG:	[drm] Initialized amdgpu 3.59.0 for 0000:03:00.0 on minor 1
2024-12-17 14:39:28,535 DEBUG:	amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
2024-12-17 14:39:28,535 DEBUG:	[drm] pre_validate_dsc:1593 MST_DSC dsc precompute is not needed
2024-12-17 14:39:28,535 DEBUG:	amdgpu 0000:68:00.0: enabling device (0006 -> 0007)
2024-12-17 14:39:28,535 DEBUG:	[drm] initializing kernel modesetting (IP DISCOVERY 0x1002:0x15BF 0x2782:0x12C3 0xC1).
2024-12-17 14:39:28,535 DEBUG:	[drm] register mmio base: 0xDC500000
2024-12-17 14:39:28,535 DEBUG:	[drm] register mmio size: 524288
2024-12-17 14:39:28,535 DEBUG:	[drm] add ip block number 0 <soc21_common>
2024-12-17 14:39:28,535 DEBUG:	[drm] add ip block number 1 <gmc_v11_0>
2024-12-17 14:39:28,535 DEBUG:	[drm] add ip block number 2 <ih_v6_0>
2024-12-17 14:39:28,535 DEBUG:	[drm] add ip block number 3 <psp>
2024-12-17 14:39:28,535 DEBUG:	[drm] add ip block number 4 <smu>
2024-12-17 14:39:28,535 DEBUG:	[drm] add ip block number 5 <dm>
2024-12-17 14:39:28,536 DEBUG:	[drm] add ip block number 6 <gfx_v11_0>
2024-12-17 14:39:28,536 DEBUG:	[drm] add ip block number 7 <sdma_v6_0>
2024-12-17 14:39:28,536 DEBUG:	[drm] add ip block number 8 <vcn_v4_0>
2024-12-17 14:39:28,536 DEBUG:	[drm] add ip block number 9 <jpeg_v4_0>
2024-12-17 14:39:28,536 DEBUG:	[drm] add ip block number 10 <mes_v11_0>
2024-12-17 14:39:28,536 DEBUG:	amdgpu 0000:68:00.0: amdgpu: Fetched VBIOS from VFCT
2024-12-17 14:39:28,536 DEBUG:	amdgpu: ATOM BIOS: 113-PHXGENERIC-001
2024-12-17 14:39:28,536 DEBUG:	amdgpu 0000:68:00.0: vgaarb: deactivate vga console
2024-12-17 14:39:28,536 DEBUG:	amdgpu 0000:68:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
2024-12-17 14:39:28,536 DEBUG:	[drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
2024-12-17 14:39:28,536 DEBUG:	amdgpu 0000:68:00.0: amdgpu: VRAM: 512M 0x0000008000000000 - 0x000000801FFFFFFF (512M used)
2024-12-17 14:39:28,536 DEBUG:	amdgpu 0000:68:00.0: amdgpu: GART: 512M 0x00007FFF00000000 - 0x00007FFF1FFFFFFF
2024-12-17 14:39:28,536 DEBUG:	[drm] Detected VRAM RAM=512M, BAR=512M
2024-12-17 14:39:28,536 DEBUG:	[drm] RAM width 128bits DDR5
2024-12-17 14:39:28,536 DEBUG:	[drm] amdgpu: 512M of VRAM memory ready
2024-12-17 14:39:28,536 DEBUG:	[drm] amdgpu: 7605M of GTT memory ready.
2024-12-17 14:39:28,536 DEBUG:	[drm] GART: num cpu pages 131072, num gpu pages 131072
2024-12-17 14:39:28,536 DEBUG:	[drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
2024-12-17 14:39:28,536 DEBUG:	[drm] Loading DMUB firmware via PSP: version=0x08003700
2024-12-17 14:39:28,536 DEBUG:	[drm] Found VCN firmware Version ENC: 1.19 DEC: 7 VEP: 0 Revision: 0
2024-12-17 14:39:28,536 DEBUG:	amdgpu 0000:68:00.0: amdgpu: reserve 0x4a00000 from 0x8010000000 for PSP TMR
2024-12-17 14:39:28,536 DEBUG:	amdgpu 0000:68:00.0: amdgpu: RAS: optional ras ta ucode is not available
2024-12-17 14:39:28,536 DEBUG:	amdgpu 0000:68:00.0: amdgpu: RAP: optional rap ta ucode is not available
2024-12-17 14:39:28,536 DEBUG:	amdgpu 0000:68:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
2024-12-17 14:39:28,536 DEBUG:	amdgpu 0000:68:00.0: amdgpu: SMU is initialized successfully!
2024-12-17 14:39:28,536 DEBUG:	[drm] Seamless boot condition check passed
2024-12-17 14:39:28,536 DEBUG:	[drm] Display Core v3.2.310 initialized on DCN 3.1.4
2024-12-17 14:39:28,537 DEBUG:	[drm] DP-HDMI FRL PCON supported
2024-12-17 14:39:28,537 DEBUG:	[drm] DMUB hardware initialized: version=0x08003700
2024-12-17 14:39:28,537 DEBUG:	snd_hda_intel 0000:68:00.1: bound 0000:68:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
2024-12-17 14:39:28,537 DEBUG:	kfd kfd: amdgpu: Allocated 3969056 bytes on gart
2024-12-17 14:39:28,537 DEBUG:	kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
2024-12-17 14:39:28,537 DEBUG:	amdgpu: Virtual CRAT table created for GPU
2024-12-17 14:39:28,537 DEBUG:	amdgpu: Topology: Add dGPU node [0x15bf:0x1002]
2024-12-17 14:39:28,537 DEBUG:	kfd kfd: amdgpu: added device 1002:15bf
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: SE 1, SH per SE 2, CU per SH 6, active_cu_number 12
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
2024-12-17 14:39:28,537 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
2024-12-17 14:39:28,537 DEBUG:	[drm] ring gfx_32770.1.1 was added
2024-12-17 14:39:28,537 DEBUG:	[drm] ring compute_32770.2.2 was added
2024-12-17 14:39:28,537 DEBUG:	[drm] ring sdma_32770.3.3 was added
2024-12-17 14:39:28,538 DEBUG:	[drm] ring gfx_32770.1.1 ib test pass
2024-12-17 14:39:28,538 DEBUG:	[drm] ring compute_32770.2.2 ib test pass
2024-12-17 14:39:28,538 DEBUG:	[drm] ring sdma_32770.3.3 ib test pass
2024-12-17 14:39:28,538 DEBUG:	amdgpu 0000:68:00.0: amdgpu: Runtime PM not available
2024-12-17 14:39:28,538 DEBUG:	[drm] Initialized amdgpu 3.59.0 for 0000:68:00.0 on minor 2
2024-12-17 14:39:28,538 DEBUG:	fbcon: amdgpudrmfb (fb0) is primary device
2024-12-17 14:39:28,538 DEBUG:	fbcon: Deferring console take-over
2024-12-17 14:39:28,538 DEBUG:	amdgpu 0000:68:00.0: [drm] fb0: amdgpudrmfb frame buffer device
2024-12-17 14:39:28,538 DEBUG:	amdgpu 0000:68:00.0: [drm] REG_WAIT timeout 1us * 1000 tries - dcn314_dsc_pg_control line:225
2024-12-17 14:39:28,538 DEBUG:	amdgpu 0000:68:00.0: [drm] REG_WAIT timeout 1us * 1000 tries - dcn314_dsc_pg_control line:233
2024-12-17 14:39:28,538 DEBUG:	amdgpu 0000:68:00.0: [drm] REG_WAIT timeout 1us * 1000 tries - dcn314_dsc_pg_control line:241
2024-12-17 14:39:28,538 DEBUG:	amdgpu 0000:68:00.0: [drm] REG_WAIT timeout 1us * 1000 tries - dcn314_dsc_pg_control line:249
2024-12-17 14:39:28,538 DEBUG:	nvme nvme0: using unchecked data buffer
2024-12-17 14:39:28,538 DEBUG:	Bluetooth: BNEP (Ethernet Emulation) ver 1.3
2024-12-17 14:39:28,538 DEBUG:	Bluetooth: BNEP filters: protocol multicast
2024-12-17 14:39:28,538 DEBUG:	Bluetooth: BNEP socket layer initialized
2024-12-17 14:39:28,538 DEBUG:	Bluetooth: MGMT ver 1.23
2024-12-17 14:39:28,538 DEBUG:	NET: Registered PF_ALG protocol family
2024-12-17 14:39:28,538 DEBUG:	kauditd_printk_skb: 107 callbacks suppressed
2024-12-17 14:39:28,538 DEBUG:	audit: type=1400 audit(1734442706.719:118): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="rsyslogd" pid=1088 comm="apparmor_parser"
2024-12-17 14:39:28,538 DEBUG:	NET: Registered PF_QIPCRTR protocol family
2024-12-17 14:39:28,538 DEBUG:	Generic FE-GE Realtek PHY r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
2024-12-17 14:39:28,538 DEBUG:	r8169 0000:04:00.0 enp4s0: Link is Down
2024-12-17 14:39:28,538 DEBUG:	iwlwifi 0000:05:00.0: WFPM_UMAC_PD_NOTIFICATION: 0x20
2024-12-17 14:39:28,538 DEBUG:	iwlwifi 0000:05:00.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
2024-12-17 14:39:28,538 DEBUG:	iwlwifi 0000:05:00.0: WFPM_AUTH_KEY_0: 0x90
2024-12-17 14:39:28,538 DEBUG:	iwlwifi 0000:05:00.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
2024-12-17 14:39:28,539 DEBUG:	iwlwifi 0000:05:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
2024-12-17 14:39:28,539 DEBUG:	audit: type=1400 audit(1734442707.558:119): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=1282 comm="cupsd" capability=12  capname="net_admin"
2024-12-17 14:39:28,539 DEBUG:	vboxdrv: Found 16 processor cores/threads
2024-12-17 14:39:28,539 DEBUG:	vboxdrv: TSC mode is Invariant, tentative frequency 3992499106 Hz
2024-12-17 14:39:28,539 DEBUG:	vboxdrv: Successfully loaded version 7.0.20_Ubuntu r163906 (interface 0x00330004)
2024-12-17 14:39:28,539 DEBUG:	VBoxNetFlt: Successfully started.
2024-12-17 14:39:28,539 DEBUG:	VBoxNetAdp: Successfully started.
2024-12-17 14:39:28,539 DEBUG:	amdgpu 0000:03:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
2024-12-17 14:39:28,539 DEBUG:	amdgpu 0000:68:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
2024-12-17 14:39:28,539 DEBUG:	Bluetooth: RFCOMM TTY layer initialized
2024-12-17 14:39:28,539 DEBUG:	Bluetooth: RFCOMM socket layer initialized
2024-12-17 14:39:28,539 DEBUG:	Bluetooth: RFCOMM ver 1.11
2024-12-17 14:39:28,539 DEBUG:	r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
2024-12-17 14:39:28,539 DEBUG:	/var/log/journal/b54d92d5b40cb1a2071fa809674ee5f6/user-1000.journal: Journal file uses a different sequence number ID, rotating.
2024-12-17 14:39:28,539 DEBUG:	warning: `kdeconnectd' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
2024-12-17 14:39:28,539 INFO:	Explanations for your system
2024-12-17 14:39:28,539 WARNING:	🚦 Kernel is tainted
2024-12-17 14:38:53,915 INFO:	Debugging script for s2idle on AMD systems
2024-12-17 14:38:53,915 INFO:	💻 TUXEDO TUXEDO Sirius 16 Gen1 (Sirius Gen1) running BIOS 0.8 (V1.00A00_20240108) released 01/08/2024 and EC 0.28
2024-12-17 14:38:53,915 INFO:	🐧 TUXEDO OS
2024-12-17 14:38:53,915 INFO:	🐧 Kernel 6.13.0-rc3
2024-12-17 14:38:53,921 DEBUG:	BAT0 energy level is 78478000 µWh
2024-12-17 14:38:53,921 INFO:	🔋 Battery BAT0 (AMD Battery Li-ion Real Battery) is operating at 100.00% of design
2024-12-17 14:38:53,935 DEBUG:	Thermal zones
2024-12-17 14:38:53,936 DEBUG:	└─ LNXTHERM:00
2024-12-17 14:38:53,936 DEBUG:	  	 temp: 36.0°C
2024-12-17 14:38:53,936 DEBUG:	  	 critical trip: 110.0°C
2024-12-17 14:38:53,936 INFO:	Checking prerequisites for s2idle
2024-12-17 14:38:53,936 INFO:	✅ Logs are provided via systemd
2024-12-17 14:38:53,936 INFO:	✅ AMD Ryzen 9 7940HS w/ Radeon 780M Graphics (family 19 model 74)
2024-12-17 14:38:53,936 INFO:	✅ ASPM policy set to 'default'
2024-12-17 14:38:53,936 DEBUG:	SMT control: on
2024-12-17 14:38:53,936 INFO:	✅ SMT enabled
2024-12-17 14:38:53,936 INFO:	✅ LPS0 _DSM enabled
2024-12-17 14:38:54,008 INFO:	✅ ACPI FADT supports Low-power S0 idle
2024-12-17 14:38:54,009 DEBUG:	/sys/module/gpiolib_acpi/parameters/ignore_wake is not configured
2024-12-17 14:38:54,009 DEBUG:	/sys/module/gpiolib_acpi/parameters/ignore_interrupt is not configured
2024-12-17 14:38:54,009 DEBUG:	/proc/cmdline: amdgpu.dcdebugmask=0x10 udev.log_level=3 udev.log_level=3
2024-12-17 14:38:54,010 DEBUG:	LOGIND: no configuration changes
2024-12-17 14:38:54,010 INFO:	✅ HSMP driver `amd_hsmp` not detected (blocked: False)
2024-12-17 14:38:54,044 WARNING:	Platform may hang resuming.  Upgrade your firmware or add pcie_port_pm=off to kernel command line if you have problems.
2024-12-17 14:38:54,044 INFO:	✅ PMC driver `amd_pmc` loaded (Program 4 Firmware 76.18.0)
2024-12-17 14:38:54,047 INFO:	✅ USB4 driver `thunderbolt` bound to 0000:6a:00.5
2024-12-17 14:38:54,050 INFO:	✅ GPU driver `amdgpu` bound to 0000:03:00.0
2024-12-17 14:38:54,051 INFO:	✅ GPU driver `amdgpu` bound to 0000:68:00.0
2024-12-17 14:38:54,096 INFO:	✅ System is configured for s2idle
2024-12-17 14:38:54,129 INFO:	✅ NVME Samsung Electronics Co Ltd NVMe SSD Controller SM981/PM981/PM983 (SSD 970 EVO/PRO) is configured for s2idle in BIOS
2024-12-17 14:38:54,131 INFO:	✅ GPIO driver `pinctrl_amd` available
2024-12-17 14:38:54,131 DEBUG:	Unable to capture /sys/kernel/debug/gpio
2024-12-17 14:38:54,137 WARNING:	🚦 Device firmware checks unavailable without fwupd gobject introspection
2024-12-17 14:38:54,184 DEBUG:	Lockdown: [none] integrity confidentiality
2024-12-17 14:38:54,184 WARNING:	🚦 MSR checks unavailable
2024-12-17 14:38:54,185 ERROR:	👀 Suspend must be initiated by root user
2024-12-17 14:38:54,189 DEBUG:	PCI devices
2024-12-17 14:38:54,189 DEBUG:	│ 0000:00:00.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14e8] : \_SB_.PCI0.D002
2024-12-17 14:38:54,189 DEBUG:	│ 0000:00:00.2 : Advanced Micro Devices, Inc. [AMD] IOMMU [1022:14e9] : \_SB_.PCI0.IOMA
2024-12-17 14:38:54,189 DEBUG:	│ 0000:00:01.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14ea]
2024-12-17 14:38:54,189 DEBUG:	│ 0000:00:01.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ed] : \_SB_.PCI0.GPP0
2024-12-17 14:38:54,189 DEBUG:	├─ 0000:01:00.0 : Advanced Micro Devices, Inc. [AMD/ATI] PCI bridge [1002:1478] : \_SB_.PCI0.GPP0.SWUS
2024-12-17 14:38:54,189 DEBUG:	├─ 0000:02:00.0 : Advanced Micro Devices, Inc. [AMD/ATI] PCI bridge [1002:1479] : \_SB_.PCI0.GPP0.SWUS.SWDS
2024-12-17 14:38:54,189 DEBUG:	├─ 0000:03:00.0 : Advanced Micro Devices, Inc. [AMD/ATI] VGA compatible controller [1002:7480] : \_SB_.PCI0.GPP0.SWUS.SWDS.VGA_
2024-12-17 14:38:54,189 DEBUG:	├─ 0000:03:00.1 : Advanced Micro Devices, Inc. [AMD/ATI] Audio device [1002:ab30] : \_SB_.PCI0.GPP0.SWUS.SWDS.HDAU
2024-12-17 14:38:54,189 DEBUG:	│ 0000:00:02.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14ea]
2024-12-17 14:38:54,190 DEBUG:	│ 0000:00:02.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ee] : \_SB_.PCI0.GPP5
2024-12-17 14:38:54,190 DEBUG:	├─ 0000:04:00.0 : Realtek Semiconductor Co., Ltd. Ethernet controller [10ec:8168] : \_SB_.PCI0.GPP5.RTL8
2024-12-17 14:38:54,190 DEBUG:	│ 0000:00:02.2 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ee] : \_SB_.PCI0.GPP6
2024-12-17 14:38:54,190 DEBUG:	├─ 0000:05:00.0 : Intel Corporation Network controller [8086:2725] : \_SB_.PCI0.GPP6.WLAN
2024-12-17 14:38:54,190 DEBUG:	│ 0000:00:02.3 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ee] : \_SB_.PCI0.GPP7
2024-12-17 14:38:54,190 DEBUG:	│ 0000:00:02.4 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ee] : \_SB_.PCI0.GPP8
2024-12-17 14:38:54,190 DEBUG:	├─ 0000:07:00.0 : Samsung Electronics Co Ltd Non-Volatile memory controller [144d:a808] : \_SB_.PCI0.GPP8.NVME
2024-12-17 14:38:54,190 DEBUG:	│ 0000:00:03.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14ea]
2024-12-17 14:38:54,190 DEBUG:	│ 0000:00:03.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14ef] : \_SB_.PCI0.GP11
2024-12-17 14:38:54,190 DEBUG:	│ 0000:00:04.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14ea]
2024-12-17 14:38:54,190 DEBUG:	│ 0000:00:08.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14ea]
2024-12-17 14:38:54,191 DEBUG:	│ 0000:00:08.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14eb] : \_SB_.PCI0.GP17
2024-12-17 14:38:54,191 DEBUG:	├─ 0000:68:00.0 : Advanced Micro Devices, Inc. [AMD/ATI] VGA compatible controller [1002:15bf] : \_SB_.PCI0.GP17.VGA_
2024-12-17 14:38:54,191 DEBUG:	├─ 0000:68:00.1 : Advanced Micro Devices, Inc. [AMD/ATI] Audio device [1002:1640] : \_SB_.PCI0.GP17.HDAU
2024-12-17 14:38:54,191 DEBUG:	├─ 0000:68:00.2 : Advanced Micro Devices, Inc. [AMD] Encryption controller [1022:15c7] : \_SB_.PCI0.GP17.APSP
2024-12-17 14:38:54,191 DEBUG:	├─ 0000:68:00.3 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:15b9] : \_SB_.PCI0.GP17.XHC0
2024-12-17 14:38:54,191 DEBUG:	├─ 0000:68:00.4 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:15ba] : \_SB_.PCI0.GP17.XHC1
2024-12-17 14:38:54,191 DEBUG:	├─ 0000:68:00.5 : Advanced Micro Devices, Inc. [AMD] Multimedia controller [1022:15e2] : \_SB_.PCI0.GP17.ACP_
2024-12-17 14:38:54,191 DEBUG:	├─ 0000:68:00.6 : Advanced Micro Devices, Inc. [AMD] Audio device [1022:15e3] : \_SB_.PCI0.GP17.AZAL
2024-12-17 14:38:54,191 DEBUG:	│ 0000:00:08.2 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14eb] : \_SB_.PCI0.GP18
2024-12-17 14:38:54,191 DEBUG:	├─ 0000:69:00.0 : Advanced Micro Devices, Inc. [AMD]  [1022:14ec]
2024-12-17 14:38:54,192 DEBUG:	├─ 0000:69:00.1 : Advanced Micro Devices, Inc. [AMD] Signal processing controller [1022:1502] : \_SB_.PCI0.GP18.IPU_
2024-12-17 14:38:54,192 DEBUG:	│ 0000:00:08.3 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:14eb] : \_SB_.PCI0.GP19
2024-12-17 14:38:54,192 DEBUG:	├─ 0000:6a:00.0 : Advanced Micro Devices, Inc. [AMD]  [1022:14ec] : \_SB_.PCI0.GP19.XHC2
2024-12-17 14:38:54,192 DEBUG:	├─ 0000:6a:00.3 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:15c0] : \_SB_.PCI0.GP19.XHC3
2024-12-17 14:38:54,192 DEBUG:	├─ 0000:6a:00.4 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:15c1] : \_SB_.PCI0.GP19.XHC4
2024-12-17 14:38:54,192 DEBUG:	├─ 0000:6a:00.5 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:1668] : \_SB_.PCI0.GP19.NHI0
2024-12-17 14:38:54,192 DEBUG:	│ 0000:00:14.0 : Advanced Micro Devices, Inc. [AMD] SMBus [1022:790b] : \_SB_.PCI0.D02B
2024-12-17 14:38:54,192 DEBUG:	│ 0000:00:14.3 : Advanced Micro Devices, Inc. [AMD] ISA bridge [1022:790e] : \_SB_.PCI0.SBRG
2024-12-17 14:38:54,192 DEBUG:	│ 0000:00:18.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f0]
2024-12-17 14:38:54,192 DEBUG:	│ 0000:00:18.1 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f1]
2024-12-17 14:38:54,192 DEBUG:	│ 0000:00:18.2 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f2]
2024-12-17 14:38:54,192 DEBUG:	│ 0000:00:18.3 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f3]
2024-12-17 14:38:54,193 DEBUG:	│ 0000:00:18.4 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f4]
2024-12-17 14:38:54,193 DEBUG:	│ 0000:00:18.5 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f5]
2024-12-17 14:38:54,193 DEBUG:	│ 0000:00:18.6 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f6]
2024-12-17 14:38:54,193 DEBUG:	└─0000:00:18.7 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:14f7]
2024-12-17 14:38:54,440 DEBUG:	Interrupts
2024-12-17 14:38:54,440 DEBUG:	│ 0: Timer
2024-12-17 14:38:54,440 DEBUG:	│ 1: PS/2 controller
2024-12-17 14:38:54,440 DEBUG:	│ 2: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 3: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 4: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 5: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 6: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 7: GPIO Controller
2024-12-17 14:38:54,440 DEBUG:	│ 8: RTC
2024-12-17 14:38:54,440 DEBUG:	│ 9: ACPI SCI
2024-12-17 14:38:54,440 DEBUG:	│ 10: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 11: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 12: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 13: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 14: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 15: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 24: Advanced Micro Devices, Inc. [AMD] Generic system peripheral (0000:00:00.2) (AMD-Vi)
2024-12-17 14:38:54,440 DEBUG:	│ 25: GPIO 0 (ACPI:Event)
2024-12-17 14:38:54,440 DEBUG:	│ 26: GPIO 61 (ACPI:Event)
2024-12-17 14:38:54,440 DEBUG:	│ 27: GPIO 62 (ACPI:Event)
2024-12-17 14:38:54,440 DEBUG:	│ 28: GPIO 58 (ACPI:Event)
2024-12-17 14:38:54,440 DEBUG:	│ 29: GPIO 59 (ACPI:Event)
2024-12-17 14:38:54,440 DEBUG:	│ 30: GPIO 17 (ACPI:Event)
2024-12-17 14:38:54,440 DEBUG:	│ 31: GPIO 18 (ACPI:Event)
2024-12-17 14:38:54,440 DEBUG:	│ 32: GPIO 16 (ACPI:Event)
2024-12-17 14:38:54,440 DEBUG:	│ 33: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:01.1) (PCIe PME,pciehp,PCIe bwctrl)
2024-12-17 14:38:54,440 DEBUG:	│ 34: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:02.1) (PCIe PME,pciehp,PCIe bwctrl)
2024-12-17 14:38:54,440 DEBUG:	│ 35: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:02.2) (PCIe PME,PCIe bwctrl)
2024-12-17 14:38:54,440 DEBUG:	│ 36: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:02.3) (PCIe PME,pciehp,PCIe bwctrl)
2024-12-17 14:38:54,440 DEBUG:	│ 37: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:02.4) (PCIe PME,PCIe bwctrl)
2024-12-17 14:38:54,440 DEBUG:	│ 38: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:03.1) (PCIe PME,pciehp)
2024-12-17 14:38:54,440 DEBUG:	│ 39: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:08.1) (PCIe PME,PCIe bwctrl)
2024-12-17 14:38:54,440 DEBUG:	│ 40: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:08.2) (PCIe PME,PCIe bwctrl)
2024-12-17 14:38:54,440 DEBUG:	│ 41: Advanced Micro Devices, Inc. [AMD] Bridge (0000:00:08.3) (PCIe PME,PCIe bwctrl)
2024-12-17 14:38:54,440 DEBUG:	│ 42: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 43: Advanced Micro Devices, Inc. [AMD/ATI] Bridge (0000:02:00.0) (PCIe bwctrl)
2024-12-17 14:38:54,440 DEBUG:	│ 44: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 45: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:68:00.3) (xhci_hcd)
2024-12-17 14:38:54,440 DEBUG:	│ 46: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 47: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:68:00.4) (xhci_hcd)
2024-12-17 14:38:54,440 DEBUG:	│ 48: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 49: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.3) (xhci_hcd)
2024-12-17 14:38:54,440 DEBUG:	│ 50: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 51: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.4) (xhci_hcd)
2024-12-17 14:38:54,440 DEBUG:	│ 52: GPIO 8 (PNP0C50:0b)
2024-12-17 14:38:54,440 DEBUG:	│ 53: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 54: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5) (thunderbolt)
2024-12-17 14:38:54,440 DEBUG:	│ 55: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5) (thunderbolt)
2024-12-17 14:38:54,440 DEBUG:	│ 56: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 57: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 58: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 59: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 60: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 61: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 62: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 63: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 64: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 65: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 66: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 67: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 68: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 69: Advanced Micro Devices, Inc. [AMD] Serial bus controller (0000:6a:00.5)
2024-12-17 14:38:54,440 DEBUG:	│ 70: Disabled interrupt
2024-12-17 14:38:54,440 DEBUG:	│ 71: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q0)
2024-12-17 14:38:54,440 DEBUG:	│ 72: Realtek Semiconductor Co., Ltd. Network controller (0000:04:00.0) (enp4s0)
2024-12-17 14:38:54,441 DEBUG:	│ 73: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q1)
2024-12-17 14:38:54,441 DEBUG:	│ 74: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q2)
2024-12-17 14:38:54,441 DEBUG:	│ 75: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q3)
2024-12-17 14:38:54,441 DEBUG:	│ 76: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q4)
2024-12-17 14:38:54,441 DEBUG:	│ 77: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q5)
2024-12-17 14:38:54,441 DEBUG:	│ 78: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q6)
2024-12-17 14:38:54,441 DEBUG:	│ 79: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q7)
2024-12-17 14:38:54,441 DEBUG:	│ 80: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q8)
2024-12-17 14:38:54,441 DEBUG:	│ 81: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q9)
2024-12-17 14:38:54,441 DEBUG:	│ 82: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q10)
2024-12-17 14:38:54,441 DEBUG:	│ 83: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q11)
2024-12-17 14:38:54,441 DEBUG:	│ 84: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q12)
2024-12-17 14:38:54,441 DEBUG:	│ 85: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q13)
2024-12-17 14:38:54,441 DEBUG:	│ 86: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q14)
2024-12-17 14:38:54,441 DEBUG:	│ 87: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q15)
2024-12-17 14:38:54,441 DEBUG:	│ 88: Samsung Electronics Co Ltd Mass storage controller (0000:07:00.0) (nvme0q16)
2024-12-17 14:38:54,441 DEBUG:	│ 89: Disabled interrupt
2024-12-17 14:38:54,441 DEBUG:	│ 90: Advanced Micro Devices, Inc. [AMD] Encryption controller (0000:68:00.2) (psp-1)
2024-12-17 14:38:54,441 DEBUG:	│ 91: Advanced Micro Devices, Inc. [AMD] Encryption controller (0000:68:00.2)
2024-12-17 14:38:54,441 DEBUG:	│ 92: Disabled interrupt
2024-12-17 14:38:54,441 DEBUG:	│ 93: Disabled interrupt
2024-12-17 14:38:54,441 DEBUG:	│ 94: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:default_queue)
2024-12-17 14:38:54,441 DEBUG:	│ 95: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_1)
2024-12-17 14:38:54,441 DEBUG:	│ 96: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_2)
2024-12-17 14:38:54,441 DEBUG:	│ 97: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_3)
2024-12-17 14:38:54,441 DEBUG:	│ 98: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_4)
2024-12-17 14:38:54,441 DEBUG:	│ 99: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_5)
2024-12-17 14:38:54,441 DEBUG:	│ 100: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_6)
2024-12-17 14:38:54,441 DEBUG:	│ 101: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_7)
2024-12-17 14:38:54,441 DEBUG:	│ 102: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_8)
2024-12-17 14:38:54,441 DEBUG:	│ 103: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_9)
2024-12-17 14:38:54,441 DEBUG:	│ 104: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_10)
2024-12-17 14:38:54,441 DEBUG:	│ 105: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_11)
2024-12-17 14:38:54,441 DEBUG:	│ 106: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_12)
2024-12-17 14:38:54,441 DEBUG:	│ 107: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_13)
2024-12-17 14:38:54,441 DEBUG:	│ 108: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:queue_14)
2024-12-17 14:38:54,441 DEBUG:	│ 109: Intel Corporation Network controller (0000:05:00.0) (iwlwifi:exception)
2024-12-17 14:38:54,441 DEBUG:	│ 110: Advanced Micro Devices, Inc. [AMD/ATI] Multimedia controller (0000:03:00.1) (snd_hda_intel:card0)
2024-12-17 14:38:54,441 DEBUG:	│ 111: Advanced Micro Devices, Inc. [AMD/ATI] Multimedia controller (0000:68:00.1) (snd_hda_intel:card1)
2024-12-17 14:38:54,441 DEBUG:	│ 112: Advanced Micro Devices, Inc. [AMD] Multimedia controller (0000:68:00.6) (snd_hda_intel:card2)
2024-12-17 14:38:54,441 DEBUG:	│ 113: Advanced Micro Devices, Inc. [AMD/ATI] Display controller (0000:03:00.0) (amdgpu)
2024-12-17 14:38:54,441 DEBUG:	└─114: Advanced Micro Devices, Inc. [AMD/ATI] Display controller (0000:68:00.0) (amdgpu)
2024-12-17 14:38:54,451 DEBUG:	I2C HID devices
2024-12-17 14:38:54,451 DEBUG:	│ "PNP0C50:0b 0911:5288 Mouse" [PNP0C50] : \_SB_.I2CD.TPDD
2024-12-17 14:38:54,452 DEBUG:	└─"PNP0C50:0b 0911:5288 Touchpad" [PNP0C50] : \_SB_.I2CD.TPDD
2024-12-17 14:38:54,470 DEBUG:	Wakeup sources:
2024-12-17 14:38:54,470 DEBUG:	│ ACPI Battery [PNP0C0A:00]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ ACPI Lid Switch [PNP0C0D:00]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ ACPI Power Button [PNP0C0C:00]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ AT Translated Set 2 keyboard [serio0]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD/ATI] PCI bridge [0000:01:00.0]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD/ATI] PCI bridge [0000:02:00.0]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] ISA bridge [0000:00:14.3]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] Multimedia controller [0000:68:00.5]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:01.1]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:02.2]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:03.1]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:68:00.3]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:68:00.3]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:68:00.4]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:6a:00.3]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:6a:00.4]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Advanced Micro Devices, Inc. [AMD] USB controller [0000:6a:00.5]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ PNP0C50:0b 0911:5288 Mouse [i2c-PNP0C50:0b]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Plug-n-play Real Time Clock [00:01]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Real Time Clock alarm timer [rtc0]: enabled
2024-12-17 14:38:54,470 DEBUG:	│ Thunderbolt domain [domain0]: enabled
2024-12-17 14:38:54,470 DEBUG:	└─USB4 host controller [0-0]: enabled
2024-12-17 14:38:54,471 DEBUG:	Unable to capture ACPI tables without root
2024-12-17 14:38:54,471 DEBUG:	Power profiles:
2024-12-17 14:38:54,524 DEBUG:	 * performance:
2024-12-17 14:38:54,525 DEBUG:	     CpuDriver:	amd_pstate
2024-12-17 14:38:54,525 DEBUG:	     PlatformDriver:	platform_profile
2024-12-17 14:38:54,525 DEBUG:	     Degraded:   no
2024-12-17 14:38:54,525 DEBUG:	 
2024-12-17 14:38:54,525 DEBUG:	   balanced:
2024-12-17 14:38:54,525 DEBUG:	     CpuDriver:	amd_pstate
2024-12-17 14:38:54,525 DEBUG:	     PlatformDriver:	platform_profile
2024-12-17 14:38:54,525 DEBUG:	 
2024-12-17 14:38:54,525 DEBUG:	   power-saver:
2024-12-17 14:38:54,525 DEBUG:	     CpuDriver:	amd_pstate
2024-12-17 14:38:54,525 DEBUG:	     PlatformDriver:	platform_profile
2024-12-17 14:38:54,525 DEBUG:	 
2024-12-17 14:38:54,525 ERROR:	❌ Kernel is tainted: 12288
2024-12-17 14:38:54,525 INFO:	Your system does not meet s2idle prerequisites!
2024-12-17 14:38:54,525 DEBUG:	Linux version 6.13.0-rc3 (wse@wse-pc) (gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #4 SMP PREEMPT_DYNAMIC Tue Dec 17 14:33:23 CET 2024
2024-12-17 14:38:54,525 DEBUG:	Command line: BOOT_IMAGE=/boot/vmlinuz-6.13.0-rc3 root=UUID=ce3cb892-12dc-4d50-8a6d-0c5bb2df1de7 ro quiet splash amdgpu.dcdebugmask=0x10 loglevel=3 udev.log_level=3 loglevel=3 udev.log_level=3 vt.handoff=7
2024-12-17 14:38:54,525 DEBUG:	KERNEL supported cpus:
2024-12-17 14:38:54,525 DEBUG:	  Intel GenuineIntel
2024-12-17 14:38:54,525 DEBUG:	  AMD AuthenticAMD
2024-12-17 14:38:54,525 DEBUG:	  Hygon HygonGenuine
2024-12-17 14:38:54,525 DEBUG:	  Centaur CentaurHauls
2024-12-17 14:38:54,525 DEBUG:	  zhaoxin   Shanghai  
2024-12-17 14:38:54,525 DEBUG:	BIOS-provided physical RAM map:
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x0000000000100000-0x0000000009a7efff] usable
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x0000000009a7f000-0x0000000009ffffff] reserved
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000000a200000-0x000000000a23bfff] ACPI NVS
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000000a23c000-0x000000008f82cfff] usable
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000008f82d000-0x000000009238afff] reserved
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000009238b000-0x0000000092416fff] ACPI data
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x0000000092417000-0x0000000097490fff] ACPI NVS
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x0000000097491000-0x000000009adfefff] reserved
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000009adff000-0x000000009bff8fff] usable
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000009bff9000-0x000000009bffcfff] reserved
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000009bffd000-0x000000009bffefff] usable
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000009bfff000-0x000000009cffffff] reserved
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000009d790000-0x000000009d7effff] reserved
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000009d7f5000-0x000000009fffffff] reserved
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x0000000100000000-0x000000043e2fffff] usable
2024-12-17 14:38:54,526 DEBUG:	BIOS-e820: [mem 0x000000043f340000-0x00000004801fffff] reserved
2024-12-17 14:38:54,526 DEBUG:	NX (Execute Disable) protection: active
2024-12-17 14:38:54,526 DEBUG:	APIC: Static calls initialized
2024-12-17 14:38:54,526 DEBUG:	e820: update [mem 0x7e988018-0x7e9a3857] usable ==> usable
2024-12-17 14:38:54,526 DEBUG:	e820: update [mem 0x8aad4018-0x8aad7057] usable ==> usable
2024-12-17 14:38:54,526 DEBUG:	extended physical RAM map:
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x0000000000100000-0x0000000009a7efff] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x0000000009a7f000-0x0000000009ffffff] reserved
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000000a200000-0x000000000a23bfff] ACPI NVS
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000000a23c000-0x000000007e988017] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000007e988018-0x000000007e9a3857] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000007e9a3858-0x000000008aad4017] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000008aad4018-0x000000008aad7057] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000008aad7058-0x000000008f82cfff] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000008f82d000-0x000000009238afff] reserved
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000009238b000-0x0000000092416fff] ACPI data
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x0000000092417000-0x0000000097490fff] ACPI NVS
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x0000000097491000-0x000000009adfefff] reserved
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000009adff000-0x000000009bff8fff] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000009bff9000-0x000000009bffcfff] reserved
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000009bffd000-0x000000009bffefff] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000009bfff000-0x000000009cffffff] reserved
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000009d790000-0x000000009d7effff] reserved
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000009d7f5000-0x000000009fffffff] reserved
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x0000000100000000-0x000000043e2fffff] usable
2024-12-17 14:38:54,527 DEBUG:	reserve setup_data: [mem 0x000000043f340000-0x00000004801fffff] reserved
2024-12-17 14:38:54,527 DEBUG:	efi: EFI v2.8 by American Megatrends
2024-12-17 14:38:54,527 DEBUG:	efi: ACPI=0x97477000 ACPI 2.0=0x97477014 TPMFinalLog=0x97443000 SMBIOS=0x9ab6d000 SMBIOS 3.0=0x9ab6c000 MEMATTR=0x8c2fe018 ESRT=0x8dd56c98 MOKvar=0x9abca000 INITRD=0x8afef518 RNG=0x923a6018 TPMEventLog=0x92398018 
2024-12-17 14:38:54,527 DEBUG:	random: crng init done
2024-12-17 14:38:54,528 DEBUG:	efi: Remove mem60: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
2024-12-17 14:38:54,528 DEBUG:	e820: remove [mem 0xe0000000-0xefffffff] reserved
2024-12-17 14:38:54,528 DEBUG:	efi: Remove mem61: MMIO range=[0xfd000000-0xfedfffff] (30MB) from e820 map
2024-12-17 14:38:54,528 DEBUG:	e820: remove [mem 0xfd000000-0xfedfffff] reserved
2024-12-17 14:38:54,528 DEBUG:	efi: Not removing mem62: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
2024-12-17 14:38:54,528 DEBUG:	efi: Remove mem63: MMIO range=[0xfee01000-0xffffffff] (17MB) from e820 map
2024-12-17 14:38:54,528 DEBUG:	e820: remove [mem 0xfee01000-0xffffffff] reserved
2024-12-17 14:38:54,528 DEBUG:	efi: Remove mem65: MMIO range=[0x460000000-0x4801fffff] (514MB) from e820 map
2024-12-17 14:38:54,528 DEBUG:	e820: remove [mem 0x460000000-0x4801fffff] reserved
2024-12-17 14:38:54,528 DEBUG:	SMBIOS 3.5.0 present.
2024-12-17 14:38:54,528 DEBUG:	DMI: TUXEDO TUXEDO Sirius 16 Gen1/APX958, BIOS V1.00A00_20240108 01/08/2024
2024-12-17 14:38:54,528 DEBUG:	DMI: Memory slots populated: 2/2
2024-12-17 14:38:54,528 DEBUG:	tsc: Fast TSC calibration using PIT
2024-12-17 14:38:54,528 DEBUG:	tsc: Detected 3992.802 MHz processor
2024-12-17 14:38:54,528 DEBUG:	e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
2024-12-17 14:38:54,528 DEBUG:	e820: remove [mem 0x000a0000-0x000fffff] usable
2024-12-17 14:38:54,528 DEBUG:	last_pfn = 0x43e300 max_arch_pfn = 0x400000000
2024-12-17 14:38:54,528 DEBUG:	MTRR map: 5 entries (3 fixed + 2 variable; max 20), built from 9 variable MTRRs
2024-12-17 14:38:54,528 DEBUG:	x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
2024-12-17 14:38:54,528 DEBUG:	e820: update [mem 0xa0000000-0xffffffff] usable ==> reserved
2024-12-17 14:38:54,528 DEBUG:	last_pfn = 0x9bfff max_arch_pfn = 0x400000000
2024-12-17 14:38:54,528 DEBUG:	esrt: Reserving ESRT space from 0x000000008dd56c98 to 0x000000008dd56cf8.
2024-12-17 14:38:54,528 DEBUG:	e820: update [mem 0x8dd56000-0x8dd56fff] usable ==> reserved
2024-12-17 14:38:54,528 DEBUG:	Using GB pages for direct mapping
2024-12-17 14:38:54,528 DEBUG:	Secure boot disabled
2024-12-17 14:38:54,528 DEBUG:	RAMDISK: [mem 0x7e9a4000-0x820fefff]
2024-12-17 14:38:54,528 DEBUG:	ACPI: Early table checksum verification disabled
2024-12-17 14:38:54,529 DEBUG:	ACPI: RSDP 0x0000000097477014 000024 (v02 ALASKA)
2024-12-17 14:38:54,529 DEBUG:	ACPI: XSDT 0x0000000097476728 000154 (v01 ALASKA A M I    01072009 AMI  01000013)
2024-12-17 14:38:54,529 DEBUG:	ACPI: FACP 0x000000009240C000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
2024-12-17 14:38:54,529 DEBUG:	ACPI: DSDT 0x00000000923FE000 00DA7C (v02 ALASKA A M I    01072009 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: FACS 0x0000000093430000 000040
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x000000009240E000 008416 (v02 AMD    AmdTable 00000002 MSFT 02000002)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x000000009240D000 000221 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
2024-12-17 14:38:54,529 DEBUG:	ACPI: FIDT 0x00000000923FD000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
2024-12-17 14:38:54,529 DEBUG:	ACPI: MCFG 0x00000000923FC000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
2024-12-17 14:38:54,529 DEBUG:	ACPI: FPDT 0x00000000923FB000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
2024-12-17 14:38:54,529 DEBUG:	ACPI: VFCT 0x00000000923E9000 0112A0 (v01 ALASKA A M I    00000001 AMD  33504F47)
2024-12-17 14:38:54,529 DEBUG:	ACPI: BGRT 0x00000000923E8000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
2024-12-17 14:38:54,529 DEBUG:	ACPI: TPM2 0x00000000923E7000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923E1000 00547E (v02 AMD    AmdTable 00000001 AMD  00000001)
2024-12-17 14:38:54,529 DEBUG:	ACPI: CRAT 0x00000000923E0000 000EE8 (v01 AMD    AmdTable 00000001 AMD  00000001)
2024-12-17 14:38:54,529 DEBUG:	ACPI: CDIT 0x00000000923DF000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923DD000 0015C0 (v02 AMD    CPMDFIG2 00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923DA000 002A87 (v02 AMD    CDFAAIG2 00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923D9000 00092F (v02 AMD    CPMDFDG2 00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923D7000 001BA8 (v02 AMD    CPMD3CLD 00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923D6000 000650 (v02 AMD    DFDGCNEV 00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923D4000 00144D (v02 AMD    CPMPMF   00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923D3000 000CDE (v02 AMD    OEMACP   00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923D2000 000634 (v02 AMD    OEMPMF   00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923C8000 0096F8 (v02 AMD    CPMCMN   00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923C7000 00073F (v02 AMD    NVME     00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923C6000 000952 (v02 AMD    GpMsSsdt 00000001 INTL 20220331)
2024-12-17 14:38:54,529 DEBUG:	ACPI: SSDT 0x00000000923C4000 001710 (v02 AMD    UPEP     00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: WSMT 0x00000000923C3000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
2024-12-17 14:38:54,530 DEBUG:	ACPI: APIC 0x00000000923C2000 0000E8 (v05 ALASKA A M I    01072009 AMI  00010013)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923BF000 0022B2 (v02 AMD    AOD      00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: IVRS 0x00000000923BE000 0001A4 (v02 AMD    AmdTable 00000001 AMD  00000001)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923BD000 00094E (v02 AMD    CPMMSOSC 00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923BC000 000EA5 (v02 AMD    CPMACPV5 00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923BB000 000600 (v02 AMD    TOUCHPNL 00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923BA000 000601 (v02 AMD    TOUCHPAD 00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923B9000 0007D5 (v02 AMD    THERMAL0 00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923B8000 000FEF (v02 AMD    GPP_PME_ 00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923AE000 009837 (v02 AMD    INTGPP03 00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923A9000 004FE3 (v02 AMD    INTGPP01 00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923A8000 000B6E (v02 AMD    CPMGPIO0 00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: SSDT 0x00000000923A7000 00008D (v02 AMD    CPMMSLPI 00000001 INTL 20220331)
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving FACP table memory at [mem 0x9240c000-0x9240c113]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving DSDT table memory at [mem 0x923fe000-0x9240ba7b]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving FACS table memory at [mem 0x93430000-0x9343003f]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x9240e000-0x92416415]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x9240d000-0x9240d220]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving FIDT table memory at [mem 0x923fd000-0x923fd09b]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving MCFG table memory at [mem 0x923fc000-0x923fc03b]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving FPDT table memory at [mem 0x923fb000-0x923fb043]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving VFCT table memory at [mem 0x923e9000-0x923fa29f]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving BGRT table memory at [mem 0x923e8000-0x923e8037]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving TPM2 table memory at [mem 0x923e7000-0x923e704b]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923e1000-0x923e647d]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving CRAT table memory at [mem 0x923e0000-0x923e0ee7]
2024-12-17 14:38:54,530 DEBUG:	ACPI: Reserving CDIT table memory at [mem 0x923df000-0x923df028]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923dd000-0x923de5bf]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923da000-0x923dca86]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d9000-0x923d992e]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d7000-0x923d8ba7]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d6000-0x923d664f]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d4000-0x923d544c]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d3000-0x923d3cdd]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923d2000-0x923d2633]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923c8000-0x923d16f7]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923c7000-0x923c773e]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923c6000-0x923c6951]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923c4000-0x923c570f]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving WSMT table memory at [mem 0x923c3000-0x923c3027]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving APIC table memory at [mem 0x923c2000-0x923c20e7]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923bf000-0x923c12b1]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving IVRS table memory at [mem 0x923be000-0x923be1a3]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923bd000-0x923bd94d]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923bc000-0x923bcea4]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923bb000-0x923bb5ff]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923ba000-0x923ba600]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923b9000-0x923b97d4]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923b8000-0x923b8fee]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923ae000-0x923b7836]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923a9000-0x923adfe2]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923a8000-0x923a8b6d]
2024-12-17 14:38:54,531 DEBUG:	ACPI: Reserving SSDT table memory at [mem 0x923a7000-0x923a708c]
2024-12-17 14:38:54,531 DEBUG:	No NUMA configuration found
2024-12-17 14:38:54,531 DEBUG:	Faking a node at [mem 0x0000000000000000-0x000000043e2fffff]
2024-12-17 14:38:54,532 DEBUG:	NODE_DATA(0) allocated [mem 0x43e2d5680-0x43e2fffff]
2024-12-17 14:38:54,532 DEBUG:	Zone ranges:
2024-12-17 14:38:54,532 DEBUG:	  DMA      [mem 0x0000000000001000-0x0000000000ffffff]
2024-12-17 14:38:54,532 DEBUG:	  DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
2024-12-17 14:38:54,532 DEBUG:	  Normal   [mem 0x0000000100000000-0x000000043e2fffff]
2024-12-17 14:38:54,532 DEBUG:	  Device   empty
2024-12-17 14:38:54,532 DEBUG:	Movable zone start for each node
2024-12-17 14:38:54,532 DEBUG:	Early memory node ranges
2024-12-17 14:38:54,532 DEBUG:	  node   0: [mem 0x0000000000001000-0x000000000009ffff]
2024-12-17 14:38:54,532 DEBUG:	  node   0: [mem 0x0000000000100000-0x0000000009a7efff]
2024-12-17 14:38:54,532 DEBUG:	  node   0: [mem 0x000000000a000000-0x000000000a1fffff]
2024-12-17 14:38:54,532 DEBUG:	  node   0: [mem 0x000000000a23c000-0x000000008f82cfff]
2024-12-17 14:38:54,532 DEBUG:	  node   0: [mem 0x000000009adff000-0x000000009bff8fff]
2024-12-17 14:38:54,532 DEBUG:	  node   0: [mem 0x000000009bffd000-0x000000009bffefff]
2024-12-17 14:38:54,532 DEBUG:	  node   0: [mem 0x0000000100000000-0x000000043e2fffff]
2024-12-17 14:38:54,532 DEBUG:	Initmem setup node 0 [mem 0x0000000000001000-0x000000043e2fffff]
2024-12-17 14:38:54,532 DEBUG:	On node 0, zone DMA: 1 pages in unavailable ranges
2024-12-17 14:38:54,532 DEBUG:	On node 0, zone DMA: 96 pages in unavailable ranges
2024-12-17 14:38:54,532 DEBUG:	On node 0, zone DMA32: 1409 pages in unavailable ranges
2024-12-17 14:38:54,532 DEBUG:	On node 0, zone DMA32: 60 pages in unavailable ranges
2024-12-17 14:38:54,532 DEBUG:	On node 0, zone DMA32: 13778 pages in unavailable ranges
2024-12-17 14:38:54,532 DEBUG:	On node 0, zone DMA32: 4 pages in unavailable ranges
2024-12-17 14:38:54,532 DEBUG:	On node 0, zone Normal: 16385 pages in unavailable ranges
2024-12-17 14:38:54,532 DEBUG:	On node 0, zone Normal: 7424 pages in unavailable ranges
2024-12-17 14:38:54,532 DEBUG:	ACPI: PM-Timer IO Port: 0x808
2024-12-17 14:38:54,532 DEBUG:	ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
2024-12-17 14:38:54,532 DEBUG:	IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
2024-12-17 14:38:54,533 DEBUG:	IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
2024-12-17 14:38:54,533 DEBUG:	ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
2024-12-17 14:38:54,533 DEBUG:	ACPI: INT_SRC_OVR (bus 0 bus_irq 1 global_irq 1 low edge)
2024-12-17 14:38:54,533 DEBUG:	ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
2024-12-17 14:38:54,533 DEBUG:	ACPI: Using ACPI (MADT) for SMP configuration information
2024-12-17 14:38:54,533 DEBUG:	e820: update [mem 0x8c348000-0x8c3c3fff] usable ==> reserved
2024-12-17 14:38:54,533 DEBUG:	CPU topo: Max. logical packages:   1
2024-12-17 14:38:54,533 DEBUG:	CPU topo: Max. logical dies:       1
2024-12-17 14:38:54,533 DEBUG:	CPU topo: Max. dies per package:   1
2024-12-17 14:38:54,533 DEBUG:	CPU topo: Max. threads per core:   2
2024-12-17 14:38:54,533 DEBUG:	CPU topo: Num. cores per package:     8
2024-12-17 14:38:54,533 DEBUG:	CPU topo: Num. threads per package:  16
2024-12-17 14:38:54,533 DEBUG:	CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x09a7f000-0x09ffffff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a23bfff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x7e988000-0x7e988fff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x7e9a3000-0x7e9a3fff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x8aad4000-0x8aad4fff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x8aad7000-0x8aad7fff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x8c348000-0x8c3c3fff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x8dd56000-0x8dd56fff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x8f82d000-0x9238afff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9238b000-0x92416fff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x92417000-0x97490fff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x97491000-0x9adfefff]
2024-12-17 14:38:54,533 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9bff9000-0x9bffcfff]
2024-12-17 14:38:54,534 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9bfff000-0x9cffffff]
2024-12-17 14:38:54,534 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9d000000-0x9d78ffff]
2024-12-17 14:38:54,534 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9d790000-0x9d7effff]
2024-12-17 14:38:54,534 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9d7f0000-0x9d7f4fff]
2024-12-17 14:38:54,534 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0x9d7f5000-0x9fffffff]
2024-12-17 14:38:54,534 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0xa0000000-0xfedfffff]
2024-12-17 14:38:54,534 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
2024-12-17 14:38:54,534 DEBUG:	PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
2024-12-17 14:38:54,534 DEBUG:	[mem 0xa0000000-0xfedfffff] available for PCI devices
2024-12-17 14:38:54,534 DEBUG:	Booting paravirtualized kernel on bare hardware
2024-12-17 14:38:54,534 DEBUG:	clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
2024-12-17 14:38:54,534 DEBUG:	setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
2024-12-17 14:38:54,534 DEBUG:	percpu: Embedded 88 pages/cpu s237568 r8192 d114688 u524288
2024-12-17 14:38:54,534 DEBUG:	pcpu-alloc: s237568 r8192 d114688 u524288 alloc=1*2097152
2024-12-17 14:38:54,534 DEBUG:	pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
2024-12-17 14:38:54,534 DEBUG:	pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15 
2024-12-17 14:38:54,534 DEBUG:	Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.13.0-rc3 root=UUID=ce3cb892-12dc-4d50-8a6d-0c5bb2df1de7 ro quiet splash amdgpu.dcdebugmask=0x10 loglevel=3 udev.log_level=3 loglevel=3 udev.log_level=3 vt.handoff=7
2024-12-17 14:38:54,534 DEBUG:	Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-6.13.0-rc3", will be passed to user space.
2024-12-17 14:38:54,534 DEBUG:	printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes
2024-12-17 14:38:54,534 DEBUG:	Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
2024-12-17 14:38:54,534 DEBUG:	Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
2024-12-17 14:38:54,534 DEBUG:	Fallback order for Node 0: 0 
2024-12-17 14:38:54,534 DEBUG:	Built 1 zonelists, mobility grouping on.  Total pages: 3991307
2024-12-17 14:38:54,534 DEBUG:	Policy zone: Normal
2024-12-17 14:38:54,534 DEBUG:	mem auto-init: stack:all(zero), heap alloc:on, heap free:off
2024-12-17 14:38:54,534 DEBUG:	software IO TLB: area num 16.
2024-12-17 14:38:54,534 DEBUG:	SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
2024-12-17 14:38:54,534 DEBUG:	ftrace: allocating 56476 entries in 221 pages
2024-12-17 14:38:54,535 DEBUG:	ftrace: allocated 221 pages with 6 groups
2024-12-17 14:38:54,535 DEBUG:	Dynamic Preempt: voluntary
2024-12-17 14:38:54,535 DEBUG:	rcu: Preemptible hierarchical RCU implementation.
2024-12-17 14:38:54,535 DEBUG:	rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
2024-12-17 14:38:54,535 DEBUG:		Trampoline variant of Tasks RCU enabled.
2024-12-17 14:38:54,535 DEBUG:		Rude variant of Tasks RCU enabled.
2024-12-17 14:38:54,535 DEBUG:		Tracing variant of Tasks RCU enabled.
2024-12-17 14:38:54,535 DEBUG:	rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
2024-12-17 14:38:54,535 DEBUG:	rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
2024-12-17 14:38:54,535 DEBUG:	RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
2024-12-17 14:38:54,535 DEBUG:	RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
2024-12-17 14:38:54,535 DEBUG:	RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
2024-12-17 14:38:54,535 DEBUG:	NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
2024-12-17 14:38:54,535 DEBUG:	rcu: srcu_init: Setting srcu_struct sizes based on contention.
2024-12-17 14:38:54,535 DEBUG:	Console: colour dummy device 80x25
2024-12-17 14:38:54,535 DEBUG:	printk: legacy console [tty0] enabled
2024-12-17 14:38:54,535 DEBUG:	ACPI: Core revision 20240827
2024-12-17 14:38:54,535 DEBUG:	APIC: Switch to symmetric I/O mode setup
2024-12-17 14:38:54,535 DEBUG:	AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160
2024-12-17 14:38:54,535 DEBUG:	AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160
2024-12-17 14:38:54,535 DEBUG:	AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160
2024-12-17 14:38:54,535 DEBUG:	AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160
2024-12-17 14:38:54,535 DEBUG:	AMD-Vi: Using global IVHD EFR:0x246577efa2254afa, EFR2:0x0
2024-12-17 14:38:54,536 DEBUG:	x2apic: IRQ remapping doesn't support X2APIC mode
2024-12-17 14:38:54,536 DEBUG:	..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
2024-12-17 14:38:54,536 DEBUG:	clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x731b99d6951, max_idle_ns: 881590939448 ns
2024-12-17 14:38:54,536 DEBUG:	Calibrating delay loop (skipped), value calculated using timer frequency.. 7985.60 BogoMIPS (lpj=3992802)
2024-12-17 14:38:54,536 DEBUG:	x86/cpu: User Mode Instruction Prevention (UMIP) activated
2024-12-17 14:38:54,536 DEBUG:	LVT offset 1 assigned for vector 0xf9
2024-12-17 14:38:54,536 DEBUG:	LVT offset 2 assigned for vector 0xf4
2024-12-17 14:38:54,536 DEBUG:	Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
2024-12-17 14:38:54,536 DEBUG:	Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
2024-12-17 14:38:54,537 DEBUG:	process: using mwait in idle threads
2024-12-17 14:38:54,537 DEBUG:	Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
2024-12-17 14:38:54,537 DEBUG:	Spectre V2 : Mitigation: Enhanced / Automatic IBRS
2024-12-17 14:38:54,538 DEBUG:	Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
2024-12-17 14:38:54,538 DEBUG:	Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
2024-12-17 14:38:54,538 DEBUG:	Spectre V2 : User space: Mitigation: STIBP always-on protection
2024-12-17 14:38:54,538 DEBUG:	Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
2024-12-17 14:38:54,538 DEBUG:	Speculative Return Stack Overflow: IBPB-extending microcode not applied!
2024-12-17 14:38:54,538 DEBUG:	Speculative Return Stack Overflow: WARNING: See https://kernel.org/doc/html/latest/admin-guide/hw-vuln/srso.html for mitigation options.
2024-12-17 14:38:54,538 DEBUG:	Speculative Return Stack Overflow: Vulnerable: Safe RET, no microcode
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
2024-12-17 14:38:54,538 DEBUG:	x86/fpu: xstate_offset[11]: 2440, xstate_sizes[11]:   16
2024-12-17 14:38:54,539 DEBUG:	x86/fpu: Enabled xstate features 0xae7, context size is 2456 bytes, using 'compacted' format.
2024-12-17 14:38:54,539 DEBUG:	Freeing SMP alternatives memory: 48K
2024-12-17 14:38:54,539 DEBUG:	pid_max: default: 32768 minimum: 301
2024-12-17 14:38:54,539 DEBUG:	LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
2024-12-17 14:38:54,539 DEBUG:	landlock: Up and running.
2024-12-17 14:38:54,539 DEBUG:	Yama: becoming mindful.
2024-12-17 14:38:54,539 DEBUG:	AppArmor: AppArmor initialized
2024-12-17 14:38:54,539 DEBUG:	Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
2024-12-17 14:38:54,539 DEBUG:	Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
2024-12-17 14:38:54,539 DEBUG:	smpboot: CPU0: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics (family: 0x19, model: 0x74, stepping: 0x1)
2024-12-17 14:38:54,539 DEBUG:	Performance Events: Fam17h+ 16-deep LBR, core perfctr, AMD PMU driver.
2024-12-17 14:38:54,539 DEBUG:	... version:                2
2024-12-17 14:38:54,539 DEBUG:	... bit width:              48
2024-12-17 14:38:54,539 DEBUG:	... generic registers:      6
2024-12-17 14:38:54,539 DEBUG:	... value mask:             0000ffffffffffff
2024-12-17 14:38:54,539 DEBUG:	... max period:             00007fffffffffff
2024-12-17 14:38:54,539 DEBUG:	... fixed-purpose events:   0
2024-12-17 14:38:54,539 DEBUG:	... event mask:             000000000000003f
2024-12-17 14:38:54,539 DEBUG:	signal: max sigframe size: 3376
2024-12-17 14:38:54,539 DEBUG:	rcu: Hierarchical SRCU implementation.
2024-12-17 14:38:54,539 DEBUG:	rcu: 	Max phase no-delay instances is 400.
2024-12-17 14:38:54,539 DEBUG:	Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
2024-12-17 14:38:54,539 DEBUG:	NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
2024-12-17 14:38:54,539 DEBUG:	smp: Bringing up secondary CPUs ...
2024-12-17 14:38:54,539 DEBUG:	smpboot: x86: Booting SMP configuration:
2024-12-17 14:38:54,540 DEBUG:	.... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
2024-12-17 14:38:54,540 DEBUG:	Spectre V2 : Update user space SMT mitigation: STIBP always-on
2024-12-17 14:38:54,540 DEBUG:	smp: Brought up 1 node, 16 CPUs
2024-12-17 14:38:54,540 DEBUG:	smpboot: Total of 16 processors activated (127769.66 BogoMIPS)
2024-12-17 14:38:54,540 DEBUG:	Memory: 15487140K/15965228K available (22528K kernel code, 4614K rwdata, 8420K rodata, 5092K init, 4436K bss, 453868K reserved, 0K cma-reserved)
2024-12-17 14:38:54,540 DEBUG:	devtmpfs: initialized
2024-12-17 14:38:54,540 DEBUG:	x86/mm: Memory block size: 128MB
2024-12-17 14:38:54,540 DEBUG:	ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a23bfff] (245760 bytes)
2024-12-17 14:38:54,540 DEBUG:	ACPI: PM: Registering ACPI NVS region [mem 0x92417000-0x97490fff] (84385792 bytes)
2024-12-17 14:38:54,540 DEBUG:	clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
2024-12-17 14:38:54,540 DEBUG:	futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
2024-12-17 14:38:54,540 DEBUG:	pinctrl core: initialized pinctrl subsystem
2024-12-17 14:38:54,540 DEBUG:	PM: RTC time: 13:38:18, date: 2024-12-17
2024-12-17 14:38:54,540 DEBUG:	NET: Registered PF_NETLINK/PF_ROUTE protocol family
2024-12-17 14:38:54,540 DEBUG:	DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
2024-12-17 14:38:54,540 DEBUG:	DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
2024-12-17 14:38:54,540 DEBUG:	DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
2024-12-17 14:38:54,540 DEBUG:	audit: initializing netlink subsys (disabled)
2024-12-17 14:38:54,540 DEBUG:	audit: type=2000 audit(1734442698.161:1): state=initialized audit_enabled=0 res=1
2024-12-17 14:38:54,540 DEBUG:	thermal_sys: Registered thermal governor 'fair_share'
2024-12-17 14:38:54,540 DEBUG:	thermal_sys: Registered thermal governor 'bang_bang'
2024-12-17 14:38:54,540 DEBUG:	thermal_sys: Registered thermal governor 'step_wise'
2024-12-17 14:38:54,541 DEBUG:	thermal_sys: Registered thermal governor 'user_space'
2024-12-17 14:38:54,541 DEBUG:	thermal_sys: Registered thermal governor 'power_allocator'
2024-12-17 14:38:54,541 DEBUG:	EISA bus registered
2024-12-17 14:38:54,541 DEBUG:	cpuidle: using governor ladder
2024-12-17 14:38:54,541 DEBUG:	cpuidle: using governor menu
2024-12-17 14:38:54,541 DEBUG:	acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
2024-12-17 14:38:54,541 DEBUG:	PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
2024-12-17 14:38:54,541 DEBUG:	PCI: Using configuration type 1 for base access
2024-12-17 14:38:54,541 DEBUG:	kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
2024-12-17 14:38:54,541 DEBUG:	HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
2024-12-17 14:38:54,541 DEBUG:	HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
2024-12-17 14:38:54,541 DEBUG:	HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
2024-12-17 14:38:54,541 DEBUG:	HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
2024-12-17 14:38:54,541 DEBUG:	ACPI: Added _OSI(Module Device)
2024-12-17 14:38:54,541 DEBUG:	ACPI: Added _OSI(Processor Device)
2024-12-17 14:38:54,541 DEBUG:	ACPI: Added _OSI(3.0 _SCP Extensions)
2024-12-17 14:38:54,541 DEBUG:	ACPI: Added _OSI(Processor Aggregator Device)
2024-12-17 14:38:54,541 DEBUG:	ACPI BIOS Error (bug): Failure creating named object [\_SB.I2CA.TPNL], AE_ALREADY_EXISTS (20240827/dswload2-326)
2024-12-17 14:38:54,541 DEBUG:	ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
2024-12-17 14:38:54,541 DEBUG:	ACPI: Skipping parse of AML opcode: Device (0x5B82)
2024-12-17 14:38:54,541 DEBUG:	ACPI BIOS Error (bug): Failure creating named object [\_SB.I2CD.TPDD], AE_ALREADY_EXISTS (20240827/dswload2-326)
2024-12-17 14:38:54,541 DEBUG:	ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
2024-12-17 14:38:54,541 DEBUG:	ACPI: Skipping parse of AML opcode: Device (0x5B82)
2024-12-17 14:38:54,541 DEBUG:	ACPI: 27 ACPI AML tables successfully acquired and loaded
2024-12-17 14:38:54,541 DEBUG:	ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
2024-12-17 14:38:54,541 DEBUG:	ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
2024-12-17 14:38:54,542 DEBUG:	ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
2024-12-17 14:38:54,542 DEBUG:	ACPI: EC: EC started
2024-12-17 14:38:54,542 DEBUG:	ACPI: EC: interrupt blocked
2024-12-17 14:38:54,542 DEBUG:	ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.SBRG.H_EC: Boot DSDT EC used to handle transactions
2024-12-17 14:38:54,542 DEBUG:	ACPI: Interpreter enabled
2024-12-17 14:38:54,542 DEBUG:	ACPI: PM: (supports S0 S4 S5)
2024-12-17 14:38:54,542 DEBUG:	ACPI: Using IOAPIC for interrupt routing
2024-12-17 14:38:54,542 DEBUG:	PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
2024-12-17 14:38:54,542 DEBUG:	PCI: Ignoring E820 reservations for host bridge windows
2024-12-17 14:38:54,542 DEBUG:	ACPI: Enabled 5 GPEs in block 00 to 1F
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GPP0.M237: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GPP0.SWUS.M237: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GPP0.SWUS.SWDS.M237: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GPP8.P0NV: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GP11.PWRS: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GP11.SWUS.PWRS: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GP12.PWRS: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GP12.SWUS.PWRS: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GP17.PWRS: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GP17.VGA_.PWRS: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GP17.HDAU.PWRS: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GP17.ACP_.PWRS: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GP17.AZAL.PWRS: New power resource
2024-12-17 14:38:54,542 DEBUG:	ACPI: \_SB_.PCI0.GP17.XHC0.PWRS: New power resource
2024-12-17 14:38:54,543 DEBUG:	ACPI: \_SB_.PCI0.GP17.XHC1.PWRS: New power resource
2024-12-17 14:38:54,543 DEBUG:	ACPI: \_SB_.PCI0.GP19.XHC2.PWRS: New power resource
2024-12-17 14:38:54,543 DEBUG:	ACPI: \_SB_.PCI0.GP19.XHC3.PWRS: New power resource
2024-12-17 14:38:54,543 DEBUG:	ACPI: \_SB_.PCI0.GP19.XHC4.PWRS: New power resource
2024-12-17 14:38:54,543 DEBUG:	ACPI: \_SB_.PCI0.GP19.NHI0.PWRS: New power resource
2024-12-17 14:38:54,543 DEBUG:	ACPI: \_SB_.PCI0.GP19.NHI1.PWRS: New power resource
2024-12-17 14:38:54,543 DEBUG:	ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
2024-12-17 14:38:54,543 DEBUG:	acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
2024-12-17 14:38:54,543 DEBUG:	acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
2024-12-17 14:38:54,543 DEBUG:	acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
2024-12-17 14:38:54,543 DEBUG:	PCI host bridge to bus 0000:00
2024-12-17 14:38:54,543 DEBUG:	pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
2024-12-17 14:38:54,543 DEBUG:	pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
2024-12-17 14:38:54,543 DEBUG:	pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
2024-12-17 14:38:54,543 DEBUG:	pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
2024-12-17 14:38:54,543 DEBUG:	pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
2024-12-17 14:38:54,543 DEBUG:	pci_bus 0000:00: root bus resource [mem 0xfa000000-0xfcffffff window]
2024-12-17 14:38:54,543 DEBUG:	pci_bus 0000:00: root bus resource [mem 0xf0000000-0xf9ffffff window]
2024-12-17 14:38:54,543 DEBUG:	pci_bus 0000:00: root bus resource [mem 0xa0000000-0xdfffffff window]
2024-12-17 14:38:54,543 DEBUG:	pci_bus 0000:00: root bus resource [mem 0x460000000-0x7fffffffff window]
2024-12-17 14:38:54,543 DEBUG:	pci_bus 0000:00: root bus resource [bus 00-ff]
2024-12-17 14:38:54,543 DEBUG:	pci 0000:00:00.0: [1022:14e8] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,543 DEBUG:	pci 0000:00:00.2: [1022:14e9] type 00 class 0x080600 conventional PCI endpoint
2024-12-17 14:38:54,543 DEBUG:	pci 0000:00:01.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,543 DEBUG:	pci 0000:00:01.1: [1022:14ed] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:01.1: PCI bridge to [bus 01-03]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:01.1:   bridge window [io  0xf000-0xffff]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:01.1:   bridge window [mem 0xdc900000-0xdcbfffff]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:01.1:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.1: [1022:14ee] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.1: PCI bridge to [bus 04]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.1:   bridge window [io  0xe000-0xefff]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.1:   bridge window [mem 0xdcf00000-0xdcffffff]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.1: enabling Extended Tags
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.2: [1022:14ee] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.2: PCI bridge to [bus 05]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.2:   bridge window [mem 0xdce00000-0xdcefffff]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.2: enabling Extended Tags
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.3: [1022:14ee] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.3: PCI bridge to [bus 06]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.3: enabling Extended Tags
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.4: [1022:14ee] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.4: PCI bridge to [bus 07]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.4:   bridge window [mem 0xdcd00000-0xdcdfffff]
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.4: enabling Extended Tags
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,544 DEBUG:	pci 0000:00:03.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:03.1: [1022:14ef] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:03.1: PCI bridge to [bus 08-67]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:03.1:   bridge window [io  0x9000-0xcfff]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:03.1:   bridge window [mem 0xc4000000-0xdbffffff]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:03.1:   bridge window [mem 0x7d00000000-0x7effffffff 64bit pref]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:03.1: enabling Extended Tags
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:04.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.1: [1022:14eb] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.1: PCI bridge to [bus 68]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.1:   bridge window [io  0xd000-0xdfff]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.1:   bridge window [mem 0xdc000000-0xdc5fffff]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.1:   bridge window [mem 0x7f00000000-0x7f107fffff 64bit pref]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.1: enabling Extended Tags
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.2: [1022:14eb] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.2: PCI bridge to [bus 69]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.2:   bridge window [mem 0xdcc00000-0xdccfffff]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.2:   bridge window [mem 0x7f10900000-0x7f109fffff 64bit pref]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.2: enabling Extended Tags
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.3: [1022:14eb] type 01 class 0x060400 PCIe Root Port
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.3: PCI bridge to [bus 6a]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.3:   bridge window [mem 0xdc600000-0xdc8fffff]
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.3: enabling Extended Tags
2024-12-17 14:38:54,545 DEBUG:	pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:18.0: [1022:14f0] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:18.1: [1022:14f1] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:18.2: [1022:14f2] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:18.3: [1022:14f3] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:18.4: [1022:14f4] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:18.5: [1022:14f5] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:18.6: [1022:14f6] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:18.7: [1022:14f7] type 00 class 0x060000 conventional PCI endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
2024-12-17 14:38:54,546 DEBUG:	pci 0000:01:00.0: BAR 0 [mem 0xdcb00000-0xdcb03fff]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:01:00.0: PCI bridge to [bus 02-03]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:01:00.0:   bridge window [io  0xf000-0xffff]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:01:00.0:   bridge window [mem 0xdc900000-0xdcafffff]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:01:00.0:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,546 DEBUG:	pci 0000:00:01.1: PCI bridge to [bus 01-03]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
2024-12-17 14:38:54,546 DEBUG:	pci 0000:02:00.0: PCI bridge to [bus 03]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:02:00.0:   bridge window [io  0xf000-0xffff]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:02:00.0:   bridge window [mem 0xdc900000-0xdcafffff]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:02:00.0:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,546 DEBUG:	pci 0000:01:00.0: PCI bridge to [bus 02-03]
2024-12-17 14:38:54,546 DEBUG:	pci 0000:03:00.0: [1002:7480] type 00 class 0x030000 PCIe Legacy Endpoint
2024-12-17 14:38:54,546 DEBUG:	pci 0000:03:00.0: BAR 0 [mem 0x7a00000000-0x7bffffffff 64bit pref]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:03:00.0: BAR 2 [mem 0x7c00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:03:00.0: BAR 4 [io  0xf000-0xf0ff]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:03:00.0: BAR 5 [mem 0xdc900000-0xdc9fffff]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:03:00.0: ROM [mem 0xdca00000-0xdca1ffff pref]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
2024-12-17 14:38:54,547 DEBUG:	pci 0000:03:00.1: [1002:ab30] type 00 class 0x040300 PCIe Legacy Endpoint
2024-12-17 14:38:54,547 DEBUG:	pci 0000:03:00.1: BAR 0 [mem 0xdca20000-0xdca23fff]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
2024-12-17 14:38:54,547 DEBUG:	pci 0000:02:00.0: PCI bridge to [bus 03]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
2024-12-17 14:38:54,547 DEBUG:	pci 0000:04:00.0: BAR 0 [io  0xe000-0xe0ff]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:04:00.0: BAR 2 [mem 0xdcf04000-0xdcf04fff 64bit]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:04:00.0: BAR 4 [mem 0xdcf00000-0xdcf03fff 64bit]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:04:00.0: supports D1 D2
2024-12-17 14:38:54,547 DEBUG:	pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
2024-12-17 14:38:54,547 DEBUG:	pci 0000:00:02.1: PCI bridge to [bus 04]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:05:00.0: [8086:2725] type 00 class 0x028000 PCIe Endpoint
2024-12-17 14:38:54,547 DEBUG:	pci 0000:05:00.0: BAR 0 [mem 0xdce00000-0xdce03fff 64bit]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,547 DEBUG:	pci 0000:00:02.2: PCI bridge to [bus 05]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:00:02.3: PCI bridge to [bus 06]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:07:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
2024-12-17 14:38:54,547 DEBUG:	pci 0000:07:00.0: BAR 0 [mem 0xdcd00000-0xdcd03fff 64bit]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:00:02.4: PCI bridge to [bus 07]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:00:03.1: PCI bridge to [bus 08-67]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:68:00.0: [1002:15bf] type 00 class 0x030000 PCIe Legacy Endpoint
2024-12-17 14:38:54,547 DEBUG:	pci 0000:68:00.0: BAR 0 [mem 0x7f00000000-0x7f0fffffff 64bit pref]
2024-12-17 14:38:54,547 DEBUG:	pci 0000:68:00.0: BAR 2 [mem 0xdc000000-0xdc1fffff 64bit pref]
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.0: BAR 4 [io  0xd000-0xd0ff]
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.0: BAR 5 [mem 0xdc500000-0xdc57ffff]
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.0: enabling Extended Tags
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.0: PME# supported from D1 D2 D3hot D3cold
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.1: [1002:1640] type 00 class 0x040300 PCIe Legacy Endpoint
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.1: BAR 0 [mem 0xdc5c8000-0xdc5cbfff]
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.1: enabling Extended Tags
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.1: PME# supported from D1 D2 D3hot D3cold
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.2: [1022:15c7] type 00 class 0x108000 PCIe Endpoint
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.2: BAR 2 [mem 0xdc400000-0xdc4fffff]
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.2: BAR 5 [mem 0xdc5cc000-0xdc5cdfff]
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.2: enabling Extended Tags
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.3: [1022:15b9] type 00 class 0x0c0330 PCIe Endpoint
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.3: BAR 0 [mem 0xdc300000-0xdc3fffff 64bit]
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.3: enabling Extended Tags
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.3: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.4: [1022:15ba] type 00 class 0x0c0330 PCIe Endpoint
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.4: BAR 0 [mem 0xdc200000-0xdc2fffff 64bit]
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.4: enabling Extended Tags
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.4: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.5: BAR 0 [mem 0xdc580000-0xdc5bffff]
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.5: BAR 2 [mem 0x7f10000000-0x7f107fffff 64bit pref]
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.5: enabling Extended Tags
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.5: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint
2024-12-17 14:38:54,548 DEBUG:	pci 0000:68:00.6: BAR 0 [mem 0xdc5c0000-0xdc5c7fff]
2024-12-17 14:38:54,549 DEBUG:	pci 0000:68:00.6: enabling Extended Tags
2024-12-17 14:38:54,549 DEBUG:	pci 0000:68:00.6: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,549 DEBUG:	pci 0000:00:08.1: PCI bridge to [bus 68]
2024-12-17 14:38:54,549 DEBUG:	pci 0000:69:00.0: [1022:14ec] type 00 class 0x130000 PCIe Endpoint
2024-12-17 14:38:54,549 DEBUG:	pci 0000:69:00.0: enabling Extended Tags
2024-12-17 14:38:54,549 DEBUG:	pci 0000:69:00.0: PME# supported from D3hot D3cold
2024-12-17 14:38:54,549 DEBUG:	pci 0000:69:00.1: [1022:1502] type 00 class 0x118000 PCIe Endpoint
2024-12-17 14:38:54,549 DEBUG:	pci 0000:69:00.1: BAR 0 [mem 0xdcc00000-0xdcc7ffff]
2024-12-17 14:38:54,549 DEBUG:	pci 0000:69:00.1: BAR 1 [mem 0xdccc0000-0xdccc1fff]
2024-12-17 14:38:54,549 DEBUG:	pci 0000:69:00.1: BAR 2 [mem 0x7f10900000-0x7f1093ffff 64bit pref]
2024-12-17 14:38:54,549 DEBUG:	pci 0000:69:00.1: BAR 4 [mem 0xdcc80000-0xdccbffff]
2024-12-17 14:38:54,549 DEBUG:	pci 0000:69:00.1: enabling Extended Tags
2024-12-17 14:38:54,549 DEBUG:	pci 0000:00:08.2: PCI bridge to [bus 69]
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.0: [1022:14ec] type 00 class 0x130000 PCIe Endpoint
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.0: enabling Extended Tags
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.3: [1022:15c0] type 00 class 0x0c0330 PCIe Endpoint
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.3: BAR 0 [mem 0xdc700000-0xdc7fffff 64bit]
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.3: enabling Extended Tags
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.3: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.4: [1022:15c1] type 00 class 0x0c0330 PCIe Endpoint
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.4: BAR 0 [mem 0xdc600000-0xdc6fffff 64bit]
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.4: enabling Extended Tags
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.4: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.5: [1022:1668] type 00 class 0x0c0340 PCIe Endpoint
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.5: BAR 0 [mem 0xdc800000-0xdc87ffff 64bit]
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.5: enabling Extended Tags
2024-12-17 14:38:54,549 DEBUG:	pci 0000:6a:00.5: PME# supported from D0 D3hot D3cold
2024-12-17 14:38:54,549 DEBUG:	pci 0000:00:08.3: PCI bridge to [bus 6a]
2024-12-17 14:38:54,550 DEBUG:	ACPI: PCI: Interrupt link LNKA configured for IRQ 0
2024-12-17 14:38:54,550 DEBUG:	ACPI: PCI: Interrupt link LNKB configured for IRQ 0
2024-12-17 14:38:54,550 DEBUG:	ACPI: PCI: Interrupt link LNKC configured for IRQ 0
2024-12-17 14:38:54,550 DEBUG:	ACPI: PCI: Interrupt link LNKD configured for IRQ 0
2024-12-17 14:38:54,550 DEBUG:	ACPI: PCI: Interrupt link LNKE configured for IRQ 0
2024-12-17 14:38:54,550 DEBUG:	ACPI: PCI: Interrupt link LNKF configured for IRQ 0
2024-12-17 14:38:54,550 DEBUG:	ACPI: PCI: Interrupt link LNKG configured for IRQ 0
2024-12-17 14:38:54,550 DEBUG:	ACPI: PCI: Interrupt link LNKH configured for IRQ 0
2024-12-17 14:38:54,550 DEBUG:	Low-power S0 idle used by default for system suspend
2024-12-17 14:38:54,550 DEBUG:	ACPI: EC: interrupt unblocked
2024-12-17 14:38:54,550 DEBUG:	ACPI: EC: event unblocked
2024-12-17 14:38:54,550 DEBUG:	ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
2024-12-17 14:38:54,550 DEBUG:	ACPI: EC: GPE=0x5
2024-12-17 14:38:54,550 DEBUG:	ACPI: \_SB_.PCI0.SBRG.H_EC: Boot DSDT EC initialization complete
2024-12-17 14:38:54,550 DEBUG:	ACPI: \_SB_.PCI0.SBRG.H_EC: EC: Used to handle transactions and events
2024-12-17 14:38:54,550 DEBUG:	iommu: Default domain type: Translated
2024-12-17 14:38:54,550 DEBUG:	iommu: DMA domain TLB invalidation policy: lazy mode
2024-12-17 14:38:54,550 DEBUG:	SCSI subsystem initialized
2024-12-17 14:38:54,550 DEBUG:	libata version 3.00 loaded.
2024-12-17 14:38:54,550 DEBUG:	ACPI: bus type USB registered
2024-12-17 14:38:54,550 DEBUG:	usbcore: registered new interface driver usbfs
2024-12-17 14:38:54,550 DEBUG:	usbcore: registered new interface driver hub
2024-12-17 14:38:54,550 DEBUG:	usbcore: registered new device driver usb
2024-12-17 14:38:54,550 DEBUG:	pps_core: LinuxPPS API ver. 1 registered
2024-12-17 14:38:54,550 DEBUG:	pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
2024-12-17 14:38:54,550 DEBUG:	PTP clock support registered
2024-12-17 14:38:54,550 DEBUG:	EDAC MC: Ver: 3.0.0
2024-12-17 14:38:54,551 DEBUG:	efivars: Registered efivars operations
2024-12-17 14:38:54,551 DEBUG:	NetLabel: Initializing
2024-12-17 14:38:54,551 DEBUG:	NetLabel:  domain hash size = 128
2024-12-17 14:38:54,551 DEBUG:	NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
2024-12-17 14:38:54,551 DEBUG:	NetLabel:  unlabeled traffic allowed by default
2024-12-17 14:38:54,551 DEBUG:	mctp: management component transport protocol core
2024-12-17 14:38:54,551 DEBUG:	NET: Registered PF_MCTP protocol family
2024-12-17 14:38:54,551 DEBUG:	PCI: Using ACPI for IRQ routing
2024-12-17 14:38:54,551 DEBUG:	PCI: pci_cache_line_size set to 64 bytes
2024-12-17 14:38:54,551 DEBUG:	e820: reserve RAM buffer [mem 0x09a7f000-0x0bffffff]
2024-12-17 14:38:54,551 DEBUG:	e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
2024-12-17 14:38:54,551 DEBUG:	e820: reserve RAM buffer [mem 0x7e988018-0x7fffffff]
2024-12-17 14:38:54,551 DEBUG:	e820: reserve RAM buffer [mem 0x8aad4018-0x8bffffff]
2024-12-17 14:38:54,551 DEBUG:	e820: reserve RAM buffer [mem 0x8c348000-0x8fffffff]
2024-12-17 14:38:54,551 DEBUG:	e820: reserve RAM buffer [mem 0x8dd56000-0x8fffffff]
2024-12-17 14:38:54,551 DEBUG:	e820: reserve RAM buffer [mem 0x8f82d000-0x8fffffff]
2024-12-17 14:38:54,551 DEBUG:	e820: reserve RAM buffer [mem 0x9bff9000-0x9bffffff]
2024-12-17 14:38:54,551 DEBUG:	e820: reserve RAM buffer [mem 0x9bfff000-0x9bffffff]
2024-12-17 14:38:54,551 DEBUG:	e820: reserve RAM buffer [mem 0x43e300000-0x43fffffff]
2024-12-17 14:38:54,551 DEBUG:	pci 0000:03:00.0: vgaarb: setting as boot VGA device
2024-12-17 14:38:54,551 DEBUG:	pci 0000:03:00.0: vgaarb: bridge control possible
2024-12-17 14:38:54,551 DEBUG:	pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
2024-12-17 14:38:54,551 DEBUG:	pci 0000:68:00.0: vgaarb: setting as boot VGA device (overriding previous)
2024-12-17 14:38:54,551 DEBUG:	pci 0000:68:00.0: vgaarb: bridge control possible
2024-12-17 14:38:54,551 DEBUG:	pci 0000:68:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
2024-12-17 14:38:54,551 DEBUG:	vgaarb: loaded
2024-12-17 14:38:54,551 DEBUG:	clocksource: Switched to clocksource tsc-early
2024-12-17 14:38:54,551 DEBUG:	VFS: Disk quotas dquot_6.6.0
2024-12-17 14:38:54,552 DEBUG:	VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
2024-12-17 14:38:54,552 DEBUG:	AppArmor: AppArmor Filesystem Enabled
2024-12-17 14:38:54,552 DEBUG:	pnp: PnP ACPI init
2024-12-17 14:38:54,552 DEBUG:	system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
2024-12-17 14:38:54,552 DEBUG:	ACPI: IRQ 1 override to edge, low(!)
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x04d0-0x04d1] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x040b] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x04d6] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0c00-0x0c01] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0c14] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0c50-0x0c51] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0c52] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0c6c] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0c6f] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0cd0-0x0cd1] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0cd2-0x0cd3] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0cd4-0x0cd5] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0cd6-0x0cd7] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0cd8-0x0cdf] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0800-0x089f] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0b00-0x0b0f] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0b20-0x0b3f] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0900-0x090f] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [io  0x0910-0x091f] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
2024-12-17 14:38:54,552 DEBUG:	system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
2024-12-17 14:38:54,553 DEBUG:	system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
2024-12-17 14:38:54,553 DEBUG:	system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
2024-12-17 14:38:54,553 DEBUG:	system 00:03: [mem 0xff000000-0xffffffff] has been reserved
2024-12-17 14:38:54,553 DEBUG:	pnp: PnP ACPI: found 4 devices
2024-12-17 14:38:54,553 DEBUG:	clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
2024-12-17 14:38:54,553 DEBUG:	NET: Registered PF_INET protocol family
2024-12-17 14:38:54,553 DEBUG:	IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
2024-12-17 14:38:54,553 DEBUG:	tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
2024-12-17 14:38:54,553 DEBUG:	Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
2024-12-17 14:38:54,553 DEBUG:	TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
2024-12-17 14:38:54,553 DEBUG:	TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
2024-12-17 14:38:54,553 DEBUG:	TCP: Hash tables configured (established 131072 bind 65536)
2024-12-17 14:38:54,553 DEBUG:	MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
2024-12-17 14:38:54,553 DEBUG:	UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
2024-12-17 14:38:54,553 DEBUG:	UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
2024-12-17 14:38:54,553 DEBUG:	NET: Registered PF_UNIX/PF_LOCAL protocol family
2024-12-17 14:38:54,553 DEBUG:	NET: Registered PF_XDP protocol family
2024-12-17 14:38:54,553 DEBUG:	pci 0000:00:02.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
2024-12-17 14:38:54,553 DEBUG:	pci 0000:00:02.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
2024-12-17 14:38:54,553 DEBUG:	pci 0000:00:02.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000 add_align 100000
2024-12-17 14:38:54,553 DEBUG:	pci 0000:00:02.3: bridge window [mem 0x00100000-0x000fffff] to [bus 06] add_size 200000 add_align 100000
2024-12-17 14:38:54,553 DEBUG:	pci 0000:00:02.1: bridge window [mem 0x460000000-0x4601fffff 64bit pref]: assigned
2024-12-17 14:38:54,553 DEBUG:	pci 0000:00:02.3: bridge window [mem 0xfa000000-0xfa1fffff]: assigned
2024-12-17 14:38:54,553 DEBUG:	pci 0000:00:02.3: bridge window [mem 0x460200000-0x4603fffff 64bit pref]: assigned
2024-12-17 14:38:54,553 DEBUG:	pci 0000:00:02.3: bridge window [io  0x1000-0x1fff]: assigned
2024-12-17 14:38:54,553 DEBUG:	pci 0000:02:00.0: PCI bridge to [bus 03]
2024-12-17 14:38:54,553 DEBUG:	pci 0000:02:00.0:   bridge window [io  0xf000-0xffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:02:00.0:   bridge window [mem 0xdc900000-0xdcafffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:02:00.0:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:01:00.0: PCI bridge to [bus 02-03]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:01:00.0:   bridge window [io  0xf000-0xffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:01:00.0:   bridge window [mem 0xdc900000-0xdcafffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:01:00.0:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:01.1: PCI bridge to [bus 01-03]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:01.1:   bridge window [io  0xf000-0xffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:01.1:   bridge window [mem 0xdc900000-0xdcbfffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:01.1:   bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.1: PCI bridge to [bus 04]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.1:   bridge window [io  0xe000-0xefff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.1:   bridge window [mem 0xdcf00000-0xdcffffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.1:   bridge window [mem 0x460000000-0x4601fffff 64bit pref]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.2: PCI bridge to [bus 05]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.2:   bridge window [mem 0xdce00000-0xdcefffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.3: PCI bridge to [bus 06]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.3:   bridge window [io  0x1000-0x1fff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.3:   bridge window [mem 0xfa000000-0xfa1fffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.3:   bridge window [mem 0x460200000-0x4603fffff 64bit pref]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.4: PCI bridge to [bus 07]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:02.4:   bridge window [mem 0xdcd00000-0xdcdfffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:03.1: PCI bridge to [bus 08-67]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:03.1:   bridge window [io  0x9000-0xcfff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:03.1:   bridge window [mem 0xc4000000-0xdbffffff]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:03.1:   bridge window [mem 0x7d00000000-0x7effffffff 64bit pref]
2024-12-17 14:38:54,554 DEBUG:	pci 0000:00:08.1: PCI bridge to [bus 68]
2024-12-17 14:38:54,555 DEBUG:	pci 0000:00:08.1:   bridge window [io  0xd000-0xdfff]
2024-12-17 14:38:54,555 DEBUG:	pci 0000:00:08.1:   bridge window [mem 0xdc000000-0xdc5fffff]
2024-12-17 14:38:54,555 DEBUG:	pci 0000:00:08.1:   bridge window [mem 0x7f00000000-0x7f107fffff 64bit pref]
2024-12-17 14:38:54,555 DEBUG:	pci 0000:00:08.2: PCI bridge to [bus 69]
2024-12-17 14:38:54,555 DEBUG:	pci 0000:00:08.2:   bridge window [mem 0xdcc00000-0xdccfffff]
2024-12-17 14:38:54,555 DEBUG:	pci 0000:00:08.2:   bridge window [mem 0x7f10900000-0x7f109fffff 64bit pref]
2024-12-17 14:38:54,555 DEBUG:	pci 0000:00:08.3: PCI bridge to [bus 6a]
2024-12-17 14:38:54,555 DEBUG:	pci 0000:00:08.3:   bridge window [mem 0xdc600000-0xdc8fffff]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:00: resource 9 [mem 0xfa000000-0xfcffffff window]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:00: resource 10 [mem 0xf0000000-0xf9ffffff window]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:00: resource 11 [mem 0xa0000000-0xdfffffff window]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:00: resource 12 [mem 0x460000000-0x7fffffffff window]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:01: resource 1 [mem 0xdc900000-0xdcbfffff]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:01: resource 2 [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:02: resource 1 [mem 0xdc900000-0xdcafffff]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:02: resource 2 [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:03: resource 0 [io  0xf000-0xffff]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:03: resource 1 [mem 0xdc900000-0xdcafffff]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:03: resource 2 [mem 0x7a00000000-0x7c0fffffff 64bit pref]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:04: resource 0 [io  0xe000-0xefff]
2024-12-17 14:38:54,555 DEBUG:	pci_bus 0000:04: resource 1 [mem 0xdcf00000-0xdcffffff]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:04: resource 2 [mem 0x460000000-0x4601fffff 64bit pref]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:05: resource 1 [mem 0xdce00000-0xdcefffff]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:06: resource 0 [io  0x1000-0x1fff]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:06: resource 1 [mem 0xfa000000-0xfa1fffff]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:06: resource 2 [mem 0x460200000-0x4603fffff 64bit pref]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:07: resource 1 [mem 0xdcd00000-0xdcdfffff]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:08: resource 0 [io  0x9000-0xcfff]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:08: resource 1 [mem 0xc4000000-0xdbffffff]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:08: resource 2 [mem 0x7d00000000-0x7effffffff 64bit pref]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:68: resource 0 [io  0xd000-0xdfff]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:68: resource 1 [mem 0xdc000000-0xdc5fffff]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:68: resource 2 [mem 0x7f00000000-0x7f107fffff 64bit pref]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:69: resource 1 [mem 0xdcc00000-0xdccfffff]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:69: resource 2 [mem 0x7f10900000-0x7f109fffff 64bit pref]
2024-12-17 14:38:54,556 DEBUG:	pci_bus 0000:6a: resource 1 [mem 0xdc600000-0xdc8fffff]
2024-12-17 14:38:54,556 DEBUG:	pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
2024-12-17 14:38:54,556 DEBUG:	pci 0000:68:00.1: D0 power state depends on 0000:68:00.0
2024-12-17 14:38:54,556 DEBUG:	pci 0000:00:08.1: can't derive routing for PCI INT A
2024-12-17 14:38:54,556 DEBUG:	pci 0000:00:08.1: PCI INT A: not connected
2024-12-17 14:38:54,556 DEBUG:	pci 0000:00:08.3: can't derive routing for PCI INT A
2024-12-17 14:38:54,556 DEBUG:	pci 0000:00:08.3: PCI INT A: not connected
2024-12-17 14:38:54,556 DEBUG:	PCI: CLS 64 bytes, default 64
2024-12-17 14:38:54,556 DEBUG:	pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
2024-12-17 14:38:54,556 DEBUG:	Trying to unpack rootfs image as initramfs...
2024-12-17 14:38:54,556 DEBUG:	pci 0000:00:01.0: Adding to iommu group 0
2024-12-17 14:38:54,556 DEBUG:	pci 0000:00:01.1: Adding to iommu group 1
2024-12-17 14:38:54,556 DEBUG:	pci 0000:00:02.0: Adding to iommu group 2
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:02.1: Adding to iommu group 3
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:02.2: Adding to iommu group 4
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:02.3: Adding to iommu group 5
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:02.4: Adding to iommu group 6
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:03.0: Adding to iommu group 7
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:03.1: Adding to iommu group 7
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:04.0: Adding to iommu group 8
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:08.0: Adding to iommu group 9
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:08.1: Adding to iommu group 10
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:08.2: Adding to iommu group 11
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:08.3: Adding to iommu group 12
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:14.0: Adding to iommu group 13
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:14.3: Adding to iommu group 13
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:18.0: Adding to iommu group 14
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:18.1: Adding to iommu group 14
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:18.2: Adding to iommu group 14
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:18.3: Adding to iommu group 14
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:18.4: Adding to iommu group 14
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:18.5: Adding to iommu group 14
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:18.6: Adding to iommu group 14
2024-12-17 14:38:54,557 DEBUG:	pci 0000:00:18.7: Adding to iommu group 14
2024-12-17 14:38:54,557 DEBUG:	pci 0000:01:00.0: Adding to iommu group 15
2024-12-17 14:38:54,557 DEBUG:	pci 0000:02:00.0: Adding to iommu group 16
2024-12-17 14:38:54,557 DEBUG:	pci 0000:03:00.0: Adding to iommu group 17
2024-12-17 14:38:54,557 DEBUG:	pci 0000:03:00.1: Adding to iommu group 18
2024-12-17 14:38:54,557 DEBUG:	pci 0000:04:00.0: Adding to iommu group 19
2024-12-17 14:38:54,557 DEBUG:	pci 0000:05:00.0: Adding to iommu group 20
2024-12-17 14:38:54,558 DEBUG:	pci 0000:07:00.0: Adding to iommu group 21
2024-12-17 14:38:54,558 DEBUG:	pci 0000:68:00.0: Adding to iommu group 22
2024-12-17 14:38:54,558 DEBUG:	pci 0000:68:00.1: Adding to iommu group 23
2024-12-17 14:38:54,558 DEBUG:	pci 0000:68:00.2: Adding to iommu group 24
2024-12-17 14:38:54,558 DEBUG:	pci 0000:68:00.3: Adding to iommu group 25
2024-12-17 14:38:54,558 DEBUG:	pci 0000:68:00.4: Adding to iommu group 26
2024-12-17 14:38:54,558 DEBUG:	pci 0000:68:00.5: Adding to iommu group 27
2024-12-17 14:38:54,558 DEBUG:	pci 0000:68:00.6: Adding to iommu group 28
2024-12-17 14:38:54,558 DEBUG:	pci 0000:69:00.0: Adding to iommu group 29
2024-12-17 14:38:54,558 DEBUG:	pci 0000:69:00.1: Adding to iommu group 30
2024-12-17 14:38:54,558 DEBUG:	pci 0000:6a:00.0: Adding to iommu group 31
2024-12-17 14:38:54,558 DEBUG:	pci 0000:6a:00.3: Adding to iommu group 32
2024-12-17 14:38:54,558 DEBUG:	pci 0000:6a:00.4: Adding to iommu group 33
2024-12-17 14:38:54,558 DEBUG:	pci 0000:6a:00.5: Adding to iommu group 34
2024-12-17 14:38:54,558 DEBUG:	AMD-Vi: Extended features (0x246577efa2254afa, 0x0): PPR NX GT [5] IA GA PC GA_vAPIC
2024-12-17 14:38:54,558 DEBUG:	AMD-Vi: Interrupt remapping enabled
2024-12-17 14:38:54,558 DEBUG:	AMD-Vi: Virtual APIC enabled
2024-12-17 14:38:54,558 DEBUG:	PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
2024-12-17 14:38:54,558 DEBUG:	software IO TLB: mapped [mem 0x0000000086ad4000-0x000000008aad4000] (64MB)
2024-12-17 14:38:54,558 DEBUG:	LVT offset 0 assigned for vector 0x400
2024-12-17 14:38:54,558 DEBUG:	perf: AMD IBS detected (0x00000bff)
2024-12-17 14:38:54,558 DEBUG:	perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
2024-12-17 14:38:54,558 DEBUG:	Initialise system trusted keyrings
2024-12-17 14:38:54,558 DEBUG:	Key type blacklist registered
2024-12-17 14:38:54,558 DEBUG:	workingset: timestamp_bits=36 max_order=22 bucket_order=0
2024-12-17 14:38:54,558 DEBUG:	zbud: loaded
2024-12-17 14:38:54,558 DEBUG:	squashfs: version 4.0 (2009/01/31) Phillip Lougher
2024-12-17 14:38:54,559 DEBUG:	fuse: init (API version 7.41)
2024-12-17 14:38:54,559 DEBUG:	integrity: Platform Keyring initialized
2024-12-17 14:38:54,559 DEBUG:	integrity: Machine keyring initialized
2024-12-17 14:38:54,559 DEBUG:	Key type asymmetric registered
2024-12-17 14:38:54,559 DEBUG:	Asymmetric key parser 'x509' registered
2024-12-17 14:38:54,559 DEBUG:	Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
2024-12-17 14:38:54,559 DEBUG:	io scheduler mq-deadline registered
2024-12-17 14:38:54,559 DEBUG:	ledtrig-cpu: registered to indicate activity on CPUs
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:01.1: PME: Signaling with IRQ 33
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:01.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:02.1: PME: Signaling with IRQ 34
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:02.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:02.2: PME: Signaling with IRQ 35
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:02.3: PME: Signaling with IRQ 36
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:02.3: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:02.4: PME: Signaling with IRQ 37
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:03.1: PME: Signaling with IRQ 38
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:03.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:08.1: PME: Signaling with IRQ 39
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:08.2: can't derive routing for PCI INT A
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:08.2: PCI INT A: not connected
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:08.2: PME: Signaling with IRQ 40
2024-12-17 14:38:54,559 DEBUG:	pcieport 0000:00:08.3: PME: Signaling with IRQ 41
2024-12-17 14:38:54,559 DEBUG:	shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
2024-12-17 14:38:54,559 DEBUG:	ACPI: AC: AC Adapter [ADP1] (on-line)
2024-12-17 14:38:54,559 DEBUG:	input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:54/PNP0C09:00/PNP0C0D:00/input/input0
2024-12-17 14:38:54,559 DEBUG:	ACPI: button: Lid Switch [LID0]
2024-12-17 14:38:54,560 DEBUG:	input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
2024-12-17 14:38:54,560 DEBUG:	ACPI: button: Power Button [PWRB]
2024-12-17 14:38:54,560 DEBUG:	Monitor-Mwait will be used to enter C-1 state
2024-12-17 14:38:54,560 DEBUG:	Estimated ratio of average max frequency by base frequency (times 1024): 1185
2024-12-17 14:38:54,560 DEBUG:	thermal LNXTHERM:00: registered as thermal_zone0
2024-12-17 14:38:54,560 DEBUG:	ACPI: thermal: Thermal Zone [TZ01] (63 C)
2024-12-17 14:38:54,560 DEBUG:	Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
2024-12-17 14:38:54,560 DEBUG:	hpet_acpi_add: no address or irqs in _CRS
2024-12-17 14:38:54,560 DEBUG:	Linux agpgart interface v0.103
2024-12-17 14:38:54,560 DEBUG:	ACPI: battery: Slot [BAT0] (battery present)
2024-12-17 14:38:54,560 DEBUG:	tpm_crb MSFT0101:00: Disabling hwrng
2024-12-17 14:38:54,560 DEBUG:	ACPI: bus type drm_connector registered
2024-12-17 14:38:54,560 DEBUG:	loop: module loaded
2024-12-17 14:38:54,560 DEBUG:	tun: Universal TUN/TAP device driver, 1.6
2024-12-17 14:38:54,560 DEBUG:	PPP generic driver version 2.4.2
2024-12-17 14:38:54,560 DEBUG:	xhci_hcd 0000:68:00.3: xHCI Host Controller
2024-12-17 14:38:54,560 DEBUG:	xhci_hcd 0000:68:00.3: new USB bus registered, assigned bus number 1
2024-12-17 14:38:54,560 DEBUG:	xhci_hcd 0000:68:00.3: hcc params 0x0128ffc5 hci version 0x120 quirks 0x0000000200000010
2024-12-17 14:38:54,560 DEBUG:	xhci_hcd 0000:68:00.3: xHCI Host Controller
2024-12-17 14:38:54,560 DEBUG:	xhci_hcd 0000:68:00.3: new USB bus registered, assigned bus number 2
2024-12-17 14:38:54,560 DEBUG:	xhci_hcd 0000:68:00.3: Host supports USB 3.1 Enhanced SuperSpeed
2024-12-17 14:38:54,560 DEBUG:	usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
2024-12-17 14:38:54,560 DEBUG:	usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:38:54,560 DEBUG:	usb usb1: Product: xHCI Host Controller
2024-12-17 14:38:54,560 DEBUG:	usb usb1: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:38:54,560 DEBUG:	usb usb1: SerialNumber: 0000:68:00.3
2024-12-17 14:38:54,560 DEBUG:	hub 1-0:1.0: USB hub found
2024-12-17 14:38:54,561 DEBUG:	hub 1-0:1.0: 5 ports detected
2024-12-17 14:38:54,561 DEBUG:	usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
2024-12-17 14:38:54,561 DEBUG:	usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
2024-12-17 14:38:54,561 DEBUG:	usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:38:54,561 DEBUG:	usb usb2: Product: xHCI Host Controller
2024-12-17 14:38:54,561 DEBUG:	usb usb2: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:38:54,561 DEBUG:	usb usb2: SerialNumber: 0000:68:00.3
2024-12-17 14:38:54,561 DEBUG:	hub 2-0:1.0: USB hub found
2024-12-17 14:38:54,561 DEBUG:	hub 2-0:1.0: 2 ports detected
2024-12-17 14:38:54,561 DEBUG:	xhci_hcd 0000:68:00.4: xHCI Host Controller
2024-12-17 14:38:54,561 DEBUG:	xhci_hcd 0000:68:00.4: new USB bus registered, assigned bus number 3
2024-12-17 14:38:54,561 DEBUG:	xhci_hcd 0000:68:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
2024-12-17 14:38:54,561 DEBUG:	xhci_hcd 0000:68:00.4: xHCI Host Controller
2024-12-17 14:38:54,561 DEBUG:	xhci_hcd 0000:68:00.4: new USB bus registered, assigned bus number 4
2024-12-17 14:38:54,561 DEBUG:	xhci_hcd 0000:68:00.4: Host supports USB 3.1 Enhanced SuperSpeed
2024-12-17 14:38:54,561 DEBUG:	usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
2024-12-17 14:38:54,561 DEBUG:	usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:38:54,561 DEBUG:	usb usb3: Product: xHCI Host Controller
2024-12-17 14:38:54,561 DEBUG:	usb usb3: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:38:54,561 DEBUG:	usb usb3: SerialNumber: 0000:68:00.4
2024-12-17 14:38:54,561 DEBUG:	hub 3-0:1.0: USB hub found
2024-12-17 14:38:54,561 DEBUG:	hub 3-0:1.0: 1 port detected
2024-12-17 14:38:54,561 DEBUG:	usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
2024-12-17 14:38:54,561 DEBUG:	usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
2024-12-17 14:38:54,561 DEBUG:	usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:38:54,561 DEBUG:	usb usb4: Product: xHCI Host Controller
2024-12-17 14:38:54,561 DEBUG:	usb usb4: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:38:54,562 DEBUG:	usb usb4: SerialNumber: 0000:68:00.4
2024-12-17 14:38:54,562 DEBUG:	hub 4-0:1.0: USB hub found
2024-12-17 14:38:54,562 DEBUG:	hub 4-0:1.0: 1 port detected
2024-12-17 14:38:54,562 DEBUG:	xhci_hcd 0000:6a:00.3: xHCI Host Controller
2024-12-17 14:38:54,562 DEBUG:	xhci_hcd 0000:6a:00.3: new USB bus registered, assigned bus number 5
2024-12-17 14:38:54,562 DEBUG:	xhci_hcd 0000:6a:00.3: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
2024-12-17 14:38:54,562 DEBUG:	xhci_hcd 0000:6a:00.3: xHCI Host Controller
2024-12-17 14:38:54,562 DEBUG:	xhci_hcd 0000:6a:00.3: new USB bus registered, assigned bus number 6
2024-12-17 14:38:54,562 DEBUG:	xhci_hcd 0000:6a:00.3: Host supports USB 3.1 Enhanced SuperSpeed
2024-12-17 14:38:54,562 DEBUG:	usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
2024-12-17 14:38:54,562 DEBUG:	usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:38:54,562 DEBUG:	usb usb5: Product: xHCI Host Controller
2024-12-17 14:38:54,562 DEBUG:	usb usb5: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:38:54,562 DEBUG:	usb usb5: SerialNumber: 0000:6a:00.3
2024-12-17 14:38:54,562 DEBUG:	hub 5-0:1.0: USB hub found
2024-12-17 14:38:54,562 DEBUG:	hub 5-0:1.0: 1 port detected
2024-12-17 14:38:54,562 DEBUG:	usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
2024-12-17 14:38:54,562 DEBUG:	usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
2024-12-17 14:38:54,562 DEBUG:	usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:38:54,562 DEBUG:	usb usb6: Product: xHCI Host Controller
2024-12-17 14:38:54,562 DEBUG:	usb usb6: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:38:54,562 DEBUG:	usb usb6: SerialNumber: 0000:6a:00.3
2024-12-17 14:38:54,562 DEBUG:	hub 6-0:1.0: USB hub found
2024-12-17 14:38:54,562 DEBUG:	hub 6-0:1.0: 1 port detected
2024-12-17 14:38:54,562 DEBUG:	xhci_hcd 0000:6a:00.4: xHCI Host Controller
2024-12-17 14:38:54,562 DEBUG:	xhci_hcd 0000:6a:00.4: new USB bus registered, assigned bus number 7
2024-12-17 14:38:54,562 DEBUG:	xhci_hcd 0000:6a:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
2024-12-17 14:38:54,562 DEBUG:	xhci_hcd 0000:6a:00.4: xHCI Host Controller
2024-12-17 14:38:54,563 DEBUG:	xhci_hcd 0000:6a:00.4: new USB bus registered, assigned bus number 8
2024-12-17 14:38:54,563 DEBUG:	xhci_hcd 0000:6a:00.4: Host supports USB 3.1 Enhanced SuperSpeed
2024-12-17 14:38:54,563 DEBUG:	usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
2024-12-17 14:38:54,563 DEBUG:	usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:38:54,563 DEBUG:	usb usb7: Product: xHCI Host Controller
2024-12-17 14:38:54,563 DEBUG:	usb usb7: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:38:54,563 DEBUG:	usb usb7: SerialNumber: 0000:6a:00.4
2024-12-17 14:38:54,563 DEBUG:	hub 7-0:1.0: USB hub found
2024-12-17 14:38:54,563 DEBUG:	hub 7-0:1.0: 1 port detected
2024-12-17 14:38:54,563 DEBUG:	usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
2024-12-17 14:38:54,563 DEBUG:	usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
2024-12-17 14:38:54,563 DEBUG:	usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
2024-12-17 14:38:54,563 DEBUG:	usb usb8: Product: xHCI Host Controller
2024-12-17 14:38:54,563 DEBUG:	usb usb8: Manufacturer: Linux 6.13.0-rc3 xhci-hcd
2024-12-17 14:38:54,563 DEBUG:	usb usb8: SerialNumber: 0000:6a:00.4
2024-12-17 14:38:54,563 DEBUG:	hub 8-0:1.0: USB hub found
2024-12-17 14:38:54,563 DEBUG:	hub 8-0:1.0: 1 port detected
2024-12-17 14:38:54,563 DEBUG:	i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
2024-12-17 14:38:54,563 DEBUG:	i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
2024-12-17 14:38:54,563 DEBUG:	serio: i8042 KBD port at 0x60,0x64 irq 1
2024-12-17 14:38:54,563 DEBUG:	mousedev: PS/2 mouse device common for all mice
2024-12-17 14:38:54,563 DEBUG:	rtc_cmos 00:01: RTC can wake from S4
2024-12-17 14:38:54,563 DEBUG:	rtc_cmos 00:01: registered as rtc0
2024-12-17 14:38:54,563 DEBUG:	rtc_cmos 00:01: setting system clock to 2024-12-17T13:38:19 UTC (1734442699)
2024-12-17 14:38:54,563 DEBUG:	rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram
2024-12-17 14:38:54,563 DEBUG:	i2c_dev: i2c /dev entries driver
2024-12-17 14:38:54,563 DEBUG:	device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
2024-12-17 14:38:54,564 DEBUG:	device-mapper: uevent: version 1.0.3
2024-12-17 14:38:54,564 DEBUG:	device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: Probing EISA bus 0
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: EISA: Cannot allocate resource for mainboard
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 1
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 2
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 3
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 4
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 5
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 6
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 7
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: Cannot allocate resource for EISA slot 8
2024-12-17 14:38:54,564 DEBUG:	platform eisa.0: EISA: Detected 0 cards
2024-12-17 14:38:54,564 DEBUG:	[drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
2024-12-17 14:38:54,564 DEBUG:	fbcon: Deferring console take-over
2024-12-17 14:38:54,564 DEBUG:	simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
2024-12-17 14:38:54,564 DEBUG:	drop_monitor: Initializing network drop monitor service
2024-12-17 14:38:54,564 DEBUG:	NET: Registered PF_INET6 protocol family
2024-12-17 14:38:54,564 DEBUG:	Freeing initrd memory: 56684K
2024-12-17 14:38:54,564 DEBUG:	Segment Routing with IPv6
2024-12-17 14:38:54,564 DEBUG:	In-situ OAM (IOAM) with IPv6
2024-12-17 14:38:54,564 DEBUG:	NET: Registered PF_PACKET protocol family
2024-12-17 14:38:54,564 DEBUG:	Key type dns_resolver registered
2024-12-17 14:38:54,564 DEBUG:	microcode: Current revision: 0x0a704103
2024-12-17 14:38:54,564 DEBUG:	resctrl: L3 allocation detected
2024-12-17 14:38:54,564 DEBUG:	resctrl: MB allocation detected
2024-12-17 14:38:54,564 DEBUG:	resctrl: SMBA allocation detected
2024-12-17 14:38:54,565 DEBUG:	resctrl: L3 monitoring detected
2024-12-17 14:38:54,565 DEBUG:	IPI shorthand broadcast: enabled
2024-12-17 14:38:54,565 DEBUG:	sched_clock: Marking stable (794490945, -692810)->(811560493, -17762358)
2024-12-17 14:38:54,565 DEBUG:	registered taskstats version 1
2024-12-17 14:38:54,565 DEBUG:	Loading compiled-in X.509 certificates
2024-12-17 14:38:54,565 DEBUG:	Loaded X.509 cert 'Build time autogenerated kernel key: 85fc91e85a49bfeb107173f508e5679ffd8160d2'
2024-12-17 14:38:54,565 DEBUG:	Demotion targets for Node 0: null
2024-12-17 14:38:54,565 DEBUG:	Key type .fscrypt registered
2024-12-17 14:38:54,565 DEBUG:	Key type fscrypt-provisioning registered
2024-12-17 14:38:54,565 DEBUG:	Key type trusted registered
2024-12-17 14:38:54,565 DEBUG:	cryptd: max_cpu_qlen set to 1000
2024-12-17 14:38:54,565 DEBUG:	AES CTR mode by8 optimization enabled
2024-12-17 14:38:54,565 DEBUG:	Key type encrypted registered
2024-12-17 14:38:54,565 DEBUG:	AppArmor: AppArmor sha256 policy hashing enabled
2024-12-17 14:38:54,565 DEBUG:	integrity: Loading X.509 certificate: UEFI:db
2024-12-17 14:38:54,565 DEBUG:	integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
2024-12-17 14:38:54,565 DEBUG:	integrity: Loading X.509 certificate: UEFI:db
2024-12-17 14:38:54,565 DEBUG:	integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
2024-12-17 14:38:54,565 DEBUG:	Loading compiled-in module X.509 certificates
2024-12-17 14:38:54,565 DEBUG:	Loaded X.509 cert 'Build time autogenerated kernel key: 85fc91e85a49bfeb107173f508e5679ffd8160d2'
2024-12-17 14:38:54,565 DEBUG:	ima: Allocated hash algorithm: sha256
2024-12-17 14:38:54,565 DEBUG:	ima: No architecture policies found
2024-12-17 14:38:54,565 DEBUG:	evm: Initialising EVM extended attributes:
2024-12-17 14:38:54,565 DEBUG:	evm: security.selinux
2024-12-17 14:38:54,565 DEBUG:	evm: security.SMACK64
2024-12-17 14:38:54,565 DEBUG:	evm: security.SMACK64EXEC
2024-12-17 14:38:54,565 DEBUG:	evm: security.SMACK64TRANSMUTE
2024-12-17 14:38:54,565 DEBUG:	evm: security.SMACK64MMAP
2024-12-17 14:38:54,566 DEBUG:	evm: security.apparmor
2024-12-17 14:38:54,566 DEBUG:	evm: security.ima
2024-12-17 14:38:54,566 DEBUG:	evm: security.capability
2024-12-17 14:38:54,566 DEBUG:	evm: HMAC attrs: 0x1
2024-12-17 14:38:54,566 DEBUG:	PM:   Magic number: 4:275:635
2024-12-17 14:38:54,566 DEBUG:	RAS: Correctable Errors collector initialized.
2024-12-17 14:38:54,566 DEBUG:	clk: Disabling unused clocks
2024-12-17 14:38:54,566 DEBUG:	PM: genpd: Disabling unused power domains
2024-12-17 14:38:54,566 DEBUG:	Freeing unused decrypted memory: 2028K
2024-12-17 14:38:54,566 DEBUG:	Freeing unused kernel image (initmem) memory: 5092K
2024-12-17 14:38:54,566 DEBUG:	Write protecting the kernel read-only data: 32768k
2024-12-17 14:38:54,566 DEBUG:	Freeing unused kernel image (rodata/data gap) memory: 1820K
2024-12-17 14:38:54,566 DEBUG:	x86/mm: Checked W+X mappings: passed, no W+X pages found.
2024-12-17 14:38:54,566 DEBUG:	Run /init as init process
2024-12-17 14:38:54,566 DEBUG:	  with arguments:
2024-12-17 14:38:54,566 DEBUG:	    /init
2024-12-17 14:38:54,566 DEBUG:	    splash
2024-12-17 14:38:54,566 DEBUG:	  with environment:
2024-12-17 14:38:54,566 DEBUG:	    HOME=/
2024-12-17 14:38:54,566 DEBUG:	    TERM=linux
2024-12-17 14:38:54,566 DEBUG:	    BOOT_IMAGE=/boot/vmlinuz-6.13.0-rc3
2024-12-17 14:38:54,566 DEBUG:	atkbd serio0: Failed to deactivate keyboard on isa0060/serio0
2024-12-17 14:38:54,566 DEBUG:	usb 3-1: new high-speed USB device number 2 using xhci_hcd
2024-12-17 14:38:54,566 DEBUG:	usb 1-2: new low-speed USB device number 2 using xhci_hcd
2024-12-17 14:38:54,566 DEBUG:	hid: raw HID events driver (C) Jiri Kosina
2024-12-17 14:38:54,566 DEBUG:	wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WMBB method block execution control method not found
2024-12-17 14:38:54,566 DEBUG:	ACPI: bus type thunderbolt registered
2024-12-17 14:38:54,567 DEBUG:	usb 1-2: New USB device found, idVendor=046d, idProduct=c016, bcdDevice= 3.40
2024-12-17 14:38:54,567 DEBUG:	usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
2024-12-17 14:38:54,567 DEBUG:	usb 1-2: Product: Optical USB Mouse
2024-12-17 14:38:54,567 DEBUG:	usb 1-2: Manufacturer: Logitech
2024-12-17 14:38:54,567 DEBUG:	usb 3-1: New USB device found, idVendor=0c45, idProduct=6362, bcdDevice= 1.01
2024-12-17 14:38:54,567 DEBUG:	usb 3-1: New USB device strings: Mfr=2, Product=1, SerialNumber=3
2024-12-17 14:38:54,567 DEBUG:	usb 3-1: Product: Integrated Camera
2024-12-17 14:38:54,567 DEBUG:	usb 3-1: Manufacturer: Sonix Technology Co., Ltd.
2024-12-17 14:38:54,567 DEBUG:	usb 3-1: SerialNumber: SN0001
2024-12-17 14:38:54,567 DEBUG:	ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
2024-12-17 14:38:54,567 DEBUG:	input: PNP0C50:0b 0911:5288 Mouse as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0b/0018:0911:5288.0001/input/input3
2024-12-17 14:38:54,567 DEBUG:	input: PNP0C50:0b 0911:5288 Touchpad as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0b/0018:0911:5288.0001/input/input4
2024-12-17 14:38:54,567 DEBUG:	input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:25/LNXVIDEO:00/input/input5
2024-12-17 14:38:54,567 DEBUG:	hid-generic 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [PNP0C50:0b 0911:5288] on i2c-PNP0C50:0b
2024-12-17 14:38:54,567 DEBUG:	nvme 0000:07:00.0: platform quirk: setting simple suspend
2024-12-17 14:38:54,567 DEBUG:	nvme nvme0: pci function 0000:07:00.0
2024-12-17 14:38:54,567 DEBUG:	r8169 0000:04:00.0 eth0: RTL8168h/8111h, 50:a1:32:23:65:65, XID 541, IRQ 72
2024-12-17 14:38:54,567 DEBUG:	r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
2024-12-17 14:38:54,567 DEBUG:	nvme nvme0: missing or invalid SUBNQN field.
2024-12-17 14:38:54,567 DEBUG:	nvme nvme0: D3 entry latency set to 8 seconds
2024-12-17 14:38:54,567 DEBUG:	usb 1-3: new full-speed USB device number 3 using xhci_hcd
2024-12-17 14:38:54,567 DEBUG:	nvme nvme0: 16/0/0 default/read/poll queues
2024-12-17 14:38:54,567 DEBUG:	 nvme0n1: p1 p2 p3 p4 p5 p6 p7
2024-12-17 14:38:54,567 DEBUG:	r8169 0000:04:00.0 enp4s0: renamed from eth0
2024-12-17 14:38:54,567 DEBUG:	input: PNP0C50:0b 0911:5288 Mouse as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0b/0018:0911:5288.0001/input/input6
2024-12-17 14:38:54,567 DEBUG:	input: PNP0C50:0b 0911:5288 Touchpad as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0b/0018:0911:5288.0001/input/input7
2024-12-17 14:38:54,567 DEBUG:	hid-multitouch 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [PNP0C50:0b 0911:5288] on i2c-PNP0C50:0b
2024-12-17 14:38:54,568 DEBUG:	atkbd serio0: Failed to enable keyboard on isa0060/serio0
2024-12-17 14:38:54,568 DEBUG:	input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
2024-12-17 14:38:54,568 DEBUG:	usb 1-3: New USB device found, idVendor=27c6, idProduct=60c2, bcdDevice= 1.00
2024-12-17 14:38:54,568 DEBUG:	usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
2024-12-17 14:38:54,568 DEBUG:	usb 1-3: Product: Goodix USB2.0 MISC
2024-12-17 14:38:54,568 DEBUG:	usb 1-3: Manufacturer: Goodix Technology Co., Ltd.
2024-12-17 14:38:54,568 DEBUG:	usb 1-3: SerialNumber: UIDBBCCDF58_XXXX_MOC_B0
2024-12-17 14:38:54,568 DEBUG:	usb 1-4: new full-speed USB device number 4 using xhci_hcd
2024-12-17 14:38:54,568 DEBUG:	usb 1-4: New USB device found, idVendor=048d, idProduct=8910, bcdDevice=24.29
2024-12-17 14:38:54,568 DEBUG:	usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
2024-12-17 14:38:54,568 DEBUG:	usb 1-4: Product: ITE Device
2024-12-17 14:38:54,568 DEBUG:	usb 1-4: Manufacturer: ITE Tech. Inc.
2024-12-17 14:38:54,568 DEBUG:	tsc: Refined TSC clocksource calibration: 3992.499 MHz
2024-12-17 14:38:54,568 DEBUG:	clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x73195d51b0d, max_idle_ns: 881590506186 ns
2024-12-17 14:38:54,568 DEBUG:	clocksource: Switched to clocksource tsc
2024-12-17 14:38:54,568 DEBUG:	usb 1-5: new full-speed USB device number 5 using xhci_hcd
2024-12-17 14:38:54,568 DEBUG:	usb 1-5: New USB device found, idVendor=8087, idProduct=0032, bcdDevice= 0.00
2024-12-17 14:38:54,568 DEBUG:	usb 1-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
2024-12-17 14:38:54,568 DEBUG:	input: Logitech Optical USB Mouse as /devices/pci0000:00/0000:00:08.1/0000:68:00.3/usb1/1-2/1-2:1.0/0003:046D:C016.0002/input/input8
2024-12-17 14:38:54,568 DEBUG:	hid-generic 0003:046D:C016.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:68:00.3-2/input0
2024-12-17 14:38:54,568 DEBUG:	input: ITE Tech. Inc. ITE Device Keyboard as /devices/pci0000:00/0000:00:08.1/0000:68:00.3/usb1/1-4/1-4:1.0/0003:048D:8910.0003/input/input9
2024-12-17 14:38:54,568 DEBUG:	input: ITE Tech. Inc. ITE Device Wireless Radio Control as /devices/pci0000:00/0000:00:08.1/0000:68:00.3/usb1/1-4/1-4:1.0/0003:048D:8910.0003/input/input10
2024-12-17 14:38:54,568 DEBUG:	hid-generic 0003:048D:8910.0003: input,hiddev0,hidraw2: USB HID v1.10 Keyboard [ITE Tech. Inc. ITE Device] on usb-0000:68:00.3-4/input0
2024-12-17 14:38:54,568 DEBUG:	usbcore: registered new interface driver usbhid
2024-12-17 14:38:54,568 DEBUG:	usbhid: USB HID core driver
2024-12-17 14:38:54,568 DEBUG:	EXT4-fs (nvme0n1p7): mounted filesystem ce3cb892-12dc-4d50-8a6d-0c5bb2df1de7 ro with ordered data mode. Quota mode: none.
2024-12-17 14:38:54,569 DEBUG:	Inserted module 'autofs4'
2024-12-17 14:38:54,569 DEBUG:	systemd 255.4-1ubuntu8.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
2024-12-17 14:38:54,569 DEBUG:	Detected architecture x86-64.
2024-12-17 14:38:54,569 DEBUG:	Hostname set to <tuxedo-os>.
2024-12-17 14:38:54,569 DEBUG:	Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
2024-12-17 14:38:54,569 DEBUG:	Configuration file /etc/systemd/system/dualboot.service is marked executable. Please remove executable permission bits. Proceeding anyway.
2024-12-17 14:38:54,569 DEBUG:	Queued start job for default target graphical.target.
2024-12-17 14:38:54,569 DEBUG:	Created slice system-modprobe.slice - Slice /system/modprobe.
2024-12-17 14:38:54,569 DEBUG:	Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
2024-12-17 14:38:54,569 DEBUG:	Created slice user.slice - User and Session Slice.
2024-12-17 14:38:54,569 DEBUG:	Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
2024-12-17 14:38:54,569 DEBUG:	Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
2024-12-17 14:38:54,569 DEBUG:	Expecting device dev-disk-by\x2duuid-5DE1\x2d7D98.device - /dev/disk/by-uuid/5DE1-7D98...
2024-12-17 14:38:54,569 DEBUG:	Expecting device dev-disk-by\x2duuid-673ca5e2\x2d4877\x2d4932\x2d9d92\x2d10a67f87218c.device - /dev/disk/by-uuid/673ca5e2-4877-4932-9d92-10a67f87218c...
2024-12-17 14:38:54,569 DEBUG:	Reached target integritysetup.target - Local Integrity Protected Volumes.
2024-12-17 14:38:54,569 DEBUG:	Reached target nss-user-lookup.target - User and Group Name Lookups.
2024-12-17 14:38:54,569 DEBUG:	Reached target remote-fs.target - Remote File Systems.
2024-12-17 14:38:54,569 DEBUG:	Reached target slices.target - Slice Units.
2024-12-17 14:38:54,569 DEBUG:	Reached target veritysetup.target - Local Verity Protected Volumes.
2024-12-17 14:38:54,569 DEBUG:	Listening on syslog.socket - Syslog Socket.
2024-12-17 14:38:54,569 DEBUG:	Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
2024-12-17 14:38:54,569 DEBUG:	Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
2024-12-17 14:38:54,569 DEBUG:	Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
2024-12-17 14:38:54,569 DEBUG:	Listening on systemd-journald.socket - Journal Socket.
2024-12-17 14:38:54,569 DEBUG:	systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
2024-12-17 14:38:54,569 DEBUG:	Listening on systemd-udevd-control.socket - udev Control Socket.
2024-12-17 14:38:54,569 DEBUG:	Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
2024-12-17 14:38:54,570 DEBUG:	Mounting dev-hugepages.mount - Huge Pages File System...
2024-12-17 14:38:54,570 DEBUG:	Mounting dev-mqueue.mount - POSIX Message Queue File System...
2024-12-17 14:38:54,570 DEBUG:	Mounting sys-kernel-debug.mount - Kernel Debug File System...
2024-12-17 14:38:54,570 DEBUG:	Mounting sys-kernel-tracing.mount - Kernel Trace File System...
2024-12-17 14:38:54,570 DEBUG:	Starting systemd-journald.service - Journal Service...
2024-12-17 14:38:54,570 DEBUG:	Starting keyboard-setup.service - Set the console keyboard layout...
2024-12-17 14:38:54,570 DEBUG:	Starting kmod-static-nodes.service - Create List of Static Device Nodes...
2024-12-17 14:38:54,570 DEBUG:	Starting modprobe@configfs.service - Load Kernel Module configfs...
2024-12-17 14:38:54,570 DEBUG:	Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
2024-12-17 14:38:54,570 DEBUG:	Starting modprobe@drm.service - Load Kernel Module drm...
2024-12-17 14:38:54,570 DEBUG:	Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
2024-12-17 14:38:54,570 DEBUG:	Starting modprobe@fuse.service - Load Kernel Module fuse...
2024-12-17 14:38:54,570 DEBUG:	Starting modprobe@loop.service - Load Kernel Module loop...
2024-12-17 14:38:54,570 DEBUG:	Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
2024-12-17 14:38:54,570 DEBUG:	systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
2024-12-17 14:38:54,570 DEBUG:	Starting systemd-modules-load.service - Load Kernel Modules...
2024-12-17 14:38:54,570 DEBUG:	systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
2024-12-17 14:38:54,570 DEBUG:	Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
2024-12-17 14:38:54,570 DEBUG:	systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
2024-12-17 14:38:54,570 DEBUG:	Starting systemd-udev-trigger.service - Coldplug All udev Devices...
2024-12-17 14:38:54,570 DEBUG:	pstore: Using crash dump compression: deflate
2024-12-17 14:38:54,570 DEBUG:	Collecting audit messages is disabled.
2024-12-17 14:38:54,570 DEBUG:	Mounted dev-hugepages.mount - Huge Pages File System.
2024-12-17 14:38:54,570 DEBUG:	Mounted dev-mqueue.mount - POSIX Message Queue File System.
2024-12-17 14:38:54,570 DEBUG:	Mounted sys-kernel-debug.mount - Kernel Debug File System.
2024-12-17 14:38:54,570 DEBUG:	Mounted sys-kernel-tracing.mount - Kernel Trace File System.
2024-12-17 14:38:54,570 DEBUG:	pstore: Registered efi_pstore as persistent store backend
2024-12-17 14:38:54,570 DEBUG:	Finished kmod-static-nodes.service - Create List of Static Device Nodes.
2024-12-17 14:38:54,571 DEBUG:	modprobe@configfs.service: Deactivated successfully.
2024-12-17 14:38:54,571 DEBUG:	Finished modprobe@configfs.service - Load Kernel Module configfs.
2024-12-17 14:38:54,571 DEBUG:	modprobe@dm_mod.service: Deactivated successfully.
2024-12-17 14:38:54,571 DEBUG:	Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
2024-12-17 14:38:54,571 DEBUG:	modprobe@drm.service: Deactivated successfully.
2024-12-17 14:38:54,571 DEBUG:	Finished modprobe@drm.service - Load Kernel Module drm.
2024-12-17 14:38:54,571 DEBUG:	modprobe@efi_pstore.service: Deactivated successfully.
2024-12-17 14:38:54,571 DEBUG:	Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
2024-12-17 14:38:54,571 DEBUG:	Key type psk registered
2024-12-17 14:38:54,571 DEBUG:	modprobe@fuse.service: Deactivated successfully.
2024-12-17 14:38:54,571 DEBUG:	Finished modprobe@fuse.service - Load Kernel Module fuse.
2024-12-17 14:38:54,571 DEBUG:	modprobe@loop.service: Deactivated successfully.
2024-12-17 14:38:54,571 DEBUG:	Finished modprobe@loop.service - Load Kernel Module loop.
2024-12-17 14:38:54,571 DEBUG:	Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
2024-12-17 14:38:54,571 DEBUG:	Mounting sys-kernel-config.mount - Kernel Configuration File System...
2024-12-17 14:38:54,571 DEBUG:	systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
2024-12-17 14:38:54,571 DEBUG:	Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
2024-12-17 14:38:54,571 DEBUG:	modprobe@nvme_fabrics.service: Deactivated successfully.
2024-12-17 14:38:54,571 DEBUG:	Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
2024-12-17 14:38:54,571 DEBUG:	Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
2024-12-17 14:38:54,571 DEBUG:	Mounted sys-kernel-config.mount - Kernel Configuration File System.
2024-12-17 14:38:54,571 DEBUG:	lp: driver loaded but no devices found
2024-12-17 14:38:54,571 DEBUG:	ppdev: user-space parallel port driver
2024-12-17 14:38:54,571 DEBUG:	Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
2024-12-17 14:38:54,571 DEBUG:	Finished systemd-modules-load.service - Load Kernel Modules.
2024-12-17 14:38:54,572 DEBUG:	EXT4-fs (nvme0n1p7): re-mounted ce3cb892-12dc-4d50-8a6d-0c5bb2df1de7 r/w. Quota mode: none.
2024-12-17 14:38:54,572 DEBUG:	Starting systemd-sysctl.service - Apply Kernel Variables...
2024-12-17 14:38:54,572 DEBUG:	Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
2024-12-17 14:38:54,572 DEBUG:	Finished keyboard-setup.service - Set the console keyboard layout.
2024-12-17 14:38:54,572 DEBUG:	systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
2024-12-17 14:38:54,572 DEBUG:	systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
2024-12-17 14:38:54,572 DEBUG:	Starting systemd-random-seed.service - Load/Save OS Random Seed...
2024-12-17 14:38:54,572 DEBUG:	systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
2024-12-17 14:38:54,572 DEBUG:	Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
2024-12-17 14:38:54,572 DEBUG:	systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
2024-12-17 14:38:54,572 DEBUG:	Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
2024-12-17 14:38:54,572 DEBUG:	Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
2024-12-17 14:38:54,572 DEBUG:	Finished systemd-sysctl.service - Apply Kernel Variables.
2024-12-17 14:38:54,572 DEBUG:	Finished systemd-random-seed.service - Load/Save OS Random Seed.
2024-12-17 14:38:54,572 DEBUG:	Started systemd-journald.service - Journal Service.
2024-12-17 14:38:54,572 DEBUG:	Received client request to flush runtime journal.
2024-12-17 14:38:54,572 DEBUG:	/var/log/journal/b54d92d5b40cb1a2071fa809674ee5f6/system.journal: Journal file uses a different sequence number ID, rotating.
2024-12-17 14:38:54,572 DEBUG:	Rotating system journal.
2024-12-17 14:38:54,572 DEBUG:	tuxi_acpi: loading out-of-tree module taints kernel.
2024-12-17 14:38:54,572 DEBUG:	tuxi_acpi: module verification failed: signature and/or required key missing - tainting kernel
2024-12-17 14:38:54,572 DEBUG:	tuxi_acpi: interface initialized
2024-12-17 14:38:54,572 DEBUG:	piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
2024-12-17 14:38:54,572 DEBUG:	piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
2024-12-17 14:38:54,572 DEBUG:	i2c i2c-1: Successfully instantiated SPD at 0x50
2024-12-17 14:38:54,572 DEBUG:	i2c i2c-1: Successfully instantiated SPD at 0x51
2024-12-17 14:38:54,573 DEBUG:	piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
2024-12-17 14:38:54,573 DEBUG:	ccp 0000:68:00.2: enabling device (0000 -> 0002)
2024-12-17 14:38:54,573 DEBUG:	ccp 0000:68:00.2: tee enabled
2024-12-17 14:38:54,573 DEBUG:	ccp 0000:68:00.2: psp enabled
2024-12-17 14:38:54,573 DEBUG:	amd-tee driver initialization successful
2024-12-17 14:38:54,573 DEBUG:	spd5118 1-0050: DDR5 temperature sensor: vendor 0x00:0xb3 revision 2.2
2024-12-17 14:38:54,573 DEBUG:	spd5118 1-0051: DDR5 temperature sensor: vendor 0x00:0xb3 revision 2.2
2024-12-17 14:38:54,573 DEBUG:	Adding 8191996k swap on /dev/nvme0n1p6.  Priority:-2 extents:1 across:8191996k SS
2024-12-17 14:38:54,573 DEBUG:	amd-pmf AMDI0102:00: registered PMF device successfully
2024-12-17 14:38:54,573 DEBUG:	cfg80211: Loading compiled-in X.509 certificates for regulatory database
2024-12-17 14:38:54,573 DEBUG:	Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
2024-12-17 14:38:54,573 DEBUG:	Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
2024-12-17 14:38:54,573 DEBUG:	mc: Linux media interface: v0.10
2024-12-17 14:38:54,573 DEBUG:	Bluetooth: Core ver 2.22
2024-12-17 14:38:54,573 DEBUG:	RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
2024-12-17 14:38:54,573 DEBUG:	RAPL PMU: hw unit of domain package 2^-16 Joules
2024-12-17 14:38:54,573 DEBUG:	input: TUXEDO Keyboard Events as /devices/virtual/input/input11
2024-12-17 14:38:54,573 DEBUG:	videodev: Linux video capture interface: v2.00
2024-12-17 14:38:54,573 DEBUG:	Intel(R) Wireless WiFi driver for Linux
2024-12-17 14:38:54,573 DEBUG:	iwlwifi 0000:05:00.0: enabling device (0000 -> 0002)
2024-12-17 14:38:54,573 DEBUG:	NET: Registered PF_BLUETOOTH protocol family
2024-12-17 14:38:54,573 DEBUG:	Bluetooth: HCI device and connection manager initialized
2024-12-17 14:38:54,573 DEBUG:	Bluetooth: HCI socket layer initialized
2024-12-17 14:38:54,573 DEBUG:	Bluetooth: L2CAP socket layer initialized
2024-12-17 14:38:54,573 DEBUG:	Bluetooth: SCO socket layer initialized
2024-12-17 14:38:54,574 DEBUG:	kvm_amd: TSC scaling supported
2024-12-17 14:38:54,574 DEBUG:	kvm_amd: Nested Virtualization enabled
2024-12-17 14:38:54,574 DEBUG:	kvm_amd: Nested Paging enabled
2024-12-17 14:38:54,574 DEBUG:	kvm_amd: LBR virtualization supported
2024-12-17 14:38:54,574 DEBUG:	kvm_amd: Virtual GIF supported
2024-12-17 14:38:54,574 DEBUG:	kvm_amd: Virtual NMI enabled
2024-12-17 14:38:54,574 DEBUG:	usb 3-1: Found UVC 1.00 device Integrated Camera (0c45:6362)
2024-12-17 14:38:54,574 DEBUG:	audit: type=1400 audit(1734442701.468:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="devhelp" pid=724 comm="apparmor_parser"
2024-12-17 14:38:54,574 DEBUG:	audit: type=1400 audit(1734442701.468:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=712 comm="apparmor_parser"
2024-12-17 14:38:54,574 DEBUG:	audit: type=1400 audit(1734442701.468:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="element-desktop" pid=725 comm="apparmor_parser"
2024-12-17 14:38:54,574 DEBUG:	audit: type=1400 audit(1734442701.468:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chrome" pid=720 comm="apparmor_parser"
2024-12-17 14:38:54,574 DEBUG:	audit: type=1400 audit(1734442701.468:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=708 comm="apparmor_parser"
2024-12-17 14:38:54,574 DEBUG:	audit: type=1400 audit(1734442701.468:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=721 comm="apparmor_parser"
2024-12-17 14:38:54,574 DEBUG:	audit: type=1400 audit(1734442701.468:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=715 comm="apparmor_parser"
2024-12-17 14:38:54,574 DEBUG:	audit: type=1400 audit(1734442701.468:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=713 comm="apparmor_parser"
2024-12-17 14:38:54,574 DEBUG:	audit: type=1400 audit(1734442701.468:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=719 comm="apparmor_parser"
2024-12-17 14:38:54,574 DEBUG:	usbcore: registered new interface driver btusb
2024-12-17 14:38:54,574 DEBUG:	usbcore: registered new interface driver uvcvideo
2024-12-17 14:38:54,574 DEBUG:	Bluetooth: hci0: Device revision is 0
2024-12-17 14:38:54,574 DEBUG:	Bluetooth: hci0: Secure boot is enabled
2024-12-17 14:38:54,574 DEBUG:	Bluetooth: hci0: OTP lock is enabled
2024-12-17 14:38:54,574 DEBUG:	Bluetooth: hci0: API lock is enabled
2024-12-17 14:38:54,574 DEBUG:	Bluetooth: hci0: Debug lock is disabled
2024-12-17 14:38:54,574 DEBUG:	Bluetooth: hci0: Minimum firmware build 1 week 10 2014
2024-12-17 14:38:54,574 DEBUG:	Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
2024-12-17 14:38:54,574 DEBUG:	MCE: In-kernel MCE decoding enabled.
2024-12-17 14:38:54,574 DEBUG:	snd_pci_ps 0000:68:00.5: enabling device (0000 -> 0002)
2024-12-17 14:38:54,575 DEBUG:	amd_atl: AMD Address Translation Library initialized
2024-12-17 14:38:54,575 DEBUG:	intel_rapl_common: Found RAPL domain package
2024-12-17 14:38:54,575 DEBUG:	intel_rapl_common: Found RAPL domain core
2024-12-17 14:38:54,575 DEBUG:	Bluetooth: hci0: No support for _PRR ACPI method
2024-12-17 14:38:54,575 DEBUG:	snd_hda_intel 0000:03:00.1: enabling device (0000 -> 0002)
2024-12-17 14:38:54,575 DEBUG:	Bluetooth: hci0: Found device firmware: intel/ibt-0041-0041.sfi
2024-12-17 14:38:54,575 DEBUG:	Bluetooth: hci0: Boot Address: 0x100800
2024-12-17 14:38:54,575 DEBUG:	Bluetooth: hci0: Firmware Version: 60-48.23
2024-12-17 14:38:54,575 DEBUG:	snd_hda_intel 0000:03:00.1: Handle vga_switcheroo audio client
2024-12-17 14:38:54,575 DEBUG:	snd_hda_intel 0000:03:00.1: Force to non-snoop mode
2024-12-17 14:38:54,575 DEBUG:	snd_hda_intel 0000:68:00.1: enabling device (0000 -> 0002)
2024-12-17 14:38:54,575 DEBUG:	snd_hda_intel 0000:68:00.1: Handle vga_switcheroo audio client
2024-12-17 14:38:54,575 DEBUG:	snd_hda_intel 0000:68:00.6: enabling device (0000 -> 0002)
2024-12-17 14:38:54,575 DEBUG:	iwlwifi 0000:05:00.0: Detected crf-id 0x400410, cnv-id 0x400410 wfpm id 0x80000000
2024-12-17 14:38:54,575 DEBUG:	iwlwifi 0000:05:00.0: PCI dev 2725/0024, rev=0x420, rfid=0x10d000
2024-12-17 14:38:54,575 DEBUG:	iwlwifi 0000:05:00.0: Detected Intel(R) Wi-Fi 6 AX210 160MHz
2024-12-17 14:38:54,575 DEBUG:	iwlwifi 0000:05:00.0: Direct firmware load for iwlwifi-ty-a0-gf-a0-89.ucode failed with error -2
2024-12-17 14:38:54,575 DEBUG:	iwlwifi 0000:05:00.0: Direct firmware load for iwlwifi-ty-a0-gf-a0-88.ucode failed with error -2
2024-12-17 14:38:54,575 DEBUG:	iwlwifi 0000:05:00.0: Direct firmware load for iwlwifi-ty-a0-gf-a0-87.ucode failed with error -2
2024-12-17 14:38:54,575 DEBUG:	iwlwifi 0000:05:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
2024-12-17 14:38:54,575 DEBUG:	iwlwifi 0000:05:00.0: loaded firmware version 86.fb5c9aeb.0 ty-a0-gf-a0-86.ucode op_mode iwlmvm
2024-12-17 14:38:54,575 DEBUG:	[drm] amdgpu kernel modesetting enabled.
2024-12-17 14:38:54,575 DEBUG:	amdgpu: vga_switcheroo: detected switching method \_SB_.PCI0.GP17.VGA_.ATPX handle
2024-12-17 14:38:54,575 DEBUG:	amdgpu: ATPX version 1, functions 0x00000201
2024-12-17 14:38:54,575 DEBUG:	amdgpu: ATPX Hybrid Graphics
2024-12-17 14:38:54,575 DEBUG:	snd_hda_codec_conexant hdaudioC2D0: CX11970: BIOS auto-probing.
2024-12-17 14:38:54,575 DEBUG:	input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input12
2024-12-17 14:38:54,576 DEBUG:	input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:68:00.1/sound/card1/input16
2024-12-17 14:38:54,576 DEBUG:	input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input13
2024-12-17 14:38:54,576 DEBUG:	snd_hda_codec_conexant hdaudioC2D0: CX11970: picked fixup  for codec SSID 2782:12c3
2024-12-17 14:38:54,576 DEBUG:	input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input14
2024-12-17 14:38:54,576 DEBUG:	snd_hda_codec_conexant hdaudioC2D0: autoconfig for CX11970: line_outs=2 (0x17/0x1d/0x0/0x0/0x0) type:speaker
2024-12-17 14:38:54,576 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
2024-12-17 14:38:54,576 DEBUG:	input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input15
2024-12-17 14:38:54,576 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:    hp_outs=1 (0x16/0x0/0x0/0x0/0x0)
2024-12-17 14:38:54,576 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:    mono: mono_out=0x0
2024-12-17 14:38:54,576 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:    inputs:
2024-12-17 14:38:54,576 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:      Mic=0x19
2024-12-17 14:38:54,576 DEBUG:	snd_hda_codec_conexant hdaudioC2D0:      Mic=0x18
2024-12-17 14:38:54,576 DEBUG:	amdgpu: Virtual CRAT table created for CPU
2024-12-17 14:38:54,576 DEBUG:	amdgpu: Topology: Add CPU node
2024-12-17 14:38:54,576 DEBUG:	amdgpu 0000:03:00.0: enabling device (0006 -> 0007)
2024-12-17 14:38:54,576 DEBUG:	[drm] initializing kernel modesetting (IP DISCOVERY 0x1002:0x7480 0x2782:0x12C3 0xC7).
2024-12-17 14:38:54,576 DEBUG:	input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:68:00.6/sound/card2/input17
2024-12-17 14:38:54,576 DEBUG:	input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:68:00.6/sound/card2/input18
2024-12-17 14:38:54,576 DEBUG:	input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:68:00.6/sound/card2/input19
2024-12-17 14:38:54,576 DEBUG:	[drm] register mmio base: 0xDC900000
2024-12-17 14:38:54,576 DEBUG:	[drm] register mmio size: 1048576
2024-12-17 14:38:54,576 DEBUG:	[drm] add ip block number 0 <soc21_common>
2024-12-17 14:38:54,576 DEBUG:	[drm] add ip block number 1 <gmc_v11_0>
2024-12-17 14:38:54,576 DEBUG:	[drm] add ip block number 2 <ih_v6_0>
2024-12-17 14:38:54,576 DEBUG:	[drm] add ip block number 3 <psp>
2024-12-17 14:38:54,576 DEBUG:	[drm] add ip block number 4 <smu>
2024-12-17 14:38:54,576 DEBUG:	[drm] add ip block number 5 <dm>
2024-12-17 14:38:54,576 DEBUG:	[drm] add ip block number 6 <gfx_v11_0>
2024-12-17 14:38:54,577 DEBUG:	[drm] add ip block number 7 <sdma_v6_0>
2024-12-17 14:38:54,577 DEBUG:	[drm] add ip block number 8 <vcn_v4_0>
2024-12-17 14:38:54,577 DEBUG:	[drm] add ip block number 9 <jpeg_v4_0>
2024-12-17 14:38:54,577 DEBUG:	[drm] add ip block number 10 <mes_v11_0>
2024-12-17 14:38:54,577 DEBUG:	amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from ATRM
2024-12-17 14:38:54,577 DEBUG:	amdgpu: ATOM BIOS: 113-BRT118083.001
2024-12-17 14:38:54,577 DEBUG:	amdgpu 0000:03:00.0: amdgpu: CP RS64 enable
2024-12-17 14:38:54,577 DEBUG:	amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
2024-12-17 14:38:54,577 DEBUG:	[drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
2024-12-17 14:38:54,577 DEBUG:	amdgpu 0000:03:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
2024-12-17 14:38:54,577 DEBUG:	amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x00007FFF00000000 - 0x00007FFF1FFFFFFF
2024-12-17 14:38:54,577 DEBUG:	[drm] Detected VRAM RAM=8176M, BAR=8192M
2024-12-17 14:38:54,577 DEBUG:	[drm] RAM width 128bits GDDR6
2024-12-17 14:38:54,577 DEBUG:	[drm] amdgpu: 8176M of VRAM memory ready
2024-12-17 14:38:54,577 DEBUG:	[drm] amdgpu: 7605M of GTT memory ready.
2024-12-17 14:38:54,577 DEBUG:	[drm] GART: num cpu pages 131072, num gpu pages 131072
2024-12-17 14:38:54,577 DEBUG:	[drm] PCIE GART of 512M enabled (table at 0x00000081FEB00000).
2024-12-17 14:38:54,577 DEBUG:	[drm] Loading DMUB firmware via PSP: version=0x07002800
2024-12-17 14:38:54,577 DEBUG:	[drm] Found VCN firmware Version ENC: 1.19 DEC: 7 VEP: 0 Revision: 0
2024-12-17 14:38:54,577 DEBUG:	iwlwifi 0000:05:00.0: WFPM_UMAC_PD_NOTIFICATION: 0x20
2024-12-17 14:38:54,577 DEBUG:	iwlwifi 0000:05:00.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
2024-12-17 14:38:54,577 DEBUG:	iwlwifi 0000:05:00.0: WFPM_AUTH_KEY_0: 0x90
2024-12-17 14:38:54,577 DEBUG:	iwlwifi 0000:05:00.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
2024-12-17 14:38:54,577 DEBUG:	iwlwifi 0000:05:00.0: loaded PNVM version e28bb9d7
2024-12-17 14:38:54,577 DEBUG:	amdgpu 0000:03:00.0: amdgpu: reserve 0x1300000 from 0x81fc000000 for PSP TMR
2024-12-17 14:38:54,577 DEBUG:	iwlwifi 0000:05:00.0: Detected RF GF, rfid=0x10d000
2024-12-17 14:38:54,577 DEBUG:	iwlwifi 0000:05:00.0: base HW address: 00:93:37:95:6f:a5
2024-12-17 14:38:54,578 DEBUG:	amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
2024-12-17 14:38:54,578 DEBUG:	amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
2024-12-17 14:38:54,578 DEBUG:	amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
2024-12-17 14:38:54,578 DEBUG:	amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x00000035, smu fw if version = 0x00000040, smu fw program = 0, smu fw version = 0x00525800 (82.88.0)
2024-12-17 14:38:54,578 DEBUG:	amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
2024-12-17 14:38:54,578 DEBUG:	iwlwifi 0000:05:00.0 wlp5s0: renamed from wlan0
2024-12-17 14:38:54,578 DEBUG:	Bluetooth: hci0: Waiting for firmware download to complete
2024-12-17 14:38:54,578 DEBUG:	Bluetooth: hci0: Firmware loaded in 1179382 usecs
2024-12-17 14:38:54,578 DEBUG:	Bluetooth: hci0: Waiting for device to boot
2024-12-17 14:38:54,578 DEBUG:	amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
2024-12-17 14:38:54,578 DEBUG:	amdgpu 0000:03:00.0: [drm] Unsupported pwrseq engine id: 4!
2024-12-17 14:38:54,578 DEBUG:	------------[ cut here ]------------
2024-12-17 14:38:54,578 DEBUG:	WARNING: CPU: 3 PID: 494 at drivers/gpu/drm/amd/amdgpu/../display/dc/dcn31/dcn31_panel_cntl.c:186 dcn31_panel_cntl_construct+0x8c/0xa0 [amdgpu]
2024-12-17 14:38:54,578 DEBUG:	Modules linked in: iwlmvm snd_soc_dmic snd_soc_ps_mach snd_ps_pdm_dma snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp mac80211 snd_sof snd_hda_codec_conexant snd_sof_utils snd_hda_codec_generic libarc4 snd_hda_codec_hdmi intel_rapl_msr amd_atl intel_rapl_common amdgpu(+) snd_pci_ps snd_soc_acpi_amd_match snd_amd_sdw_acpi soundwire_amd soundwire_generic_allocation snd_hda_intel soundwire_bus snd_intel_dspcfg snd_intel_sdw_acpi snd_soc_sdca edac_mce_amd snd_hda_codec binfmt_misc amdxcp snd_soc_core drm_exec snd_hda_core gpu_sched snd_hwdep btusb drm_buddy snd_compress uvcvideo btrtl drm_ttm_helper snd_seq_midi ac97_bus kvm_amd btintel videobuf2_vmalloc snd_seq_midi_event snd_pcm_dmaengine ttm uvc btbcm videobuf2_memops snd_rpl_pci_acp6x videobuf2_v4l2 btmtk drm_suballoc_helper snd_rawmidi snd_acp_pci videobuf2_common kvm snd_acp_legacy_common drm_display_helper snd_seq snd_pci_acp6x iwlwifi videodev tuxedo_nb04_kbd_backlight(OE)
2024-12-17 14:38:54,578 DEBUG:	 tuxedo_nb04_sensors(OE) tuxedo_nb04_keyboard(OE) tuxedo_nb04_wmi_ab(OE) tuxedo_nb04_wmi_bs(OE) nls_iso8859_1 rapl cec wmi_bmof sparse_keymap tuxedo_compatibility_check(OE) k10temp mc snd_pcm snd_seq_device amd_pmf snd_timer bluetooth spd5118 amdtee cfg80211 snd_pci_acp5x snd snd_rn_pci_acp3x snd_acp_config rc_core soundcore snd_soc_acpi i2c_algo_bit snd_pci_acp3x ccp i2c_piix4 i2c_smbus amd_sfh tuxedo_tuxi_fan_control(OE) tuxi_acpi(OE) tee led_class_multicolor soc_button_array platform_profile amd_pmc input_leds joydev serio_raw mac_hid sch_fq_codel msr parport_pc ppdev lp parport dm_crypt nvme_fabrics nvme_keyring efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 usbhid nvme crct10dif_pclmul crc32_pclmul hid_multitouch polyval_clmulni nvme_core polyval_generic r8169 hid_generic ghash_clmulni_intel video sha256_ssse3 sha1_ssse3 thunderbolt nvme_auth realtek wmi i2c_hid_acpi i2c_hid hid aesni_intel crypto_simd cryptd
2024-12-17 14:38:54,578 DEBUG:	CPU: 3 UID: 0 PID: 494 Comm: (udev-worker) Tainted: G           OE      6.13.0-rc3 #4
2024-12-17 14:38:54,578 DEBUG:	Tainted: [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
2024-12-17 14:38:54,578 DEBUG:	Hardware name: TUXEDO TUXEDO Sirius 16 Gen1/APX958, BIOS V1.00A00_20240108 01/08/2024
2024-12-17 14:38:54,578 DEBUG:	RIP: 0010:dcn31_panel_cntl_construct+0x8c/0xa0 [amdgpu]
2024-12-17 14:38:54,578 DEBUG:	Code: 5d 31 c0 31 d2 31 f6 31 ff e9 9b f2 cb d8 48 8b 40 10 48 8b 38 48 85 ff 74 04 48 8b 7f 08 48 c7 c6 28 70 54 c2 e8 14 d5 45 d8 <0f> 0b 41 bc 0f 00 00 00 48 8b 43 08 eb a0 66 0f 1f 44 00 00 90 90
2024-12-17 14:38:54,578 DEBUG:	RSP: 0018:ffffbdc6407d3458 EFLAGS: 00010246
2024-12-17 14:38:54,578 DEBUG:	RAX: 0000000000000000 RBX: ffff9a7011649dc0 RCX: 0000000000000000
2024-12-17 14:38:54,578 DEBUG:	RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
2024-12-17 14:38:54,578 DEBUG:	RBP: ffffbdc6407d3470 R08: 0000000000000000 R09: 0000000000000000
2024-12-17 14:38:54,578 DEBUG:	R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000001
2024-12-17 14:38:54,578 DEBUG:	R13: ffffffffc23d0ec0 R14: 0000000000000004 R15: ffff9a7002226000
2024-12-17 14:38:54,578 DEBUG:	FS:  000073f1c40318c0(0000) GS:ffff9a732e580000(0000) knlGS:0000000000000000
2024-12-17 14:38:54,579 DEBUG:	CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2024-12-17 14:38:54,579 DEBUG:	CR2: 000062bf0150afd0 CR3: 000000010cff6000 CR4: 0000000000f50ef0
2024-12-17 14:38:54,579 DEBUG:	PKRU: 55555554
2024-12-17 14:38:54,579 DEBUG:	Call Trace:
2024-12-17 14:38:54,579 DEBUG:	 <TASK>
2024-12-17 14:38:54,579 DEBUG:	 ? show_regs+0x6c/0x80
2024-12-17 14:38:54,579 DEBUG:	 ? __warn+0x8d/0x150
2024-12-17 14:38:54,579 DEBUG:	 ? dcn31_panel_cntl_construct+0x8c/0xa0 [amdgpu]
2024-12-17 14:38:54,579 DEBUG:	 ? report_bug+0x182/0x1b0
2024-12-17 14:38:54,579 DEBUG:	 ? handle_bug+0x6e/0xb0
2024-12-17 14:38:54,579 DEBUG:	 ? exc_invalid_op+0x18/0x80
2024-12-17 14:38:54,579 DEBUG:	 ? asm_exc_invalid_op+0x1b/0x20
2024-12-17 14:38:54,579 DEBUG:	 ? dcn31_panel_cntl_construct+0x8c/0xa0 [amdgpu]
2024-12-17 14:38:54,579 DEBUG:	 ? dcn31_panel_cntl_construct+0x8c/0xa0 [amdgpu]
2024-12-17 14:38:54,579 DEBUG:	 dcn32_panel_cntl_create+0x67/0x80 [amdgpu]
2024-12-17 14:38:54,579 DEBUG:	 link_create+0xbd4/0xee0 [amdgpu]
2024-12-17 14:38:54,579 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,579 DEBUG:	 create_links+0x189/0x550 [amdgpu]
2024-12-17 14:38:54,579 DEBUG:	 dc_create+0x42f/0x7d0 [amdgpu]
2024-12-17 14:38:54,579 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,579 DEBUG:	 ? dmi_matches+0xa0/0x240
2024-12-17 14:38:54,579 DEBUG:	 amdgpu_dm_init+0x319/0x2b60 [amdgpu]
2024-12-17 14:38:54,579 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,579 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,579 DEBUG:	 ? irq_work_queue+0x2f/0x70
2024-12-17 14:38:54,579 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,579 DEBUG:	 ? __wake_up_klogd.part.0+0x40/0x70
2024-12-17 14:38:54,579 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,580 DEBUG:	 ? vprintk_emit+0x181/0x3f0
2024-12-17 14:38:54,580 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,580 DEBUG:	 ? __pfx_smu_hw_init+0x10/0x10 [amdgpu]
2024-12-17 14:38:54,580 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,580 DEBUG:	 ? dev_printk_emit+0xa1/0xe0
2024-12-17 14:38:54,580 DEBUG:	 ? __pfx_dm_hw_init+0x10/0x10 [amdgpu]
2024-12-17 14:38:54,580 DEBUG:	 dm_hw_init+0x18/0x40 [amdgpu]
2024-12-17 14:38:54,580 DEBUG:	 amdgpu_device_init+0x249e/0x3130 [amdgpu]
2024-12-17 14:38:54,580 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,580 DEBUG:	 amdgpu_driver_load_kms+0x1a/0xd0 [amdgpu]
2024-12-17 14:38:54,580 DEBUG:	 amdgpu_pci_probe+0x1d1/0x650 [amdgpu]
2024-12-17 14:38:54,580 DEBUG:	 local_pci_probe+0x44/0xb0
2024-12-17 14:38:54,580 DEBUG:	 pci_device_probe+0xf4/0x270
2024-12-17 14:38:54,580 DEBUG:	 really_probe+0xee/0x3c0
2024-12-17 14:38:54,580 DEBUG:	 __driver_probe_device+0x8c/0x180
2024-12-17 14:38:54,580 DEBUG:	 driver_probe_device+0x24/0xd0
2024-12-17 14:38:54,580 DEBUG:	 __driver_attach+0x10b/0x210
2024-12-17 14:38:54,580 DEBUG:	 ? __pfx___driver_attach+0x10/0x10
2024-12-17 14:38:54,580 DEBUG:	 bus_for_each_dev+0x8a/0xf0
2024-12-17 14:38:54,580 DEBUG:	 driver_attach+0x1e/0x30
2024-12-17 14:38:54,580 DEBUG:	 bus_add_driver+0x14e/0x290
2024-12-17 14:38:54,580 DEBUG:	 driver_register+0x5e/0x130
2024-12-17 14:38:54,580 DEBUG:	 ? __pfx_amdgpu_init+0x10/0x10 [amdgpu]
2024-12-17 14:38:54,580 DEBUG:	 __pci_register_driver+0x5e/0x70
2024-12-17 14:38:54,580 DEBUG:	 amdgpu_init+0x76/0xff0 [amdgpu]
2024-12-17 14:38:54,580 DEBUG:	 do_one_initcall+0x5b/0x340
2024-12-17 14:38:54,580 DEBUG:	 do_init_module+0x97/0x290
2024-12-17 14:38:54,580 DEBUG:	 load_module+0x2281/0x25b0
2024-12-17 14:38:54,581 DEBUG:	 init_module_from_file+0x97/0xe0
2024-12-17 14:38:54,581 DEBUG:	 ? init_module_from_file+0x97/0xe0
2024-12-17 14:38:54,581 DEBUG:	 idempotent_init_module+0x110/0x300
2024-12-17 14:38:54,581 DEBUG:	 __x64_sys_finit_module+0x77/0x100
2024-12-17 14:38:54,581 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,581 DEBUG:	 x64_sys_call+0x1f37/0x2650
2024-12-17 14:38:54,581 DEBUG:	 do_syscall_64+0x7e/0x170
2024-12-17 14:38:54,581 DEBUG:	 ? syscall_exit_to_user_mode+0x38/0x1d0
2024-12-17 14:38:54,581 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,581 DEBUG:	 ? do_syscall_64+0x8a/0x170
2024-12-17 14:38:54,581 DEBUG:	 ? srso_alias_return_thunk+0x5/0xfbef5
2024-12-17 14:38:54,581 DEBUG:	 ? do_syscall_64+0x8a/0x170
2024-12-17 14:38:54,581 DEBUG:	 ? sysvec_apic_timer_interrupt+0x57/0xc0
2024-12-17 14:38:54,581 DEBUG:	 entry_SYSCALL_64_after_hwframe+0x76/0x7e
2024-12-17 14:38:54,581 DEBUG:	RIP: 0033:0x73f1c3f2725d
2024-12-17 14:38:54,581 DEBUG:	Code: ff c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 8b bb 0d 00 f7 d8 64 89 01 48
2024-12-17 14:38:54,581 DEBUG:	RSP: 002b:00007ffe9fe40748 EFLAGS: 00000246 ORIG_RAX: 0000000000000139
2024-12-17 14:38:54,581 DEBUG:	RAX: ffffffffffffffda RBX: 000062bf014e1690 RCX: 000073f1c3f2725d
2024-12-17 14:38:54,581 DEBUG:	RDX: 0000000000000000 RSI: 000062bf01510b90 RDI: 0000000000000047
2024-12-17 14:38:54,581 DEBUG:	RBP: 00007ffe9fe40800 R08: 0000000000000040 R09: 00007ffe9fe40790
2024-12-17 14:38:54,581 DEBUG:	R10: 000073f1c4003b20 R11: 0000000000000246 R12: 000062bf01510b90
2024-12-17 14:38:54,581 DEBUG:	R13: 0000000000020000 R14: 000062bf014dfde0 R15: 000062bf014ff0c0
2024-12-17 14:38:54,581 DEBUG:	 </TASK>
2024-12-17 14:38:54,581 DEBUG:	---[ end trace 0000000000000000 ]---
2024-12-17 14:38:54,581 DEBUG:	[drm] Display Core v3.2.310 initialized on DCN 3.2.1
2024-12-17 14:38:54,581 DEBUG:	[drm] DP-HDMI FRL PCON supported
2024-12-17 14:38:54,581 DEBUG:	[drm] DMUB hardware initialized: version=0x07002800
2024-12-17 14:38:54,581 DEBUG:	Bluetooth: hci0: Device booted in 27441 usecs
2024-12-17 14:38:54,582 DEBUG:	Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0041-0041.ddc
2024-12-17 14:38:54,582 DEBUG:	Bluetooth: hci0: Applying Intel DDC parameters completed
2024-12-17 14:38:54,582 DEBUG:	Bluetooth: hci0: Firmware timestamp 2023.48 buildtype 1 build 75324
2024-12-17 14:38:54,582 DEBUG:	Bluetooth: hci0: Firmware SHA1: 0x23bac558
2024-12-17 14:38:54,582 DEBUG:	Bluetooth: hci0: Fseq status: Success (0x00)
2024-12-17 14:38:54,582 DEBUG:	Bluetooth: hci0: Fseq executed: 00.00.02.41
2024-12-17 14:38:54,582 DEBUG:	Bluetooth: hci0: Fseq BT Top: 00.00.02.41
2024-12-17 14:38:54,582 DEBUG:	snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
2024-12-17 14:38:54,582 DEBUG:	amdgpu: HMM registered 8176MB device memory
2024-12-17 14:38:54,582 DEBUG:	kfd kfd: amdgpu: Allocated 3969056 bytes on gart
2024-12-17 14:38:54,582 DEBUG:	kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
2024-12-17 14:38:54,582 DEBUG:	amdgpu: Virtual CRAT table created for GPU
2024-12-17 14:38:54,582 DEBUG:	amdgpu: Topology: Add dGPU node [0x7480:0x1002]
2024-12-17 14:38:54,582 DEBUG:	kfd kfd: amdgpu: added device 1002:7480
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 32
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
2024-12-17 14:38:54,582 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
2024-12-17 14:38:54,583 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
2024-12-17 14:38:54,583 DEBUG:	amdgpu 0000:03:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 14 on hub 0
2024-12-17 14:38:54,583 DEBUG:	[drm] ring gfx_32768.1.1 was added
2024-12-17 14:38:54,583 DEBUG:	[drm] ring compute_32768.2.2 was added
2024-12-17 14:38:54,583 DEBUG:	[drm] ring sdma_32768.3.3 was added
2024-12-17 14:38:54,583 DEBUG:	[drm] ring gfx_32768.1.1 ib test pass
2024-12-17 14:38:54,583 DEBUG:	[drm] ring compute_32768.2.2 ib test pass
2024-12-17 14:38:54,583 DEBUG:	[drm] ring sdma_32768.3.3 ib test pass
2024-12-17 14:38:54,583 DEBUG:	amdgpu 0000:03:00.0: amdgpu: Using BOCO for runtime pm
2024-12-17 14:38:54,583 DEBUG:	[drm] Initialized amdgpu 3.59.0 for 0000:03:00.0 on minor 1
2024-12-17 14:38:54,583 DEBUG:	amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
2024-12-17 14:38:54,583 DEBUG:	[drm] pre_validate_dsc:1593 MST_DSC dsc precompute is not needed
2024-12-17 14:38:54,583 DEBUG:	amdgpu 0000:68:00.0: enabling device (0006 -> 0007)
2024-12-17 14:38:54,583 DEBUG:	[drm] initializing kernel modesetting (IP DISCOVERY 0x1002:0x15BF 0x2782:0x12C3 0xC1).
2024-12-17 14:38:54,583 DEBUG:	[drm] register mmio base: 0xDC500000
2024-12-17 14:38:54,583 DEBUG:	[drm] register mmio size: 524288
2024-12-17 14:38:54,583 DEBUG:	[drm] add ip block number 0 <soc21_common>
2024-12-17 14:38:54,583 DEBUG:	[drm] add ip block number 1 <gmc_v11_0>
2024-12-17 14:38:54,583 DEBUG:	[drm] add ip block number 2 <ih_v6_0>
2024-12-17 14:38:54,583 DEBUG:	[drm] add ip block number 3 <psp>
2024-12-17 14:38:54,583 DEBUG:	[drm] add ip block number 4 <smu>
2024-12-17 14:38:54,583 DEBUG:	[drm] add ip block number 5 <dm>
2024-12-17 14:38:54,583 DEBUG:	[drm] add ip block number 6 <gfx_v11_0>
2024-12-17 14:38:54,583 DEBUG:	[drm] add ip block number 7 <sdma_v6_0>
2024-12-17 14:38:54,583 DEBUG:	[drm] add ip block number 8 <vcn_v4_0>
2024-12-17 14:38:54,583 DEBUG:	[drm] add ip block number 9 <jpeg_v4_0>
2024-12-17 14:38:54,584 DEBUG:	[drm] add ip block number 10 <mes_v11_0>
2024-12-17 14:38:54,584 DEBUG:	amdgpu 0000:68:00.0: amdgpu: Fetched VBIOS from VFCT
2024-12-17 14:38:54,584 DEBUG:	amdgpu: ATOM BIOS: 113-PHXGENERIC-001
2024-12-17 14:38:54,584 DEBUG:	amdgpu 0000:68:00.0: vgaarb: deactivate vga console
2024-12-17 14:38:54,584 DEBUG:	amdgpu 0000:68:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
2024-12-17 14:38:54,584 DEBUG:	[drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
2024-12-17 14:38:54,584 DEBUG:	amdgpu 0000:68:00.0: amdgpu: VRAM: 512M 0x0000008000000000 - 0x000000801FFFFFFF (512M used)
2024-12-17 14:38:54,584 DEBUG:	amdgpu 0000:68:00.0: amdgpu: GART: 512M 0x00007FFF00000000 - 0x00007FFF1FFFFFFF
2024-12-17 14:38:54,584 DEBUG:	[drm] Detected VRAM RAM=512M, BAR=512M
2024-12-17 14:38:54,584 DEBUG:	[drm] RAM width 128bits DDR5
2024-12-17 14:38:54,584 DEBUG:	[drm] amdgpu: 512M of VRAM memory ready
2024-12-17 14:38:54,584 DEBUG:	[drm] amdgpu: 7605M of GTT memory ready.
2024-12-17 14:38:54,584 DEBUG:	[drm] GART: num cpu pages 131072, num gpu pages 131072
2024-12-17 14:38:54,584 DEBUG:	[drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
2024-12-17 14:38:54,584 DEBUG:	[drm] Loading DMUB firmware via PSP: version=0x08003700
2024-12-17 14:38:54,584 DEBUG:	[drm] Found VCN firmware Version ENC: 1.19 DEC: 7 VEP: 0 Revision: 0
2024-12-17 14:38:54,584 DEBUG:	amdgpu 0000:68:00.0: amdgpu: reserve 0x4a00000 from 0x8010000000 for PSP TMR
2024-12-17 14:38:54,584 DEBUG:	amdgpu 0000:68:00.0: amdgpu: RAS: optional ras ta ucode is not available
2024-12-17 14:38:54,584 DEBUG:	amdgpu 0000:68:00.0: amdgpu: RAP: optional rap ta ucode is not available
2024-12-17 14:38:54,584 DEBUG:	amdgpu 0000:68:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
2024-12-17 14:38:54,584 DEBUG:	amdgpu 0000:68:00.0: amdgpu: SMU is initialized successfully!
2024-12-17 14:38:54,584 DEBUG:	[drm] Seamless boot condition check passed
2024-12-17 14:38:54,584 DEBUG:	[drm] Display Core v3.2.310 initialized on DCN 3.1.4
2024-12-17 14:38:54,584 DEBUG:	[drm] DP-HDMI FRL PCON supported
2024-12-17 14:38:54,584 DEBUG:	[drm] DMUB hardware initialized: version=0x08003700
2024-12-17 14:38:54,584 DEBUG:	snd_hda_intel 0000:68:00.1: bound 0000:68:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
2024-12-17 14:38:54,584 DEBUG:	kfd kfd: amdgpu: Allocated 3969056 bytes on gart
2024-12-17 14:38:54,584 DEBUG:	kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
2024-12-17 14:38:54,585 DEBUG:	amdgpu: Virtual CRAT table created for GPU
2024-12-17 14:38:54,585 DEBUG:	amdgpu: Topology: Add dGPU node [0x15bf:0x1002]
2024-12-17 14:38:54,585 DEBUG:	kfd kfd: amdgpu: added device 1002:15bf
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: SE 1, SH per SE 2, CU per SH 6, active_cu_number 12
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
2024-12-17 14:38:54,585 DEBUG:	[drm] ring gfx_32770.1.1 was added
2024-12-17 14:38:54,585 DEBUG:	[drm] ring compute_32770.2.2 was added
2024-12-17 14:38:54,585 DEBUG:	[drm] ring sdma_32770.3.3 was added
2024-12-17 14:38:54,585 DEBUG:	[drm] ring gfx_32770.1.1 ib test pass
2024-12-17 14:38:54,585 DEBUG:	[drm] ring compute_32770.2.2 ib test pass
2024-12-17 14:38:54,585 DEBUG:	[drm] ring sdma_32770.3.3 ib test pass
2024-12-17 14:38:54,585 DEBUG:	amdgpu 0000:68:00.0: amdgpu: Runtime PM not available
2024-12-17 14:38:54,585 DEBUG:	[drm] Initialized amdgpu 3.59.0 for 0000:68:00.0 on minor 2
2024-12-17 14:38:54,585 DEBUG:	fbcon: amdgpudrmfb (fb0) is primary device
2024-12-17 14:38:54,585 DEBUG:	fbcon: Deferring console take-over
2024-12-17 14:38:54,586 DEBUG:	amdgpu 0000:68:00.0: [drm] fb0: amdgpudrmfb frame buffer device
2024-12-17 14:38:54,586 DEBUG:	amdgpu 0000:68:00.0: [drm] REG_WAIT timeout 1us * 1000 tries - dcn314_dsc_pg_control line:225
2024-12-17 14:38:54,586 DEBUG:	amdgpu 0000:68:00.0: [drm] REG_WAIT timeout 1us * 1000 tries - dcn314_dsc_pg_control line:233
2024-12-17 14:38:54,586 DEBUG:	amdgpu 0000:68:00.0: [drm] REG_WAIT timeout 1us * 1000 tries - dcn314_dsc_pg_control line:241
2024-12-17 14:38:54,586 DEBUG:	amdgpu 0000:68:00.0: [drm] REG_WAIT timeout 1us * 1000 tries - dcn314_dsc_pg_control line:249
2024-12-17 14:38:54,586 DEBUG:	nvme nvme0: using unchecked data buffer
2024-12-17 14:38:54,586 DEBUG:	Bluetooth: BNEP (Ethernet Emulation) ver 1.3
2024-12-17 14:38:54,586 DEBUG:	Bluetooth: BNEP filters: protocol multicast
2024-12-17 14:38:54,586 DEBUG:	Bluetooth: BNEP socket layer initialized
2024-12-17 14:38:54,586 DEBUG:	Bluetooth: MGMT ver 1.23
2024-12-17 14:38:54,586 DEBUG:	NET: Registered PF_ALG protocol family
2024-12-17 14:38:54,586 DEBUG:	kauditd_printk_skb: 107 callbacks suppressed
2024-12-17 14:38:54,586 DEBUG:	audit: type=1400 audit(1734442706.719:118): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="rsyslogd" pid=1088 comm="apparmor_parser"
2024-12-17 14:38:54,586 DEBUG:	NET: Registered PF_QIPCRTR protocol family
2024-12-17 14:38:54,586 DEBUG:	Generic FE-GE Realtek PHY r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
2024-12-17 14:38:54,586 DEBUG:	r8169 0000:04:00.0 enp4s0: Link is Down
2024-12-17 14:38:54,586 DEBUG:	iwlwifi 0000:05:00.0: WFPM_UMAC_PD_NOTIFICATION: 0x20
2024-12-17 14:38:54,586 DEBUG:	iwlwifi 0000:05:00.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
2024-12-17 14:38:54,586 DEBUG:	iwlwifi 0000:05:00.0: WFPM_AUTH_KEY_0: 0x90
2024-12-17 14:38:54,586 DEBUG:	iwlwifi 0000:05:00.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
2024-12-17 14:38:54,586 DEBUG:	iwlwifi 0000:05:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
2024-12-17 14:38:54,586 DEBUG:	audit: type=1400 audit(1734442707.558:119): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=1282 comm="cupsd" capability=12  capname="net_admin"
2024-12-17 14:38:54,586 DEBUG:	vboxdrv: Found 16 processor cores/threads
2024-12-17 14:38:54,586 DEBUG:	vboxdrv: TSC mode is Invariant, tentative frequency 3992499106 Hz
2024-12-17 14:38:54,586 DEBUG:	vboxdrv: Successfully loaded version 7.0.20_Ubuntu r163906 (interface 0x00330004)
2024-12-17 14:38:54,586 DEBUG:	VBoxNetFlt: Successfully started.
2024-12-17 14:38:54,586 DEBUG:	VBoxNetAdp: Successfully started.
2024-12-17 14:38:54,587 DEBUG:	amdgpu 0000:03:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
2024-12-17 14:38:54,587 DEBUG:	amdgpu 0000:68:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
2024-12-17 14:38:54,587 DEBUG:	Bluetooth: RFCOMM TTY layer initialized
2024-12-17 14:38:54,587 DEBUG:	Bluetooth: RFCOMM socket layer initialized
2024-12-17 14:38:54,587 DEBUG:	Bluetooth: RFCOMM ver 1.11
2024-12-17 14:38:54,587 DEBUG:	r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
2024-12-17 14:38:54,587 DEBUG:	/var/log/journal/b54d92d5b40cb1a2071fa809674ee5f6/user-1000.journal: Journal file uses a different sequence number ID, rotating.
2024-12-17 14:38:54,587 DEBUG:	warning: `kdeconnectd' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
2024-12-17 14:38:54,587 INFO:	Explanations for your system
2024-12-17 14:38:54,587 WARNING:	🚦 Kernel is tainted
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Mario Limonciello 1 week, 2 days ago
On 12/17/2024 08:07, Werner Sembach wrote:

>> '''
>> Platform may hang resuming.  Upgrade your firmware or add 
>> pcie_port_pm=off to kernel command line if you have problems
>> '''
> Yes, full log attached (kernel 6.13-rc3 one time without sudo one time 
> with sudo)

Yes; I see it in your log.

>> "quirk: disabling D3cold for suspend"
> On the fixed BIOS I see that line. On the unfixed BIOS it aborts the 
> functions at "if (pm_suspend_target_state == PM_SUSPEND_ON)". Skipping 
> the check on the unfixed BIOS it still hangs on resume.
>>
>> I'm /suspecting/ you do see it, but you're having problems with 
>> another root port.
>>
>> I mentioned this in my previous iterations of patches that eventually 
>> landed on that quirk, but Windows and Linux handle root ports 
>> differently at suspend time and that could be why it's exposing your 
>> BIOS bug.
>>
>> If you can please narrow down which root ports actually need the quirk 
>> for your side (feel free to do a similar style to 7d08f21f8c630) I 
>> think we could land on something more narrow and upstreamable.
>>
>> At a minimum what you're doing today is covering both Rembrandt and 
>> Phoenix and it should only apply to Phoenix.
> 
> I also try to find out how many devices where actually shipped with this 
> very first BIOS version.

OK.
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Werner Sembach 1 week, 2 days ago
Am 17.12.24 um 15:11 schrieb Mario Limonciello:
> On 12/17/2024 08:07, Werner Sembach wrote:
>
>>> '''
>>> Platform may hang resuming.  Upgrade your firmware or add pcie_port_pm=off 
>>> to kernel command line if you have problems
>>> '''
>> Yes, full log attached (kernel 6.13-rc3 one time without sudo one time with 
>> sudo)
>
> Yes; I see it in your log.
>
>>> "quirk: disabling D3cold for suspend"
>> On the fixed BIOS I see that line. On the unfixed BIOS it aborts the 
>> functions at "if (pm_suspend_target_state == PM_SUSPEND_ON)". Skipping the 
>> check on the unfixed BIOS it still hangs on resume.
>>>
>>> I'm /suspecting/ you do see it, but you're having problems with another root 
>>> port.
>>>
>>> I mentioned this in my previous iterations of patches that eventually landed 
>>> on that quirk, but Windows and Linux handle root ports differently at 
>>> suspend time and that could be why it's exposing your BIOS bug.
>>>
>>> If you can please narrow down which root ports actually need the quirk for 
>>> your side (feel free to do a similar style to 7d08f21f8c630) I think we 
>>> could land on something more narrow and upstreamable.
>>>
>>> At a minimum what you're doing today is covering both Rembrandt and Phoenix 
>>> and it should only apply to Phoenix.
>>
>> I also try to find out how many devices where actually shipped with this very 
>> first BIOS version.
>
> OK.

Ok found out that the initial bios actually works, then there is one in between 
bios where it doesn't and the next one it works again.

So i need to find out if the the in between bios was actually shipped, if not, 
this issue is actually void.

Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Werner Sembach 1 week, 2 days ago
Am 17.12.24 um 16:58 schrieb Werner Sembach:
>
> Am 17.12.24 um 15:11 schrieb Mario Limonciello:
>> On 12/17/2024 08:07, Werner Sembach wrote:
>>
>>>> '''
>>>> Platform may hang resuming.  Upgrade your firmware or add pcie_port_pm=off 
>>>> to kernel command line if you have problems
>>>> '''
>>> Yes, full log attached (kernel 6.13-rc3 one time without sudo one time with 
>>> sudo)
>>
>> Yes; I see it in your log.
>>
>>>> "quirk: disabling D3cold for suspend"
>>> On the fixed BIOS I see that line. On the unfixed BIOS it aborts the 
>>> functions at "if (pm_suspend_target_state == PM_SUSPEND_ON)". Skipping the 
>>> check on the unfixed BIOS it still hangs on resume.
>>>>
>>>> I'm /suspecting/ you do see it, but you're having problems with another 
>>>> root port.
>>>>
>>>> I mentioned this in my previous iterations of patches that eventually 
>>>> landed on that quirk, but Windows and Linux handle root ports differently 
>>>> at suspend time and that could be why it's exposing your BIOS bug.
>>>>
>>>> If you can please narrow down which root ports actually need the quirk for 
>>>> your side (feel free to do a similar style to 7d08f21f8c630) I think we 
>>>> could land on something more narrow and upstreamable.
>>>>
>>>> At a minimum what you're doing today is covering both Rembrandt and Phoenix 
>>>> and it should only apply to Phoenix.
>>>
>>> I also try to find out how many devices where actually shipped with this 
>>> very first BIOS version.
>>
>> OK.
>
> Ok found out that the initial bios actually works, then there is one in 
> between bios where it doesn't and the next one it works again.
>
> So i need to find out if the the in between bios was actually shipped, if not, 
> this issue is actually void.
>
Dang it: seems like it.

So should i create a v3 of the patch with the correct pci ids just for this bios 
version?


Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Mario Limonciello 1 week, 2 days ago
On 12/17/2024 10:08, Werner Sembach wrote:
> 
> Am 17.12.24 um 16:58 schrieb Werner Sembach:
>>
>> Am 17.12.24 um 15:11 schrieb Mario Limonciello:
>>> On 12/17/2024 08:07, Werner Sembach wrote:
>>>
>>>>> '''
>>>>> Platform may hang resuming.  Upgrade your firmware or add 
>>>>> pcie_port_pm=off to kernel command line if you have problems
>>>>> '''
>>>> Yes, full log attached (kernel 6.13-rc3 one time without sudo one 
>>>> time with sudo)
>>>
>>> Yes; I see it in your log.
>>>
>>>>> "quirk: disabling D3cold for suspend"
>>>> On the fixed BIOS I see that line. On the unfixed BIOS it aborts the 
>>>> functions at "if (pm_suspend_target_state == PM_SUSPEND_ON)". 
>>>> Skipping the check on the unfixed BIOS it still hangs on resume.
>>>>>
>>>>> I'm /suspecting/ you do see it, but you're having problems with 
>>>>> another root port.
>>>>>
>>>>> I mentioned this in my previous iterations of patches that 
>>>>> eventually landed on that quirk, but Windows and Linux handle root 
>>>>> ports differently at suspend time and that could be why it's 
>>>>> exposing your BIOS bug.
>>>>>
>>>>> If you can please narrow down which root ports actually need the 
>>>>> quirk for your side (feel free to do a similar style to 
>>>>> 7d08f21f8c630) I think we could land on something more narrow and 
>>>>> upstreamable.
>>>>>
>>>>> At a minimum what you're doing today is covering both Rembrandt and 
>>>>> Phoenix and it should only apply to Phoenix.
>>>>
>>>> I also try to find out how many devices where actually shipped with 
>>>> this very first BIOS version.
>>>
>>> OK.
>>
>> Ok found out that the initial bios actually works, then there is one 
>> in between bios where it doesn't and the next one it works again.
>>
>> So i need to find out if the the in between bios was actually shipped, 
>> if not, this issue is actually void.
>>
> Dang it: seems like it.
> 
> So should i create a v3 of the patch with the correct pci ids just for 
> this bios version?

Yes; the quirk needs to be as narrow as makes sense for the situation.
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Werner Sembach 2 weeks ago
Am 11.12.24 um 22:24 schrieb Mario Limonciello:
> On 12/11/2024 06:47, Werner Sembach wrote:
>> Hi,
>>
>> Am 10.12.24 um 17:00 schrieb Mario Limonciello:
>>> On 12/10/2024 09:24, Werner Sembach wrote:
>>>> Hi,
>>>>
>>>> Am 09.12.24 um 20:45 schrieb Mario Limonciello:
>>>>> On 12/9/2024 13:36, Werner Sembach wrote:
>>>>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>>>>
>>>>>> commit 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>>>>> sets the policy that all PCIe ports are allowed to use D3. When
>>>>>> the system is suspended if the port is not power manageable by the
>>>>>> platform and won't be used for wakeup via a PME this sets up the
>>>>>> policy for these ports to go into D3hot.
>>>>>>
>>>>>> This policy generally makes sense from an OSPM perspective but it leads
>>>>>> to problems with wakeup from suspend on the TUXEDO Sirius 16 Gen 1 with
>>>>>> an unupdated BIOS.
>>>>>>
>>>>>> - On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
>>>>>>    interrupt.
>>>>>> - On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
>>>>>>
>>>>>> On the affected Device + BIOS combination, add a quirk for the PCI device
>>>>>> ID used by the problematic root port on both chips to ensure that these
>>>>>> root ports are not put into D3hot at suspend.
>>>>>>
>>>>>> This patch is based on
>>>>>> https://lore.kernel.org/linux-pci/20230708214457.1229-2- 
>>>>>> mario.limonciello@amd.com/
>>>>>> but with the added condition both in the documentation and in the code to
>>>>>> apply only to the TUXEDO Sirius 16 Gen 1 with the original unpatched BIOS.
>>>>>>
>>>>>> Co-developed-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>>>>> Signed-off-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>>>>> Co-developed-by: Werner Sembach <wse@tuxedocomputers.com>
>>>>>> Signed-off-by: Werner Sembach <wse@tuxedocomputers.com>
>>>>>> Cc: stable@vger.kernel.org # 6.1+
>>>>>> Reported-by: Iain Lane <iain@orangesquash.org.uk>
>>>>>> Closes: https://forums.lenovo.com/t5/Ubuntu/Z13-can-t-resume-from- 
>>>>>> suspend-with-external-USB-keyboard/m-p/5217121
>>>>>> Fixes: 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>>>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>>>>> ---
>>>>>>   drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
>>>>>>   1 file changed, 31 insertions(+)
>>>>>>
>>>>>> diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
>>>>>> index 76f4df75b08a1..2226dca56197d 100644
>>>>>> --- a/drivers/pci/quirks.c
>>>>>> +++ b/drivers/pci/quirks.c
>>>>>> @@ -3908,6 +3908,37 @@ static void 
>>>>>> quirk_apple_poweroff_thunderbolt(struct pci_dev *dev)
>>>>>>   DECLARE_PCI_FIXUP_SUSPEND_LATE(PCI_VENDOR_ID_INTEL,
>>>>>> PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C,
>>>>>>                      quirk_apple_poweroff_thunderbolt);
>>>>>> +
>>>>>> +/*
>>>>>> + * Putting PCIe root ports on Ryzen SoCs with USB4 controllers into D3hot
>>>>>> + * may cause problems when the system attempts wake up from s2idle.
>>>>>> + *
>>>>>> + * On family 19h model 44h (PCI 0x14b9) this manifests as a missing wakeup
>>>>>> + * interrupt.
>>>>>> + * On family 19h model 74h (PCI 0x14eb) this manifests as a system hang.
>>>>>> + *
>>>>>> + * This fix is still required on the TUXEDO Sirius 16 Gen1 with the 
>>>>>> original
>>>>>> + * unupdated BIOS.
>>>>>> + */
>>>>>> +static const struct dmi_system_id quirk_ryzen_rp_d3_dmi_table[] = {
>>>>>> +    {
>>>>>> +        .matches = {
>>>>>> +            DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"),
>>>>>> +            DMI_MATCH(DMI_BOARD_NAME, "APX958"),
>>>>>> +            DMI_MATCH(DMI_BIOS_VERSION, "V1.00A00"),
>>>>>> +        },
>>>>>> +    },
>>>>>> +    {}
>>>>>> +};
>>>>>> +
>>>>>> +static void quirk_ryzen_rp_d3(struct pci_dev *pdev)
>>>>>> +{
>>>>>> +    if (dmi_check_system(quirk_ryzen_rp_d3_dmi_table) &&
>>>>>> +        !acpi_pci_power_manageable(pdev))
>>>>>> +        pdev->dev_flags |= PCI_DEV_FLAGS_NO_D3;
>>>>>> +}
>>>>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14b9, quirk_ryzen_rp_d3);
>>>>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14eb, quirk_ryzen_rp_d3);
>>>>>>   #endif
>>>>>>     /*
>>>>>
>>>>> Wait, what is wrong with:
>>>>>
>>>>> commit 7d08f21f8c630 ("x86/PCI: Avoid PME from D3hot/D3cold for AMD 
>>>>> Rembrandt and Phoenix USB4")
>>>>>
>>>>> Is that not activating on your system for some reason?
>>>>
>>>> Doesn't seem so, tested with the old BIOS and 6.13-rc2 and had blackscreen 
>>>> on wakeup.
>>>
>>> OK, I think we need to dig a layer deeper to see which root port is causing 
>>> problems to understand this.
>>>
>>>>
>>>> With a newer BIOS for that device suspend and resume however works.
>>>>
>>>
>>> Is there any reason that people would realistically be staying on the old 
>>> BIOS and instead we need to carry this quirk in the kernel for eternity?
>> Fear of device bricking or not knowing an update is available.
>
> The not knowing is solved by publishing firmware to LVFS.
>
> Most "popular" distributions include fwupd, regularly check for updates and 
> will notify users through the MOTD or a graphical application that there is 
> something available.
>
>>>
>>> With the Linux ecosystem for BIOS updates through fwupd + LVFS it's not a 
>>> very big barrier to entry to do an update like it was 20 years ago.
>> Sadly fwupd/LVFS does not support executing arbitrary efi binaries/nsh 
>> scripts which still is the main form ODMs provide bios updates.
>
> It's tangential to this thread; but generally ODMs will provide you a capsule 
> if you ask for one.

I already evaluated this a while back with the results:

If the BIOS is an AMI one you can get a capsule, but this capsule might 
overwrite DMI strings or the vendor boot logo if not flashed with the AMI 
flasher and extra flags (sadly I was not able to find out what these flags do 
under the hood to give fwupd the same capabilities). Also these capsules often 
not include Intel ME and EC firmware updates and certain bios version might only 
work with certain EC firmwares.

Last I checked in with the ODM that uses Insyde BIOSes we where not able to get 
a capsule update. I don't know if that is an ODM or Insyde problem.

For the rest I will come back to this on Monday as I'm currently away from the 
testing device, thanks for all the feedback so far.

>
> Anyhow if you are providing scripts and random EFI binaries in order to get 
> things updated, that explains why this is a large enough chunk of people to 
> justify a patch like this.
>
>>>
>>>> Looking in the patch the device id's are different (0x162e, 0x162f, 0x1668, 
>>>> and 0x1669).
>>>>
>>>
>>> TUXEDO Sirius 16 Gen1 is Phoenix based, right?  So at a minimum you 
>>> shouldn't be including PCI IDs from Rembrandt (0x14b9)
>> Thanks for the hint, I can delete that then.
>>>
>>> Here is the topology from a Phoenix system on my side:
>>>
>>> https://gist.github.com/superm1/85bf0c053008435458bdb39418e109d8
>>
>> Sorry for the noob question: How do I get that format? it's not lspci - tvnn 
>> on my system
>
> No worry.
>
> Having looked at a lot of s2idle bugs I've found it's generally helpful to 
> know what ACPI companion is assigned to devices and what are parents.
>
> So it's actually created by this function in the s2idle issue triage script, 
> amd_s2idle.py.
>
> https://gitlab.freedesktop.org/drm/amd/-/blob/master/scripts/amd_s2idle.py#L1945
>
> And while on the topic, does your "broken" BIOS report this from that script?
>
> '''
> Platform may hang resuming.  Upgrade your firmware or add pcie_port_pm=off to 
> kernel command line if you have problems
> '''
>
>>
>> But i think this contains the same information:
>>
>> $ lspci -Pnn
>> 00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Root 
>> Complex [1022:14e8]
>> 00:00.2 IOMMU [0806]: Advanced Micro Devices, Inc. [AMD] Phoenix IOMMU 
>> [1022:14e9]
>> 00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
>> Host Bridge [1022:14ea]
>> 00:01.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP 
>> Bridge [1022:14ed]
>> 00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
>> Host Bridge [1022:14ea]
>> 00:02.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP 
>> Bridge [1022:14ee]
>> 00:02.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP 
>> Bridge [1022:14ee]
>> 00:02.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP 
>> Bridge [1022:14ee]
>> 00:02.4 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix GPP 
>> Bridge [1022:14ee]
>> 00:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
>> Host Bridge [1022:14ea]
>> 00:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Family 19h 
>> USB4/Thunderbolt PCIe tunnel [1022:14ef]
>> 00:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
>> Host Bridge [1022:14ea]
>> 00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Dummy 
>> Host Bridge [1022:14ea]
>> 00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>> Internal GPP Bridge to Bus [C:A] [1022:14eb]
>> 00:08.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>> Internal GPP Bridge to Bus [C:A] [1022:14eb]
>> 00:08.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>> Internal GPP Bridge to Bus [C:A] [1022:14eb]
>> 00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller 
>> [1022:790b] (rev 71)
>> 00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge 
>> [1022:790e] (rev 51)
>> 00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 0 [1022:14f0]
>> 00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 1 [1022:14f1]
>> 00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 2 [1022:14f2]
>> 00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 3 [1022:14f3]
>> 00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 4 [1022:14f4]
>> 00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 5 [1022:14f5]
>> 00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 6 [1022:14f6]
>> 00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Phoenix Data 
>> Fabric; Function 7 [1022:14f7]
>> 00:01.1/00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 
>> 10 XL Upstream Port of PCI Express Switch [1002:1478] (rev 12)
>> 00:01.1/00.0/00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ ATI] 
>> Navi 10 XL Downstream Port of PCI Express Switch [1002:1479] (rev 12)
>> 00:01.1/00.0/00.0/00.0 VGA compatible controller [0300]: Advanced Micro 
>> Devices, Inc. [AMD/ATI] Navi 33 [Radeon RX 7600/7600 XT/7600M XT/7600S/7700S 
>> / PRO W7600] [1002:7480] (rev c7)
>> 00:01.1/00.0/00.0/00.1 Audio device [0403]: Advanced Micro Devices, Inc. 
>> [AMD/ATI] Navi 31 HDMI/DP Audio [1002:ab30]
>> 00:02.1/00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
>> RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] 
>> (rev 15)
>> 00:02.2/00.0 Network controller [0280]: Intel Corporation Wi-Fi 6E(802.11ax) 
>> AX210/AX1675* 2x2 [Typhoon Peak] [8086:2725] (rev 1a)
>> 00:02.4/00.0 Non-Volatile memory controller [0108]: Samsung Electronics Co 
>> Ltd NVMe SSD Controller SM981/PM981/PM983 [144d:a808]
>> 00:08.1/00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. 
>> [AMD/ATI] Phoenix1 [1002:15bf] (rev c1)
>> 00:08.1/00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] 
>> Rembrandt Radeon High Definition Audio Controller [1002:1640]
>> 00:08.1/00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] 
>> Phoenix CCP/PSP 3.0 Device [1022:15c7]
>> 00:08.1/00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
>> [1022:15b9]
>> 00:08.1/00.4 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
>> [1022:15ba]
>> 00:08.1/00.5 Multimedia controller [0480]: Advanced Micro Devices, Inc. [AMD] 
>> ACP/ACP3X/ACP6x Audio Coprocessor [1022:15e2] (rev 63)
>> 00:08.1/00.6 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Family 
>> 17h/19h/1ah HD Audio Controller [1022:15e3]
>> 00:08.2/00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, 
>> Inc. [AMD] Phoenix Dummy Function [1022:14ec]
>> 00:08.2/00.1 Signal processing controller [1180]: Advanced Micro Devices, 
>> Inc. [AMD] AMD IPU Device [1022:1502]
>> 00:08.3/00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, 
>> Inc. [AMD] Phoenix Dummy Function [1022:14ec]
>> 00:08.3/00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
>> [1022:15c0]
>> 00:08.3/00.4 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device 
>> [1022:15c1]
>> 00:08.3/00.5 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Pink 
>> Sardine USB4/Thunderbolt NHI controller #1 [1022:1668]
>>
>>>
>>> That's why 7d08f21f8c630 intentionally matches the NHI and then changes the 
>>> root port right above that instead of all the root ports - because that is 
>>> where the problem was.
>> For some reason it doesn't seem to trigger on my system (added debug output) 
>> I will look further into it why that happens.
>
> You never see this message in your logs at suspend time (even on a "fixed" BIOS)?
>
> "quirk: disabling D3cold for suspend"
>
> I'm /suspecting/ you do see it, but you're having problems with another root 
> port.
>
> I mentioned this in my previous iterations of patches that eventually landed 
> on that quirk, but Windows and Linux handle root ports differently at suspend 
> time and that could be why it's exposing your BIOS bug.
>
> If you can please narrow down which root ports actually need the quirk for 
> your side (feel free to do a similar style to 7d08f21f8c630) I think we could 
> land on something more narrow and upstreamable.
>
> At a minimum what you're doing today is covering both Rembrandt and Phoenix 
> and it should only apply to Phoenix.
>
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Mario Limonciello 2 weeks ago
+ Richard Hughes for some extra comments on the capsule issues.

It's tangential to your immediate problem, but I think if we can help 
you to get it solved it will be healthier for your future products.

Here is the full thread for context.

https://lore.kernel.org/all/20241209193614.535940-1-wse@tuxedocomputers.com/

More comments below.

On 12/12/2024 12:47, Werner Sembach wrote:
> 
> Am 11.12.24 um 22:24 schrieb Mario Limonciello:
>> On 12/11/2024 06:47, Werner Sembach wrote:
>>> Hi,
>>>
>>> Am 10.12.24 um 17:00 schrieb Mario Limonciello:
>>>> On 12/10/2024 09:24, Werner Sembach wrote:
>>>>> Hi,
>>>>>
>>>>> Am 09.12.24 um 20:45 schrieb Mario Limonciello:
>>>>>> On 12/9/2024 13:36, Werner Sembach wrote:
>>>>>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>>>>>
>>>>>>> commit 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>>>>>> sets the policy that all PCIe ports are allowed to use D3. When
>>>>>>> the system is suspended if the port is not power manageable by the
>>>>>>> platform and won't be used for wakeup via a PME this sets up the
>>>>>>> policy for these ports to go into D3hot.
>>>>>>>
>>>>>>> This policy generally makes sense from an OSPM perspective but it 
>>>>>>> leads
>>>>>>> to problems with wakeup from suspend on the TUXEDO Sirius 16 Gen 
>>>>>>> 1 with
>>>>>>> an unupdated BIOS.
>>>>>>>
>>>>>>> - On family 19h model 44h (PCI 0x14b9) this manifests as a 
>>>>>>> missing wakeup
>>>>>>>    interrupt.
>>>>>>> - On family 19h model 74h (PCI 0x14eb) this manifests as a system 
>>>>>>> hang.
>>>>>>>
>>>>>>> On the affected Device + BIOS combination, add a quirk for the 
>>>>>>> PCI device
>>>>>>> ID used by the problematic root port on both chips to ensure that 
>>>>>>> these
>>>>>>> root ports are not put into D3hot at suspend.
>>>>>>>
>>>>>>> This patch is based on
>>>>>>> https://lore.kernel.org/linux-pci/20230708214457.1229-2- 
>>>>>>> mario.limonciello@amd.com/
>>>>>>> but with the added condition both in the documentation and in the 
>>>>>>> code to
>>>>>>> apply only to the TUXEDO Sirius 16 Gen 1 with the original 
>>>>>>> unpatched BIOS.
>>>>>>>
>>>>>>> Co-developed-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>>>>>> Signed-off-by: Georg Gottleuber <ggo@tuxedocomputers.com>
>>>>>>> Co-developed-by: Werner Sembach <wse@tuxedocomputers.com>
>>>>>>> Signed-off-by: Werner Sembach <wse@tuxedocomputers.com>
>>>>>>> Cc: stable@vger.kernel.org # 6.1+
>>>>>>> Reported-by: Iain Lane <iain@orangesquash.org.uk>
>>>>>>> Closes: https://forums.lenovo.com/t5/Ubuntu/Z13-can-t-resume- 
>>>>>>> from- suspend-with-external-USB-keyboard/m-p/5217121
>>>>>>> Fixes: 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend")
>>>>>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>>>>>> ---
>>>>>>>   drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
>>>>>>>   1 file changed, 31 insertions(+)
>>>>>>>
>>>>>>> diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
>>>>>>> index 76f4df75b08a1..2226dca56197d 100644
>>>>>>> --- a/drivers/pci/quirks.c
>>>>>>> +++ b/drivers/pci/quirks.c
>>>>>>> @@ -3908,6 +3908,37 @@ static void 
>>>>>>> quirk_apple_poweroff_thunderbolt(struct pci_dev *dev)
>>>>>>>   DECLARE_PCI_FIXUP_SUSPEND_LATE(PCI_VENDOR_ID_INTEL,
>>>>>>> PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C,
>>>>>>>                      quirk_apple_poweroff_thunderbolt);
>>>>>>> +
>>>>>>> +/*
>>>>>>> + * Putting PCIe root ports on Ryzen SoCs with USB4 controllers 
>>>>>>> into D3hot
>>>>>>> + * may cause problems when the system attempts wake up from s2idle.
>>>>>>> + *
>>>>>>> + * On family 19h model 44h (PCI 0x14b9) this manifests as a 
>>>>>>> missing wakeup
>>>>>>> + * interrupt.
>>>>>>> + * On family 19h model 74h (PCI 0x14eb) this manifests as a 
>>>>>>> system hang.
>>>>>>> + *
>>>>>>> + * This fix is still required on the TUXEDO Sirius 16 Gen1 with 
>>>>>>> the original
>>>>>>> + * unupdated BIOS.
>>>>>>> + */
>>>>>>> +static const struct dmi_system_id quirk_ryzen_rp_d3_dmi_table[] = {
>>>>>>> +    {
>>>>>>> +        .matches = {
>>>>>>> +            DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"),
>>>>>>> +            DMI_MATCH(DMI_BOARD_NAME, "APX958"),
>>>>>>> +            DMI_MATCH(DMI_BIOS_VERSION, "V1.00A00"),
>>>>>>> +        },
>>>>>>> +    },
>>>>>>> +    {}
>>>>>>> +};
>>>>>>> +
>>>>>>> +static void quirk_ryzen_rp_d3(struct pci_dev *pdev)
>>>>>>> +{
>>>>>>> +    if (dmi_check_system(quirk_ryzen_rp_d3_dmi_table) &&
>>>>>>> +        !acpi_pci_power_manageable(pdev))
>>>>>>> +        pdev->dev_flags |= PCI_DEV_FLAGS_NO_D3;
>>>>>>> +}
>>>>>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14b9, 
>>>>>>> quirk_ryzen_rp_d3);
>>>>>>> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x14eb, 
>>>>>>> quirk_ryzen_rp_d3);
>>>>>>>   #endif
>>>>>>>     /*
>>>>>>
>>>>>> Wait, what is wrong with:
>>>>>>
>>>>>> commit 7d08f21f8c630 ("x86/PCI: Avoid PME from D3hot/D3cold for 
>>>>>> AMD Rembrandt and Phoenix USB4")
>>>>>>
>>>>>> Is that not activating on your system for some reason?
>>>>>
>>>>> Doesn't seem so, tested with the old BIOS and 6.13-rc2 and had 
>>>>> blackscreen on wakeup.
>>>>
>>>> OK, I think we need to dig a layer deeper to see which root port is 
>>>> causing problems to understand this.
>>>>
>>>>>
>>>>> With a newer BIOS for that device suspend and resume however works.
>>>>>
>>>>
>>>> Is there any reason that people would realistically be staying on 
>>>> the old BIOS and instead we need to carry this quirk in the kernel 
>>>> for eternity?
>>> Fear of device bricking or not knowing an update is available.
>>
>> The not knowing is solved by publishing firmware to LVFS.
>>
>> Most "popular" distributions include fwupd, regularly check for 
>> updates and will notify users through the MOTD or a graphical 
>> application that there is something available.
>>
>>>>
>>>> With the Linux ecosystem for BIOS updates through fwupd + LVFS it's 
>>>> not a very big barrier to entry to do an update like it was 20 years 
>>>> ago.
>>> Sadly fwupd/LVFS does not support executing arbitrary efi binaries/ 
>>> nsh scripts which still is the main form ODMs provide bios updates.
>>
>> It's tangential to this thread; but generally ODMs will provide you a 
>> capsule if you ask for one.
> 
> I already evaluated this a while back with the results:
> 

Thanks for sharing.

> If the BIOS is an AMI one you can get a capsule, but this capsule might 
> overwrite DMI strings or the vendor boot logo if not flashed with the 
> AMI flasher and extra flags (sadly I was not able to find out what these 
> flags do under the hood to give fwupd the same capabilities). Also these 
> capsules often not include Intel ME and EC firmware updates and certain 
> bios version might only work with certain EC firmwares.
> 

It sounds like some bugs in the implementation of the capsule handler 
for this system.

> Last I checked in with the ODM that uses Insyde BIOSes we where not able 
> to get a capsule update. I don't know if that is an ODM or Insyde problem.

It's not an Insyde problem.  I use Insyde capsules regularly myself from 
fwupd.  I also know several other OEMs that ship capsules to LVFS that 
use Insyde.

> 
> For the rest I will come back to this on Monday as I'm currently away 
> from the testing device, thanks for all the feedback so far.

Ack.

> 
>>
>> Anyhow if you are providing scripts and random EFI binaries in order 
>> to get things updated, that explains why this is a large enough chunk 
>> of people to justify a patch like this.
>>
>>>>
>>>>> Looking in the patch the device id's are different (0x162e, 0x162f, 
>>>>> 0x1668, and 0x1669).
>>>>>
>>>>
>>>> TUXEDO Sirius 16 Gen1 is Phoenix based, right?  So at a minimum you 
>>>> shouldn't be including PCI IDs from Rembrandt (0x14b9)
>>> Thanks for the hint, I can delete that then.
>>>>
>>>> Here is the topology from a Phoenix system on my side:
>>>>
>>>> https://gist.github.com/superm1/85bf0c053008435458bdb39418e109d8
>>>
>>> Sorry for the noob question: How do I get that format? it's not lspci 
>>> - tvnn on my system
>>
>> No worry.
>>
>> Having looked at a lot of s2idle bugs I've found it's generally 
>> helpful to know what ACPI companion is assigned to devices and what 
>> are parents.
>>
>> So it's actually created by this function in the s2idle issue triage 
>> script, amd_s2idle.py.
>>
>> https://gitlab.freedesktop.org/drm/amd/-/blob/master/scripts/ 
>> amd_s2idle.py#L1945
>>
>> And while on the topic, does your "broken" BIOS report this from that 
>> script?
>>
>> '''
>> Platform may hang resuming.  Upgrade your firmware or add 
>> pcie_port_pm=off to kernel command line if you have problems
>> '''
>>
>>>
>>> But i think this contains the same information:
>>>
>>> $ lspci -Pnn
>>> 00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Root Complex [1022:14e8]
>>> 00:00.2 IOMMU [0806]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>>> IOMMU [1022:14e9]
>>> 00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Dummy Host Bridge [1022:14ea]
>>> 00:01.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>>> GPP Bridge [1022:14ed]
>>> 00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Dummy Host Bridge [1022:14ea]
>>> 00:02.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>>> GPP Bridge [1022:14ee]
>>> 00:02.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>>> GPP Bridge [1022:14ee]
>>> 00:02.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>>> GPP Bridge [1022:14ee]
>>> 00:02.4 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>>> GPP Bridge [1022:14ee]
>>> 00:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Dummy Host Bridge [1022:14ea]
>>> 00:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Family 
>>> 19h USB4/Thunderbolt PCIe tunnel [1022:14ef]
>>> 00:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Dummy Host Bridge [1022:14ea]
>>> 00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Dummy Host Bridge [1022:14ea]
>>> 00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>>> Internal GPP Bridge to Bus [C:A] [1022:14eb]
>>> 00:08.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>>> Internal GPP Bridge to Bus [C:A] [1022:14eb]
>>> 00:08.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Phoenix 
>>> Internal GPP Bridge to Bus [C:A] [1022:14eb]
>>> 00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus 
>>> Controller [1022:790b] (rev 71)
>>> 00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC 
>>> Bridge [1022:790e] (rev 51)
>>> 00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Data Fabric; Function 0 [1022:14f0]
>>> 00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Data Fabric; Function 1 [1022:14f1]
>>> 00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Data Fabric; Function 2 [1022:14f2]
>>> 00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Data Fabric; Function 3 [1022:14f3]
>>> 00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Data Fabric; Function 4 [1022:14f4]
>>> 00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Data Fabric; Function 5 [1022:14f5]
>>> 00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Data Fabric; Function 6 [1022:14f6]
>>> 00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] 
>>> Phoenix Data Fabric; Function 7 [1022:14f7]
>>> 00:01.1/00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ 
>>> ATI] Navi 10 XL Upstream Port of PCI Express Switch [1002:1478] (rev 12)
>>> 00:01.1/00.0/00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. 
>>> [AMD/ ATI] Navi 10 XL Downstream Port of PCI Express Switch 
>>> [1002:1479] (rev 12)
>>> 00:01.1/00.0/00.0/00.0 VGA compatible controller [0300]: Advanced 
>>> Micro Devices, Inc. [AMD/ATI] Navi 33 [Radeon RX 7600/7600 XT/7600M 
>>> XT/7600S/7700S / PRO W7600] [1002:7480] (rev c7)
>>> 00:01.1/00.0/00.0/00.1 Audio device [0403]: Advanced Micro Devices, 
>>> Inc. [AMD/ATI] Navi 31 HDMI/DP Audio [1002:ab30]
>>> 00:02.1/00.0 Ethernet controller [0200]: Realtek Semiconductor Co., 
>>> Ltd. RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller 
>>> [10ec:8168] (rev 15)
>>> 00:02.2/00.0 Network controller [0280]: Intel Corporation Wi-Fi 
>>> 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak] [8086:2725] (rev 1a)
>>> 00:02.4/00.0 Non-Volatile memory controller [0108]: Samsung 
>>> Electronics Co Ltd NVMe SSD Controller SM981/PM981/PM983 [144d:a808]
>>> 00:08.1/00.0 VGA compatible controller [0300]: Advanced Micro 
>>> Devices, Inc. [AMD/ATI] Phoenix1 [1002:15bf] (rev c1)
>>> 00:08.1/00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ 
>>> ATI] Rembrandt Radeon High Definition Audio Controller [1002:1640]
>>> 00:08.1/00.2 Encryption controller [1080]: Advanced Micro Devices, 
>>> Inc. [AMD] Phoenix CCP/PSP 3.0 Device [1022:15c7]
>>> 00:08.1/00.3 USB controller [0c03]: Advanced Micro Devices, Inc. 
>>> [AMD] Device [1022:15b9]
>>> 00:08.1/00.4 USB controller [0c03]: Advanced Micro Devices, Inc. 
>>> [AMD] Device [1022:15ba]
>>> 00:08.1/00.5 Multimedia controller [0480]: Advanced Micro Devices, 
>>> Inc. [AMD] ACP/ACP3X/ACP6x Audio Coprocessor [1022:15e2] (rev 63)
>>> 00:08.1/00.6 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] 
>>> Family 17h/19h/1ah HD Audio Controller [1022:15e3]
>>> 00:08.2/00.0 Non-Essential Instrumentation [1300]: Advanced Micro 
>>> Devices, Inc. [AMD] Phoenix Dummy Function [1022:14ec]
>>> 00:08.2/00.1 Signal processing controller [1180]: Advanced Micro 
>>> Devices, Inc. [AMD] AMD IPU Device [1022:1502]
>>> 00:08.3/00.0 Non-Essential Instrumentation [1300]: Advanced Micro 
>>> Devices, Inc. [AMD] Phoenix Dummy Function [1022:14ec]
>>> 00:08.3/00.3 USB controller [0c03]: Advanced Micro Devices, Inc. 
>>> [AMD] Device [1022:15c0]
>>> 00:08.3/00.4 USB controller [0c03]: Advanced Micro Devices, Inc. 
>>> [AMD] Device [1022:15c1]
>>> 00:08.3/00.5 USB controller [0c03]: Advanced Micro Devices, Inc. 
>>> [AMD] Pink Sardine USB4/Thunderbolt NHI controller #1 [1022:1668]
>>>
>>>>
>>>> That's why 7d08f21f8c630 intentionally matches the NHI and then 
>>>> changes the root port right above that instead of all the root ports 
>>>> - because that is where the problem was.
>>> For some reason it doesn't seem to trigger on my system (added debug 
>>> output) I will look further into it why that happens.
>>
>> You never see this message in your logs at suspend time (even on a 
>> "fixed" BIOS)?
>>
>> "quirk: disabling D3cold for suspend"
>>
>> I'm /suspecting/ you do see it, but you're having problems with 
>> another root port.
>>
>> I mentioned this in my previous iterations of patches that eventually 
>> landed on that quirk, but Windows and Linux handle root ports 
>> differently at suspend time and that could be why it's exposing your 
>> BIOS bug.
>>
>> If you can please narrow down which root ports actually need the quirk 
>> for your side (feel free to do a similar style to 7d08f21f8c630) I 
>> think we could land on something more narrow and upstreamable.
>>
>> At a minimum what you're doing today is covering both Rembrandt and 
>> Phoenix and it should only apply to Phoenix.
>>

Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Richard Hughes 1 week, 6 days ago
On Thursday, 12 December 2024 at 19:01, Mario Limonciello <mario.limonciello@amd.com> wrote:
> > > > > Sadly fwupd/LVFS does not support executing arbitrary efi binaries/
> > > > > nsh scripts which still is the main form ODMs provide bios updates.

Of course fwupd can't do this; it would be a huge security hole as the nsh script isn't signed.

> It sounds like some bugs in the implementation of the capsule handler
> for this system.

I've seen this with AmiFlash + BIOS.ROM, but never from a capsule. I'm pretty sure Aptio builder is more than capable of constructing a capsule file with the correct DMI data.

> It's not an Insyde problem. I use Insyde capsules regularly myself from
> fwupd. I also know several other OEMs that ship capsules to LVFS that
> use Insyde.

100% agreed; Insyde firmware makes up more than 20% of the updates on the LVFS now.

Richard.
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Werner Sembach 1 week, 2 days ago
Hi,

Am 13.12.24 um 11:05 schrieb Richard Hughes:
> On Thursday, 12 December 2024 at 19:01, Mario Limonciello <mario.limonciello@amd.com> wrote:
>>>>>> Sadly fwupd/LVFS does not support executing arbitrary efi binaries/
>>>>>> nsh scripts which still is the main form ODMs provide bios updates.
> Of course fwupd can't do this; it would be a huge security hole as the nsh script isn't signed.
>
>> It sounds like some bugs in the implementation of the capsule handler
>> for this system.
> I've seen this with AmiFlash + BIOS.ROM, but never from a capsule. I'm pretty sure Aptio builder is more than capable of constructing a capsule file with the correct DMI data.

The DMI data also includes a serial number that cannot be baked into the 
capsule. And I don't have access to the Aptio builder or other AMI dev tools, 
just the Afu* flash tools.

The command provided by the ODM:

AfuEfix64.efi <bios>.bin /p /b /n /r /x /l /k /capsule

with <bios>.bin being a capsule and:

/p Program Main BIOS -- With recovery flash this does not include DMI strings, 
but does with capsule flash. -> Does flash some /k regions in /capsule flash 
(but not, for example, the logo region).
/b Program Boot Block
/n Programm NVRAM
/r Preserve ALL SMBIOS structure during programming
/x Don't check ROM ID
/l Programm all ROM Holes
/k Programm all non-critical Blocks -- No effect in /capsule flash, does include 
both the logo and the DMI string region.
/capsule Flash using the capsule update process (without it the bios is flashed 
directly by AfuEfix64.efi)

I played around with the command with the conclusion:

- AfuEfix64.efi <bios>.bin /p /capsule -> overwrites DMI strings
- AfuEfix64.efi <bios>.bin /p /r /capsule -> overwrites nothing

I also flashed with fwupd with the result:

- DMI strings where overwritten
- Main BIOS was flashed
- I don't know if Boot Block was flashed
- I don't know if NVRAM was flashed
- I don't know if ROM Holes were flashed
- I don't know if non-critical Blocks were flashed

I tried to explain fwupd and the requirements to our contact at the ODM, but 
just got the unhelpful reply to use the command above.

Do you know how these AfuEfix64.efi flags are passed over to the capsule flash 
process? Then it might be possible to implement them in fwupd too.

>
>> It's not an Insyde problem. I use Insyde capsules regularly myself from
>> fwupd. I also know several other OEMs that ship capsules to LVFS that
>> use Insyde.
> 100% agreed; Insyde firmware makes up more than 20% of the updates on the LVFS now.

Good to know. Sadly the ODM does not care :(.

To be fair all my work I described here is now 2 or 3 years old. I didn't start 
a second try since.

Kind regards,

Werner

>
> Richard.
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Richard Hughes 1 week, 2 days ago
On Monday, 16 December 2024 at 23:37, Werner Sembach <wse@tuxedocomputers.com> wrote:
> - AfuEfix64.efi <bios>.bin /p /r /capsule -> overwrites nothing
> I tried to explain fwupd and the requirements to our contact at the ODM, but
> just got the unhelpful reply to use the command above.

Can you name the ODM? I think essentially all the ODMs are uploading [valid] capsules to the LVFS now. If it helps, it's the same capsule needed for the LVFS as for the Microsoft WU (Windows Update) process and all ODMs should be intimately familiar with those requirements.
 
> Do you know how these AfuEfix64.efi flags are passed over to the capsule flash
> process? Then it might be possible to implement them in fwupd too.

The capsule, as expected by LVFS and WU, is actually a single *signed* binary that contains the flasher binary and the payload all wrapped up into one. The only time I've seen AfuEfix64.efi in use is for the system preload, as done in the factory.

Richard.
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Werner Sembach 1 week, 2 days ago
Am 17.12.24 um 11:10 schrieb Richard Hughes:
> On Monday, 16 December 2024 at 23:37, Werner Sembach <wse@tuxedocomputers.com> wrote:
>> - AfuEfix64.efi <bios>.bin /p /r /capsule -> overwrites nothing
>> I tried to explain fwupd and the requirements to our contact at the ODM, but
>> just got the unhelpful reply to use the command above.
> Can you name the ODM? I think essentially all the ODMs are uploading [valid] capsules to the LVFS now. If it helps, it's the same capsule needed for the LVFS as for the Microsoft WU (Windows Update) process and all ODMs should be intimately familiar with those requirements.

In this case it was a Tonfang/Uniwill barebone and I talked to a Tongfang 
representative.

Want to point out again that I could determine that /k did do nothing in the 
/capsule mode while /p and /r did effect the flash (iirc /p was required for 
/capsule or the flash didn't start). I could not determine if /b /n and /l did 
something (and probably can't without proper documentation, which I don't have 
access to). I guess /x is irrelevant as long as the flash works.

Do you have a Microsoft help page for OEMs about BIOS and EC upgrades via 
Windows Update? Having some Windows requirements to point to often helps when 
talking with ODMs in my experience.

>   
>> Do you know how these AfuEfix64.efi flags are passed over to the capsule flash
>> process? Then it might be possible to implement them in fwupd too.
> The capsule, as expected by LVFS and WU, is actually a single *signed* binary that contains the flasher binary and the payload all wrapped up into one. The only time I've seen AfuEfix64.efi in use is for the system preload, as done in the factory.
Yeah but since at least the /r flag influences the flash process there must be 
some way the efi shell can pass on options to the flasher included in the 
capsule ... EFI variables? Some bits appended to the capsule?
>
> Richard.
>
Re: [PATCH v2] PCI: Avoid putting some root ports into D3 on some Ryzen chips
Posted by Mario Limonciello 1 week, 2 days ago
On 12/17/2024 05:58, Werner Sembach wrote:
> 
> Am 17.12.24 um 11:10 schrieb Richard Hughes:
>> On Monday, 16 December 2024 at 23:37, Werner Sembach 
>> <wse@tuxedocomputers.com> wrote:
>>> - AfuEfix64.efi <bios>.bin /p /r /capsule -> overwrites nothing
>>> I tried to explain fwupd and the requirements to our contact at the 
>>> ODM, but
>>> just got the unhelpful reply to use the command above.
>> Can you name the ODM? I think essentially all the ODMs are uploading 
>> [valid] capsules to the LVFS now. If it helps, it's the same capsule 
>> needed for the LVFS as for the Microsoft WU (Windows Update) process 
>> and all ODMs should be intimately familiar with those requirements.
> 
> In this case it was a Tonfang/Uniwill barebone and I talked to a 
> Tongfang representative.
> 
> Want to point out again that I could determine that /k did do nothing in 
> the /capsule mode while /p and /r did effect the flash (iirc /p was 
> required for /capsule or the flash didn't start). I could not determine 
> if /b /n and /l did something (and probably can't without proper 
> documentation, which I don't have access to). I guess /x is irrelevant 
> as long as the flash works.
> 
> Do you have a Microsoft help page for OEMs about BIOS and EC upgrades 
> via Windows Update? Having some Windows requirements to point to often 
> helps when talking with ODMs in my experience.

https://learn.microsoft.com/en-us/windows-hardware/drivers/bringup/windows-uefi-firmware-update-platform

> 
>>> Do you know how these AfuEfix64.efi flags are passed over to the 
>>> capsule flash
>>> process? Then it might be possible to implement them in fwupd too.
>> The capsule, as expected by LVFS and WU, is actually a single *signed* 
>> binary that contains the flasher binary and the payload all wrapped up 
>> into one. The only time I've seen AfuEfix64.efi in use is for the 
>> system preload, as done in the factory.
> Yeah but since at least the /r flag influences the flash process there 
> must be some way the efi shell can pass on options to the flasher 
> included in the capsule ... EFI variables? Some bits appended to the 
> capsule?
>>
>> Richard.
>>