On Wed, Feb 12, 2025 at 2:49 PM Armin Wolf <W_Armin@xxxxxx> wrote: > > Am 09.02.25 um 14:14 schrieb Mario Limonciello: > > > > > > > On 2/8/25 11:59, Rafael J. Wysocki wrote: > >> On Sat, Feb 8, 2025 at 5:22 PM Mario Limonciello <superm1@xxxxxxxxxx> > >> wrote: > >>> > >>> From: Mario Limonciello <mario.limonciello@xxxxxxx> > >>> > >>> On Windows the OS will wake up when plugged or unplugged from AC > >>> adapter. > >>> Depending upon whether the system was plugged in or unplugged will > >>> determine whether the "display turns on". If there is no user activity > >>> for some time then it goes back to sleep. > >>> > >>> In Linux plugging or unplugging an adapter will wake the SoC from HW > >>> sleep but then the Linux kernel puts it right back into HW sleep > >>> immediately unless there is another interrupt active (such as a PME or > >>> GPIO). > >>> > >>> To get closer to the Windows behavior, record the state of the battery > >>> when going into suspend and compare it when updating battery status > >>> during the s2idle loop. If it's changed, wake the system. > >>> > >>> This can be restored to previous behavior by disabling the ACPI battery > >>> device `power/wakeup` sysfs file. > >> > >> Why is this desirable? > >> > >> What if the AC is connected to a suspended laptop when the lid is > >> still closed? Is it really a good idea to resume it then? > > > > Yes; that's the exact situation I wanted this to work. I have a dock > > connected to some monitors, power supply, keyboard, and mouse. I want > > the machine to wake up when it's connected to the dock but still closed. > > > > That's how Windows works at least. > > > >> > >> Frankly, I'd prefer the existing behavior to be still the default. > > > > Since this is hooking into the existing wakeups that can happen for > > battery I guess that there isn't a good way to configure one but not > > the other. > > > > Would it be better to do something similar in the ACPI power supply > > device? > > Hi, > > i believe that handling the wakeup inside the ACPI power supply device would make more sense, because the current patch will also cause the machine to wake up > if the battery has finished charging. This behavior would be quite counterintuitive. Good point. Also, in Linux there is a concept of "system wakeup devices" which IIUC is not present in (current) Windows, at least not in this form. That is, the user can select devices that are allowed to wake up the system from sleep via the /sys/dev/ces/.../power/wakeup attributes (all wakeup-capable devices should have them). If this is enabled, device_may_wakeup() returns true and this is the case when the given device is expected to wake up the system from sleep.