[igt-dev] [PATCH RFC i-g-t v2 4/8] tests/kms_universal_plane: decouple verification of setup plane FB's while CRTC is disabled
Alaa Emad
aemad at igalia.com
Sat Jan 7 13:45:55 UTC 2023
decouple verification of setup plane FB's while CRTC is disabled in a separated subtests
to be able to run it individually, creating the function.
Signed-off-by: Alaa Emad <aemad at igalia.com>
---
tests/kms_universal_plane.c | 94 +++++++++++++++++++++++++++++++++++++
1 file changed, 94 insertions(+)
diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
index 96ce201b..99fc2b92 100644
--- a/tests/kms_universal_plane.c
+++ b/tests/kms_universal_plane.c
@@ -300,6 +300,94 @@ test_re_enable_primary_with_blue(data_t *data, enum pipe pipe, igt_output_t *out
functional_test_fini(&test, output);
}
+
+static void
+test_universal_api_with_crtc_off(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ functional_test_t test = { .data = data };
+ igt_display_t *display = &data->display;
+ igt_plane_t *primary, *sprite;
+ int num_primary = 0, num_cursor = 0;
+ int i;
+
+ igt_require_pipe(display, pipe);
+
+ igt_info("Testing connector %s using pipe %s\n", igt_output_name(output),
+ kmstest_pipe_name(pipe));
+
+ functional_test_init(&test, output, pipe);
+
+ /*
+ * Make sure we have no more than one primary or cursor plane per crtc.
+ * If the kernel accidentally calls drm_plane_init() rather than
+ * drm_universal_plane_init(), the type enum can get interpreted as a
+ * boolean and show up in userspace as the wrong type.
+ */
+ for (i = 0; i < display->pipes[pipe].n_planes; i++)
+ if (display->pipes[pipe].planes[i].type == DRM_PLANE_TYPE_PRIMARY)
+ num_primary++;
+ else if (display->pipes[pipe].planes[i].type == DRM_PLANE_TYPE_CURSOR)
+ num_cursor++;
+
+ igt_warn_on(num_primary != 1);
+ igt_warn_on(num_cursor > 1);
+
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ sprite = igt_output_get_plane_type(output, DRM_PLANE_TYPE_OVERLAY);
+ if (!sprite) {
+ functional_test_fini(&test, output);
+ igt_skip("No sprite plane available\n");
+ }
+
+ igt_plane_set_position(sprite, 100, 100);
+
+ /* Step 2: Legacy API', blue primary, red sprite (CRC 2) */
+ igt_plane_set_fb(primary, &test.blue_fb);
+ igt_plane_set_fb(sprite, &test.red_fb);
+ igt_display_commit2(display, COMMIT_LEGACY);
+ igt_pipe_crc_collect_crc(test.pipe_crc, &test.crc_2);
+
+ /* Step 7: Legacy API's, yellow primary, no sprite */
+ igt_plane_set_fb(primary, &test.yellow_fb);
+ igt_plane_set_fb(sprite, NULL);
+ igt_display_commit2(display, COMMIT_LEGACY);
+
+ /* Step 8: Disable CRTC */
+ igt_plane_set_fb(primary, NULL);
+ igt_display_commit2(display, COMMIT_LEGACY);
+
+ /* Step 9: Universal API's with crtc off:
+ * - red sprite
+ * - multiple primary fb's, ending in blue
+ */
+ igt_plane_set_fb(sprite, &test.red_fb);
+ igt_display_commit2(display, COMMIT_UNIVERSAL);
+ igt_plane_set_fb(primary, &test.yellow_fb);
+ igt_display_commit2(display, COMMIT_UNIVERSAL);
+ igt_plane_set_fb(primary, &test.black_fb);
+ igt_display_commit2(display, COMMIT_UNIVERSAL);
+ igt_plane_set_fb(primary, &test.blue_fb);
+ igt_display_commit2(display, COMMIT_UNIVERSAL);
+
+ /* Step 10: Enable crtc (fb = -1), take CRC (CRC 7) */
+ igt_assert(drmModeSetCrtc(data->drm_fd, output->config.crtc->crtc_id, -1,
+ 0, 0, &output->config.connector->connector_id,
+ 1, test.mode) == 0);
+ igt_pipe_crc_collect_crc(test.pipe_crc, &test.crc_7);
+
+ /*
+ * We should be able to setup plane FB's while CRTC is disabled and
+ * then have them pop up correctly when the CRTC is re-enabled.
+ */
+ igt_assert_crc_equal(&test.crc_2, &test.crc_7);
+
+
+ igt_plane_set_fb(primary, NULL);
+ igt_plane_set_fb(sprite, NULL);
+
+ functional_test_fini(&test, output);
+}
+
/*
* Universal plane functional testing.
* - Black primary plane via traditional interfaces, red sprite, grab CRC:1.
@@ -988,6 +1076,12 @@ run_tests_for_pipe(data_t *data, enum pipe pipe)
for_each_valid_output_on_pipe(&data->display, pipe, output)
test_re_enable_primary_with_blue(data, pipe, output);
+ igt_describe("Check the switching between different primary plane fbs with CRTC off");
+ igt_subtest_f("universal-api-with-crtc-off-%s",
+ kmstest_pipe_name(pipe))
+ for_each_valid_output_on_pipe(&data->display, pipe, output)
+ test_universal_api_with_crtc_off(data, pipe, output);
+
igt_describe("Check the switching between different primary plane fbs with CRTC off");
igt_subtest_f("universal-plane-pipe-%s-functional",
kmstest_pipe_name(pipe))
--
2.34.1
More information about the igt-dev
mailing list