Using an XHCI device to wakeup the system from s2idle fails when that XHCI device is connected to a USB-C port for an AMD USB4 router. Due to commit 9d26d3a8f1b0 ("PCI: Put PCIe ports into D3 during suspend") all root port go into D3 during s2idle. When the root ports are in D3 over s2idle it's not possible for the platform firmware to properly identify the wakeup source. As a user presses a key on a keyboard the APU will exit hardware sleep, but no wake source will be active so the kernel will let the APU enter back into a hardware sleep state. Here is an example of that sequence of events. The USB keyboard was pressed after 11.9 seconds, and then a GPIO was triggered after another 12 seconds. ``` PM: suspend-to-idle ACPI: EC: ACPI EC GPE status set ACPI: PM: Rearming ACPI SCI for wakeup amd_pmc AMDI0007:00: SMU idlemask s0i3: 0x8fff9eb5 Timekeeping suspended for 11.985 seconds PM: Triggering wakeup from IRQ 9 ACPI: EC: ACPI EC GPE status set ACPI: EC: ACPI EC GPE dispatched ACPI: EC: ACPI EC work flushed ACPI: EC: ACPI EC work flushed ACPI: PM: Rearming ACPI SCI for wakeup amd_pmc AMDI0007:00: SMU idlemask s0i3: 0x8fff9eb5 PM: Triggering wakeup from IRQ 9 ACPI: EC: ACPI EC GPE status set ACPI: PM: Rearming ACPI SCI for wakeup amd_pmc AMDI0007:00: SMU idlemask s0i3: 0x8fff9eb5 Timekeeping suspended for 12.916 seconds PM: Triggering wakeup from IRQ 9 PM: Triggering wakeup from IRQ 7 ACPI: EC: ACPI EC GPE status set ACPI: EC: ACPI EC GPE dispatched ACPI: EC: ACPI EC work flushed ACPI: PM: Wakeup after ACPI Notify sync PM: resume from suspend-to-idle ``` If the root ports are in D0 during s2idle, then the wake source is properly identified and an IRQ is active for the root port, waking the system up. Here is the same sequence with root ports in D0. The USB keyboard was pressed after 11 seconds. ``` PM: suspend-to-idle ACPI: EC: ACPI EC GPE status set ACPI: PM: Rearming ACPI SCI for wakeup amd_pmc AMDI0007:00: SMU idlemask s0i3: 0x8fff9eb5 Timekeeping suspended for 11.138 seconds PM: Triggering wakeup from IRQ 9 ACPI: PM: ACPI non-EC GPE wakeup PM: resume from suspend-to-idle PM: Triggering wakeup from IRQ 40 ``` Comparing registers between Linux and Windows 11 this behavior to put root ports into D3 at suspend is unique to Linux. Windows does not put the root ports into D3 over Modern Standby. As this policy change to put root ports into D3 if they're manufactured after 2015 was originally introduced for Intel systems narrow it down to only apply there. Reported-by: Iain Lane <iain@xxxxxxxxxxxxxxxxxxx> Closes: https://forums.lenovo.com/t5/Ubuntu/Z13-can-t-resume-from-suspend-with-external-USB-keyboard/m-p/5217121 Signed-off-by: Mario Limonciello <mario.limonciello@xxxxxxx> --- drivers/pci/pci.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 5ede93222bc1..7d1b078b8d40 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -3010,12 +3010,17 @@ bool pci_bridge_d3_possible(struct pci_dev *bridge) if (dmi_check_system(bridge_d3_blacklist)) return false; +#ifdef CONFIG_X86 /* - * It should be safe to put PCIe ports from 2015 or newer - * to D3. + * It should be safe to put PCIe ports from Intel systems + * from 2015 or newer to D3. + * Windows 11 does not do this over Modern Standby and this is + * known to cause problems with s2idle on some AMD systems. */ - if (dmi_get_bios_year() >= 2015) + if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL && + dmi_get_bios_year() >= 2015) return true; +#endif break; } -- 2.34.1