summaryrefslogtreecommitdiff
path: root/lib/igt_pm.c
diff options
context:
space:
mode:
authorTvrtko Ursulin <tvrtko.ursulin@intel.com>2018-07-23 12:46:57 +0100
committerTvrtko Ursulin <tvrtko.ursulin@intel.com>2018-08-02 11:32:17 +0100
commit5fddf15b57f4dcb492a2e03ccf1d3fa2c015cd18 (patch)
treeb57ab8cff82f6dde00ff0f12b38c2c0724121edc /lib/igt_pm.c
parentb29101e5806e794615685aee51ba526ae90971f5 (diff)
lib/igt_pm: Export function to restore runtime PM status
In cases when runtime PM is enabled only from individual subtests and not whole tests it is usable to be able to restore the old runtime PM config and so avoid running subsequent subtests in an unexpected environment. Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
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();