summaryrefslogtreecommitdiff
path: root/lib/igt_pm.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2018-08-16 18:57:47 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2018-08-17 10:20:44 +0100
commit38a44003774e35c587c67c8766b35e75dbb993b8 (patch)
treedb36700b2f03653d9633f4209daf910068d968c6 /lib/igt_pm.c
parente36199f1907d0246fb203f64592ab104f4dd1b81 (diff)
lib: Poll for snd_hda_intel discovery
Loading the sounds modules is asynchronous with the sysfs device hierarchy being instantiated sometime after modprobe returns. As such while we are probing for the sound device, poll a few times to accommodate the async discovery. v2: closedir() after use Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Imre Deak <imre.deak@intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> Reviewed-by: Imre Deak <imre.deak@intel.com>
Diffstat (limited to 'lib/igt_pm.c')
-rw-r--r--lib/igt_pm.c67
1 files changed, 43 insertions, 24 deletions
diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 6e96db22..339a51e6 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -138,31 +138,17 @@ static void strchomp(char *str)
str[len - 1] = 0;
}
-/**
- * igt_pm_enable_audio_runtime_pm:
- *
- * We know that if we don't enable audio runtime PM, snd_hda_intel will never
- * release its power well refcount, and we'll never reach the LPSP state.
- * There's no guarantee that it will release the power well if we enable
- * runtime PM, but at least we can try.
- *
- * We don't have any assertions on open since the user may not even have
- * snd_hda_intel loaded, which is not a problem.
- */
-void igt_pm_enable_audio_runtime_pm(void)
+static int __igt_pm_enable_audio_runtime_pm(void)
{
char *path = NULL;
struct dirent *de;
DIR *dir;
+ int err;
int fd;
- /* Check if already enabled. */
- if (__igt_pm_audio_runtime_power_save[0])
- return;
-
dir = opendir("/sys/class/sound");
if (!dir)
- return;
+ return 0;
/* Find PCI device claimed by snd_hda_intel and tied to i915. */
while ((de = readdir(dir))) {
@@ -196,18 +182,18 @@ void igt_pm_enable_audio_runtime_pm(void)
de->d_name));
igt_debug("Audio device path is %s\n", path);
-
break;
}
+ closedir(dir);
fd = open("/sys/module/snd_hda_intel/parameters/power_save", O_RDWR);
if (fd < 0)
- return;
+ return 0;
/* snd_hda_intel loaded but no path found is an error. */
if (!path) {
close(fd);
- errno = ESRCH;
+ err = -ESRCH;
goto err;
}
@@ -219,8 +205,10 @@ void igt_pm_enable_audio_runtime_pm(void)
close(fd);
fd = open(path, O_RDWR);
- if (fd < 0)
+ if (fd < 0) {
+ err = -errno;
goto err;
+ }
igt_assert(read(fd, __igt_pm_audio_runtime_control,
sizeof(__igt_pm_audio_runtime_control)) > 0);
@@ -236,12 +224,43 @@ void igt_pm_enable_audio_runtime_pm(void)
/* Give some time for it to react. */
sleep(1);
-
- return;
+ return 0;
err:
- igt_warn("Failed to enable audio runtime PM! (%d)", errno);
free(path);
+ return err;
+}
+
+/**
+ * igt_pm_enable_audio_runtime_pm:
+ *
+ * We know that if we don't enable audio runtime PM, snd_hda_intel will never
+ * release its power well refcount, and we'll never reach the LPSP state.
+ * There's no guarantee that it will release the power well if we enable
+ * runtime PM, but at least we can try.
+ *
+ * We don't have any assertions on open since the user may not even have
+ * snd_hda_intel loaded, which is not a problem.
+ */
+void igt_pm_enable_audio_runtime_pm(void)
+{
+ int err;
+
+ /* Check if already enabled. */
+ if (__igt_pm_audio_runtime_power_save[0])
+ return;
+
+ for (int count = 0; count < 5; count++) {
+ if (!__igt_pm_enable_audio_runtime_pm())
+ return;
+
+ /* modprobe(sna-hda-intel) acts async so poll for sysfs */
+ sleep(1);
+ }
+
+ err = __igt_pm_enable_audio_runtime_pm();
+ if (err)
+ igt_warn("Failed to enable audio runtime PM! (%d)\n", -err);
}
/**