[igt-dev] [i-g-t v8 13/51] tests/kms_cursor_edge_walk: Add support for Bigjoiner
Bhanuprakash Modem
bhanuprakash.modem at intel.com
Thu Feb 23 15:09:40 UTC 2023
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 <bhanuprakash.modem at intel.com>
Reviewed-by: Mohammed Thasleem <mohammed.thasleem at intel.com>
---
tests/kms_cursor_edge_walk.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c
index 304c0ea8f..5f423a18f 100644
--- a/tests/kms_cursor_edge_walk.c
+++ b/tests/kms_cursor_edge_walk.c
@@ -373,6 +373,13 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
data.pipe != active_pipes[last_pipe])
continue;
+ igt_display_reset(&data.display);
+ igt_output_set_pipe(data.output, data.pipe);
+ if (!i915_pipe_output_combo_valid(&data.display))
+ continue;
+
+ igt_output_set_pipe(data.output, PIPE_NONE);
+
igt_dynamic_f("pipe-%s-%s",
kmstest_pipe_name(data.pipe),
data.output->name)
--
2.39.1
More information about the igt-dev
mailing list