From: "José Roberto de Souza" <jose.souza@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>,
Rodrigo Vivi <rodrigo.vivi@intel.com>
Subject: [igt-dev] [PATCH i-g-t 5/8] lib/psr: Add PSR2 functions
Date: Tue, 4 Dec 2018 15:09:41 -0800 [thread overview]
Message-ID: <20181204230944.7753-5-jose.souza@intel.com> (raw)
In-Reply-To: <20181204230944.7753-1-jose.souza@intel.com>
Add the same kind of functions that we have for PSR1 but for PSR2 to
make easy write tests.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
lib/igt_psr.c | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_psr.h | 7 ++++
2 files changed, 106 insertions(+)
diff --git a/lib/igt_psr.c b/lib/igt_psr.c
index c6d6390f..6232a77f 100644
--- a/lib/igt_psr.c
+++ b/lib/igt_psr.c
@@ -144,3 +144,102 @@ bool psr_supported(int debugfs_fd)
return strstr(buf, "Sink_Support: yes\n") ||
strstr(buf, "Sink support: yes");
}
+
+static bool psr2_set(int debugfs_fd, bool enable)
+{
+ int ret;
+
+ ret = has_psr_debugfs(debugfs_fd);
+ /* Test PSR2 requires newer kernel that supports PSR debugfs api */
+ igt_require(ret == 0);
+
+ ret = psr_write(debugfs_fd, enable ? "0x2" : "0x1");
+ igt_assert(ret > 0);
+
+ /* Restore original value on exit */
+ if (psr_restore_debugfs_fd == -1) {
+ psr_restore_debugfs_fd = dup(debugfs_fd);
+ igt_assert(psr_restore_debugfs_fd >= 0);
+ igt_install_exit_handler(restore_psr_debugfs);
+ }
+
+ return ret;
+}
+
+bool psr2_enable(int debugfs_fd)
+{
+ return psr2_set(debugfs_fd, true);
+}
+
+bool psr2_disable(int debugfs_fd)
+{
+ return psr2_set(debugfs_fd, false);
+}
+
+bool psr2_supported(int debugfs_fd)
+{
+ char buf[PSR_STATUS_MAX_LEN];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf,
+ sizeof(buf));
+ return strstr(buf, "Sink support: yes [0x00000003]");
+}
+
+static bool psr2_in_deep_sleep(int debugfs_fd)
+{
+ bool active;
+ char buf[PSR_STATUS_MAX_LEN];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf,
+ sizeof(buf));
+
+ active = strstr(buf, "Status: PSR2 enabled") &&
+ strstr(buf, "Source PSR ctl: enabled") &&
+ strstr(buf, "Source PSR status: DEEP_SLEEP");
+
+ return active;
+}
+
+static bool psr2_disabled(int debugfs_fd)
+{
+ char buf[PSR_STATUS_MAX_LEN];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf,
+ sizeof(buf));
+
+ return strstr(buf, "Status: disabled");
+}
+
+bool psr2_wait_deep_sleep(int debugfs_fd)
+{
+ /*
+ * DEEP_SLEEP is only achieved after 15 idle frames so the timeout
+ * needs to be this long to avoid test fail in 30hz modesets
+ */
+ return igt_wait(psr2_in_deep_sleep(debugfs_fd), 1000, 20);
+}
+
+bool psr2_wait_disable(int debugfs_fd)
+{
+ return igt_wait(psr2_disabled(debugfs_fd), 40, 10);
+}
+
+static bool psr2_status_update(int debugfs_fd)
+{
+ char buf[PSR_STATUS_MAX_LEN];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf,
+ sizeof(buf));
+
+ /*
+ * As it waits for DEEP_SLEEP state when enabling PSR2 any state
+ * different than it means that PSR2 hardware is working in update
+ * the sink
+ */
+ return !strstr(buf, "Source PSR status: DEEP_SLEEP");
+}
+
+bool psr2_wait_update(int debugfs_fd)
+{
+ return igt_wait(psr2_status_update(debugfs_fd), 40, 10);
+}
diff --git a/lib/igt_psr.h b/lib/igt_psr.h
index a4fcf325..cabe8687 100644
--- a/lib/igt_psr.h
+++ b/lib/igt_psr.h
@@ -34,4 +34,11 @@ bool psr_enable(int debugfs_fd);
bool psr_disable(int debugfs_fd);
bool psr_supported(int debugfs_fd);
+bool psr2_wait_deep_sleep(int debugfs_fd);
+bool psr2_wait_update(int debugfs_fd);
+bool psr2_wait_disable(int debugfs_fd);
+bool psr2_enable(int debugfs_fd);
+bool psr2_disable(int debugfs_fd);
+bool psr2_supported(int debugfs_fd);
+
#endif
--
2.19.2
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next prev parent reply other threads:[~2018-12-04 23:09 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-04 23:09 [igt-dev] [PATCH i-g-t 1/8] lib/psr: Increase the buffer lenght that stores the output of i915_edp_psr_status José Roberto de Souza
2018-12-04 23:09 ` [igt-dev] [PATCH i-g-t 2/8] tests: Share the code handling PSR debugfs parsing José Roberto de Souza
2018-12-11 23:06 ` Dhinakaran Pandiyan
2018-12-13 19:53 ` Souza, Jose
2018-12-04 23:09 ` [igt-dev] [PATCH i-g-t 3/8] lib/psr: Add support to new modified i915_edp_psr_status output José Roberto de Souza
2018-12-04 23:11 ` Souza, Jose
2018-12-12 0:12 ` Dhinakaran Pandiyan
2018-12-04 23:09 ` [igt-dev] [PATCH i-g-t 4/8] lib/psr: Make psr_active() only cares about PSR1 José Roberto de Souza
2018-12-12 0:16 ` Dhinakaran Pandiyan
2018-12-13 19:47 ` Souza, Jose
2018-12-13 20:57 ` Dhinakaran Pandiyan
2018-12-04 23:09 ` José Roberto de Souza [this message]
2018-12-04 23:09 ` [igt-dev] [PATCH i-g-t 6/8] tests/psr: Add the same test coverage that we have for PSR1 to PSR2 José Roberto de Souza
2018-12-12 1:20 ` Dhinakaran Pandiyan
2018-12-13 19:55 ` Souza, Jose
2018-12-04 23:09 ` [igt-dev] [PATCH i-g-t 7/8] tests/intel-ci: Add basic PSR2 tests to fast feedback test list José Roberto de Souza
2018-12-04 23:09 ` [igt-dev] [PATCH i-g-t 8/8] test: Add PSR2 selective update tests José Roberto de Souza
2018-12-05 0:24 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/8] lib/psr: Increase the buffer lenght that stores the output of i915_edp_psr_status Patchwork
2018-12-05 11:45 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2018-12-11 22:53 ` [igt-dev] [PATCH i-g-t 1/8] " Dhinakaran Pandiyan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181204230944.7753-5-jose.souza@intel.com \
--to=jose.souza@intel.com \
--cc=dhinakaran.pandiyan@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=rodrigo.vivi@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox