* [PATCH] drm/amd: Require CONFIG_HOTPLUG_PCI_PCIE for BOCO
@ 2024-12-11 15:56 Mario Limonciello
2024-12-11 20:08 ` Alex Deucher
0 siblings, 1 reply; 8+ messages in thread
From: Mario Limonciello @ 2024-12-11 15:56 UTC (permalink / raw)
To: amd-gfx; +Cc: Mario Limonciello, Gabriel Marcano
From: Mario Limonciello <mario.limonciello@amd.com>
If the kernel hasn't been compiled with PCIe hotplug support this
can lead to problems with dGPUs that use BOCO because they effectively
drop off the bus.
To prevent issues, disable BOCO support when compiled without PCIe hotplug.
Reported-by: Gabriel Marcano <gabemarcano@yahoo.com>
Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1707#note_2696862
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
index 764d41434a82f..7db796ebb967e 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -419,6 +419,9 @@ bool amdgpu_device_supports_boco(struct drm_device *dev)
{
struct amdgpu_device *adev = drm_to_adev(dev);
+ if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE))
+ return false;
+
if (adev->has_pr3 ||
((adev->flags & AMD_IS_PX) && amdgpu_is_atpx_hybrid()))
return true;
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/amd: Require CONFIG_HOTPLUG_PCI_PCIE for BOCO
2024-12-11 15:56 [PATCH] drm/amd: Require CONFIG_HOTPLUG_PCI_PCIE for BOCO Mario Limonciello
@ 2024-12-11 20:08 ` Alex Deucher
2024-12-11 20:19 ` Mario Limonciello
0 siblings, 1 reply; 8+ messages in thread
From: Alex Deucher @ 2024-12-11 20:08 UTC (permalink / raw)
To: Mario Limonciello; +Cc: amd-gfx, Mario Limonciello, Gabriel Marcano
On Wed, Dec 11, 2024 at 10:56 AM Mario Limonciello <superm1@kernel.org> wrote:
>
> From: Mario Limonciello <mario.limonciello@amd.com>
>
> If the kernel hasn't been compiled with PCIe hotplug support this
> can lead to problems with dGPUs that use BOCO because they effectively
> drop off the bus.
>
> To prevent issues, disable BOCO support when compiled without PCIe hotplug.
>
> Reported-by: Gabriel Marcano <gabemarcano@yahoo.com>
> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1707#note_2696862
> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Seems like this should affect any device which supports d3cold. Maybe
we want something more general as well?
Alex
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> index 764d41434a82f..7db796ebb967e 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> @@ -419,6 +419,9 @@ bool amdgpu_device_supports_boco(struct drm_device *dev)
> {
> struct amdgpu_device *adev = drm_to_adev(dev);
>
> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE))
> + return false;
> +
> if (adev->has_pr3 ||
> ((adev->flags & AMD_IS_PX) && amdgpu_is_atpx_hybrid()))
> return true;
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/amd: Require CONFIG_HOTPLUG_PCI_PCIE for BOCO
2024-12-11 20:08 ` Alex Deucher
@ 2024-12-11 20:19 ` Mario Limonciello
2024-12-11 21:41 ` Alex Deucher
0 siblings, 1 reply; 8+ messages in thread
From: Mario Limonciello @ 2024-12-11 20:19 UTC (permalink / raw)
To: Alex Deucher; +Cc: amd-gfx, Mario Limonciello, Gabriel Marcano
On 12/11/2024 14:08, Alex Deucher wrote:
> On Wed, Dec 11, 2024 at 10:56 AM Mario Limonciello <superm1@kernel.org> wrote:
>>
>> From: Mario Limonciello <mario.limonciello@amd.com>
>>
>> If the kernel hasn't been compiled with PCIe hotplug support this
>> can lead to problems with dGPUs that use BOCO because they effectively
>> drop off the bus.
>>
>> To prevent issues, disable BOCO support when compiled without PCIe hotplug.
>>
>> Reported-by: Gabriel Marcano <gabemarcano@yahoo.com>
>> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1707#note_2696862
>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>
> Acked-by: Alex Deucher <alexander.deucher@amd.com>
Thx.
>
> Seems like this should affect any device which supports d3cold. Maybe
> we want something more general as well?
Any specific ideas? One of these two hunks I think make sense, leaning
upon the second one more strongly.
diff --git a/drivers/pci/pci.c
b/drivers/pci/pci.c
index 0b29ec6e8e5e2..01691f1d26fbe 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -2751,6 +2751,10 @@ int pci_prepare_to_sleep(struct pci_dev *dev)
if (target_state == PCI_POWER_ERROR)
return -EIO;
+ if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
+ target_state == PCI_D3cold)
+ return -EBUSY;
+
pci_enable_wake(dev, target_state, wakeup);
error = pci_set_power_state(dev, target_state);
@@ -2797,6 +2801,10 @@ int pci_finish_runtime_suspend(struct pci_dev *dev)
if (target_state == PCI_POWER_ERROR)
return -EIO;
+ if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
+ target_state == PCI_D3cold)
+ return -EBUSY;
+
__pci_enable_wake(dev, target_state, pci_dev_run_wake(dev));
error = pci_set_power_state(dev, target_state);
>
> Alex
>
>> ---
>> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>> index 764d41434a82f..7db796ebb967e 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>> @@ -419,6 +419,9 @@ bool amdgpu_device_supports_boco(struct drm_device *dev)
>> {
>> struct amdgpu_device *adev = drm_to_adev(dev);
>>
>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE))
>> + return false;
>> +
>> if (adev->has_pr3 ||
>> ((adev->flags & AMD_IS_PX) && amdgpu_is_atpx_hybrid()))
>> return true;
>> --
>> 2.43.0
>>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/amd: Require CONFIG_HOTPLUG_PCI_PCIE for BOCO
2024-12-11 20:19 ` Mario Limonciello
@ 2024-12-11 21:41 ` Alex Deucher
2024-12-11 21:43 ` Mario Limonciello
0 siblings, 1 reply; 8+ messages in thread
From: Alex Deucher @ 2024-12-11 21:41 UTC (permalink / raw)
To: Mario Limonciello; +Cc: amd-gfx, Mario Limonciello, Gabriel Marcano
On Wed, Dec 11, 2024 at 3:19 PM Mario Limonciello <superm1@kernel.org> wrote:
>
> On 12/11/2024 14:08, Alex Deucher wrote:
> > On Wed, Dec 11, 2024 at 10:56 AM Mario Limonciello <superm1@kernel.org> wrote:
> >>
> >> From: Mario Limonciello <mario.limonciello@amd.com>
> >>
> >> If the kernel hasn't been compiled with PCIe hotplug support this
> >> can lead to problems with dGPUs that use BOCO because they effectively
> >> drop off the bus.
> >>
> >> To prevent issues, disable BOCO support when compiled without PCIe hotplug.
> >>
> >> Reported-by: Gabriel Marcano <gabemarcano@yahoo.com>
> >> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1707#note_2696862
> >> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
> >
> > Acked-by: Alex Deucher <alexander.deucher@amd.com>
>
> Thx.
>
> >
> > Seems like this should affect any device which supports d3cold. Maybe
> > we want something more general as well?
>
> Any specific ideas? One of these two hunks I think make sense, leaning
> upon the second one more strongly.
Actually, I wonder if the affected hardware pre-dates d3cold and uses
the old proprietary AMD ATPX interface to control dGPU power. In that
case, the d3cold is managed by the driver rather than the PCI/ACPI
subsystems. IIRC, there was a workaround in the PCIe hotplug code to
avoid calling the pci remove function when the driver powered down the
GPU via ATPX (or the nvidia equivalent). If so, this check should go
in amdgpu_device_supports_px() instead.
Alex
>
>
>
> diff --git a/drivers/pci/pci.c
> b/drivers/pci/pci.c
> index 0b29ec6e8e5e2..01691f1d26fbe 100644
> --- a/drivers/pci/pci.c
> +++ b/drivers/pci/pci.c
> @@ -2751,6 +2751,10 @@ int pci_prepare_to_sleep(struct pci_dev *dev)
> if (target_state == PCI_POWER_ERROR)
> return -EIO;
>
> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
> + target_state == PCI_D3cold)
> + return -EBUSY;
> +
> pci_enable_wake(dev, target_state, wakeup);
>
> error = pci_set_power_state(dev, target_state);
> @@ -2797,6 +2801,10 @@ int pci_finish_runtime_suspend(struct pci_dev *dev)
> if (target_state == PCI_POWER_ERROR)
> return -EIO;
>
> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
> + target_state == PCI_D3cold)
> + return -EBUSY;
> +
> __pci_enable_wake(dev, target_state, pci_dev_run_wake(dev));
>
> error = pci_set_power_state(dev, target_state);
> >
> > Alex
> >
> >> ---
> >> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 +++
> >> 1 file changed, 3 insertions(+)
> >>
> >> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> >> index 764d41434a82f..7db796ebb967e 100644
> >> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> >> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> >> @@ -419,6 +419,9 @@ bool amdgpu_device_supports_boco(struct drm_device *dev)
> >> {
> >> struct amdgpu_device *adev = drm_to_adev(dev);
> >>
> >> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE))
> >> + return false;
> >> +
> >> if (adev->has_pr3 ||
> >> ((adev->flags & AMD_IS_PX) && amdgpu_is_atpx_hybrid()))
> >> return true;
> >> --
> >> 2.43.0
> >>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/amd: Require CONFIG_HOTPLUG_PCI_PCIE for BOCO
2024-12-11 21:41 ` Alex Deucher
@ 2024-12-11 21:43 ` Mario Limonciello
2024-12-11 22:03 ` Mario Limonciello
2024-12-11 22:16 ` Gabriel Marcano
0 siblings, 2 replies; 8+ messages in thread
From: Mario Limonciello @ 2024-12-11 21:43 UTC (permalink / raw)
To: Alex Deucher; +Cc: amd-gfx, Mario Limonciello, Gabriel Marcano
On 12/11/2024 15:41, Alex Deucher wrote:
> On Wed, Dec 11, 2024 at 3:19 PM Mario Limonciello <superm1@kernel.org> wrote:
>>
>> On 12/11/2024 14:08, Alex Deucher wrote:
>>> On Wed, Dec 11, 2024 at 10:56 AM Mario Limonciello <superm1@kernel.org> wrote:
>>>>
>>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>>
>>>> If the kernel hasn't been compiled with PCIe hotplug support this
>>>> can lead to problems with dGPUs that use BOCO because they effectively
>>>> drop off the bus.
>>>>
>>>> To prevent issues, disable BOCO support when compiled without PCIe hotplug.
>>>>
>>>> Reported-by: Gabriel Marcano <gabemarcano@yahoo.com>
>>>> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1707#note_2696862
>>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>>
>>> Acked-by: Alex Deucher <alexander.deucher@amd.com>
>>
>> Thx.
>>
>>>
>>> Seems like this should affect any device which supports d3cold. Maybe
>>> we want something more general as well?
>>
>> Any specific ideas? One of these two hunks I think make sense, leaning
>> upon the second one more strongly.
>
> Actually, I wonder if the affected hardware pre-dates d3cold and uses
> the old proprietary AMD ATPX interface to control dGPU power. In that
> case, the d3cold is managed by the driver rather than the PCI/ACPI
> subsystems. IIRC, there was a workaround in the PCIe hotplug code to
> avoid calling the pci remove function when the driver powered down the
> GPU via ATPX (or the nvidia equivalent). If so, this check should go
> in amdgpu_device_supports_px() instead.
Gabriel,
Can you please share a full kernel log so we can clarify which method
your hardware uses?
Thanks,
>
> Alex
>
>>
>>
>>
>> diff --git a/drivers/pci/pci.c
>> b/drivers/pci/pci.c
>> index 0b29ec6e8e5e2..01691f1d26fbe 100644
>> --- a/drivers/pci/pci.c
>> +++ b/drivers/pci/pci.c
>> @@ -2751,6 +2751,10 @@ int pci_prepare_to_sleep(struct pci_dev *dev)
>> if (target_state == PCI_POWER_ERROR)
>> return -EIO;
>>
>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
>> + target_state == PCI_D3cold)
>> + return -EBUSY;
>> +
>> pci_enable_wake(dev, target_state, wakeup);
>>
>> error = pci_set_power_state(dev, target_state);
>> @@ -2797,6 +2801,10 @@ int pci_finish_runtime_suspend(struct pci_dev *dev)
>> if (target_state == PCI_POWER_ERROR)
>> return -EIO;
>>
>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
>> + target_state == PCI_D3cold)
>> + return -EBUSY;
>> +
>> __pci_enable_wake(dev, target_state, pci_dev_run_wake(dev));
>>
>> error = pci_set_power_state(dev, target_state);
>>>
>>> Alex
>>>
>>>> ---
>>>> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 +++
>>>> 1 file changed, 3 insertions(+)
>>>>
>>>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>> index 764d41434a82f..7db796ebb967e 100644
>>>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>> @@ -419,6 +419,9 @@ bool amdgpu_device_supports_boco(struct drm_device *dev)
>>>> {
>>>> struct amdgpu_device *adev = drm_to_adev(dev);
>>>>
>>>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE))
>>>> + return false;
>>>> +
>>>> if (adev->has_pr3 ||
>>>> ((adev->flags & AMD_IS_PX) && amdgpu_is_atpx_hybrid()))
>>>> return true;
>>>> --
>>>> 2.43.0
>>>>
>>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/amd: Require CONFIG_HOTPLUG_PCI_PCIE for BOCO
2024-12-11 21:43 ` Mario Limonciello
@ 2024-12-11 22:03 ` Mario Limonciello
2024-12-11 22:16 ` Gabriel Marcano
1 sibling, 0 replies; 8+ messages in thread
From: Mario Limonciello @ 2024-12-11 22:03 UTC (permalink / raw)
To: Mario Limonciello, Alex Deucher; +Cc: amd-gfx, Gabriel Marcano
On 12/11/2024 15:43, Mario Limonciello wrote:
> On 12/11/2024 15:41, Alex Deucher wrote:
>> On Wed, Dec 11, 2024 at 3:19 PM Mario Limonciello <superm1@kernel.org>
>> wrote:
>>>
>>> On 12/11/2024 14:08, Alex Deucher wrote:
>>>> On Wed, Dec 11, 2024 at 10:56 AM Mario Limonciello
>>>> <superm1@kernel.org> wrote:
>>>>>
>>>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>>>
>>>>> If the kernel hasn't been compiled with PCIe hotplug support this
>>>>> can lead to problems with dGPUs that use BOCO because they effectively
>>>>> drop off the bus.
>>>>>
>>>>> To prevent issues, disable BOCO support when compiled without PCIe
>>>>> hotplug.
>>>>>
>>>>> Reported-by: Gabriel Marcano <gabemarcano@yahoo.com>
>>>>> Closes: https://gitlab.freedesktop.org/drm/amd/-/
>>>>> issues/1707#note_2696862
>>>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>>>
>>>> Acked-by: Alex Deucher <alexander.deucher@amd.com>
>>>
>>> Thx.
>>>
>>>>
>>>> Seems like this should affect any device which supports d3cold. Maybe
>>>> we want something more general as well?
>>>
>>> Any specific ideas? One of these two hunks I think make sense, leaning
>>> upon the second one more strongly.
>>
>> Actually, I wonder if the affected hardware pre-dates d3cold and uses
>> the old proprietary AMD ATPX interface to control dGPU power. In that
>> case, the d3cold is managed by the driver rather than the PCI/ACPI
>> subsystems. IIRC, there was a workaround in the PCIe hotplug code to
>> avoid calling the pci remove function when the driver powered down the
>> GPU via ATPX (or the nvidia equivalent). If so, this check should go
>> in amdgpu_device_supports_px() instead.
>
> Gabriel,
>
> Can you please share a full kernel log so we can clarify which method
> your hardware uses?
Actually he shared it to the bug. It's BOCO.
https://gitlab.freedesktop.org/-/project/4522/uploads/5714f4562de8ffeb7d38f70eb7d51d85/dmesg_with_flip_done
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: Using
BOCO for runtime pm
>
> Thanks,
>>
>> Alex
>>
>>>
>>>
>>>
>>> diff --git a/drivers/pci/pci.c
>>> b/drivers/pci/pci.c
>>> index 0b29ec6e8e5e2..01691f1d26fbe 100644
>>> --- a/drivers/pci/pci.c
>>> +++ b/drivers/pci/pci.c
>>> @@ -2751,6 +2751,10 @@ int pci_prepare_to_sleep(struct pci_dev *dev)
>>> if (target_state == PCI_POWER_ERROR)
>>> return -EIO;
>>>
>>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
>>> + target_state == PCI_D3cold)
>>> + return -EBUSY;
>>> +
>>> pci_enable_wake(dev, target_state, wakeup);
>>>
>>> error = pci_set_power_state(dev, target_state);
>>> @@ -2797,6 +2801,10 @@ int pci_finish_runtime_suspend(struct pci_dev
>>> *dev)
>>> if (target_state == PCI_POWER_ERROR)
>>> return -EIO;
>>>
>>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
>>> + target_state == PCI_D3cold)
>>> + return -EBUSY;
>>> +
>>> __pci_enable_wake(dev, target_state, pci_dev_run_wake(dev));
>>>
>>> error = pci_set_power_state(dev, target_state);
>>>>
>>>> Alex
>>>>
>>>>> ---
>>>>> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 +++
>>>>> 1 file changed, 3 insertions(+)
>>>>>
>>>>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/
>>>>> gpu/drm/amd/amdgpu/amdgpu_device.c
>>>>> index 764d41434a82f..7db796ebb967e 100644
>>>>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>>> @@ -419,6 +419,9 @@ bool amdgpu_device_supports_boco(struct
>>>>> drm_device *dev)
>>>>> {
>>>>> struct amdgpu_device *adev = drm_to_adev(dev);
>>>>>
>>>>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE))
>>>>> + return false;
>>>>> +
>>>>> if (adev->has_pr3 ||
>>>>> ((adev->flags & AMD_IS_PX) && amdgpu_is_atpx_hybrid()))
>>>>> return true;
>>>>> --
>>>>> 2.43.0
>>>>>
>>>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/amd: Require CONFIG_HOTPLUG_PCI_PCIE for BOCO
2024-12-11 21:43 ` Mario Limonciello
2024-12-11 22:03 ` Mario Limonciello
@ 2024-12-11 22:16 ` Gabriel Marcano
2024-12-11 22:18 ` Mario Limonciello
1 sibling, 1 reply; 8+ messages in thread
From: Gabriel Marcano @ 2024-12-11 22:16 UTC (permalink / raw)
To: Alex Deucher, Mario Limonciello
Cc: amd-gfx@lists.freedesktop.org, Mario Limonciello
[-- Attachment #1: Type: text/plain, Size: 5427 bytes --]
>On 12/11/2024 15:41, Alex Deucher wrote:
>> On Wed, Dec 11, 2024 at 3:19 PM Mario Limonciello <superm1@kernel.org> wrote:
>>>
>>> On 12/11/2024 14:08, Alex Deucher wrote:
>>>> On Wed, Dec 11, 2024 at 10:56 AM Mario Limonciello <superm1@kernel.org> wrote:
>>>>>
>>>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>>>
>>>>> If the kernel hasn't been compiled with PCIe hotplug support this
>>>>> can lead to problems with dGPUs that use BOCO because they effectively
>>>>> drop off the bus.
>>>>>
>>>>> To prevent issues, disable BOCO support when compiled without PCIe hotplug.
>>>>>
>>>>> Reported-by: Gabriel Marcano <gabemarcano@yahoo.com>
>>>>> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1707#note_2696862
>>>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>>>
>>>> Acked-by: Alex Deucher <alexander.deucher@amd.com>
>>>
>>> Thx.
>>>
>>>>
>>>> Seems like this should affect any device which supports d3cold. Maybe
>>>> we want something more general as well?
>>>
>>> Any specific ideas? One of these two hunks I think make sense, leaning
>>> upon the second one more strongly.
>>
>> Actually, I wonder if the affected hardware pre-dates d3cold and uses
>> the old proprietary AMD ATPX interface to control dGPU power. In that
>> case, the d3cold is managed by the driver rather than the PCI/ACPI
>> subsystems. IIRC, there was a workaround in the PCIe hotplug code to
>> avoid calling the pci remove function when the driver powered down the
>> GPU via ATPX (or the nvidia equivalent). If so, this check should go
>> in amdgpu_device_supports_px() instead.
>
>Gabriel,
>
>Can you please share a full kernel log so we can clarify which method
>your hardware uses?
>
Sure thing. I am attaching a kernel output from last night (it actually crashed
what looks to be the renoir APU as I tried to turn off the computer, which
shows up in the logs towards the end).
Some caveats about my system:
- I'm using some modified ACPI tables:
- I've tweaked some WMI-related WMAX code (read/write GPIO for RGB controller)
- I've fixed a missing symbol issue (renamed _EC0 to __EC)
- Fixed a bunch of other warnings reported by iasl
- I have `#define DEBUG 1` in amdgpu_drv.c
- I have a patch from https://bugzilla.kernel.org/show_bug.cgi?id=215884
applied
- My kernel is using Gentoo patches
Looking at my dmesg output, it looks like I'm using ATPX:
[ +0.000022] amdgpu: vga_switcheroo: detected switching method
\_SB_.PCI0.GP17.VGA_.ATPX handle
[ +0.001561] amdgpu: ATPX version 1, functions 0x00000001
[ +0.000120] amdgpu: ATPX Hybrid Graphics
Also I see this in my ACPI table dissasembly:
Scope (\_SB.PCI0.GP17.VGA)
{
Name (M189, Buffer (0x0100){})
Name (M190, Ones)
Name (M191, Ones)
Method (ATPX, 2, Serialized)
{
If you need me to recompile the kernel and/or disable my changes to my ACPI
tables, let me know.
Thanks,
Gabriel
>Thanks,
>>
>> Alex
>>
>>>
>>>
>>>
>>> diff --git a/drivers/pci/pci.c
>>> b/drivers/pci/pci.c
>>> index 0b29ec6e8e5e2..01691f1d26fbe 100644
>>> --- a/drivers/pci/pci.c
>>> +++ b/drivers/pci/pci.c
>>> @@ -2751,6 +2751,10 @@ int pci_prepare_to_sleep(struct pci_dev *dev)
>>> if (target_state == PCI_POWER_ERROR)
>>> return -EIO;
>>>
>>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
>>> + target_state == PCI_D3cold)
>>> + return -EBUSY;
>>> +
>>> pci_enable_wake(dev, target_state, wakeup);
>>>
>>> error = pci_set_power_state(dev, target_state);
>>> @@ -2797,6 +2801,10 @@ int pci_finish_runtime_suspend(struct pci_dev *dev)
>>> if (target_state == PCI_POWER_ERROR)
>>> return -EIO;
>>>
>>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
>>> + target_state == PCI_D3cold)
>>> + return -EBUSY;
>>> +
>>> __pci_enable_wake(dev, target_state, pci_dev_run_wake(dev));
>>>
>>> error = pci_set_power_state(dev, target_state);
>>>>
>>>> Alex
>>>>
>>>>> ---
>>>>> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 +++
>>>>> 1 file changed, 3 insertions(+)
>>>>>
>>>>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>>> index 764d41434a82f..7db796ebb967e 100644
>>>>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>>> @@ -419,6 +419,9 @@ bool amdgpu_device_supports_boco(struct drm_device *dev)
>>>>> {
>>>>> struct amdgpu_device *adev = drm_to_adev(dev);
>>>>>
>>>>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE))
>>>>> + return false;
>>>>> +
>>>>> if (adev->has_pr3 ||
>>>>> ((adev->flags & AMD_IS_PX) && amdgpu_is_atpx_hybrid()))
>>>>> return true;
>>>>> --
>>>>> 2.43.0
>>>>>
>>>
[-- Attachment #2: dmesg_with_flip_done --]
[-- Type: application/octet-stream, Size: 169157 bytes --]
Dec 10 22:45:07 localhost kernel: Linux version 6.12.4-gentoo (root@diamante) (gcc (Gentoo 14.2.1_p20241116 p3) 14.2.1 20241116, GNU ld (Gentoo 2.43 p3) 2.43.1) #4 SMP Tue Dec 10 22:30:55 PST 2024
Dec 10 22:45:07 localhost kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-6.12.4-gentoo root=UUID=289a41f9-88d5-47d5-ae77-7e739ce427bc ro quiet splash
Dec 10 22:45:07 localhost kernel: BIOS-provided physical RAM map:
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000bffff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009afffff] usable
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x0000000009e00000-0x0000000009efffff] usable
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x0000000009f00000-0x0000000009f0cfff] ACPI NVS
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x0000000009f0d000-0x00000000ab798fff] usable
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000ab799000-0x00000000ac998fff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000ac999000-0x00000000c9baefff] usable
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000c9baf000-0x00000000cbf7efff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000cbf7f000-0x00000000cdf7efff] ACPI NVS
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000cdf7f000-0x00000000cdffefff] ACPI data
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000cdfff000-0x00000000cdffffff] usable
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000ce000000-0x00000000ceffffff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000fde00000-0x00000000fdefffff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000fff1ffff] reserved
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x0000000100000000-0x000000040f33ffff] usable
Dec 10 22:45:07 localhost kernel: BIOS-e820: [mem 0x000000040f340000-0x000000042fffffff] reserved
Dec 10 22:45:07 localhost kernel: NX (Execute Disable) protection: active
Dec 10 22:45:07 localhost kernel: APIC: Static calls initialized
Dec 10 22:45:07 localhost kernel: e820: update [mem 0xa7fff018-0xa800f457] usable ==> usable
Dec 10 22:45:07 localhost kernel: e820: update [mem 0xa7ff0018-0xa7ffe057] usable ==> usable
Dec 10 22:45:07 localhost kernel: e820: update [mem 0xa7fe2018-0xa7fef657] usable ==> usable
Dec 10 22:45:07 localhost kernel: extended physical RAM map:
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000bffff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000009afffff] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x0000000009e00000-0x0000000009efffff] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x0000000009f00000-0x0000000009f0cfff] ACPI NVS
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x0000000009f0d000-0x00000000a7fe2017] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000a7fe2018-0x00000000a7fef657] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000a7fef658-0x00000000a7ff0017] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000a7ff0018-0x00000000a7ffe057] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000a7ffe058-0x00000000a7fff017] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000a7fff018-0x00000000a800f457] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000a800f458-0x00000000ab798fff] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000ab799000-0x00000000ac998fff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000ac999000-0x00000000c9baefff] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000c9baf000-0x00000000cbf7efff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000cbf7f000-0x00000000cdf7efff] ACPI NVS
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000cdf7f000-0x00000000cdffefff] ACPI data
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000cdfff000-0x00000000cdffffff] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000ce000000-0x00000000ceffffff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000fde00000-0x00000000fdefffff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000fff1ffff] reserved
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x0000000100000000-0x000000040f33ffff] usable
Dec 10 22:45:07 localhost kernel: reserve setup_data: [mem 0x000000040f340000-0x000000042fffffff] reserved
Dec 10 22:45:07 localhost kernel: efi: EFI v2.7 by Dell Inc.
Dec 10 22:45:07 localhost kernel: efi: ACPI=0xcdffe000 ACPI 2.0=0xcdffe014 TPMFinalLog=0xcdedb000 SMBIOS=0xca637000 SMBIOS 3.0=0xca635000 ESRT=0xca633b98 MEMATTR=0xb8f07018 INITRD=0xac9a8b18 RNG=0xcdfb2018 TPMEventLog=0xcdfab018
Dec 10 22:45:07 localhost kernel: random: crng init done
Dec 10 22:45:07 localhost kernel: efi: Remove mem51: MMIO range=[0xf8000000-0xfbffffff] (64MB) from e820 map
Dec 10 22:45:07 localhost kernel: e820: remove [mem 0xf8000000-0xfbffffff] reserved
Dec 10 22:45:07 localhost kernel: efi: Remove mem52: MMIO range=[0xfde00000-0xfdefffff] (1MB) from e820 map
Dec 10 22:45:07 localhost kernel: e820: remove [mem 0xfde00000-0xfdefffff] reserved
Dec 10 22:45:07 localhost kernel: efi: Not removing mem53: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
Dec 10 22:45:07 localhost kernel: efi: Not removing mem54: MMIO range=[0xfec10000-0xfec10fff] (4KB) from e820 map
Dec 10 22:45:07 localhost kernel: efi: Not removing mem55: MMIO range=[0xfed80000-0xfed80fff] (4KB) from e820 map
Dec 10 22:45:07 localhost kernel: efi: Not removing mem56: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
Dec 10 22:45:07 localhost kernel: efi: Remove mem57: MMIO range=[0xff000000-0xfff1ffff] (15MB) from e820 map
Dec 10 22:45:07 localhost kernel: e820: remove [mem 0xff000000-0xfff1ffff] reserved
Dec 10 22:45:07 localhost kernel: SMBIOS 3.3.0 present.
Dec 10 22:45:07 localhost kernel: DMI: Dell Inc. G5 5505/0M8C1F, BIOS 1.24.0 09/05/2024
Dec 10 22:45:07 localhost kernel: DMI: Memory slots populated: 2/2
Dec 10 22:45:07 localhost kernel: tsc: Fast TSC calibration using PIT
Dec 10 22:45:07 localhost kernel: tsc: Detected 3294.087 MHz processor
Dec 10 22:45:07 localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Dec 10 22:45:07 localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Dec 10 22:45:07 localhost kernel: last_pfn = 0x40f340 max_arch_pfn = 0x400000000
Dec 10 22:45:07 localhost kernel: MTRR map: 7 entries (4 fixed + 3 variable; max 21), built from 9 variable MTRRs
Dec 10 22:45:07 localhost kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
Dec 10 22:45:07 localhost kernel: last_pfn = 0xce000 max_arch_pfn = 0x400000000
Dec 10 22:45:07 localhost kernel: esrt: Reserving ESRT space from 0x00000000ca633b98 to 0x00000000ca633bd0.
Dec 10 22:45:07 localhost kernel: Using GB pages for direct mapping
Dec 10 22:45:07 localhost kernel: Secure boot disabled
Dec 10 22:45:07 localhost kernel: RAMDISK: [mem 0xa37ae000-0xa4abefff]
Dec 10 22:45:07 localhost kernel: ACPI: ASF! ACPI table found in initrd [kernel/firmware/acpi/asf!.aml][0x9f]
Dec 10 22:45:07 localhost kernel: ACPI: DSDT ACPI table found in initrd [kernel/firmware/acpi/dsdt.aml][0x883f]
Dec 10 22:45:07 localhost kernel: ACPI: SSDT ACPI table found in initrd [kernel/firmware/acpi/ssdt10.aml][0x56f]
Dec 10 22:45:07 localhost kernel: ACPI: SSDT ACPI table found in initrd [kernel/firmware/acpi/ssdt13.aml][0x5c9]
Dec 10 22:45:07 localhost kernel: ACPI: SSDT ACPI table found in initrd [kernel/firmware/acpi/ssdt14.aml][0x64e0]
Dec 10 22:45:07 localhost kernel: ACPI: SSDT ACPI table found in initrd [kernel/firmware/acpi/ssdt17.aml][0x2b6]
Dec 10 22:45:07 localhost kernel: ACPI: SSDT ACPI table found in initrd [kernel/firmware/acpi/ssdt18.aml][0x31c2]
Dec 10 22:45:07 localhost kernel: ACPI: SSDT ACPI table found in initrd [kernel/firmware/acpi/ssdt20.aml][0xd2c]
Dec 10 22:45:07 localhost kernel: modified physical RAM map:
Dec 10 22:45:07 localhost kernel: modified: [mem 0x0000000000000000-0x0000000000000fff] reserved
Dec 10 22:45:07 localhost kernel: modified: [mem 0x0000000000001000-0x000000000009efff] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x000000000009f000-0x00000000000bffff] reserved
Dec 10 22:45:07 localhost kernel: modified: [mem 0x0000000000100000-0x0000000009afffff] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
Dec 10 22:45:07 localhost kernel: modified: [mem 0x0000000009e00000-0x0000000009efffff] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x0000000009f00000-0x0000000009f0cfff] ACPI NVS
Dec 10 22:45:07 localhost kernel: modified: [mem 0x0000000009f0d000-0x00000000a7fe2017] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000a7fe2018-0x00000000a7fef657] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000a7fef658-0x00000000a7ff0017] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000a7ff0018-0x00000000a7ffe057] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000a7ffe058-0x00000000a7fff017] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000a7fff018-0x00000000a800f457] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000a800f458-0x00000000ab798fff] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000ab799000-0x00000000ac998fff] reserved
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000ac999000-0x00000000c903dfff] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000c903e000-0x00000000c9051a99] ACPI NVS
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000c9051a9a-0x00000000c9baefff] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000c9baf000-0x00000000cbf7efff] reserved
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000cbf7f000-0x00000000cdf7efff] ACPI NVS
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000cdf7f000-0x00000000cdffefff] ACPI data
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000cdfff000-0x00000000cdffffff] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000ce000000-0x00000000ceffffff] reserved
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
Dec 10 22:45:07 localhost kernel: modified: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Dec 10 22:45:07 localhost kernel: modified: [mem 0x0000000100000000-0x000000040f33ffff] usable
Dec 10 22:45:07 localhost kernel: modified: [mem 0x000000040f340000-0x000000042fffffff] reserved
Dec 10 22:45:07 localhost kernel: ACPI: Early table checksum verification disabled
Dec 10 22:45:07 localhost kernel: ACPI: RSDP 0x00000000CDFFE014 000024 (v02 DELL )
Dec 10 22:45:07 localhost kernel: ACPI: XSDT 0x00000000CDFCC188 000154 (v01 DELL WN09 00000002 01000013)
Dec 10 22:45:07 localhost kernel: ACPI: FACP 0x00000000CDFED000 00010C (v05 DELL WN09 00000002 ASL 01000013)
Dec 10 22:45:07 localhost kernel: ACPI: Table Upgrade: override [DSDT-DELL -WN09 ]
Dec 10 22:45:07 localhost kernel: ACPI: DSDT 0x00000000CDFDE000 Physical table override, new table: 0x00000000C903E09F
Dec 10 22:45:07 localhost kernel: ACPI: DSDT 0x00000000C903E09F 00883F (v01 DELL WN09 00000003 INTL 20240927)
Dec 10 22:45:07 localhost kernel: ACPI: FACS 0x00000000CDED8000 000040
Dec 10 22:45:07 localhost kernel: ACPI: UEFI 0x00000000CDF7E000 000236 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
Dec 10 22:45:07 localhost kernel: ACPI: Table Upgrade: override [SSDT- AMD-AmdTable]
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFF5000 Physical table override, new table: 0x00000000C9047416
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000C9047416 0064E0 (v02 AMD AmdTable 00000003 INTL 20240927)
Dec 10 22:45:07 localhost kernel: ACPI: IVRS 0x00000000CDFF4000 0001A4 (v02 DELL WN09 00000001 ASL 00000000)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFF3000 000228 (v01 AMD STD3 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFF2000 00046D (v01 Insyde TPMACPI 00001000 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: TPM2 0x00000000CDFF1000 000034 (v04 DELL WN09 00000002 ASL 01000013)
Dec 10 22:45:07 localhost kernel: ACPI: MSDM 0x00000000CDFF0000 000055 (v03 DELL WN09 00000001 ASL 00040000)
Dec 10 22:45:07 localhost kernel: ACPI: Table Upgrade: override [ASF!-DELL -WN09 ]
Dec 10 22:45:07 localhost kernel: ACPI: ASF! 0x00000000CDFEF000 Physical table override, new table: 0x00000000C903E000
Dec 10 22:45:07 localhost kernel: ACPI: ASF! 0x00000000C903E000 00009F (v32 DELL WN09 00000003 INTL 20240927)
Dec 10 22:45:07 localhost kernel: ACPI: BOOT 0x00000000CDFEE000 000028 (v01 DELL WN09 00000002 ASL 01000013)
Dec 10 22:45:07 localhost kernel: ACPI: HPET 0x00000000CDFEC000 000038 (v01 DELL WN09 00000002 ASL 01000013)
Dec 10 22:45:07 localhost kernel: ACPI: APIC 0x00000000CDFEB000 000138 (v03 DELL WN09 00000002 ASL 01000013)
Dec 10 22:45:07 localhost kernel: ACPI: MCFG 0x00000000CDFEA000 00003C (v01 DELL WN09 00000002 ASL 01000013)
Dec 10 22:45:07 localhost kernel: ACPI: SLIC 0x00000000CDFE9000 000176 (v01 DELL WN09 00000002 ASL 01000013)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFDD000 000080 (v01 AMDyde EDK2 00000002 01000013)
Dec 10 22:45:07 localhost kernel: ACPI: WSMT 0x00000000CDFDC000 000028 (v01 DELL WN09 00000001 ASL 00040000)
Dec 10 22:45:07 localhost kernel: ACPI: VFCT 0x00000000CDFCE000 00D684 (v01 DELL WN09 00000001 ASL 31504F47)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFCD000 0000F8 (v01 AMD PcdTabl 00001000 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFC8000 0039F4 (v01 AMD AmdTable 00000001 AMD 00000001)
Dec 10 22:45:07 localhost kernel: ACPI: CRAT 0x00000000CDFFD000 000F28 (v01 DELL WN09 00000001 ASL 00000001)
Dec 10 22:45:07 localhost kernel: ACPI: CDIT 0x00000000CDFC7000 000029 (v01 DELL WN09 00000001 ASL 00000001)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFC6000 000139 (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: Table Upgrade: override [SSDT- AMD-AmdTable]
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFC5000 Physical table override, new table: 0x00000000C904D8F6
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000C904D8F6 0002B6 (v01 AMD AmdTable 00000002 INTL 20240927)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFC4000 000D37 (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFC2000 001059 (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFC1000 000179 (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFBF000 0012E9 (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: Table Upgrade: override [SSDT- AMD-AmdTable]
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFBB000 Physical table override, new table: 0x00000000C904DBAC
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000C904DBAC 0031C2 (v01 AMD AmdTable 00000002 INTL 20240927)
Dec 10 22:45:07 localhost kernel: ACPI: FPDT 0x00000000CDFBA000 000044 (v01 DELL WN09 00000002 ASL 01000013)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFE8000 0001EE (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFE7000 00020A (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFB8000 0008DE (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFB7000 000437 (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFB6000 00007D (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFB5000 00053B (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFB4000 000517 (v01 AMD AmdTable 00000001 INTL 20120518)
Dec 10 22:45:07 localhost kernel: ACPI: Table Upgrade: override [SSDT-ALWARE-AWCCTABL]
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000CDFB3000 Physical table override, new table: 0x00000000C9050D6E
Dec 10 22:45:07 localhost kernel: ACPI: SSDT 0x00000000C9050D6E 000D2C (v01 ALWARE AWCCTABL 00000002 INTL 20240927)
Dec 10 22:45:07 localhost kernel: ACPI: BGRT 0x00000000CDFB9000 000038 (v01 DELL WN09 00000001 ASL 00040000)
Dec 10 22:45:07 localhost kernel: ACPI: Reserving FACP table memory at [mem 0xcdfed000-0xcdfed10b]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving DSDT table memory at [mem 0xc903e09f-0xc90468dd]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving FACS table memory at [mem 0xcded8000-0xcded803f]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving UEFI table memory at [mem 0xcdf7e000-0xcdf7e235]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xc9047416-0xc904d8f5]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving IVRS table memory at [mem 0xcdff4000-0xcdff41a3]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdff3000-0xcdff3227]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdff2000-0xcdff246c]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving TPM2 table memory at [mem 0xcdff1000-0xcdff1033]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving MSDM table memory at [mem 0xcdff0000-0xcdff0054]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving ASF! table memory at [mem 0xc903e000-0xc903e09e]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving BOOT table memory at [mem 0xcdfee000-0xcdfee027]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving HPET table memory at [mem 0xcdfec000-0xcdfec037]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving APIC table memory at [mem 0xcdfeb000-0xcdfeb137]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving MCFG table memory at [mem 0xcdfea000-0xcdfea03b]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SLIC table memory at [mem 0xcdfe9000-0xcdfe9175]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfdd000-0xcdfdd07f]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving WSMT table memory at [mem 0xcdfdc000-0xcdfdc027]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving VFCT table memory at [mem 0xcdfce000-0xcdfdb683]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfcd000-0xcdfcd0f7]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfc8000-0xcdfcb9f3]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving CRAT table memory at [mem 0xcdffd000-0xcdffdf27]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving CDIT table memory at [mem 0xcdfc7000-0xcdfc7028]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfc6000-0xcdfc6138]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xc904d8f6-0xc904dbab]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfc4000-0xcdfc4d36]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfc2000-0xcdfc3058]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfc1000-0xcdfc1178]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfbf000-0xcdfc02e8]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xc904dbac-0xc9050d6d]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving FPDT table memory at [mem 0xcdfba000-0xcdfba043]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfe8000-0xcdfe81ed]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfe7000-0xcdfe7209]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfb8000-0xcdfb88dd]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfb7000-0xcdfb7436]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfb6000-0xcdfb607c]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfb5000-0xcdfb553a]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfb4000-0xcdfb4516]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xc9050d6e-0xc9051a99]
Dec 10 22:45:07 localhost kernel: ACPI: Reserving BGRT table memory at [mem 0xcdfb9000-0xcdfb9037]
Dec 10 22:45:07 localhost kernel: Zone ranges:
Dec 10 22:45:07 localhost kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
Dec 10 22:45:07 localhost kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
Dec 10 22:45:07 localhost kernel: Normal [mem 0x0000000100000000-0x000000040f33ffff]
Dec 10 22:45:07 localhost kernel: Device empty
Dec 10 22:45:07 localhost kernel: Movable zone start for each node
Dec 10 22:45:07 localhost kernel: Early memory node ranges
Dec 10 22:45:07 localhost kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
Dec 10 22:45:07 localhost kernel: node 0: [mem 0x0000000000100000-0x0000000009afffff]
Dec 10 22:45:07 localhost kernel: node 0: [mem 0x0000000009e00000-0x0000000009efffff]
Dec 10 22:45:07 localhost kernel: node 0: [mem 0x0000000009f0d000-0x00000000ab798fff]
Dec 10 22:45:07 localhost kernel: node 0: [mem 0x00000000ac999000-0x00000000c9baefff]
Dec 10 22:45:07 localhost kernel: node 0: [mem 0x00000000cdfff000-0x00000000cdffffff]
Dec 10 22:45:07 localhost kernel: node 0: [mem 0x0000000100000000-0x000000040f33ffff]
Dec 10 22:45:07 localhost kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000040f33ffff]
Dec 10 22:45:07 localhost kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Dec 10 22:45:07 localhost kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Dec 10 22:45:07 localhost kernel: On node 0, zone DMA32: 768 pages in unavailable ranges
Dec 10 22:45:07 localhost kernel: On node 0, zone DMA32: 13 pages in unavailable ranges
Dec 10 22:45:07 localhost kernel: On node 0, zone DMA32: 4608 pages in unavailable ranges
Dec 10 22:45:07 localhost kernel: On node 0, zone DMA32: 17488 pages in unavailable ranges
Dec 10 22:45:07 localhost kernel: On node 0, zone Normal: 8192 pages in unavailable ranges
Dec 10 22:45:07 localhost kernel: On node 0, zone Normal: 3264 pages in unavailable ranges
Dec 10 22:45:07 localhost kernel: ACPI: PM-Timer IO Port: 0x408
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Dec 10 22:45:07 localhost kernel: IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
Dec 10 22:45:07 localhost kernel: IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
Dec 10 22:45:07 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Dec 10 22:45:07 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Dec 10 22:45:07 localhost kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Dec 10 22:45:07 localhost kernel: ACPI: HPET id: 0x10228210 base: 0xfed00000
Dec 10 22:45:07 localhost kernel: e820: update [mem 0xb8f0e000-0xb8f65fff] usable ==> reserved
Dec 10 22:45:07 localhost kernel: CPU topo: Max. logical packages: 1
Dec 10 22:45:07 localhost kernel: CPU topo: Max. logical dies: 1
Dec 10 22:45:07 localhost kernel: CPU topo: Max. dies per package: 1
Dec 10 22:45:07 localhost kernel: CPU topo: Max. threads per core: 2
Dec 10 22:45:07 localhost kernel: CPU topo: Num. cores per package: 8
Dec 10 22:45:07 localhost kernel: CPU topo: Num. threads per package: 16
Dec 10 22:45:07 localhost kernel: CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
Dec 10 22:45:07 localhost kernel: [mem 0xcf000000-0xfebfffff] available for PCI devices
Dec 10 22:45:07 localhost kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Dec 10 22:45:07 localhost kernel: setup_percpu: NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
Dec 10 22:45:07 localhost kernel: percpu: Embedded 59 pages/cpu s202328 r8192 d31144 u262144
Dec 10 22:45:07 localhost kernel: pcpu-alloc: s202328 r8192 d31144 u262144 alloc=1*2097152
Dec 10 22:45:07 localhost kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
Dec 10 22:45:07 localhost kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.12.4-gentoo root=UUID=289a41f9-88d5-47d5-ae77-7e739ce427bc ro quiet splash
Dec 10 22:45:07 localhost kernel: Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-6.12.4-gentoo", will be passed to user space.
Dec 10 22:45:07 localhost kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Dec 10 22:45:07 localhost kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Dec 10 22:45:07 localhost kernel: Built 1 zonelists, mobility grouping on. Total pages: 4028801
Dec 10 22:45:07 localhost kernel: mem auto-init: stack:off, heap alloc:off, heap free:off
Dec 10 22:45:07 localhost kernel: software IO TLB: area num 16.
Dec 10 22:45:07 localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Dec 10 22:45:07 localhost kernel: rcu: Hierarchical RCU implementation.
Dec 10 22:45:07 localhost kernel: Tracing variant of Tasks RCU enabled.
Dec 10 22:45:07 localhost kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Dec 10 22:45:07 localhost kernel: RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
Dec 10 22:45:07 localhost kernel: NR_IRQS: 4352, nr_irqs: 1096, preallocated irqs: 16
Dec 10 22:45:07 localhost kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Dec 10 22:45:07 localhost kernel: Console: colour dummy device 80x25
Dec 10 22:45:07 localhost kernel: printk: legacy console [tty0] enabled
Dec 10 22:45:07 localhost kernel: ACPI: Core revision 20240827
Dec 10 22:45:07 localhost kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
Dec 10 22:45:07 localhost kernel: APIC: Switch to symmetric I/O mode setup
Dec 10 22:45:07 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Dec 10 22:45:07 localhost kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2f7b7a6d408, max_idle_ns: 440795273964 ns
Dec 10 22:45:07 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6588.17 BogoMIPS (lpj=3294087)
Dec 10 22:45:07 localhost kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Dec 10 22:45:07 localhost kernel: LVT offset 1 assigned for vector 0xf9
Dec 10 22:45:07 localhost kernel: LVT offset 2 assigned for vector 0xf4
Dec 10 22:45:07 localhost kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
Dec 10 22:45:07 localhost kernel: Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
Dec 10 22:45:07 localhost kernel: process: using mwait in idle threads
Dec 10 22:45:07 localhost kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Dec 10 22:45:07 localhost kernel: Spectre V2 : Mitigation: Retpolines
Dec 10 22:45:07 localhost kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Dec 10 22:45:07 localhost kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Dec 10 22:45:07 localhost kernel: Spectre V2 : Enabling Speculation Barrier for firmware calls
Dec 10 22:45:07 localhost kernel: RETBleed: Mitigation: untrained return thunk
Dec 10 22:45:07 localhost kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Dec 10 22:45:07 localhost kernel: Spectre V2 : Selecting STIBP always-on mode to complement retbleed mitigation
Dec 10 22:45:07 localhost kernel: Spectre V2 : User space: Mitigation: STIBP always-on protection
Dec 10 22:45:07 localhost kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Dec 10 22:45:07 localhost kernel: Speculative Return Stack Overflow: Mitigation: Safe RET
Dec 10 22:45:07 localhost kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Dec 10 22:45:07 localhost kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Dec 10 22:45:07 localhost kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Dec 10 22:45:07 localhost kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
Dec 10 22:45:07 localhost kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
Dec 10 22:45:07 localhost kernel: Freeing SMP alternatives memory: 56K
Dec 10 22:45:07 localhost kernel: pid_max: default: 32768 minimum: 301
Dec 10 22:45:07 localhost kernel: LSM: initializing lsm=capability
Dec 10 22:45:07 localhost kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Dec 10 22:45:07 localhost kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Dec 10 22:45:07 localhost kernel: smpboot: CPU0: AMD Ryzen 9 4900H with Radeon Graphics (family: 0x17, model: 0x60, stepping: 0x1)
Dec 10 22:45:07 localhost kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
Dec 10 22:45:07 localhost kernel: ... version: 0
Dec 10 22:45:07 localhost kernel: ... bit width: 48
Dec 10 22:45:07 localhost kernel: ... generic registers: 6
Dec 10 22:45:07 localhost kernel: ... value mask: 0000ffffffffffff
Dec 10 22:45:07 localhost kernel: ... max period: 00007fffffffffff
Dec 10 22:45:07 localhost kernel: ... fixed-purpose events: 0
Dec 10 22:45:07 localhost kernel: ... event mask: 000000000000003f
Dec 10 22:45:07 localhost kernel: signal: max sigframe size: 1776
Dec 10 22:45:07 localhost kernel: rcu: Hierarchical SRCU implementation.
Dec 10 22:45:07 localhost kernel: rcu: Max phase no-delay instances is 400.
Dec 10 22:45:07 localhost kernel: Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
Dec 10 22:45:07 localhost kernel: smp: Bringing up secondary CPUs ...
Dec 10 22:45:07 localhost kernel: smpboot: x86: Booting SMP configuration:
Dec 10 22:45:07 localhost kernel: .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #1 #3 #5 #7 #9 #11 #13 #15
Dec 10 22:45:07 localhost kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
Dec 10 22:45:07 localhost kernel: smp: Brought up 1 node, 16 CPUs
Dec 10 22:45:07 localhost kernel: smpboot: Total of 16 processors activated (105410.78 BogoMIPS)
Dec 10 22:45:07 localhost kernel: Memory: 15681568K/16115204K available (26624K kernel code, 3147K rwdata, 12532K rodata, 3060K init, 860K bss, 424748K reserved, 0K cma-reserved)
Dec 10 22:45:07 localhost kernel: devtmpfs: initialized
Dec 10 22:45:07 localhost kernel: x86/mm: Memory block size: 128MB
Dec 10 22:45:07 localhost kernel: ACPI: PM: Registering ACPI NVS region [mem 0x09f00000-0x09f0cfff] (53248 bytes)
Dec 10 22:45:07 localhost kernel: ACPI: PM: Registering ACPI NVS region [mem 0xc903e000-0xc9051a99] (80538 bytes)
Dec 10 22:45:07 localhost kernel: ACPI: PM: Registering ACPI NVS region [mem 0xcbf7f000-0xcdf7efff] (33554432 bytes)
Dec 10 22:45:07 localhost kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Dec 10 22:45:07 localhost kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Dec 10 22:45:07 localhost kernel: pinctrl core: initialized pinctrl subsystem
Dec 10 22:45:07 localhost kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Dec 10 22:45:07 localhost kernel: audit: initializing netlink subsys (disabled)
Dec 10 22:45:07 localhost kernel: audit: type=2000 audit(1733899499.480:1): state=initialized audit_enabled=0 res=1
Dec 10 22:45:07 localhost kernel: thermal_sys: Registered thermal governor 'fair_share'
Dec 10 22:45:07 localhost kernel: thermal_sys: Registered thermal governor 'step_wise'
Dec 10 22:45:07 localhost kernel: thermal_sys: Registered thermal governor 'user_space'
Dec 10 22:45:07 localhost kernel: thermal_sys: Registered thermal governor 'power_allocator'
Dec 10 22:45:07 localhost kernel: cpuidle: using governor ladder
Dec 10 22:45:07 localhost kernel: cpuidle: using governor menu
Dec 10 22:45:07 localhost kernel: Simple Boot Flag at 0x44 set to 0x80
Dec 10 22:45:07 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Dec 10 22:45:07 localhost kernel: PCI: ECAM [mem 0xf8000000-0xfbffffff] (base 0xf8000000) for domain 0000 [bus 00-3f]
Dec 10 22:45:07 localhost kernel: PCI: Using configuration type 1 for base access
Dec 10 22:45:07 localhost kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Dec 10 22:45:07 localhost kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Dec 10 22:45:07 localhost kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Dec 10 22:45:07 localhost kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Dec 10 22:45:07 localhost kernel: cryptd: max_cpu_qlen set to 1000
Dec 10 22:45:07 localhost kernel: raid6: avx2x4 gen() 3625 MB/s
Dec 10 22:45:07 localhost kernel: raid6: avx2x2 gen() 3804 MB/s
Dec 10 22:45:07 localhost kernel: raid6: avx2x1 gen() 3108 MB/s
Dec 10 22:45:07 localhost kernel: raid6: using algorithm avx2x2 gen() 3804 MB/s
Dec 10 22:45:07 localhost kernel: raid6: .... xor() 2242 MB/s, rmw enabled
Dec 10 22:45:07 localhost kernel: raid6: using avx2x2 recovery algorithm
Dec 10 22:45:07 localhost kernel: ACPI: Added _OSI(Module Device)
Dec 10 22:45:07 localhost kernel: ACPI: Added _OSI(Processor Device)
Dec 10 22:45:07 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Dec 10 22:45:07 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device)
Dec 10 22:45:07 localhost kernel: ACPI: 22 ACPI AML tables successfully acquired and loaded
Dec 10 22:45:07 localhost kernel: ACPI: EC: EC started
Dec 10 22:45:07 localhost kernel: ACPI: EC: interrupt blocked
Dec 10 22:45:07 localhost kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.LPC0.EC__: Boot DSDT EC used to handle transactions
Dec 10 22:45:07 localhost kernel: ACPI: Interpreter enabled
Dec 10 22:45:07 localhost kernel: ACPI: PM: (supports S0 S5)
Dec 10 22:45:07 localhost kernel: ACPI: Using IOAPIC for interrupt routing
Dec 10 22:45:07 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Dec 10 22:45:07 localhost kernel: PCI: Ignoring E820 reservations for host bridge windows
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.GPP0.M237: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.GPP0.SWUS.M237: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.GPP0.SWUS.SWDS.M237: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.GPP4.WLAN.WRST: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.GP17.XHC0.P0U0: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.GP17.XHC0.P3U0: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.GP17.XHC1.P0U1: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.GP17.XHC1.P3U1: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.P0S0: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.P3S0: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.P0S1: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.P3S1: New power resource
Dec 10 22:45:07 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Dec 10 22:45:07 localhost kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Dec 10 22:45:07 localhost kernel: acpi PNP0A08:00: _OSC: platform does not support [LTR]
Dec 10 22:45:07 localhost kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Dec 10 22:45:07 localhost kernel: acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf8000000-0xfbffffff] for domain 0000 [bus 00-3f] only partially covers this bridge
Dec 10 22:45:07 localhost kernel: PCI host bridge to bus 0000:00
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000cffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000effff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xd0000000-0xf7ffffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xfc000000-0xfed3ffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x450200000-0xfcffffffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:00.0: [1022:1630] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:00.2: [1022:1631] type 00 class 0x080600 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: [1022:1633] type 01 class 0x060400 PCIe Root Port
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: PCI bridge to [bus 01-03]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: bridge window [mem 0xd0700000-0xd08fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.2: [1022:1634] type 01 class 0x060400 PCIe Root Port
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.2: PCI bridge to [bus 04]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.2: bridge window [mem 0xd0600000-0xd06fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.1: [1022:1634] type 01 class 0x060400 PCIe Root Port
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.1: PCI bridge to [bus 05]
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.1: bridge window [io 0x2000-0x2fff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.1: bridge window [mem 0xd0500000-0xd05fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.2: [1022:1634] type 01 class 0x060400 PCIe Root Port
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.2: PCI bridge to [bus 06]
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.2: bridge window [mem 0xd0400000-0xd04fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: [1022:1635] type 01 class 0x060400 PCIe Root Port
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: PCI bridge to [bus 07]
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: bridge window [io 0x1000-0x1fff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: bridge window [mem 0xd0000000-0xd03fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: bridge window [mem 0xfcc0000000-0xfcd01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: enabling Extended Tags
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.0: [1022:1448] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.1: [1022:1449] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.2: [1022:144a] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.3: [1022:144b] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.4: [1022:144c] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.5: [1022:144d] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.6: [1022:144e] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.7: [1022:144f] type 00 class 0x060000 conventional PCI endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: BAR 0 [mem 0xd0800000-0xd0803fff]
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: PCI bridge to [bus 02-03]
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: bridge window [mem 0xd0700000-0xd07fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: PCI bridge to [bus 01-03]
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: bridge window [mem 0xd0700000-0xd07fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: PCI bridge to [bus 02-03]
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: [1002:731f] type 00 class 0x038000 PCIe Legacy Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: BAR 0 [mem 0xfce0000000-0xfcefffffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: BAR 2 [mem 0xfcf0000000-0xfcf01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: BAR 5 [mem 0xd0700000-0xd077ffff]
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: ROM [mem 0xfffe0000-0xffffffff pref]
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.1: [1002:ab38] type 00 class 0x040300 PCIe Legacy Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.1: BAR 0 [mem 0xd0780000-0xd0783fff]
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
Dec 10 22:45:07 localhost kernel: pci 0000:04:00.0: [15b7:5006] type 00 class 0x010802 PCIe Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:04:00.0: BAR 0 [mem 0xd0600000-0xd0603fff 64bit]
Dec 10 22:45:07 localhost kernel: pci 0000:04:00.0: BAR 4 [mem 0xd0604000-0xd06040ff 64bit]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.2: PCI bridge to [bus 04]
Dec 10 22:45:07 localhost kernel: pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:05:00.0: BAR 0 [io 0x2000-0x20ff]
Dec 10 22:45:07 localhost kernel: pci 0000:05:00.0: BAR 2 [mem 0xd0504000-0xd0504fff 64bit]
Dec 10 22:45:07 localhost kernel: pci 0000:05:00.0: BAR 4 [mem 0xd0500000-0xd0503fff 64bit]
Dec 10 22:45:07 localhost kernel: pci 0000:05:00.0: supports D1 D2
Dec 10 22:45:07 localhost kernel: pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.1: PCI bridge to [bus 05]
Dec 10 22:45:07 localhost kernel: pci 0000:06:00.0: [8086:2723] type 00 class 0x028000 PCIe Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:06:00.0: BAR 0 [mem 0xd0400000-0xd0403fff 64bit]
Dec 10 22:45:07 localhost kernel: pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.2: PCI bridge to [bus 06]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: [1002:1636] type 00 class 0x030000 PCIe Legacy Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: BAR 0 [mem 0xfcc0000000-0xfccfffffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: BAR 2 [mem 0xfcd0000000-0xfcd01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: BAR 4 [io 0x1000-0x10ff]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: BAR 5 [mem 0xd0300000-0xd037ffff]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: enabling Extended Tags
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: PME# supported from D1 D2 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.1: [1002:1637] type 00 class 0x040300 PCIe Legacy Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.1: BAR 0 [mem 0xd03c8000-0xd03cbfff]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.1: enabling Extended Tags
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.1: PME# supported from D1 D2 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.2: [1022:15df] type 00 class 0x108000 PCIe Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.2: BAR 2 [mem 0xd0200000-0xd02fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.2: BAR 5 [mem 0xd03cc000-0xd03cdfff]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.2: enabling Extended Tags
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.3: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.3: BAR 0 [mem 0xd0000000-0xd00fffff 64bit]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.3: enabling Extended Tags
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.3: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.4: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.4: BAR 0 [mem 0xd0100000-0xd01fffff 64bit]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.4: enabling Extended Tags
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.4: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.5: BAR 0 [mem 0xd0380000-0xd03bffff]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.5: enabling Extended Tags
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.5: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.6: BAR 0 [mem 0xd03c0000-0xd03c7fff]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.6: enabling Extended Tags
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.6: PME# supported from D0 D3hot D3cold
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: PCI bridge to [bus 07]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: on NUMA node 0
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKA disabled
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKB disabled
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKC disabled
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKD disabled
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKE disabled
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKF disabled
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKG disabled
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Dec 10 22:45:07 localhost kernel: ACPI: PCI: Interrupt link LNKH disabled
Dec 10 22:45:07 localhost kernel: Low-power S0 idle used by default for system suspend
Dec 10 22:45:07 localhost kernel: ACPI: EC: interrupt unblocked
Dec 10 22:45:07 localhost kernel: ACPI: EC: event unblocked
Dec 10 22:45:07 localhost kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Dec 10 22:45:07 localhost kernel: ACPI: EC: GPE=0x3
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.LPC0.EC__: Boot DSDT EC initialization complete
Dec 10 22:45:07 localhost kernel: ACPI: \_SB_.PCI0.LPC0.EC__: EC: Used to handle transactions and events
Dec 10 22:45:07 localhost kernel: iommu: Default domain type: Translated
Dec 10 22:45:07 localhost kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Dec 10 22:45:07 localhost kernel: SCSI subsystem initialized
Dec 10 22:45:07 localhost kernel: ACPI: bus type USB registered
Dec 10 22:45:07 localhost kernel: usbcore: registered new interface driver usbfs
Dec 10 22:45:07 localhost kernel: usbcore: registered new interface driver hub
Dec 10 22:45:07 localhost kernel: usbcore: registered new device driver usb
Dec 10 22:45:07 localhost kernel: mc: Linux media interface: v0.10
Dec 10 22:45:07 localhost kernel: videodev: Linux video capture interface: v2.00
Dec 10 22:45:07 localhost kernel: efivars: Registered efivars operations
Dec 10 22:45:07 localhost kernel: Advanced Linux Sound Architecture Driver Initialized.
Dec 10 22:45:07 localhost kernel: Bluetooth: Core ver 2.22
Dec 10 22:45:07 localhost kernel: NET: Registered PF_BLUETOOTH protocol family
Dec 10 22:45:07 localhost kernel: Bluetooth: HCI device and connection manager initialized
Dec 10 22:45:07 localhost kernel: Bluetooth: HCI socket layer initialized
Dec 10 22:45:07 localhost kernel: Bluetooth: L2CAP socket layer initialized
Dec 10 22:45:07 localhost kernel: Bluetooth: SCO socket layer initialized
Dec 10 22:45:07 localhost kernel: PCI: Using ACPI for IRQ routing
Dec 10 22:45:07 localhost kernel: PCI: pci_cache_line_size set to 64 bytes
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0x09b00000-0x0bffffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0x09f00000-0x0bffffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0xa7fe2018-0xa7ffffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0xa7ff0018-0xa7ffffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0xa7fff018-0xa7ffffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0xab799000-0xabffffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0xb8f0e000-0xbbffffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0xc903e000-0xcbffffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0xc9baf000-0xcbffffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0xce000000-0xcfffffff]
Dec 10 22:45:07 localhost kernel: e820: reserve RAM buffer [mem 0x40f340000-0x40fffffff]
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: vgaarb: setting as boot VGA device
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: vgaarb: bridge control possible
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Dec 10 22:45:07 localhost kernel: vgaarb: loaded
Dec 10 22:45:07 localhost kernel: wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
Dec 10 22:45:07 localhost kernel: wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WMBD method block execution control method not found
Dec 10 22:45:07 localhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Dec 10 22:45:07 localhost kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
Dec 10 22:45:07 localhost kernel: clocksource: Switched to clocksource tsc-early
Dec 10 22:45:07 localhost kernel: VFS: Disk quotas dquot_6.6.0
Dec 10 22:45:07 localhost kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Dec 10 22:45:07 localhost kernel: pnp: PnP ACPI init
Dec 10 22:45:07 localhost kernel: system 00:00: [mem 0xfec00000-0xfec01fff] could not be reserved
Dec 10 22:45:07 localhost kernel: system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:00: [mem 0xfde00000-0xfdefffff] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:03: [io 0x0400-0x04cf] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:03: [io 0x04d0-0x04d1] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:03: [io 0x04d6] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:03: [io 0x0c00-0x0c01] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:03: [io 0x0c14] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:03: [io 0x0c50-0x0c52] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:03: [io 0x0c6c] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:03: [io 0x0c6f] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:03: [io 0x0cd0-0x0cdb] has been reserved
Dec 10 22:45:07 localhost kernel: system 00:04: [mem 0x000e0000-0x000fffff] could not be reserved
Dec 10 22:45:07 localhost kernel: system 00:04: [mem 0xff000000-0xffffffff] has been reserved
Dec 10 22:45:07 localhost kernel: pnp: PnP ACPI: found 6 devices
Dec 10 22:45:07 localhost kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Dec 10 22:45:07 localhost kernel: NET: Registered PF_INET protocol family
Dec 10 22:45:07 localhost kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Dec 10 22:45:07 localhost kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Dec 10 22:45:07 localhost kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Dec 10 22:45:07 localhost kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Dec 10 22:45:07 localhost kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Dec 10 22:45:07 localhost kernel: TCP: Hash tables configured (established 131072 bind 65536)
Dec 10 22:45:07 localhost kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
Dec 10 22:45:07 localhost kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
Dec 10 22:45:07 localhost kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Dec 10 22:45:07 localhost kernel: RPC: Registered named UNIX socket transport module.
Dec 10 22:45:07 localhost kernel: RPC: Registered udp transport module.
Dec 10 22:45:07 localhost kernel: RPC: Registered tcp transport module.
Dec 10 22:45:07 localhost kernel: RPC: Registered tcp-with-tls transport module.
Dec 10 22:45:07 localhost kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: ROM [mem 0xfffe0000-0xffffffff pref]: can't claim; no compatible bridge window
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: bridge window [io 0x1000-0x0fff] to [bus 01-03] add_size 1000
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]: assigned
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: ROM [mem 0xd07a0000-0xd07bffff pref]: assigned
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: bridge window [mem 0xd0700000-0xd07fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: PCI bridge to [bus 02-03]
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: bridge window [mem 0xd0700000-0xd07fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: PCI bridge to [bus 01-03]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: bridge window [mem 0xd0700000-0xd08fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.2: PCI bridge to [bus 04]
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.2: bridge window [mem 0xd0600000-0xd06fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.1: PCI bridge to [bus 05]
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.1: bridge window [io 0x2000-0x2fff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.1: bridge window [mem 0xd0500000-0xd05fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.2: PCI bridge to [bus 06]
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.2: bridge window [mem 0xd0400000-0xd04fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: PCI bridge to [bus 07]
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: bridge window [io 0x1000-0x1fff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: bridge window [mem 0xd0000000-0xd03fffff]
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: bridge window [mem 0xfcc0000000-0xfcd01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000cffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: resource 8 [mem 0x000d0000-0x000effff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: resource 9 [mem 0xd0000000-0xf7ffffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: resource 10 [mem 0xfc000000-0xfed3ffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:00: resource 11 [mem 0x450200000-0xfcffffffff window]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:01: resource 1 [mem 0xd0700000-0xd08fffff]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:01: resource 2 [mem 0xfce0000000-0xfcf01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:02: resource 1 [mem 0xd0700000-0xd07fffff]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:02: resource 2 [mem 0xfce0000000-0xfcf01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:03: resource 1 [mem 0xd0700000-0xd07fffff]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:03: resource 2 [mem 0xfce0000000-0xfcf01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:04: resource 1 [mem 0xd0600000-0xd06fffff]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:05: resource 0 [io 0x2000-0x2fff]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:05: resource 1 [mem 0xd0500000-0xd05fffff]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:06: resource 1 [mem 0xd0400000-0xd04fffff]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:07: resource 0 [io 0x1000-0x1fff]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:07: resource 1 [mem 0xd0000000-0xd03fffff]
Dec 10 22:45:07 localhost kernel: pci_bus 0000:07: resource 2 [mem 0xfcc0000000-0xfcd01fffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: CLS mismatch (64 != 548), using 64 bytes
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: disabling ATS
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.1: D0 power state depends on 0000:07:00.0
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.3: extending delay after power-on from D3hot to 20 msec
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.4: extending delay after power-on from D3hot to 20 msec
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.4: quirk_usb_early_handoff+0x0/0x670 took 11574 usecs
Dec 10 22:45:07 localhost kernel: Unpacking initramfs...
Dec 10 22:45:07 localhost kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160
Dec 10 22:45:07 localhost kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160
Dec 10 22:45:07 localhost kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160
Dec 10 22:45:07 localhost kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160
Dec 10 22:45:07 localhost kernel: AMD-Vi: Using global IVHD EFR:0x206d73ef22254ade, EFR2:0x0
Dec 10 22:45:07 localhost kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.0: Adding to iommu group 0
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.1: Adding to iommu group 1
Dec 10 22:45:07 localhost kernel: pci 0000:00:01.2: Adding to iommu group 2
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.0: Adding to iommu group 3
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.1: Adding to iommu group 4
Dec 10 22:45:07 localhost kernel: pci 0000:00:02.2: Adding to iommu group 5
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.0: Adding to iommu group 6
Dec 10 22:45:07 localhost kernel: pci 0000:00:08.1: Adding to iommu group 6
Dec 10 22:45:07 localhost kernel: pci 0000:00:14.0: Adding to iommu group 7
Dec 10 22:45:07 localhost kernel: pci 0000:00:14.3: Adding to iommu group 7
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.0: Adding to iommu group 8
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.1: Adding to iommu group 8
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.2: Adding to iommu group 8
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.3: Adding to iommu group 8
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.4: Adding to iommu group 8
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.5: Adding to iommu group 8
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.6: Adding to iommu group 8
Dec 10 22:45:07 localhost kernel: pci 0000:00:18.7: Adding to iommu group 8
Dec 10 22:45:07 localhost kernel: pci 0000:01:00.0: Adding to iommu group 9
Dec 10 22:45:07 localhost kernel: pci 0000:02:00.0: Adding to iommu group 10
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.0: Adding to iommu group 11
Dec 10 22:45:07 localhost kernel: pci 0000:03:00.1: Adding to iommu group 12
Dec 10 22:45:07 localhost kernel: pci 0000:04:00.0: Adding to iommu group 13
Dec 10 22:45:07 localhost kernel: pci 0000:05:00.0: Adding to iommu group 14
Dec 10 22:45:07 localhost kernel: pci 0000:06:00.0: Adding to iommu group 15
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.0: Adding to iommu group 6
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.1: Adding to iommu group 6
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.2: Adding to iommu group 6
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.3: Adding to iommu group 6
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.4: Adding to iommu group 6
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.5: Adding to iommu group 6
Dec 10 22:45:07 localhost kernel: pci 0000:07:00.6: Adding to iommu group 6
Dec 10 22:45:07 localhost kernel: AMD-Vi: Extended features (0x206d73ef22254ade, 0x0): PPR X2APIC NX GT IA GA PC GA_vAPIC
Dec 10 22:45:07 localhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Dec 10 22:45:07 localhost kernel: software IO TLB: mapped [mem 0x00000000c503e000-0x00000000c903e000] (64MB)
Dec 10 22:45:07 localhost kernel: RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
Dec 10 22:45:07 localhost kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
Dec 10 22:45:07 localhost kernel: LVT offset 0 assigned for vector 0x400
Dec 10 22:45:07 localhost kernel: perf: AMD IBS detected (0x000003ff)
Dec 10 22:45:07 localhost kernel: amd_uncore: 4 amd_df counters detected
Dec 10 22:45:07 localhost kernel: amd_uncore: 6 amd_l3 counters detected
Dec 10 22:45:07 localhost kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
Dec 10 22:45:07 localhost kernel: kvm_amd: TSC scaling supported
Dec 10 22:45:07 localhost kernel: kvm_amd: Nested Virtualization enabled
Dec 10 22:45:07 localhost kernel: kvm_amd: Nested Paging enabled
Dec 10 22:45:07 localhost kernel: kvm_amd: LBR virtualization supported
Dec 10 22:45:07 localhost kernel: kvm_amd: Virtual VMLOAD VMSAVE supported
Dec 10 22:45:07 localhost kernel: kvm_amd: Virtual GIF supported
Dec 10 22:45:07 localhost kernel: AVX512/GFNI instructions are not detected.
Dec 10 22:45:07 localhost kernel: Initialise system trusted keyrings
Dec 10 22:45:07 localhost kernel: workingset: timestamp_bits=46 max_order=22 bucket_order=0
Dec 10 22:45:07 localhost kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Dec 10 22:45:07 localhost kernel: NFS: Registering the id_resolver key type
Dec 10 22:45:07 localhost kernel: Key type id_resolver registered
Dec 10 22:45:07 localhost kernel: Key type id_legacy registered
Dec 10 22:45:07 localhost kernel: ntfs3: Enabled Linux POSIX ACLs support
Dec 10 22:45:07 localhost kernel: ntfs3: Read-only LZX/Xpress compression included
Dec 10 22:45:07 localhost kernel: NET: Registered PF_ALG protocol family
Dec 10 22:45:07 localhost kernel: xor: automatically using best checksumming function avx
Dec 10 22:45:07 localhost kernel: Key type asymmetric registered
Dec 10 22:45:07 localhost kernel: Asymmetric key parser 'x509' registered
Dec 10 22:45:07 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Dec 10 22:45:07 localhost kernel: io scheduler mq-deadline registered
Dec 10 22:45:07 localhost kernel: io scheduler kyber registered
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:01.1: PME: Signaling with IRQ 35
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:01.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:01.2: PME: Signaling with IRQ 36
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:02.1: PME: Signaling with IRQ 37
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:02.2: PME: Signaling with IRQ 38
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 39
Dec 10 22:45:07 localhost kernel: ACPI: AC: AC Adapter [AC] (off-line)
Dec 10 22:45:07 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Dec 10 22:45:07 localhost kernel: ACPI: button: Power Button [PWRB]
Dec 10 22:45:07 localhost kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
Dec 10 22:45:07 localhost kernel: ACPI: button: Lid Switch [LID]
Dec 10 22:45:07 localhost kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
Dec 10 22:45:07 localhost kernel: ACPI: button: Sleep Button [SBTN]
Dec 10 22:45:07 localhost kernel: ACPI: video: Video Device [VGA] (multi-head: yes rom: no post: no)
Dec 10 22:45:07 localhost kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:11/LNXVIDEO:00/input/input3
Dec 10 22:45:07 localhost kernel: acpi-tad ACPI000E:00: Missing _PRW
Dec 10 22:45:07 localhost kernel: Monitor-Mwait will be used to enter C-1 state
Dec 10 22:45:07 localhost kernel: Could not retrieve perf counters (-19)
Dec 10 22:45:07 localhost kernel: thermal LNXTHERM:00: registered as thermal_zone0
Dec 10 22:45:07 localhost kernel: ACPI: thermal: Thermal Zone [THM] (55 C)
Dec 10 22:45:07 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Dec 10 22:45:07 localhost kernel: ACPI: bus type drm_connector registered
Dec 10 22:45:07 localhost kernel: [drm] amdgpu kernel modesetting enabled.
Dec 10 22:45:07 localhost kernel: amdgpu: vga_switcheroo: detected switching method \_SB_.PCI0.GP17.VGA_.ATPX handle
Dec 10 22:45:07 localhost kernel: amdgpu: ATPX version 1, functions 0x00000001
Dec 10 22:45:07 localhost kernel: amdgpu: ATPX Hybrid Graphics
Dec 10 22:45:07 localhost kernel: ACPI: battery: Slot [BAT0] (battery present)
Dec 10 22:45:07 localhost kernel: amdgpu: Virtual CRAT table created for CPU
Dec 10 22:45:07 localhost kernel: amdgpu: Topology: Add CPU node
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: enabling device (0100 -> 0102)
Dec 10 22:45:07 localhost kernel: [drm] initializing kernel modesetting (NAVI10 0x1002:0x731F 0x1028:0x09F5 0xC2).
Dec 10 22:45:07 localhost kernel: [drm] register mmio base: 0xD0700000
Dec 10 22:45:07 localhost kernel: [drm] register mmio size: 524288
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 0 <nv_common>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 1 <gmc_v10_0>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 2 <navi10_ih>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 3 <psp>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 4 <smu>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 5 <dm>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 6 <gfx_v10_0>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 7 <sdma_v5_0>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 8 <vcn_v2_0>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 9 <jpeg_v2_0>
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from ATRM
Dec 10 22:45:07 localhost kernel: amdgpu: ATOM BIOS: SWBRT62309.001
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_sos.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_asd.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_ta.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_smc.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_pfp.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_me.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_ce.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_rlc.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_mec.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_mec2.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_sdma.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_sdma1.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/navi10_vcn.bin
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
Dec 10 22:45:07 localhost kernel: [drm] GPU posting now...
Dec 10 22:45:07 localhost kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: BAR 2 [mem 0xfcf0000000-0xfcf01fffff 64bit pref]: releasing
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: BAR 0 [mem 0xfce0000000-0xfcefffffff 64bit pref]: releasing
Dec 10 22:45:07 localhost kernel: pcieport 0000:02:00.0: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]: releasing
Dec 10 22:45:07 localhost kernel: pcieport 0000:01:00.0: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]: releasing
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:01.1: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]: releasing
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:01.1: bridge window [mem 0x500000000-0x7ffffffff 64bit pref]: assigned
Dec 10 22:45:07 localhost kernel: pcieport 0000:01:00.0: bridge window [mem 0x500000000-0x7ffffffff 64bit pref]: assigned
Dec 10 22:45:07 localhost kernel: pcieport 0000:02:00.0: bridge window [mem 0x500000000-0x7ffffffff 64bit pref]: assigned
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: BAR 0 [mem 0x600000000-0x7ffffffff 64bit pref]: assigned
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: BAR 2 [mem 0x500000000-0x5001fffff 64bit pref]: assigned
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:01.1: PCI bridge to [bus 01-03]
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:01.1: bridge window [io 0x3000-0x3fff]
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:01.1: bridge window [mem 0xd0700000-0xd08fffff]
Dec 10 22:45:07 localhost kernel: pcieport 0000:00:01.1: bridge window [mem 0x500000000-0x7ffffffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pcieport 0000:01:00.0: PCI bridge to [bus 02-03]
Dec 10 22:45:07 localhost kernel: pcieport 0000:01:00.0: bridge window [mem 0xd0700000-0xd07fffff]
Dec 10 22:45:07 localhost kernel: pcieport 0000:01:00.0: bridge window [mem 0x500000000-0x7ffffffff 64bit pref]
Dec 10 22:45:07 localhost kernel: pcieport 0000:02:00.0: PCI bridge to [bus 03]
Dec 10 22:45:07 localhost kernel: pcieport 0000:02:00.0: bridge window [mem 0xd0700000-0xd07fffff]
Dec 10 22:45:07 localhost kernel: pcieport 0000:02:00.0: bridge window [mem 0x500000000-0x7ffffffff 64bit pref]
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: VRAM: 6128M 0x0000008000000000 - 0x000000817EFFFFFF (6128M used)
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
Dec 10 22:45:07 localhost kernel: [drm] Detected VRAM RAM=6128M, BAR=8192M
Dec 10 22:45:07 localhost kernel: [drm] RAM width 192bits GDDR6
Dec 10 22:45:07 localhost kernel: [drm] amdgpu: 6128M of VRAM memory ready
Dec 10 22:45:07 localhost kernel: [drm] amdgpu: 7661M of GTT memory ready.
Dec 10 22:45:07 localhost kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
Dec 10 22:45:07 localhost kernel: [drm] PCIE GART of 512M enabled (table at 0x000000817EE00000).
Dec 10 22:45:07 localhost kernel: Freeing initrd memory: 19524K
Dec 10 22:45:07 localhost kernel: tsc: Refined TSC clocksource calibration: 3293.811 MHz
Dec 10 22:45:07 localhost kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2f7a758b259, max_idle_ns: 440795268702 ns
Dec 10 22:45:07 localhost kernel: clocksource: Switched to clocksource tsc
Dec 10 22:45:07 localhost kernel: [drm] Found VCN firmware Version ENC: 1.23 DEC: 8 VEP: 0 Revision: 1
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: reserve 0x900000 from 0x817d000000 for PSP TMR
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: use vbios provided pptable
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: smc_dpm_info table revision(format.content): 4.5
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
Dec 10 22:45:07 localhost kernel: [drm] Display Core v3.2.301 initialized on DCN 2.0
Dec 10 22:45:07 localhost kernel: [drm] DP-HDMI FRL PCON supported
Dec 10 22:45:07 localhost kernel: [drm] kiq ring mec 2 pipe 1 q 0
Dec 10 22:45:07 localhost kernel: amdgpu: HMM registered 6128MB device memory
Dec 10 22:45:07 localhost kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 10 22:45:07 localhost kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
Dec 10 22:45:07 localhost kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
Dec 10 22:45:07 localhost kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 10 22:45:07 localhost kernel: amdgpu: Virtual CRAT table created for GPU
Dec 10 22:45:07 localhost kernel: amdgpu: Topology: Add dGPU node [0x731f:0x1002]
Dec 10 22:45:07 localhost kernel: kfd kfd: amdgpu: added device 1002:731f
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 10, active_cu_number 36
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec uses VM inv eng 0 on hub 8
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 1 on hub 8
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 4 on hub 8
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: amdgpu: Using BOCO for runtime pm
Dec 10 22:45:07 localhost kernel: [drm] Initialized amdgpu 3.59.0 for 0000:03:00.0 on minor 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
Dec 10 22:45:07 localhost kernel: [drm] pre_validate_dsc:1589 MST_DSC dsc precompute is not needed
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: enabling device (0006 -> 0007)
Dec 10 22:45:07 localhost kernel: [drm] initializing kernel modesetting (RENOIR 0x1002:0x1636 0x1028:0x09F5 0xF0).
Dec 10 22:45:07 localhost kernel: [drm] register mmio base: 0xD0300000
Dec 10 22:45:07 localhost kernel: [drm] register mmio size: 524288
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 0 <soc15_common>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 1 <gmc_v9_0>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 2 <vega10_ih>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 3 <psp>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 4 <smu>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 5 <dm>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 6 <gfx_v9_0>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 7 <sdma_v4_0>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 8 <vcn_v2_0>
Dec 10 22:45:07 localhost kernel: [drm] add ip block number 9 <jpeg_v2_0>
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: Fetched VBIOS from VFCT
Dec 10 22:45:07 localhost kernel: amdgpu: ATOM BIOS: 113-RENOIR-037
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/renoir_asd.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/renoir_ta.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/renoir_dmcub.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/renoir_pfp.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/renoir_me.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/renoir_ce.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/renoir_rlc.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/renoir_mec.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/renoir_sdma.bin
Dec 10 22:45:07 localhost kernel: Loading firmware: amdgpu/renoir_vcn.bin
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: vgaarb: deactivate vga console
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: MODE2 reset
Dec 10 22:45:07 localhost kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
Dec 10 22:45:07 localhost kernel: [drm] Detected VRAM RAM=512M, BAR=512M
Dec 10 22:45:07 localhost kernel: [drm] RAM width 128bits DDR4
Dec 10 22:45:07 localhost kernel: [drm] amdgpu: 512M of VRAM memory ready
Dec 10 22:45:07 localhost kernel: [drm] amdgpu: 7661M of GTT memory ready.
Dec 10 22:45:07 localhost kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
Dec 10 22:45:07 localhost kernel: [drm] PCIE GART of 1024M enabled.
Dec 10 22:45:07 localhost kernel: [drm] PTB located at 0x000000F41FC00000
Dec 10 22:45:07 localhost kernel: [drm] Loading DMUB firmware via PSP: version=0x0101002B
Dec 10 22:45:07 localhost kernel: [drm] Found VCN firmware Version ENC: 1.23 DEC: 8 VEP: 0 Revision: 1
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: reserve 0x400000 from 0xf41f800000 for PSP TMR
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: RAS: optional ras ta ucode is not available
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: RAP: optional rap ta ucode is not available
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: psp gfx command LOAD_TA(0x1) failed and response status is (0x7)
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: psp gfx command INVOKE_CMD(0x3) failed and response status is (0x4)
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: SECUREDISPLAY: query securedisplay TA failed. ret 0x0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: SMU is initialized successfully!
Dec 10 22:45:07 localhost kernel: [drm] Display Core v3.2.301 initialized on DCN 2.1
Dec 10 22:45:07 localhost kernel: [drm] DP-HDMI FRL PCON supported
Dec 10 22:45:07 localhost kernel: [drm] DMUB hardware initialized: version=0x0101002B
Dec 10 22:45:07 localhost kernel: [drm] kiq ring mec 2 pipe 1 q 0
Dec 10 22:45:07 localhost kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
Dec 10 22:45:07 localhost kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
Dec 10 22:45:07 localhost kernel: amdgpu: Virtual CRAT table created for GPU
Dec 10 22:45:07 localhost kernel: amdgpu: Topology: Add dGPU node [0x1636:0x1002]
Dec 10 22:45:07 localhost kernel: kfd kfd: amdgpu: added device 1002:1636
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 8
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 8
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 8
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 8
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 8
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 8
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: amdgpu: Runtime PM not available
Dec 10 22:45:07 localhost kernel: [drm] Initialized amdgpu 3.59.0 for 0000:07:00.0 on minor 1
Dec 10 22:45:07 localhost kernel: fbcon: amdgpudrmfb (fb0) is primary device
Dec 10 22:45:07 localhost kernel: Console: switching to colour frame buffer device 240x67
Dec 10 22:45:07 localhost kernel: amdgpu 0000:07:00.0: [drm] fb0: amdgpudrmfb frame buffer device
Dec 10 22:45:07 localhost kernel: loop: module loaded
Dec 10 22:45:07 localhost kernel: zram: Added device: zram0
Dec 10 22:45:07 localhost kernel: Loading iSCSI transport class v2.0-870.
Dec 10 22:45:07 localhost kernel: st: Version 20160209, fixed bufsize 32768, s/g segs 256
Dec 10 22:45:07 localhost kernel: SCSI Media Changer driver v0.25
Dec 10 22:45:07 localhost kernel: wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
Dec 10 22:45:07 localhost kernel: wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
Dec 10 22:45:07 localhost kernel: nvme 0000:04:00.0: platform quirk: setting simple suspend
Dec 10 22:45:07 localhost kernel: nvme nvme0: pci function 0000:04:00.0
Dec 10 22:45:07 localhost kernel: r8169 0000:05:00.0 eth0: RTL8168h/8111h, 34:73:5a:d2:e2:86, XID 541, IRQ 48
Dec 10 22:45:07 localhost kernel: r8169 0000:05:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
Dec 10 22:45:07 localhost kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
Dec 10 22:45:07 localhost kernel: nvme nvme0: 16/0/0 default/read/poll queues
Dec 10 22:45:07 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Dec 10 22:45:07 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Dec 10 22:45:07 localhost kernel: mousedev: PS/2 mouse device common for all mice
Dec 10 22:45:07 localhost kernel: usbcore: registered new interface driver xpad
Dec 10 22:45:07 localhost kernel: rtc_cmos 00:01: RTC can wake from S4
Dec 10 22:45:07 localhost kernel: rtc_cmos 00:01: registered as rtc0
Dec 10 22:45:07 localhost kernel: rtc_cmos 00:01: setting system clock to 2024-12-11T06:45:07 UTC (1733899507)
Dec 10 22:45:07 localhost kernel: rtc_cmos 00:01: alarms up to one month, 114 bytes nvram
Dec 10 22:45:07 localhost kernel: ir_imon_decoder: IR iMON protocol handler initialized
Dec 10 22:45:07 localhost kernel: IR JVC protocol handler initialized
Dec 10 22:45:07 localhost kernel: IR MCE Keyboard/mouse protocol handler initialized
Dec 10 22:45:07 localhost kernel: IR NEC protocol handler initialized
Dec 10 22:45:07 localhost kernel: IR RC5(x/sz) protocol handler initialized
Dec 10 22:45:07 localhost kernel: IR RC6 protocol handler initialized
Dec 10 22:45:07 localhost kernel: IR RCMM protocol handler initialized
Dec 10 22:45:07 localhost kernel: IR SANYO protocol handler initialized
Dec 10 22:45:07 localhost kernel: IR Sharp protocol handler initialized
Dec 10 22:45:07 localhost kernel: IR Sony protocol handler initialized
Dec 10 22:45:07 localhost kernel: IR XMP protocol handler initialized
Dec 10 22:45:07 localhost kernel: amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled
Dec 10 22:45:07 localhost kernel: pstore: Using crash dump compression: deflate
Dec 10 22:45:07 localhost kernel: pstore: Registered efi_pstore as persistent store backend
Dec 10 22:45:07 localhost kernel: hid: raw HID events driver (C) Jiri Kosina
Dec 10 22:45:07 localhost kernel: usbcore: registered new interface driver usbhid
Dec 10 22:45:07 localhost kernel: usbhid: USB HID core driver
Dec 10 22:45:07 localhost kernel: intel_rapl_common: Found RAPL domain package
Dec 10 22:45:07 localhost kernel: intel_rapl_common: Found RAPL domain core
Dec 10 22:45:07 localhost kernel: snd_hda_intel 0000:03:00.1: enabling device (0000 -> 0002)
Dec 10 22:45:07 localhost kernel: snd_hda_intel 0000:03:00.1: Handle vga_switcheroo audio client
Dec 10 22:45:07 localhost kernel: snd_hda_intel 0000:03:00.1: Force to non-snoop mode
Dec 10 22:45:07 localhost kernel: snd_hda_intel 0000:07:00.1: enabling device (0000 -> 0002)
Dec 10 22:45:07 localhost kernel: snd_hda_intel 0000:07:00.1: Handle vga_switcheroo audio client
Dec 10 22:45:07 localhost kernel: snd_hda_intel 0000:07:00.6: enabling device (0000 -> 0002)
Dec 10 22:45:07 localhost kernel: nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8
Dec 10 22:45:07 localhost kernel: IPVS: Registered protocols (TCP, UDP)
Dec 10 22:45:07 localhost kernel: IPVS: Connection hash table configured (size=4096, memory=32Kbytes)
Dec 10 22:45:07 localhost kernel: IPVS: ipvs loaded.
Dec 10 22:45:07 localhost kernel: NET: Registered PF_INET6 protocol family
Dec 10 22:45:07 localhost kernel: Segment Routing with IPv6
Dec 10 22:45:07 localhost kernel: In-situ OAM (IOAM) with IPv6
Dec 10 22:45:07 localhost kernel: NET: Registered PF_PACKET protocol family
Dec 10 22:45:07 localhost kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
Dec 10 22:45:07 localhost kernel: Key type dns_resolver registered
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=0 (0x0/0x0/0x0/0x0/0x0) type:line
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC0D0: hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC0D0: mono: mono_out=0x0
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC0D0: dig-out=0x3/0x5
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC0D0: inputs:
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC1D0: autoconfig for Generic: line_outs=0 (0x0/0x0/0x0/0x0/0x0) type:line
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC1D0: hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC1D0: mono: mono_out=0x0
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC1D0: dig-out=0x3/0x0
Dec 10 22:45:07 localhost kernel: snd_hda_codec_generic hdaudioC1D0: inputs:
Dec 10 22:45:07 localhost kernel: microcode: Current revision: 0x0860010c
Dec 10 22:45:07 localhost kernel: input: HDA ATI HDMI HDMI as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input5
Dec 10 22:45:07 localhost kernel: input: HD-Audio Generic HDMI as /devices/pci0000:00/0000:00:08.1/0000:07:00.1/sound/card1/input7
Dec 10 22:45:07 localhost kernel: input: HDA ATI HDMI HDMI as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input6
Dec 10 22:45:07 localhost kernel: resctrl: L3 allocation detected
Dec 10 22:45:07 localhost kernel: resctrl: MB allocation detected
Dec 10 22:45:07 localhost kernel: resctrl: L3 monitoring detected
Dec 10 22:45:07 localhost kernel: IPI shorthand broadcast: enabled
Dec 10 22:45:07 localhost kernel: AES CTR mode by8 optimization enabled
Dec 10 22:45:07 localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
Dec 10 22:45:08 localhost kernel: snd_hda_codec_realtek hdaudioC2D0: autoconfig for ALC3254: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Dec 10 22:45:08 localhost kernel: snd_hda_codec_realtek hdaudioC2D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Dec 10 22:45:08 localhost kernel: snd_hda_codec_realtek hdaudioC2D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Dec 10 22:45:08 localhost kernel: snd_hda_codec_realtek hdaudioC2D0: mono: mono_out=0x0
Dec 10 22:45:08 localhost kernel: snd_hda_codec_realtek hdaudioC2D0: inputs:
Dec 10 22:45:08 localhost kernel: snd_hda_codec_realtek hdaudioC2D0: Headset Mic=0x19
Dec 10 22:45:08 localhost kernel: snd_hda_codec_realtek hdaudioC2D0: Headphone Mic=0x1b
Dec 10 22:45:08 localhost kernel: sched_clock: Marking stable (8327003682, 3061705)->(8363313651, -33248264)
Dec 10 22:45:08 localhost kernel: registered taskstats version 1
Dec 10 22:45:08 localhost kernel: Loading compiled-in X.509 certificates
Dec 10 22:45:08 localhost kernel: Btrfs loaded, zoned=no, fsverity=no
Dec 10 22:45:08 localhost kernel: acpi_cpufreq: overriding BIOS provided _PSD data
Dec 10 22:45:08 localhost kernel: clk: Disabling unused clocks
Dec 10 22:45:08 localhost kernel: PM: genpd: Disabling unused power domains
Dec 10 22:45:08 localhost kernel: ALSA device list:
Dec 10 22:45:08 localhost kernel: #0: HDA ATI HDMI at 0xd0780000 irq 67
Dec 10 22:45:08 localhost kernel: #1: HD-Audio Generic at 0xd03c8000 irq 68
Dec 10 22:45:08 localhost kernel: Freeing unused kernel image (initmem) memory: 3060K
Dec 10 22:45:08 localhost kernel: Write protecting the kernel read-only data: 40960k
Dec 10 22:45:08 localhost kernel: Freeing unused kernel image (rodata/data gap) memory: 1804K
Dec 10 22:45:08 localhost kernel: Run /init as init process
Dec 10 22:45:08 localhost kernel: with arguments:
Dec 10 22:45:08 localhost kernel: /init
Dec 10 22:45:08 localhost kernel: splash
Dec 10 22:45:08 localhost kernel: with environment:
Dec 10 22:45:08 localhost kernel: HOME=/
Dec 10 22:45:08 localhost kernel: TERM=linux
Dec 10 22:45:08 localhost kernel: BOOT_IMAGE=/boot/vmlinuz-6.12.4-gentoo
Dec 10 22:45:08 localhost kernel: device-mapper: uevent: version 1.0.3
Dec 10 22:45:08 localhost kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
Dec 10 22:45:08 localhost kernel: i2c_dev: i2c /dev entries driver
Dec 10 22:45:08 localhost kernel: Asymmetric key parser 'pkcs8' registered
Dec 10 22:45:08 localhost kernel: psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x4f1001)
Dec 10 22:45:08 localhost kernel: psmouse serio1: elantech: Synaptics capabilities query result 0x01, 0x18, 0x12.
Dec 10 22:45:08 localhost kernel: psmouse serio1: elantech: Elan sample query result 00, 38, 85
Dec 10 22:45:08 localhost kernel: psmouse serio1: elantech: Elan ic body: 0x10, current fw version: 0x1
Dec 10 22:45:08 localhost kernel: input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input9
Dec 10 22:45:08 localhost kernel: input: HD-Audio Generic Headphone Mic as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card2/input10
Dec 10 22:45:08 localhost kernel: ccp 0000:07:00.2: enabling device (0000 -> 0002)
Dec 10 22:45:08 localhost kernel: ccp 0000:07:00.2: ccp: unable to access the device: you might be running a broken BIOS.
Dec 10 22:45:08 localhost kernel: ccp 0000:07:00.2: tee enabled
Dec 10 22:45:08 localhost kernel: ccp 0000:07:00.2: psp enabled
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.3: xHCI Host Controller
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.3: new USB bus registered, assigned bus number 1
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.3: xHCI Host Controller
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.3: new USB bus registered, assigned bus number 2
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.3: Host supports USB 3.1 Enhanced SuperSpeed
Dec 10 22:45:08 localhost kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
Dec 10 22:45:08 localhost kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 10 22:45:08 localhost kernel: usb usb1: Product: xHCI Host Controller
Dec 10 22:45:08 localhost kernel: usb usb1: Manufacturer: Linux 6.12.4-gentoo xhci-hcd
Dec 10 22:45:08 localhost kernel: usb usb1: SerialNumber: 0000:07:00.3
Dec 10 22:45:08 localhost kernel: hub 1-0:1.0: USB hub found
Dec 10 22:45:08 localhost kernel: hub 1-0:1.0: 4 ports detected
Dec 10 22:45:08 localhost kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Dec 10 22:45:08 localhost kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
Dec 10 22:45:08 localhost kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 10 22:45:08 localhost kernel: usb usb2: Product: xHCI Host Controller
Dec 10 22:45:08 localhost kernel: usb usb2: Manufacturer: Linux 6.12.4-gentoo xhci-hcd
Dec 10 22:45:08 localhost kernel: usb usb2: SerialNumber: 0000:07:00.3
Dec 10 22:45:08 localhost kernel: hub 2-0:1.0: USB hub found
Dec 10 22:45:08 localhost kernel: hub 2-0:1.0: 2 ports detected
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.4: xHCI Host Controller
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.4: new USB bus registered, assigned bus number 3
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.4: xHCI Host Controller
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.4: new USB bus registered, assigned bus number 4
Dec 10 22:45:08 localhost kernel: xhci_hcd 0000:07:00.4: Host supports USB 3.1 Enhanced SuperSpeed
Dec 10 22:45:08 localhost kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
Dec 10 22:45:08 localhost kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 10 22:45:08 localhost kernel: usb usb3: Product: xHCI Host Controller
Dec 10 22:45:08 localhost kernel: usb usb3: Manufacturer: Linux 6.12.4-gentoo xhci-hcd
Dec 10 22:45:08 localhost kernel: usb usb3: SerialNumber: 0000:07:00.4
Dec 10 22:45:08 localhost kernel: hub 3-0:1.0: USB hub found
Dec 10 22:45:08 localhost kernel: hub 3-0:1.0: 4 ports detected
Dec 10 22:45:08 localhost kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
Dec 10 22:45:08 localhost kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
Dec 10 22:45:08 localhost kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 10 22:45:08 localhost kernel: usb usb4: Product: xHCI Host Controller
Dec 10 22:45:08 localhost kernel: usb usb4: Manufacturer: Linux 6.12.4-gentoo xhci-hcd
Dec 10 22:45:08 localhost kernel: usb usb4: SerialNumber: 0000:07:00.4
Dec 10 22:45:08 localhost kernel: hub 4-0:1.0: USB hub found
Dec 10 22:45:08 localhost kernel: hub 4-0:1.0: 2 ports detected
Dec 10 22:45:08 localhost kernel: BTRFS: device label Gaea devid 1 transid 961127 /dev/nvme0n1p2 (259:2) scanned by mount (533)
Dec 10 22:45:08 localhost kernel: BTRFS info (device nvme0n1p2): first mount of filesystem 289a41f9-88d5-47d5-ae77-7e739ce427bc
Dec 10 22:45:08 localhost kernel: BTRFS info (device nvme0n1p2): using crc32c (crc32c-intel) checksum algorithm
Dec 10 22:45:08 localhost kernel: BTRFS info (device nvme0n1p2): using free-space-tree
Dec 10 22:45:08 localhost kernel: usb 3-2: new high-speed USB device number 2 using xhci_hcd
Dec 10 22:45:09 localhost kernel: BTRFS info (device nvme0n1p2): start tree-log replay
Dec 10 22:45:09 localhost kernel: usb 3-2: New USB device found, idVendor=0c45, idProduct=671f, bcdDevice=85.02
Dec 10 22:45:09 localhost kernel: usb 3-2: New USB device strings: Mfr=2, Product=1, SerialNumber=0
Dec 10 22:45:09 localhost kernel: usb 3-2: Product: Integrated_Webcam_HD
Dec 10 22:45:09 localhost kernel: usb 3-2: Manufacturer: CN0M1RXT8LG0011NC8D9A01
Dec 10 22:45:09 localhost kernel: usb 3-3: new high-speed USB device number 3 using xhci_hcd
Dec 10 22:45:09 localhost kernel: usb 3-3: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=60.52
Dec 10 22:45:09 localhost kernel: usb 3-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Dec 10 22:45:09 localhost kernel: usb 3-3: Product: USB2.0 Hub
Dec 10 22:45:09 localhost kernel: hub 3-3:1.0: USB hub found
Dec 10 22:45:09 localhost kernel: hub 3-3:1.0: 2 ports detected
Dec 10 22:45:09 localhost kernel: ACPI: button: The lid device is not compliant to SW_LID.
Dec 10 22:45:10 diamante kernel: usb 3-3.1: new full-speed USB device number 4 using xhci_hcd
Dec 10 22:45:10 diamante kernel: usb 3-3.1: New USB device found, idVendor=8087, idProduct=0029, bcdDevice= 0.01
Dec 10 22:45:10 diamante kernel: usb 3-3.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Dec 10 22:45:10 diamante kernel: usb 3-3.2: new full-speed USB device number 5 using xhci_hcd
Dec 10 22:45:10 diamante kernel: usb 3-3.2: New USB device found, idVendor=187c, idProduct=0550, bcdDevice= 2.00
Dec 10 22:45:10 diamante kernel: usb 3-3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Dec 10 22:45:10 diamante kernel: usb 3-3.2: Product: AW-ELC
Dec 10 22:45:10 diamante kernel: usb 3-3.2: Manufacturer: Alienware
Dec 10 22:45:10 diamante kernel: usb 3-3.2: SerialNumber: 00.01
Dec 10 22:45:10 diamante kernel: hid-generic 0003:187C:0550.0001: hiddev96,hidraw0: USB HID v1.11 Device [Alienware AW-ELC] on usb-0000:07:00.4-3.2/input0
Dec 10 22:45:10 diamante kernel: fuse: init (API version 7.41)
Dec 10 22:45:10 diamante kernel: BTRFS info (device nvme0n1p2 state M): turning on sync discard
Dec 10 22:45:10 diamante kernel: r8169 0000:05:00.0 enp5s0: renamed from eth0
Dec 10 22:45:10 diamante kernel: input: DELL Wireless hotkeys as /devices/virtual/input/input11
Dec 10 22:45:10 diamante kernel: snd_rn_pci_acp3x 0000:07:00.5: enabling device (0000 -> 0002)
Dec 10 22:45:10 diamante kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Dec 10 22:45:10 diamante kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
Dec 10 22:45:10 diamante kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
Dec 10 22:45:10 diamante kernel: dell_wmi_awcc: detected 2 GPIOs
Dec 10 22:45:10 diamante kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Dec 10 22:45:10 diamante kernel: dell_wmi_awcc: GPIO 0 state: 0
Dec 10 22:45:10 diamante kernel: dell_wmi_awcc: GPIO 1 state: 1
Dec 10 22:45:10 diamante kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Dec 10 22:45:10 diamante kernel: Loading firmware: regulatory.db
Dec 10 22:45:10 diamante kernel: Loading firmware: regulatory.db.p7s
Dec 10 22:45:10 diamante kernel: i2c i2c-9: Successfully instantiated SPD at 0x50
Dec 10 22:45:10 diamante kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
Dec 10 22:45:10 diamante kernel: i2c i2c-11: Successfully instantiated SPD at 0x50
Dec 10 22:45:10 diamante kernel: i2c i2c-11: Successfully instantiated SPD at 0x51
Dec 10 22:45:10 diamante kernel: tpm_crb MSFT0101:00: Disabling hwrng
Dec 10 22:45:10 diamante kernel: Intel(R) Wireless WiFi driver for Linux
Dec 10 22:45:10 diamante kernel: iwlwifi 0000:06:00.0: enabling device (0000 -> 0002)
Dec 10 22:45:10 diamante kernel: dell_smm_hwmon: Enabling support for setting automatic/manual fan control
Dec 10 22:45:10 diamante kernel: iwlwifi 0000:06:00.0: Detected crf-id 0x3617, cnv-id 0x100530 wfpm id 0x80000000
Dec 10 22:45:10 diamante kernel: iwlwifi 0000:06:00.0: PCI dev 2723/1654, rev=0x340, rfid=0x10a100
Dec 10 22:45:10 diamante kernel: iwlwifi 0000:06:00.0: Detected Killer(R) Wi-Fi 6 AX1650x 160MHz Wireless Network Adapter (200NGW)
Dec 10 22:45:10 diamante kernel: Loading firmware: iwlwifi-cc-a0-77.ucode
Dec 10 22:45:10 diamante kernel: iwlwifi 0000:06:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Dec 10 22:45:10 diamante kernel: Loading firmware: iwl-debug-yoyo.bin
Dec 10 22:45:10 diamante kernel: iwlwifi 0000:06:00.0: loaded firmware version 77.0b4c06ad.0 cc-a0-77.ucode op_mode iwlmvm
Dec 10 22:45:10 diamante kernel: input: Dell WMI hotkeys as /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input12
Dec 10 22:45:10 diamante kernel: ee1004 9-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
Dec 10 22:45:10 diamante kernel: ee1004 11-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
Dec 10 22:45:10 diamante kernel: ACPI: battery: new extension: Dell Primary Battery Extension
Dec 10 22:45:11 diamante kernel: leds platform::micmute: Setting an LED's brightness failed (-5)
Dec 10 22:45:11 diamante kernel: ee1004 11-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
Dec 10 22:45:11 diamante kernel: leds platform::micmute: Setting an LED's brightness failed (-5)
Dec 10 22:45:11 diamante kernel: leds platform::micmute: Setting an LED's brightness failed (-5)
Dec 10 22:45:11 diamante kernel: leds platform::micmute: Setting an LED's brightness failed (-5)
Dec 10 22:45:11 diamante kernel: pps_core: LinuxPPS API ver. 1 registered
Dec 10 22:45:11 diamante kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Dec 10 22:45:11 diamante kernel: PTP clock support registered
Dec 10 22:45:11 diamante kernel: leds platform::micmute: Setting an LED's brightness failed (-5)
Dec 10 22:45:11 diamante kernel: Adding 16776188k swap on /dev/nvme0n1p3. Priority:-2 extents:1 across:16776188k SS
Dec 10 22:45:11 diamante kernel: iwlwifi 0000:06:00.0: Detected RF HR B3, rfid=0x10a100
Dec 10 22:45:11 diamante kernel: iwlwifi 0000:06:00.0: base HW address: b0:7d:64:57:68:e0
Dec 10 22:45:11 diamante kernel: leds platform::micmute: Setting an LED's brightness failed (-5)
Dec 10 22:45:11 diamante kernel: leds platform::micmute: Setting an LED's brightness failed (-5)
Dec 10 22:45:11 diamante kernel: leds platform::micmute: Setting an LED's brightness failed (-5)
Dec 10 22:45:11 diamante kernel: Loading firmware: rtl_nic/rtl8168h-2.fw
Dec 10 22:45:11 diamante kernel: Generic FE-GE Realtek PHY r8169-0-500:00: attached PHY driver (mii_bus:phy_addr=r8169-0-500:00, irq=MAC)
Dec 10 22:45:12 diamante kernel: r8169 0000:05:00.0 enp5s0: Link is Down
Dec 10 22:45:12 diamante kernel: usb 3-2: Found UVC 1.00 device Integrated_Webcam_HD (0c45:671f)
Dec 10 22:45:12 diamante kernel: usbcore: registered new interface driver uvcvideo
Dec 10 22:45:12 diamante kernel: iwlwifi 0000:06:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
Dec 10 22:45:12 diamante kernel: usbcore: registered new interface driver btusb
Dec 10 22:45:12 diamante kernel: Loading firmware: intel/ibt-20-1-3.sfi
Dec 10 22:45:12 diamante kernel: Bluetooth: hci0: Found device firmware: intel/ibt-20-1-3.sfi
Dec 10 22:45:12 diamante kernel: Bluetooth: hci0: Boot Address: 0x24800
Dec 10 22:45:12 diamante kernel: Bluetooth: hci0: Firmware Version: 132-3.24
Dec 10 22:45:12 diamante kernel: Bluetooth: hci0: Firmware already loaded
Dec 10 22:45:12 diamante kernel: Bluetooth: hci0: HCI LE Coded PHY feature bit is set, but its usage is not supported.
Dec 10 22:45:12 diamante kernel: tun: Universal TUN/TAP device driver, 1.6
Dec 10 22:45:12 diamante kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Dec 10 22:45:12 diamante kernel: Bluetooth: BNEP filters: protocol multicast
Dec 10 22:45:12 diamante kernel: Bluetooth: BNEP socket layer initialized
Dec 10 22:45:12 diamante kernel: Bluetooth: MGMT ver 1.23
Dec 10 22:45:13 diamante kernel: wlan0: authenticate with 94:91:7f:ec:74:ca (local address=b0:7d:64:57:68:e0)
Dec 10 22:45:13 diamante kernel: wlan0: send auth to 94:91:7f:ec:74:ca (try 1/3)
Dec 10 22:45:13 diamante kernel: wlan0: authenticated
Dec 10 22:45:13 diamante kernel: wlan0: associate with 94:91:7f:ec:74:ca (try 1/3)
Dec 10 22:45:13 diamante kernel: wlan0: RX AssocResp from 94:91:7f:ec:74:ca (capab=0x11 status=0 aid=5)
Dec 10 22:45:13 diamante kernel: wlan0: associated
Dec 10 22:45:18 diamante kernel: Initializing XFRM netlink socket
Dec 10 22:45:18 diamante kernel: Bridge firewalling registered
Dec 10 22:45:19 diamante kernel: amdgpu 0000:03:00.0: amdgpu: asic/device is runtime suspended
Dec 10 22:45:24 diamante kernel: br0: renamed from ov-001000-scu8g
Dec 10 22:45:24 diamante kernel: vxlan0: renamed from vx-001000-scu8g
Dec 10 22:45:24 diamante kernel: br0: port 1(vxlan0) entered blocking state
Dec 10 22:45:24 diamante kernel: br0: port 1(vxlan0) entered disabled state
Dec 10 22:45:24 diamante kernel: vxlan0: entered allmulticast mode
Dec 10 22:45:24 diamante kernel: vxlan0: entered promiscuous mode
Dec 10 22:45:24 diamante kernel: br0: port 1(vxlan0) entered blocking state
Dec 10 22:45:24 diamante kernel: br0: port 1(vxlan0) entered forwarding state
Dec 10 22:45:24 diamante kernel: veth0: renamed from vethf009ac8
Dec 10 22:45:24 diamante kernel: br0: port 2(veth0) entered blocking state
Dec 10 22:45:24 diamante kernel: br0: port 2(veth0) entered disabled state
Dec 10 22:45:24 diamante kernel: veth0: entered allmulticast mode
Dec 10 22:45:24 diamante kernel: veth0: entered promiscuous mode
Dec 10 22:45:24 diamante kernel: eth0: renamed from veth1fe0d05
Dec 10 22:45:24 diamante kernel: br0: port 2(veth0) entered blocking state
Dec 10 22:45:24 diamante kernel: br0: port 2(veth0) entered forwarding state
Dec 10 22:45:24 diamante kernel: docker_gwbridge: port 1(veth9efe4e5) entered blocking state
Dec 10 22:45:24 diamante kernel: docker_gwbridge: port 1(veth9efe4e5) entered disabled state
Dec 10 22:45:24 diamante kernel: veth9efe4e5: entered allmulticast mode
Dec 10 22:45:24 diamante kernel: veth9efe4e5: entered promiscuous mode
Dec 10 22:45:24 diamante kernel: eth1: renamed from vethaeff011
Dec 10 22:45:24 diamante kernel: docker_gwbridge: port 1(veth9efe4e5) entered blocking state
Dec 10 22:45:24 diamante kernel: docker_gwbridge: port 1(veth9efe4e5) entered forwarding state
Dec 10 22:45:25 diamante kernel: [drm] PCIE GART of 512M enabled (table at 0x000000817EE00000).
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: PSP is resuming...
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: reserve 0x900000 from 0x817d000000 for PSP TMR
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resuming...
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resumed successfully!
Dec 10 22:45:25 diamante kernel: [drm] kiq ring mec 2 pipe 1 q 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec uses VM inv eng 0 on hub 8
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 1 on hub 8
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 4 on hub 8
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Dec 10 22:45:25 diamante kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
Dec 10 22:45:26 diamante kernel: r8169 0000:05:00.0 enp5s0: Link is Down
Dec 10 22:45:27 diamante kernel: Bluetooth: RFCOMM TTY layer initialized
Dec 10 22:45:27 diamante kernel: Bluetooth: RFCOMM socket layer initialized
Dec 10 22:45:27 diamante kernel: Bluetooth: RFCOMM ver 1.11
Dec 10 22:45:27 diamante kernel: block nvme0n1: No UUID available providing old NGUID
Dec 10 22:45:50 diamante kernel: amdgpu 0000:03:00.0: amdgpu: asic/device is runtime suspended
Dec 10 22:47:23 diamante kernel: [drm] PCIE GART of 512M enabled (table at 0x000000817EE00000).
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: PSP is resuming...
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: reserve 0x900000 from 0x817d000000 for PSP TMR
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resuming...
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resumed successfully!
Dec 10 22:47:23 diamante kernel: [drm] kiq ring mec 2 pipe 1 q 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec uses VM inv eng 0 on hub 8
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 1 on hub 8
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 4 on hub 8
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Dec 10 22:47:23 diamante kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
Dec 10 22:47:34 diamante kernel: amdgpu 0000:03:00.0: amdgpu: asic/device is runtime suspended
Dec 10 22:47:37 diamante kernel: [drm] PCIE GART of 512M enabled (table at 0x000000817EE00000).
Dec 10 22:47:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: PSP is resuming...
Dec 10 22:47:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: reserve 0x900000 from 0x817d000000 for PSP TMR
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resuming...
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resumed successfully!
Dec 10 22:47:38 diamante kernel: [drm] kiq ring mec 2 pipe 1 q 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec uses VM inv eng 0 on hub 8
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 1 on hub 8
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 4 on hub 8
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Dec 10 22:47:38 diamante kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
Dec 10 22:47:47 diamante kernel: amdgpu 0000:03:00.0: amdgpu: asic/device is runtime suspended
Dec 10 23:01:37 diamante kernel: [drm] PCIE GART of 512M enabled (table at 0x000000817EE00000).
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: PSP is resuming...
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: reserve 0x900000 from 0x817d000000 for PSP TMR
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resuming...
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resumed successfully!
Dec 10 23:01:37 diamante kernel: [drm] kiq ring mec 2 pipe 1 q 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec uses VM inv eng 0 on hub 8
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 1 on hub 8
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 4 on hub 8
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Dec 10 23:01:37 diamante kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
Dec 10 23:01:44 diamante kernel: amdgpu 0000:03:00.0: amdgpu: asic/device is runtime suspended
Dec 10 23:12:09 diamante kernel: input: WH-CH700N (AVRCP) as /devices/virtual/input/input13
Dec 10 23:38:40 diamante kernel: [drm] PCIE GART of 512M enabled (table at 0x000000817EE00000).
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: PSP is resuming...
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: reserve 0x900000 from 0x817d000000 for PSP TMR
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resuming...
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resumed successfully!
Dec 10 23:38:40 diamante kernel: [drm] kiq ring mec 2 pipe 1 q 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec uses VM inv eng 0 on hub 8
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 1 on hub 8
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 4 on hub 8
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Dec 10 23:38:40 diamante kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
Dec 10 23:38:46 diamante kernel: amdgpu 0000:03:00.0: amdgpu: asic/device is runtime suspended
Dec 11 00:06:17 diamante kernel: [drm] PCIE GART of 512M enabled (table at 0x000000817EE00000).
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: PSP is resuming...
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: reserve 0x900000 from 0x817d000000 for PSP TMR
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resuming...
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resumed successfully!
Dec 11 00:06:17 diamante kernel: [drm] kiq ring mec 2 pipe 1 q 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec uses VM inv eng 0 on hub 8
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 1 on hub 8
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 4 on hub 8
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Dec 11 00:06:17 diamante kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
Dec 11 00:06:17 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:18 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:18 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:19 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:19 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:20 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:20 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:21 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:21 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:22 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:22 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:22 diamante kernel: amdgpu 0000:03:00.0: amdgpu: asic/device is runtime suspended
Dec 11 00:06:23 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:23 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:24 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:24 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:25 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:25 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:26 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:26 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:27 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [CRTC:73:crtc-0] flip_done timed out
Dec 11 00:06:27 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:27 diamante kernel: [drm:amdgpu_dm_atomic_check] *ERROR* [CRTC:73:crtc-0] hw_done or flip_done timed out
Dec 11 00:06:27 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:28 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:28 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:29 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:29 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:30 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:30 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:31 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:31 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:32 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:32 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:33 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:33 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:34 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:34 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:35 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:35 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:36 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:36 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:37 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:37 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:37 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* flip_done timed out
Dec 11 00:06:37 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [CRTC:73:crtc-0] commit wait timed out
Dec 11 00:06:38 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:38 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:39 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:39 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:40 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:40 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:41 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:41 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:42 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:42 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:43 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:43 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:44 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:44 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:45 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:45 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:46 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:46 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:47 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:47 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:48 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* flip_done timed out
Dec 11 00:06:48 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [PLANE:58:plane-3] commit wait timed out
Dec 11 00:06:48 diamante kernel: ------------[ cut here ]------------
Dec 11 00:06:48 diamante kernel: WARNING: CPU: 3 PID: 1080 at drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.c:9221 amdgpu_dm_atomic_commit_tail+0x3b16/0x3cd0
Dec 11 00:06:48 diamante kernel: Modules linked in: uinput rfcomm snd_hrtimer snd_seq snd_seq_device veth vxlan br_netfilter xt_conntrack xfrm_user xfrm_algo xt_addrtype xt_mark nft_compat ctr uhid bnep tun btusb btintel overlay ccm algif_aead uvcvideo uvc videobuf2_vmalloc videobuf2_memops videobuf2_v4l2 videobuf2_common binfmt_misc iwlmvm dell_pc platform_profile ptp pps_core dell_laptop mac80211 dell_wmi ee1004 snd_acp3x_pdm_dma snd_acp3x_rn snd_soc_dmic snd_pci_ps snd_rpl_pci_acp6x dell_smm_hwmon snd_acp_pci snd_acp_legacy_common dell_smbios snd_pci_acp6x iwlwifi snd_pci_acp5x dcdbas dell_wmi_awcc i2c_piix4 dell_wmi_descriptor sparse_keymap snd_rn_pci_acp3x alienware_wmi wmi_bmof snd_acp_config cfg80211 i2c_smbus snd_pci_acp3x snd_hda_codec_hdmi tpm_crb tpm_tis tpm_tis_core dell_rbtn amd_pmc fuse configfs crct10dif_pclmul crc32c_intel xhci_pci polyval_clmulni polyval_generic ccp xhci_hcd i2c_hid_acpi i2c_hid dm_mirror dm_region_hash dm_log pkcs8_key_parser i2c_dev dm_multipath dm_mod efivarfs
Dec 11 00:06:48 diamante kernel: CPU: 3 UID: 0 PID: 1080 Comm: systemd-logind Not tainted 6.12.4-gentoo #4
Dec 11 00:06:48 diamante kernel: Hardware name: Dell Inc. G5 5505/0M8C1F, BIOS 1.24.0 09/05/2024
Dec 11 00:06:48 diamante kernel: RIP: 0010:amdgpu_dm_atomic_commit_tail+0x3b16/0x3cd0
Dec 11 00:06:48 diamante kernel: Code: ab 2f 00 e9 d6 f4 ff ff 48 c7 c7 98 aa 52 83 e8 c0 c2 ca ff e9 b0 fc ff ff 48 c7 c7 c0 aa 52 83 e8 af c2 ca ff e9 e3 fc ff ff <0f> 0b e9 86 ef ff ff 49 8d 87 30 31 04 00 c6 85 48 fe ff ff 00 48
Dec 11 00:06:48 diamante kernel: RSP: 0018:ffffc900038eb778 EFLAGS: 00010002
Dec 11 00:06:48 diamante kernel: RAX: 0000000000000246 RBX: 0000000000000246 RCX: 0000000000000000
Dec 11 00:06:48 diamante kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
Dec 11 00:06:48 diamante kernel: RBP: ffffc900038eb9e0 R08: 0000000000000000 R09: 0000000000000000
Dec 11 00:06:48 diamante kernel: R10: 0000000000000000 R11: 0000000000000000 R12: ffff888113580010
Dec 11 00:06:48 diamante kernel: R13: 0000000000000002 R14: ffff888101244000 R15: ffff8883754ab800
Dec 11 00:06:48 diamante kernel: FS: 00007fc1b0c1a8c0(0000) GS:ffff8883ff4c0000(0000) knlGS:0000000000000000
Dec 11 00:06:48 diamante kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Dec 11 00:06:48 diamante kernel: CR2: 000055a3e1736a98 CR3: 000000010bb32000 CR4: 0000000000350ef0
Dec 11 00:06:48 diamante kernel: Call Trace:
Dec 11 00:06:48 diamante kernel: <TASK>
Dec 11 00:06:48 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b16/0x3cd0
Dec 11 00:06:48 diamante kernel: ? __warn.cold+0x93/0xde
Dec 11 00:06:48 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b16/0x3cd0
Dec 11 00:06:48 diamante kernel: ? report_bug+0xf9/0x130
Dec 11 00:06:48 diamante kernel: ? handle_bug+0x5b/0xa0
Dec 11 00:06:48 diamante kernel: ? exc_invalid_op+0x17/0x80
Dec 11 00:06:48 diamante kernel: ? asm_exc_invalid_op+0x1a/0x20
Dec 11 00:06:48 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b16/0x3cd0
Dec 11 00:06:48 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x2a90/0x3cd0
Dec 11 00:06:48 diamante kernel: commit_tail+0x8f/0x130
Dec 11 00:06:48 diamante kernel: drm_atomic_helper_commit+0x121/0x150
Dec 11 00:06:48 diamante kernel: drm_atomic_commit+0xa4/0xe0
Dec 11 00:06:48 diamante kernel: ? __pfx___drm_printfn_info+0x10/0x10
Dec 11 00:06:48 diamante kernel: drm_client_modeset_commit_atomic+0x1e5/0x230
Dec 11 00:06:48 diamante kernel: drm_client_modeset_commit_locked+0x55/0x160
Dec 11 00:06:48 diamante kernel: __drm_fb_helper_restore_fbdev_mode_unlocked+0x5d/0xd0
Dec 11 00:06:48 diamante kernel: drm_fb_helper_set_par+0x2b/0x40
Dec 11 00:06:48 diamante kernel: fb_set_var+0x22d/0x420
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? tty_ldisc_ref_wait+0x23/0x60
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? tty_unlock+0x14/0x20
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? tty_open+0x5ae/0x680
Dec 11 00:06:48 diamante kernel: fbcon_blank+0x284/0x350
Dec 11 00:06:48 diamante kernel: do_unblank_screen+0xab/0x160
Dec 11 00:06:48 diamante kernel: vt_ioctl+0x571/0x1210
Dec 11 00:06:48 diamante kernel: tty_ioctl+0xe0/0x890
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? __seccomp_filter+0x2f8/0x510
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: __x64_sys_ioctl+0x97/0xe0
Dec 11 00:06:48 diamante kernel: do_syscall_64+0x4b/0x120
Dec 11 00:06:48 diamante kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
Dec 11 00:06:48 diamante kernel: RIP: 0033:0x7fc1b051c3bf
Dec 11 00:06:48 diamante kernel: Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <89> c2 3d 00 f0 ff ff 77 18 48 8b 44 24 18 64 48 2b 04 25 28 00 00
Dec 11 00:06:48 diamante kernel: RSP: 002b:00007fffb77b12e0 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Dec 11 00:06:48 diamante kernel: RAX: ffffffffffffffda RBX: 0000563f33bbf440 RCX: 00007fc1b051c3bf
Dec 11 00:06:48 diamante kernel: RDX: 0000000000000000 RSI: 0000000000004b3a RDI: 0000000000000017
Dec 11 00:06:48 diamante kernel: RBP: 0000000000000017 R08: 00007fffb77b12d0 R09: 0000000000000000
Dec 11 00:06:48 diamante kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000001
Dec 11 00:06:48 diamante kernel: R13: 0000000000000001 R14: 0000563f33b4ad90 R15: 0000563f33b62480
Dec 11 00:06:48 diamante kernel: </TASK>
Dec 11 00:06:48 diamante kernel: ---[ end trace 0000000000000000 ]---
Dec 11 00:06:48 diamante kernel: ------------[ cut here ]------------
Dec 11 00:06:48 diamante kernel: WARNING: CPU: 3 PID: 1080 at drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.c:8609 amdgpu_dm_atomic_commit_tail+0x3b40/0x3cd0
Dec 11 00:06:48 diamante kernel: Modules linked in: uinput rfcomm snd_hrtimer snd_seq snd_seq_device veth vxlan br_netfilter xt_conntrack xfrm_user xfrm_algo xt_addrtype xt_mark nft_compat ctr uhid bnep tun btusb btintel overlay ccm algif_aead uvcvideo uvc videobuf2_vmalloc videobuf2_memops videobuf2_v4l2 videobuf2_common binfmt_misc iwlmvm dell_pc platform_profile ptp pps_core dell_laptop mac80211 dell_wmi ee1004 snd_acp3x_pdm_dma snd_acp3x_rn snd_soc_dmic snd_pci_ps snd_rpl_pci_acp6x dell_smm_hwmon snd_acp_pci snd_acp_legacy_common dell_smbios snd_pci_acp6x iwlwifi snd_pci_acp5x dcdbas dell_wmi_awcc i2c_piix4 dell_wmi_descriptor sparse_keymap snd_rn_pci_acp3x alienware_wmi wmi_bmof snd_acp_config cfg80211 i2c_smbus snd_pci_acp3x snd_hda_codec_hdmi tpm_crb tpm_tis tpm_tis_core dell_rbtn amd_pmc fuse configfs crct10dif_pclmul crc32c_intel xhci_pci polyval_clmulni polyval_generic ccp xhci_hcd i2c_hid_acpi i2c_hid dm_mirror dm_region_hash dm_log pkcs8_key_parser i2c_dev dm_multipath dm_mod efivarfs
Dec 11 00:06:48 diamante kernel: CPU: 3 UID: 0 PID: 1080 Comm: systemd-logind Tainted: G W 6.12.4-gentoo #4
Dec 11 00:06:48 diamante kernel: Tainted: [W]=WARN
Dec 11 00:06:48 diamante kernel: Hardware name: Dell Inc. G5 5505/0M8C1F, BIOS 1.24.0 09/05/2024
Dec 11 00:06:48 diamante kernel: RIP: 0010:amdgpu_dm_atomic_commit_tail+0x3b40/0x3cd0
Dec 11 00:06:48 diamante kernel: Code: 0f 0b e9 86 ef ff ff 49 8d 87 30 31 04 00 c6 85 48 fe ff ff 00 48 89 85 58 fe ff ff e9 e7 cb ff ff 0f 0b 0f 0b e9 2e cc ff ff <0f> 0b e9 7b ef ff ff 48 c7 85 60 fe ff ff 00 00 00 00 48 c7 85 28
Dec 11 00:06:48 diamante kernel: RSP: 0018:ffffc900038eb778 EFLAGS: 00010082
Dec 11 00:06:48 diamante kernel: RAX: 0000000000000001 RBX: 0000000000000246 RCX: 0000000000000000
Dec 11 00:06:48 diamante kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
Dec 11 00:06:48 diamante kernel: RBP: ffffc900038eb9e0 R08: 0000000000000000 R09: 0000000000000000
Dec 11 00:06:48 diamante kernel: R10: 0000000000000000 R11: 0000000000000000 R12: ffff888113580010
Dec 11 00:06:48 diamante kernel: R13: 0000000000000002 R14: ffff888101244000 R15: ffff8883754ab800
Dec 11 00:06:48 diamante kernel: FS: 00007fc1b0c1a8c0(0000) GS:ffff8883ff4c0000(0000) knlGS:0000000000000000
Dec 11 00:06:48 diamante kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Dec 11 00:06:48 diamante kernel: CR2: 000055a3e1736a98 CR3: 000000010bb32000 CR4: 0000000000350ef0
Dec 11 00:06:48 diamante kernel: Call Trace:
Dec 11 00:06:48 diamante kernel: <TASK>
Dec 11 00:06:48 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b40/0x3cd0
Dec 11 00:06:48 diamante kernel: ? __warn.cold+0x93/0xde
Dec 11 00:06:48 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b40/0x3cd0
Dec 11 00:06:48 diamante kernel: ? report_bug+0xf9/0x130
Dec 11 00:06:48 diamante kernel: ? handle_bug+0x5b/0xa0
Dec 11 00:06:48 diamante kernel: ? exc_invalid_op+0x17/0x80
Dec 11 00:06:48 diamante kernel: ? asm_exc_invalid_op+0x1a/0x20
Dec 11 00:06:48 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b40/0x3cd0
Dec 11 00:06:48 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x2a90/0x3cd0
Dec 11 00:06:48 diamante kernel: commit_tail+0x8f/0x130
Dec 11 00:06:48 diamante kernel: drm_atomic_helper_commit+0x121/0x150
Dec 11 00:06:48 diamante kernel: drm_atomic_commit+0xa4/0xe0
Dec 11 00:06:48 diamante kernel: ? __pfx___drm_printfn_info+0x10/0x10
Dec 11 00:06:48 diamante kernel: drm_client_modeset_commit_atomic+0x1e5/0x230
Dec 11 00:06:48 diamante kernel: drm_client_modeset_commit_locked+0x55/0x160
Dec 11 00:06:48 diamante kernel: __drm_fb_helper_restore_fbdev_mode_unlocked+0x5d/0xd0
Dec 11 00:06:48 diamante kernel: drm_fb_helper_set_par+0x2b/0x40
Dec 11 00:06:48 diamante kernel: fb_set_var+0x22d/0x420
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? tty_ldisc_ref_wait+0x23/0x60
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? tty_unlock+0x14/0x20
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? tty_open+0x5ae/0x680
Dec 11 00:06:48 diamante kernel: fbcon_blank+0x284/0x350
Dec 11 00:06:48 diamante kernel: do_unblank_screen+0xab/0x160
Dec 11 00:06:48 diamante kernel: vt_ioctl+0x571/0x1210
Dec 11 00:06:48 diamante kernel: tty_ioctl+0xe0/0x890
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: ? __seccomp_filter+0x2f8/0x510
Dec 11 00:06:48 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:06:48 diamante kernel: __x64_sys_ioctl+0x97/0xe0
Dec 11 00:06:48 diamante kernel: do_syscall_64+0x4b/0x120
Dec 11 00:06:48 diamante kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
Dec 11 00:06:48 diamante kernel: RIP: 0033:0x7fc1b051c3bf
Dec 11 00:06:48 diamante kernel: Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <89> c2 3d 00 f0 ff ff 77 18 48 8b 44 24 18 64 48 2b 04 25 28 00 00
Dec 11 00:06:48 diamante kernel: RSP: 002b:00007fffb77b12e0 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Dec 11 00:06:48 diamante kernel: RAX: ffffffffffffffda RBX: 0000563f33bbf440 RCX: 00007fc1b051c3bf
Dec 11 00:06:48 diamante kernel: RDX: 0000000000000000 RSI: 0000000000004b3a RDI: 0000000000000017
Dec 11 00:06:48 diamante kernel: RBP: 0000000000000017 R08: 00007fffb77b12d0 R09: 0000000000000000
Dec 11 00:06:48 diamante kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000001
Dec 11 00:06:48 diamante kernel: R13: 0000000000000001 R14: 0000563f33b4ad90 R15: 0000563f33b62480
Dec 11 00:06:48 diamante kernel: </TASK>
Dec 11 00:06:48 diamante kernel: ---[ end trace 0000000000000000 ]---
Dec 11 00:06:48 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:48 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:49 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:49 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:50 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:50 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:51 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:51 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:52 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:52 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:53 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:53 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:54 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:54 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:55 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:55 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:56 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:56 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:57 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:57 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:58 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [CRTC:73:crtc-0] flip_done timed out
Dec 11 00:06:58 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:58 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:59 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:06:59 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:00 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:00 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:01 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:01 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:02 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:02 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:03 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:03 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:04 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:04 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:05 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:05 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:06 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:06 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:07 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:07 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:08 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:08 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* flip_done timed out
Dec 11 00:07:08 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [CRTC:73:crtc-0] commit wait timed out
Dec 11 00:07:08 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:09 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:09 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:10 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:10 diamante kernel: [drm] Fence fallback timer expired on ring sdma0
Dec 11 00:07:18 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* flip_done timed out
Dec 11 00:07:18 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [CONNECTOR:87:eDP-1] commit wait timed out
Dec 11 00:07:29 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* flip_done timed out
Dec 11 00:07:29 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [PLANE:58:plane-3] commit wait timed out
Dec 11 00:07:39 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* flip_done timed out
Dec 11 00:07:39 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [PLANE:70:plane-5] commit wait timed out
Dec 11 00:07:39 diamante kernel: ------------[ cut here ]------------
Dec 11 00:07:39 diamante kernel: WARNING: CPU: 3 PID: 1080 at drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.c:9221 amdgpu_dm_atomic_commit_tail+0x3b16/0x3cd0
Dec 11 00:07:39 diamante kernel: Modules linked in: uinput rfcomm snd_hrtimer snd_seq snd_seq_device veth vxlan br_netfilter xt_conntrack xfrm_user xfrm_algo xt_addrtype xt_mark nft_compat ctr uhid bnep tun btusb btintel overlay ccm algif_aead uvcvideo uvc videobuf2_vmalloc videobuf2_memops videobuf2_v4l2 videobuf2_common binfmt_misc iwlmvm dell_pc platform_profile ptp pps_core dell_laptop mac80211 dell_wmi ee1004 snd_acp3x_pdm_dma snd_acp3x_rn snd_soc_dmic snd_pci_ps snd_rpl_pci_acp6x dell_smm_hwmon snd_acp_pci snd_acp_legacy_common dell_smbios snd_pci_acp6x iwlwifi snd_pci_acp5x dcdbas dell_wmi_awcc i2c_piix4 dell_wmi_descriptor sparse_keymap snd_rn_pci_acp3x alienware_wmi wmi_bmof snd_acp_config cfg80211 i2c_smbus snd_pci_acp3x snd_hda_codec_hdmi tpm_crb tpm_tis tpm_tis_core dell_rbtn amd_pmc fuse configfs crct10dif_pclmul crc32c_intel xhci_pci polyval_clmulni polyval_generic ccp xhci_hcd i2c_hid_acpi i2c_hid dm_mirror dm_region_hash dm_log pkcs8_key_parser i2c_dev dm_multipath dm_mod efivarfs
Dec 11 00:07:39 diamante kernel: CPU: 3 UID: 0 PID: 1080 Comm: systemd-logind Tainted: G W 6.12.4-gentoo #4
Dec 11 00:07:39 diamante kernel: Tainted: [W]=WARN
Dec 11 00:07:39 diamante kernel: Hardware name: Dell Inc. G5 5505/0M8C1F, BIOS 1.24.0 09/05/2024
Dec 11 00:07:39 diamante kernel: RIP: 0010:amdgpu_dm_atomic_commit_tail+0x3b16/0x3cd0
Dec 11 00:07:39 diamante kernel: Code: ab 2f 00 e9 d6 f4 ff ff 48 c7 c7 98 aa 52 83 e8 c0 c2 ca ff e9 b0 fc ff ff 48 c7 c7 c0 aa 52 83 e8 af c2 ca ff e9 e3 fc ff ff <0f> 0b e9 86 ef ff ff 49 8d 87 30 31 04 00 c6 85 48 fe ff ff 00 48
Dec 11 00:07:39 diamante kernel: RSP: 0018:ffffc900038eb750 EFLAGS: 00010002
Dec 11 00:07:39 diamante kernel: RAX: 0000000000000246 RBX: 0000000000000246 RCX: 0000000000000000
Dec 11 00:07:39 diamante kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
Dec 11 00:07:39 diamante kernel: RBP: ffffc900038eb9b8 R08: 0000000000000000 R09: 0000000000000000
Dec 11 00:07:39 diamante kernel: R10: 0000000000000000 R11: 0000000000000000 R12: ffff888113580010
Dec 11 00:07:39 diamante kernel: R13: 0000000000000002 R14: ffff888101244000 R15: ffff8883754aaa00
Dec 11 00:07:39 diamante kernel: FS: 00007fc1b0c1a8c0(0000) GS:ffff8883ff4c0000(0000) knlGS:0000000000000000
Dec 11 00:07:39 diamante kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Dec 11 00:07:39 diamante kernel: CR2: 000055a3e1736a98 CR3: 000000010bb32000 CR4: 0000000000350ef0
Dec 11 00:07:39 diamante kernel: Call Trace:
Dec 11 00:07:39 diamante kernel: <TASK>
Dec 11 00:07:39 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b16/0x3cd0
Dec 11 00:07:39 diamante kernel: ? __warn.cold+0x93/0xde
Dec 11 00:07:39 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b16/0x3cd0
Dec 11 00:07:39 diamante kernel: ? report_bug+0xf9/0x130
Dec 11 00:07:39 diamante kernel: ? handle_bug+0x5b/0xa0
Dec 11 00:07:39 diamante kernel: ? exc_invalid_op+0x17/0x80
Dec 11 00:07:39 diamante kernel: ? asm_exc_invalid_op+0x1a/0x20
Dec 11 00:07:39 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b16/0x3cd0
Dec 11 00:07:39 diamante kernel: commit_tail+0x8f/0x130
Dec 11 00:07:39 diamante kernel: drm_atomic_helper_commit+0x121/0x150
Dec 11 00:07:39 diamante kernel: drm_atomic_commit+0xa4/0xe0
Dec 11 00:07:39 diamante kernel: ? __pfx___drm_printfn_info+0x10/0x10
Dec 11 00:07:39 diamante kernel: drm_client_modeset_commit_atomic+0x1e5/0x230
Dec 11 00:07:39 diamante kernel: drm_client_modeset_commit_locked+0x55/0x160
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: drm_fb_helper_pan_display+0xd0/0x220
Dec 11 00:07:39 diamante kernel: fb_pan_display+0x84/0x150
Dec 11 00:07:39 diamante kernel: fb_set_var+0x243/0x420
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? tty_ldisc_ref_wait+0x23/0x60
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? tty_unlock+0x14/0x20
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? tty_open+0x5ae/0x680
Dec 11 00:07:39 diamante kernel: fbcon_blank+0x284/0x350
Dec 11 00:07:39 diamante kernel: do_unblank_screen+0xab/0x160
Dec 11 00:07:39 diamante kernel: vt_ioctl+0x571/0x1210
Dec 11 00:07:39 diamante kernel: tty_ioctl+0xe0/0x890
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? __seccomp_filter+0x2f8/0x510
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: __x64_sys_ioctl+0x97/0xe0
Dec 11 00:07:39 diamante kernel: do_syscall_64+0x4b/0x120
Dec 11 00:07:39 diamante kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
Dec 11 00:07:39 diamante kernel: RIP: 0033:0x7fc1b051c3bf
Dec 11 00:07:39 diamante kernel: Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <89> c2 3d 00 f0 ff ff 77 18 48 8b 44 24 18 64 48 2b 04 25 28 00 00
Dec 11 00:07:39 diamante kernel: RSP: 002b:00007fffb77b12e0 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Dec 11 00:07:39 diamante kernel: RAX: ffffffffffffffda RBX: 0000563f33bbf440 RCX: 00007fc1b051c3bf
Dec 11 00:07:39 diamante kernel: RDX: 0000000000000000 RSI: 0000000000004b3a RDI: 0000000000000017
Dec 11 00:07:39 diamante kernel: RBP: 0000000000000017 R08: 00007fffb77b12d0 R09: 0000000000000000
Dec 11 00:07:39 diamante kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000001
Dec 11 00:07:39 diamante kernel: R13: 0000000000000001 R14: 0000563f33b4ad90 R15: 0000563f33b62480
Dec 11 00:07:39 diamante kernel: </TASK>
Dec 11 00:07:39 diamante kernel: ---[ end trace 0000000000000000 ]---
Dec 11 00:07:39 diamante kernel: ------------[ cut here ]------------
Dec 11 00:07:39 diamante kernel: WARNING: CPU: 3 PID: 1080 at drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.c:8609 amdgpu_dm_atomic_commit_tail+0x3b40/0x3cd0
Dec 11 00:07:39 diamante kernel: Modules linked in: uinput rfcomm snd_hrtimer snd_seq snd_seq_device veth vxlan br_netfilter xt_conntrack xfrm_user xfrm_algo xt_addrtype xt_mark nft_compat ctr uhid bnep tun btusb btintel overlay ccm algif_aead uvcvideo uvc videobuf2_vmalloc videobuf2_memops videobuf2_v4l2 videobuf2_common binfmt_misc iwlmvm dell_pc platform_profile ptp pps_core dell_laptop mac80211 dell_wmi ee1004 snd_acp3x_pdm_dma snd_acp3x_rn snd_soc_dmic snd_pci_ps snd_rpl_pci_acp6x dell_smm_hwmon snd_acp_pci snd_acp_legacy_common dell_smbios snd_pci_acp6x iwlwifi snd_pci_acp5x dcdbas dell_wmi_awcc i2c_piix4 dell_wmi_descriptor sparse_keymap snd_rn_pci_acp3x alienware_wmi wmi_bmof snd_acp_config cfg80211 i2c_smbus snd_pci_acp3x snd_hda_codec_hdmi tpm_crb tpm_tis tpm_tis_core dell_rbtn amd_pmc fuse configfs crct10dif_pclmul crc32c_intel xhci_pci polyval_clmulni polyval_generic ccp xhci_hcd i2c_hid_acpi i2c_hid dm_mirror dm_region_hash dm_log pkcs8_key_parser i2c_dev dm_multipath dm_mod efivarfs
Dec 11 00:07:39 diamante kernel: CPU: 3 UID: 0 PID: 1080 Comm: systemd-logind Tainted: G W 6.12.4-gentoo #4
Dec 11 00:07:39 diamante kernel: Tainted: [W]=WARN
Dec 11 00:07:39 diamante kernel: Hardware name: Dell Inc. G5 5505/0M8C1F, BIOS 1.24.0 09/05/2024
Dec 11 00:07:39 diamante kernel: RIP: 0010:amdgpu_dm_atomic_commit_tail+0x3b40/0x3cd0
Dec 11 00:07:39 diamante kernel: Code: 0f 0b e9 86 ef ff ff 49 8d 87 30 31 04 00 c6 85 48 fe ff ff 00 48 89 85 58 fe ff ff e9 e7 cb ff ff 0f 0b 0f 0b e9 2e cc ff ff <0f> 0b e9 7b ef ff ff 48 c7 85 60 fe ff ff 00 00 00 00 48 c7 85 28
Dec 11 00:07:39 diamante kernel: RSP: 0018:ffffc900038eb750 EFLAGS: 00010086
Dec 11 00:07:39 diamante kernel: RAX: 0000000000000001 RBX: 0000000000000246 RCX: 0000000000000000
Dec 11 00:07:39 diamante kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
Dec 11 00:07:39 diamante kernel: RBP: ffffc900038eb9b8 R08: 0000000000000000 R09: 0000000000000000
Dec 11 00:07:39 diamante kernel: R10: 0000000000000000 R11: 0000000000000000 R12: ffff888113580010
Dec 11 00:07:39 diamante kernel: R13: 0000000000000002 R14: ffff888101244000 R15: ffff8883754aaa00
Dec 11 00:07:39 diamante kernel: FS: 00007fc1b0c1a8c0(0000) GS:ffff8883ff4c0000(0000) knlGS:0000000000000000
Dec 11 00:07:39 diamante kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Dec 11 00:07:39 diamante kernel: CR2: 000055a3e1736a98 CR3: 000000010bb32000 CR4: 0000000000350ef0
Dec 11 00:07:39 diamante kernel: Call Trace:
Dec 11 00:07:39 diamante kernel: <TASK>
Dec 11 00:07:39 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b40/0x3cd0
Dec 11 00:07:39 diamante kernel: ? __warn.cold+0x93/0xde
Dec 11 00:07:39 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b40/0x3cd0
Dec 11 00:07:39 diamante kernel: ? report_bug+0xf9/0x130
Dec 11 00:07:39 diamante kernel: ? handle_bug+0x5b/0xa0
Dec 11 00:07:39 diamante kernel: ? exc_invalid_op+0x17/0x80
Dec 11 00:07:39 diamante kernel: ? asm_exc_invalid_op+0x1a/0x20
Dec 11 00:07:39 diamante kernel: ? amdgpu_dm_atomic_commit_tail+0x3b40/0x3cd0
Dec 11 00:07:39 diamante kernel: commit_tail+0x8f/0x130
Dec 11 00:07:39 diamante kernel: drm_atomic_helper_commit+0x121/0x150
Dec 11 00:07:39 diamante kernel: drm_atomic_commit+0xa4/0xe0
Dec 11 00:07:39 diamante kernel: ? __pfx___drm_printfn_info+0x10/0x10
Dec 11 00:07:39 diamante kernel: drm_client_modeset_commit_atomic+0x1e5/0x230
Dec 11 00:07:39 diamante kernel: drm_client_modeset_commit_locked+0x55/0x160
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: drm_fb_helper_pan_display+0xd0/0x220
Dec 11 00:07:39 diamante kernel: fb_pan_display+0x84/0x150
Dec 11 00:07:39 diamante kernel: fb_set_var+0x243/0x420
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? tty_ldisc_ref_wait+0x23/0x60
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? tty_unlock+0x14/0x20
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? tty_open+0x5ae/0x680
Dec 11 00:07:39 diamante kernel: fbcon_blank+0x284/0x350
Dec 11 00:07:39 diamante kernel: do_unblank_screen+0xab/0x160
Dec 11 00:07:39 diamante kernel: vt_ioctl+0x571/0x1210
Dec 11 00:07:39 diamante kernel: tty_ioctl+0xe0/0x890
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: ? __seccomp_filter+0x2f8/0x510
Dec 11 00:07:39 diamante kernel: ? srso_return_thunk+0x5/0x5f
Dec 11 00:07:39 diamante kernel: __x64_sys_ioctl+0x97/0xe0
Dec 11 00:07:39 diamante kernel: do_syscall_64+0x4b/0x120
Dec 11 00:07:39 diamante kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
Dec 11 00:07:39 diamante kernel: RIP: 0033:0x7fc1b051c3bf
Dec 11 00:07:39 diamante kernel: Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <89> c2 3d 00 f0 ff ff 77 18 48 8b 44 24 18 64 48 2b 04 25 28 00 00
Dec 11 00:07:39 diamante kernel: RSP: 002b:00007fffb77b12e0 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Dec 11 00:07:39 diamante kernel: RAX: ffffffffffffffda RBX: 0000563f33bbf440 RCX: 00007fc1b051c3bf
Dec 11 00:07:39 diamante kernel: RDX: 0000000000000000 RSI: 0000000000004b3a RDI: 0000000000000017
Dec 11 00:07:39 diamante kernel: RBP: 0000000000000017 R08: 00007fffb77b12d0 R09: 0000000000000000
Dec 11 00:07:39 diamante kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000001
Dec 11 00:07:39 diamante kernel: R13: 0000000000000001 R14: 0000563f33b4ad90 R15: 0000563f33b62480
Dec 11 00:07:39 diamante kernel: </TASK>
Dec 11 00:07:39 diamante kernel: ---[ end trace 0000000000000000 ]---
Dec 11 00:07:49 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [CRTC:73:crtc-0] flip_done timed out
Dec 11 00:07:51 diamante kernel: [drm] PCIE GART of 512M enabled (table at 0x000000817EE00000).
Dec 11 00:07:51 diamante kernel: amdgpu 0000:03:00.0: amdgpu: PSP is resuming...
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: reserve 0x900000 from 0x817d000000 for PSP TMR
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resuming...
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resumed successfully!
Dec 11 00:07:52 diamante kernel: [drm] kiq ring mec 2 pipe 1 q 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec uses VM inv eng 0 on hub 8
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 1 on hub 8
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 4 on hub 8
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Dec 11 00:07:52 diamante kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
Dec 11 00:07:57 diamante kernel: amdgpu 0000:03:00.0: amdgpu: asic/device is runtime suspended
Dec 11 00:07:59 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* flip_done timed out
Dec 11 00:07:59 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [CRTC:73:crtc-0] commit wait timed out
Dec 11 00:08:10 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* flip_done timed out
Dec 11 00:08:10 diamante kernel: amdgpu 0000:07:00.0: [drm] *ERROR* [CONNECTOR:87:eDP-1] commit wait timed out
Dec 11 00:08:10 diamante kernel: sysrq: Keyboard mode set to system default
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/amd: Require CONFIG_HOTPLUG_PCI_PCIE for BOCO
2024-12-11 22:16 ` Gabriel Marcano
@ 2024-12-11 22:18 ` Mario Limonciello
0 siblings, 0 replies; 8+ messages in thread
From: Mario Limonciello @ 2024-12-11 22:18 UTC (permalink / raw)
To: Gabriel Marcano, Alex Deucher
Cc: amd-gfx@lists.freedesktop.org, Mario Limonciello
On 12/11/2024 16:16, Gabriel Marcano wrote:
> >On 12/11/2024 15:41, Alex Deucher wrote:
>>> On Wed, Dec 11, 2024 at 3:19 PM Mario Limonciello <superm1@kernel.org> wrote:
>>>>
>>>> On 12/11/2024 14:08, Alex Deucher wrote:
>>>>> On Wed, Dec 11, 2024 at 10:56 AM Mario Limonciello <superm1@kernel.org> wrote:
>>>>>>
>>>>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>>>>
>>>>>> If the kernel hasn't been compiled with PCIe hotplug support this
>>>>>> can lead to problems with dGPUs that use BOCO because they effectively
>>>>>> drop off the bus.
>>>>>>
>>>>>> To prevent issues, disable BOCO support when compiled without PCIe hotplug.
>>>>>>
>>>>>> Reported-by: Gabriel Marcano <gabemarcano@yahoo.com>
>>>>>> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1707#note_2696862
>>>>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>>>>
>>>>> Acked-by: Alex Deucher <alexander.deucher@amd.com>
>>>>
>>>> Thx.
>>>>
>>>>>
>>>>> Seems like this should affect any device which supports d3cold. Maybe
>>>>> we want something more general as well?
>>>>
>>>> Any specific ideas? One of these two hunks I think make sense, leaning
>>>> upon the second one more strongly.
>>>
>>> Actually, I wonder if the affected hardware pre-dates d3cold and uses
>>> the old proprietary AMD ATPX interface to control dGPU power. In that
>>> case, the d3cold is managed by the driver rather than the PCI/ACPI
>>> subsystems. IIRC, there was a workaround in the PCIe hotplug code to
>>> avoid calling the pci remove function when the driver powered down the
>>> GPU via ATPX (or the nvidia equivalent). If so, this check should go
>>> in amdgpu_device_supports_px() instead.
>>
>> Gabriel,
>>
>> Can you please share a full kernel log so we can clarify which method
>> your hardware uses?
>>
>
> Sure thing. I am attaching a kernel output from last night (it actually crashed
> what looks to be the renoir APU as I tried to turn off the computer, which
> shows up in the logs towards the end).
>
> Some caveats about my system:
> - I'm using some modified ACPI tables:
> - I've tweaked some WMI-related WMAX code (read/write GPIO for RGB controller)
> - I've fixed a missing symbol issue (renamed _EC0 to __EC)
> - Fixed a bunch of other warnings reported by iasl
> - I have `#define DEBUG 1` in amdgpu_drv.c
> - I have a patch from https://bugzilla.kernel.org/show_bug.cgi?id=215884
> applied
> - My kernel is using Gentoo patches
>
> Looking at my dmesg output, it looks like I'm using ATPX:
> [ +0.000022] amdgpu: vga_switcheroo: detected switching method
> \_SB_.PCI0.GP17.VGA_.ATPX handle
> [ +0.001561] amdgpu: ATPX version 1, functions 0x00000001
> [ +0.000120] amdgpu: ATPX Hybrid Graphics
>
> Also I see this in my ACPI table dissasembly:
> Scope (\_SB.PCI0.GP17.VGA)
> {
> Name (M189, Buffer (0x0100){})
> Name (M190, Ones)
> Name (M191, Ones)
> Method (ATPX, 2, Serialized)
> {
>
>
> If you need me to recompile the kernel and/or disable my changes to my ACPI
> tables, let me know.
Your log also reports this though:
amdgpu 0000:03:00.0: amdgpu: Using BOCO for runtime pm
>
> Thanks,
>
> Gabriel
>
>
>> Thanks,
>>>
>>> Alex
>>>
>>>>
>>>>
>>>>
>>>> diff --git a/drivers/pci/pci.c
>>>> b/drivers/pci/pci.c
>>>> index 0b29ec6e8e5e2..01691f1d26fbe 100644
>>>> --- a/drivers/pci/pci.c
>>>> +++ b/drivers/pci/pci.c
>>>> @@ -2751,6 +2751,10 @@ int pci_prepare_to_sleep(struct pci_dev *dev)
>>>> if (target_state == PCI_POWER_ERROR)
>>>> return -EIO;
>>>>
>>>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
>>>> + target_state == PCI_D3cold)
>>>> + return -EBUSY;
>>>> +
>>>> pci_enable_wake(dev, target_state, wakeup);
>>>>
>>>> error = pci_set_power_state(dev, target_state);
>>>> @@ -2797,6 +2801,10 @@ int pci_finish_runtime_suspend(struct pci_dev *dev)
>>>> if (target_state == PCI_POWER_ERROR)
>>>> return -EIO;
>>>>
>>>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE) &&
>>>> + target_state == PCI_D3cold)
>>>> + return -EBUSY;
>>>> +
>>>> __pci_enable_wake(dev, target_state, pci_dev_run_wake(dev));
>>>>
>>>> error = pci_set_power_state(dev, target_state);
>>>>>
>>>>> Alex
>>>>>
>>>>>> ---
>>>>>> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 +++
>>>>>> 1 file changed, 3 insertions(+)
>>>>>>
>>>>>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>>>> index 764d41434a82f..7db796ebb967e 100644
>>>>>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>>>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>>>>>> @@ -419,6 +419,9 @@ bool amdgpu_device_supports_boco(struct drm_device *dev)
>>>>>> {
>>>>>> struct amdgpu_device *adev = drm_to_adev(dev);
>>>>>>
>>>>>> + if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE))
>>>>>> + return false;
>>>>>> +
>>>>>> if (adev->has_pr3 ||
>>>>>> ((adev->flags & AMD_IS_PX) && amdgpu_is_atpx_hybrid()))
>>>>>> return true;
>>>>>> --
>>>>>> 2.43.0
>>>>>>
>>>>
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-12-12 14:04 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-11 15:56 [PATCH] drm/amd: Require CONFIG_HOTPLUG_PCI_PCIE for BOCO Mario Limonciello
2024-12-11 20:08 ` Alex Deucher
2024-12-11 20:19 ` Mario Limonciello
2024-12-11 21:41 ` Alex Deucher
2024-12-11 21:43 ` Mario Limonciello
2024-12-11 22:03 ` Mario Limonciello
2024-12-11 22:16 ` Gabriel Marcano
2024-12-11 22:18 ` Mario Limonciello
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.