From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by gabe.freedesktop.org (Postfix) with ESMTPS id 046C610E814 for ; Tue, 18 Apr 2023 16:49:56 +0000 (UTC) From: Bhanuprakash Modem To: igt-dev@lists.freedesktop.org Date: Tue, 18 Apr 2023 22:14:40 +0530 Message-Id: <20230418164501.1687266-25-bhanuprakash.modem@intel.com> In-Reply-To: <20230418164501.1687266-1-bhanuprakash.modem@intel.com> References: <20230418164501.1687266-1-bhanuprakash.modem@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [i-g-t 24/45] tests/kms_async_flips: No XE support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: Async flips won't work with linear buffers on Intel hardware, hence don't run tests on XE device as XE won't support tiling. Signed-off-by: Bhanuprakash Modem --- tests/kms_async_flips.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index 1e6506e3d..51ffa523a 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -592,7 +592,13 @@ igt_main_args("e", NULL, help_str, opt_handler, &data) int i; igt_fixture { - data.drm_fd = drm_open_driver_master(DRIVER_ANY); + /* + * FIXME: As of now, Async flips won't work with linear buffers + * on Intel hardware, hence don't run tests on XE device as XE + * won't support tiling. + * Once Kernel changes got landed, please update this logic. + */ + data.drm_fd = drm_open_driver_master(DRIVER_ANY & ~DRIVER_XE); kmstest_set_vt_graphics_mode(); igt_display_require(&data.display, data.drm_fd); igt_display_require_output(&data.display); -- 2.40.0