summaryrefslogtreecommitdiff
path: root/lib/igt_pm.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/igt_pm.c')
-rw-r--r--lib/igt_pm.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 94d4dd2d..6e96db22 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -108,6 +108,23 @@ static int __igt_pm_audio_restore_runtime_pm(void)
return 0;
}
+static void igt_pm_audio_restore_runtime_pm(void)
+{
+ int ret;
+
+ if (!__igt_pm_audio_runtime_power_save[0])
+ return;
+
+ igt_debug("Restoring audio power management to '%s' and '%s'\n",
+ __igt_pm_audio_runtime_power_save,
+ __igt_pm_audio_runtime_control);
+
+ ret = __igt_pm_audio_restore_runtime_pm();
+ if (ret)
+ igt_warn("Failed to restore runtime audio PM! (errno=%d)\n",
+ ret);
+}
+
static void __igt_pm_audio_runtime_exit_handler(int sig)
{
__igt_pm_audio_restore_runtime_pm();
@@ -415,6 +432,30 @@ static int __igt_restore_runtime_pm(void)
return 0;
}
+/**
+ * igt_restore_runtime_pm:
+ *
+ * Restores the runtime PM configuration as it was before the call to
+ * igt_setup_runtime_pm.
+ */
+void igt_restore_runtime_pm(void)
+{
+ int ret;
+
+ if (pm_status_fd < 0)
+ return;
+
+ igt_debug("Restoring runtime PM management to '%s' and '%s'\n",
+ __igt_pm_runtime_autosuspend,
+ __igt_pm_runtime_control);
+
+ ret = __igt_restore_runtime_pm();
+ if (ret)
+ igt_warn("Failed to restore runtime PM! (errno=%d)\n", ret);
+
+ igt_pm_audio_restore_runtime_pm();
+}
+
static void __igt_pm_runtime_exit_handler(int sig)
{
__igt_restore_runtime_pm();