From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by gabe.freedesktop.org (Postfix) with ESMTPS id 8901910E1FA for ; Mon, 19 Jun 2023 12:05:15 +0000 (UTC) From: Bhanuprakash Modem To: igt-dev@lists.freedesktop.org Date: Mon, 19 Jun 2023 17:28:49 +0530 Message-Id: <20230619115858.2013195-10-bhanuprakash.modem@intel.com> In-Reply-To: <20230619115858.2013195-1-bhanuprakash.modem@intel.com> References: <20230619115858.2013195-1-bhanuprakash.modem@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [i-g-t 09/18] tests/kms_rotation_crc: Add tiling support for XE List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: Remove the tiling restrictions in Xe specific tests Fixes: e1d5b831e (tests/kms_rotation_crc: Add XE support) Signed-off-by: Bhanuprakash Modem --- tests/kms_rotation_crc.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c index 0a22cc225..d4a8df928 100644 --- a/tests/kms_rotation_crc.c +++ b/tests/kms_rotation_crc.c @@ -853,10 +853,6 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe) igt_pipe_crc_start(data->pipe_crc); for (i = 0; i < ARRAY_SIZE(planeconfigs); i++) { - if (is_xe_device(data->gfx_fd) && - planeconfigs[i].modifier != DRM_FORMAT_MOD_LINEAR) - continue; - p[0].fbinfo = &planeconfigs[i]; pointlocation(data, p, mode, 0); @@ -1218,7 +1214,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_describe("Tiling and Rotation test for gen 10+ for primary plane"); for (reflect_x = reflect_x_subtests; reflect_x->modifier; reflect_x++) { igt_fixture - igt_require_i915(data.gfx_fd); + igt_require_intel(data.gfx_fd); igt_subtest_f("primary-%s-reflect-x-%s", modifier_test_str(reflect_x->modifier), @@ -1279,7 +1275,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) enum pipe pipe; igt_output_t *output; - igt_require_i915(data.gfx_fd); + igt_require_intel(data.gfx_fd); igt_display_require_output(&data.display); for_each_pipe_with_valid_output(&data.display, pipe, output) { -- 2.40.0