diff mbox series

[v2] ACPI: PM: postpone bringing devices to D0 unless we need them

Message ID YNJYm34h3Z9yfm+k@google.com
State Accepted
Commit f7599be2bb7694d94b65a57a74aba75f2c101c28
Headers show
Series [v2] ACPI: PM: postpone bringing devices to D0 unless we need them | expand

Commit Message

Dmitry Torokhov June 22, 2021, 9:39 p.m. UTC
Currently ACPI power domain brings devices into D0 state in the "resume
early" phase. Normally this does not cause any issues, as powering up
happens quickly. However there are peripherals that have certain timing
requirements for powering on, for example some models of Elan
touchscreens need 300msec after powering up/releasing reset line before
they can accept commands from the host. Such devices will dominate
the time spent in early resume phase and cause increase in overall
resume time as we wait for early resume to complete before we can
proceed to the normal resume stage.

There are ways for a driver to indicate that it can tolerate device
being in the low power mode and that it knows how to power the device
back up when resuming, bit that requires changes to individual drivers
that may not really care about details of ACPI controlled power
management.

This change attempts to solve this issue at ACPI power domain level, by
postponing powering up device until we get to the normal resume stage,
unless there is early resume handler defined for the device, or device
does not declare any resume handlers, in which case we continue powering
up such devices early. This allows us to shave off several hundred
milliseconds of resume time on affected systems.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---

v2:

- do not call acpi_device_wakeup_disable() in early resume when
  we postponing transition to D0, do it all in normal resume phase
  (Rafael's feedback)

- reduce patch noise in acpi_subsys_resume_early() per Rafael's
  comments

 drivers/acpi/device_pm.c | 32 +++++++++++++++++++++++++++++++-
 1 file changed, 31 insertions(+), 1 deletion(-)

Comments

Rafael J. Wysocki June 23, 2021, 5:36 p.m. UTC | #1
On Tue, Jun 22, 2021 at 11:39 PM Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
>

> Currently ACPI power domain brings devices into D0 state in the "resume

> early" phase. Normally this does not cause any issues, as powering up

> happens quickly. However there are peripherals that have certain timing

> requirements for powering on, for example some models of Elan

> touchscreens need 300msec after powering up/releasing reset line before

> they can accept commands from the host. Such devices will dominate

> the time spent in early resume phase and cause increase in overall

> resume time as we wait for early resume to complete before we can

> proceed to the normal resume stage.

>

> There are ways for a driver to indicate that it can tolerate device

> being in the low power mode and that it knows how to power the device

> back up when resuming, bit that requires changes to individual drivers

> that may not really care about details of ACPI controlled power

> management.

>

> This change attempts to solve this issue at ACPI power domain level, by

> postponing powering up device until we get to the normal resume stage,

> unless there is early resume handler defined for the device, or device

> does not declare any resume handlers, in which case we continue powering

> up such devices early. This allows us to shave off several hundred

> milliseconds of resume time on affected systems.

>

> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

> ---

>

> v2:

>

> - do not call acpi_device_wakeup_disable() in early resume when

>   we postponing transition to D0, do it all in normal resume phase

>   (Rafael's feedback)

>

> - reduce patch noise in acpi_subsys_resume_early() per Rafael's

>   comments


Applied as 5.14 material, thanks!

>  drivers/acpi/device_pm.c | 32 +++++++++++++++++++++++++++++++-

>  1 file changed, 31 insertions(+), 1 deletion(-)

>

> diff --git a/drivers/acpi/device_pm.c b/drivers/acpi/device_pm.c

> index 096153761ebc..8afa66bdb3ce 100644

> --- a/drivers/acpi/device_pm.c

> +++ b/drivers/acpi/device_pm.c

> @@ -1131,19 +1131,48 @@ static int acpi_subsys_resume_noirq(struct device *dev)

>   *

>   * Use ACPI to put the given device into the full-power state and carry out the

>   * generic early resume procedure for it during system transition into the

> - * working state.

> + * working state, but only do that if device either defines early resume

> + * handler, or does not define power operations at all. Otherwise powering up

> + * of the device is postponed to the normal resume phase.

>   */

>  static int acpi_subsys_resume_early(struct device *dev)

>  {

> +       const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;

>         int ret;

>

>         if (dev_pm_skip_resume(dev))

>                 return 0;

>

> +       if (pm && !pm->resume_early) {

> +               dev_dbg(dev, "postponing D0 transition to normal resume stage\n");

> +               return 0;

> +       }

> +

>         ret = acpi_dev_resume(dev);

>         return ret ? ret : pm_generic_resume_early(dev);

>  }

>

> +/**

> + * acpi_subsys_resume - Resume device using ACPI.

> + * @dev: Device to Resume.

> + *

> + * Use ACPI to put the given device into the full-power state if it has not been

> + * powered up during early resume phase, and carry out the generic resume

> + * procedure for it during system transition into the working state.

> + */

> +static int acpi_subsys_resume(struct device *dev)

> +{

> +       const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;

> +       int ret = 0;

> +

> +       if (!dev_pm_skip_resume(dev) && pm && !pm->resume_early) {

> +               dev_dbg(dev, "executing postponed D0 transition\n");

> +               ret = acpi_dev_resume(dev);

> +       }

> +

> +       return ret ? ret : pm_generic_resume(dev);

> +}

> +

>  /**

>   * acpi_subsys_freeze - Run the device driver's freeze callback.

>   * @dev: Device to handle.

> @@ -1236,6 +1265,7 @@ static struct dev_pm_domain acpi_general_pm_domain = {

>                 .prepare = acpi_subsys_prepare,

>                 .complete = acpi_subsys_complete,

>                 .suspend = acpi_subsys_suspend,

> +               .resume = acpi_subsys_resume,

>                 .suspend_late = acpi_subsys_suspend_late,

>                 .suspend_noirq = acpi_subsys_suspend_noirq,

>                 .resume_noirq = acpi_subsys_resume_noirq,

> --

> 2.32.0.288.g62a8d224e6-goog

>

>

> --

> Dmitry
diff mbox series

Patch

diff --git a/drivers/acpi/device_pm.c b/drivers/acpi/device_pm.c
index 096153761ebc..8afa66bdb3ce 100644
--- a/drivers/acpi/device_pm.c
+++ b/drivers/acpi/device_pm.c
@@ -1131,19 +1131,48 @@  static int acpi_subsys_resume_noirq(struct device *dev)
  *
  * Use ACPI to put the given device into the full-power state and carry out the
  * generic early resume procedure for it during system transition into the
- * working state.
+ * working state, but only do that if device either defines early resume
+ * handler, or does not define power operations at all. Otherwise powering up
+ * of the device is postponed to the normal resume phase.
  */
 static int acpi_subsys_resume_early(struct device *dev)
 {
+	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
 	int ret;
 
 	if (dev_pm_skip_resume(dev))
 		return 0;
 
+	if (pm && !pm->resume_early) {
+		dev_dbg(dev, "postponing D0 transition to normal resume stage\n");
+		return 0;
+	}
+
 	ret = acpi_dev_resume(dev);
 	return ret ? ret : pm_generic_resume_early(dev);
 }
 
+/**
+ * acpi_subsys_resume - Resume device using ACPI.
+ * @dev: Device to Resume.
+ *
+ * Use ACPI to put the given device into the full-power state if it has not been
+ * powered up during early resume phase, and carry out the generic resume
+ * procedure for it during system transition into the working state.
+ */
+static int acpi_subsys_resume(struct device *dev)
+{
+	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
+	int ret = 0;
+
+	if (!dev_pm_skip_resume(dev) && pm && !pm->resume_early) {
+		dev_dbg(dev, "executing postponed D0 transition\n");
+		ret = acpi_dev_resume(dev);
+	}
+
+	return ret ? ret : pm_generic_resume(dev);
+}
+
 /**
  * acpi_subsys_freeze - Run the device driver's freeze callback.
  * @dev: Device to handle.
@@ -1236,6 +1265,7 @@  static struct dev_pm_domain acpi_general_pm_domain = {
 		.prepare = acpi_subsys_prepare,
 		.complete = acpi_subsys_complete,
 		.suspend = acpi_subsys_suspend,
+		.resume = acpi_subsys_resume,
 		.suspend_late = acpi_subsys_suspend_late,
 		.suspend_noirq = acpi_subsys_suspend_noirq,
 		.resume_noirq = acpi_subsys_resume_noirq,