<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<p><br>
</p>
<div class="moz-cite-prefix">On 15-11-2022 22:38, Bhanuprakash Modem
wrote:<br>
</div>
<blockquote type="cite" cite="mid:20221115170855.196572-29-bhanuprakash.modem@intel.com">
<pre class="moz-quote-pre" wrap="">This patch will add a check to Skip the subtest if a selected pipe/output
combo won't support Bigjoiner or 8K mode.
Example:
* Pipe-D wont support a mode > 5K
* To use 8K mode on a pipe then consecutive pipe must be available & free.
V2: - Use updated helper name
Signed-off-by: Bhanuprakash Modem <a class="moz-txt-link-rfc2396E" href="mailto:bhanuprakash.modem@intel.com"><bhanuprakash.modem@intel.com></a></pre>
</blockquote>
<p class="MsoPlainText"><font face="monospace">Reviewed-by: Ananya
Sharma <<a href="mailto:ananya.sharma@intel.com" class="moz-txt-link-freetext">ananya.sharma@intel.com</a>></font></p>
<blockquote type="cite" cite="mid:20221115170855.196572-29-bhanuprakash.modem@intel.com">
<pre class="moz-quote-pre" wrap="">---
tests/kms_prime.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/tests/kms_prime.c b/tests/kms_prime.c
index 097c2f2a..d4a92651 100644
--- a/tests/kms_prime.c
+++ b/tests/kms_prime.c
@@ -89,14 +89,17 @@ static igt_output_t *setup_display(int importer_fd, igt_display_t *display,
bool found = false;
for_each_pipe_with_valid_output(display, *pipe, output) {
- found = true;
- break;
+ igt_display_reset(display);
+
+ igt_output_set_pipe(output, *pipe);
+ if (i915_pipe_output_combo_valid(display)) {
+ found = true;
+ break;
+ }
}
igt_require_f(found, "No valid connector/pipe found\n");
- igt_display_reset(display);
- igt_output_set_pipe(output, *pipe);
return output;
}
</pre>
</blockquote>
</body>
</html>