From 56c82c15a632303a3cca37359dd5906d200d344c Mon Sep 17 00:00:00 2001 From: Tomasz Leman Date: Tue, 25 Jun 2024 10:50:09 +0200 Subject: [PATCH] boards: ace30: Enable system-managed device power management Enable the system-managed device power management feature for the ACE30 PTL board configuration. This feature allows the power management subsystem to automatically suspend devices before entering a low power state and resume them after waking up. The following configuration option has been added: - `CONFIG_PM_DEVICE_SYSTEM_MANAGED=y`: This option is set to enable system-managed device power management, ensuring that the power management subsystem takes care of suspending and resuming devices as part of the power state transitions. This change is in line with the power management strategy to minimize power consumption and manage device states more efficiently without the need for explicit device power state management in the application code. Signed-off-by: Tomasz Leman --- app/boards/intel_adsp_ace30_ptl.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/app/boards/intel_adsp_ace30_ptl.conf b/app/boards/intel_adsp_ace30_ptl.conf index 80570f1736ab..cac5d9d2118a 100644 --- a/app/boards/intel_adsp_ace30_ptl.conf +++ b/app/boards/intel_adsp_ace30_ptl.conf @@ -11,6 +11,7 @@ CONFIG_PM=y CONFIG_PM_DEVICE=y CONFIG_PM_DEVICE_RUNTIME=y CONFIG_PM_DEVICE_POWER_DOMAIN=y +CONFIG_PM_DEVICE_SYSTEM_MANAGED=y CONFIG_PM_POLICY_CUSTOM=y CONFIG_ADSP_IMR_CONTEXT_SAVE=y