[igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic_transition: Remove useless code

José Roberto de Souza jose.souza at intel.com
Fri Apr 5 23:31:18 UTC 2019


setup_parms() already makes sure that overlay planes size is supported
by driver and GPU, no need to re-run it.

Signed-off-by: José Roberto de Souza <jose.souza at intel.com>
---
 tests/kms_atomic_transition.c | 39 -----------------------------------
 1 file changed, 39 deletions(-)

diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c
index 9988f303..1cee2b6e 100644
--- a/tests/kms_atomic_transition.c
+++ b/tests/kms_atomic_transition.c
@@ -471,7 +471,6 @@ run_transition_test(igt_display_t *display, enum pipe pipe, igt_output_t *output
 	uint32_t iter_max, i;
 	struct plane_parms parms[pipe_obj->n_planes];
 	unsigned flags = 0;
-	int ret;
 
 	if (fencing)
 		prepare_fencing(display, pipe);
@@ -508,44 +507,6 @@ run_transition_test(igt_display_t *display, enum pipe pipe, igt_output_t *output
 
 	setup_parms(display, pipe, mode, &fb, &argb_fb, &sprite_fb, parms, &iter_max);
 
-	/*
-	 * In some configurations the tests may not run to completion with all
-	 * sprite planes lit up at 4k resolution, try decreasing width/size of secondary
-	 * planes to fix this
-	 */
-	while (1) {
-		wm_setup_plane(display, pipe, iter_max - 1, parms, false);
-
-		if (fencing)
-			igt_pipe_request_out_fence(pipe_obj);
-
-		ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY | DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
-		igt_assert(!is_atomic_check_failure_errno(ret));
-
-		if (!is_atomic_check_plane_size_errno(ret) || pipe_obj->n_planes < 3)
-			break;
-
-		ret = 0;
-		for_each_plane_on_pipe(display, pipe, plane) {
-			i = plane->index;
-
-			if (plane->type == DRM_PLANE_TYPE_PRIMARY ||
-			    plane->type == DRM_PLANE_TYPE_CURSOR)
-				continue;
-
-			if (parms[i].width <= 512)
-				continue;
-
-			parms[i].width /= 2;
-			ret = 1;
-			igt_info("Reducing sprite %i to %ux%u\n", i - 1, parms[i].width, parms[i].height);
-			break;
-		}
-
-		if (!ret)
-			igt_skip("Cannot run tests without proper size sprite planes\n");
-	}
-
 	igt_display_commit2(display, COMMIT_ATOMIC);
 
 	if (type == TRANSITION_AFTER_FREE) {
-- 
2.21.0



More information about the igt-dev mailing list