diff mbox series

ACPI: EC: Set ec_no_wakeup for Lenovo Go S

Message ID 20250331204442.1727618-1-superm1@kernel.org
State New
Headers show
Series ACPI: EC: Set ec_no_wakeup for Lenovo Go S | expand

Commit Message

Mario Limonciello March 31, 2025, 8:44 p.m. UTC
From: Mario Limonciello <mario.limonciello@amd.com>

When AC adapter is unplugged or plugged in EC wakes from
HW sleep but APU doesn't enter back into HW sleep.

The reason this hapens is that when APU exits HW sleep the power
rails the EC controls will power up the TCON.  The TCON has a
GPIO that will be toggled during this time.  The GPIO is not marked
as a wakeup source however GPIO controller still has an unserviced
interrupt and it will block entering HW sleep again. Clearing the
GPIO doesn't help, the TCON raises it again until it's been initialized
by i2c-hid.

Fixing this would require TCON F/W changes and it's already broken
in the wild on production hardware.

To avoid triggering this issue add a quirk to avoid letting EC wake
up system at all.  The power button still works properly on this system.

Cc: Xino JS1 Ni <nijs1@lenovo.com>
Reported-by: Antheas Kapenekakis <lkml@antheas.dev>
Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/3929
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
---
 drivers/acpi/ec.c | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

Comments

Mario Limonciello April 3, 2025, 7:56 p.m. UTC | #1
On 4/2/2025 3:37 PM, Antheas Kapenekakis wrote:

>> Maybe I'm failing at my search-engine-foo, could you point me at some
>> docs about this AC/DC burst stuff?
> 
> AC/DC Burst/AC/DC Burst Suppresed are the events in Sleep Study
> https://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/modern-standby-sleepstudy
> 
> You can see those when running a sleep study and unplugging a
> connector. I think suppressed is unplugging
> 
> Then here is the description for plugging in a charger
> https://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/modern-standby-wake-sources#environmental-context-changes-1
> 
>> The Windows power manager will turn on the display when the battery subsystem has indicated
>> AC power has been connected. The GPIO interrupt for power source changes must cause the
>> ACPI _PSR method under the power supply device to be executed. The power subsystem must
>> wake the SoC any time the power source changes, including when the system is attached or
>> removed from a dock that has a battery or AC power source. After AC power is connected,
>> the display will remain on for five seconds, unless there is input to the system during this five-second window.
> 
> And here for unplugging:
> https://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/modern-standby-wake-sources#environmental-context-changes-2
> 
>> The GPIO interrupt for power source changes must cause the ACPI _PSR method under
>> the power supply device to be executed. The power subsystem must wake the SoC any time
>> the power source changes, including when the system is attached or removed from a dock
>> that has a battery or AC power source.

I suppose this could actually just be another way to say that there is a 
flurry of EC activity as a result of the ACPI SCI and they characterize 
that activity as a "burst" associated with unplug or plug.  It would be 
good to find actual documentation though instead of guessing.

> 
> I guess from the description it is not clear that the device stays on
> for 5 seconds when unplugging, but from empirical testing I want to
> say it does. It has been a while. I left 3 devices like an hour ago on
> Windows and none of them managed to sleep, so I cannot verify this at
> the moment though.
> 

During "display off" there is other activity that goes on until reaching 
resiliency on Microsoft side.  So it's not really cut and dry periods of 
time.

If I was to hypothesize when the screen off wakeup occurs the OS looks 
at the amount of time that has passed and if there was any scheduled 
tasks for the next wakeup gets them done before going back down.
diff mbox series

Patch

diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index 8db09d81918fb..3c5f34892734e 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -2301,6 +2301,34 @@  static const struct dmi_system_id acpi_ec_no_wakeup[] = {
 			DMI_MATCH(DMI_PRODUCT_FAMILY, "103C_5336AN HP ZHAN 66 Pro"),
 		},
 	},
+	/*
+	 * Lenovo Legion Go S; touchscreen blocks HW sleep when woken up from EC
+	 * https://gitlab.freedesktop.org/drm/amd/-/issues/3929
+	 */
+	{
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "83L3"),
+		}
+	},
+	{
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "83N6"),
+		}
+	},
+	{
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "83Q2"),
+		}
+	},
+	{
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "83Q3"),
+		}
+	},
 	{ },
 };