[igt-dev] [PATCH 1/2] tests/kms_universal_plane: turn off pipe when primary plane is off

Alex Hung alex.hung at amd.com
Wed Oct 12 23:57:05 UTC 2022


GPU drivers can reject when crtc is on and primary plane is off,
so turn crtc off with primary plane and turn it on afterwards.

Signed-off-by: Alex Hung <alex.hung at amd.com>
---
 tests/kms_universal_plane.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
index 64416afd..468f7a4e 100644
--- a/tests/kms_universal_plane.c
+++ b/tests/kms_universal_plane.c
@@ -62,6 +62,13 @@ typedef struct {
 	struct igt_fb biggreen_fb, smallred_fb, smallblue_fb;
 } gen9_test_t;
 
+static void
+set_pipe_on_off(igt_display_t *display, igt_output_t *output, enum pipe pipe)
+{
+	igt_output_set_pipe(output, pipe);
+	igt_display_commit2(display, COMMIT_LEGACY);
+}
+
 static void
 functional_test_init(functional_test_t *test, igt_output_t *output, enum pipe pipe)
 {
@@ -228,12 +235,14 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
 	igt_pipe_crc_collect_crc(test.pipe_crc, &test.crc_7);
 
 	/* Step 11: Disable primary plane */
+	set_pipe_on_off(&data->display, output, PIPE_NONE);
 	igt_plane_set_fb(primary, NULL);
 	igt_display_commit2(display, COMMIT_UNIVERSAL);
 
 	/* Step 12: Legacy modeset to yellow FB (CRC 8) */
 	igt_plane_set_fb(primary, &test.yellow_fb);
 	igt_display_commit2(display, COMMIT_LEGACY);
+	set_pipe_on_off(&data->display, output, pipe);
 	igt_pipe_crc_collect_crc(test.pipe_crc, &test.crc_8);
 
 	/* Step 13: Legacy API', blue primary, red sprite */
@@ -497,8 +506,10 @@ pageflip_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
 	igt_display_commit2(&data->display, COMMIT_LEGACY);
 
 	/* Disable the primary plane */
+	set_pipe_on_off(&data->display, output, PIPE_NONE);
 	igt_plane_set_fb(primary, NULL);
 	igt_display_commit2(&data->display, COMMIT_UNIVERSAL);
+	set_pipe_on_off(&data->display, output, pipe);
 
 	/*
 	 * Issue a pageflip to red FB
@@ -520,9 +531,11 @@ pageflip_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
 	 * completes, which we don't have a good way to specifically test for,
 	 * but at least we can make sure that nothing blows up.
 	 */
+	set_pipe_on_off(&data->display, output, pipe);
 	igt_assert(drmModePageFlip(data->drm_fd, output->config.crtc->crtc_id,
 				   test.red_fb.fb_id, DRM_MODE_PAGE_FLIP_EVENT,
 				   &test) == 0);
+	set_pipe_on_off(&data->display, output, PIPE_NONE);
 	igt_plane_set_fb(primary, NULL);
 	igt_display_commit2(&data->display, COMMIT_UNIVERSAL);
 
-- 
2.38.0



More information about the igt-dev mailing list