From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.136]) by gabe.freedesktop.org (Postfix) with ESMTPS id A251A10E48E for ; Thu, 24 Aug 2023 05:49:28 +0000 (UTC) From: Bhanuprakash Modem To: igt-dev@lists.freedesktop.org Date: Thu, 24 Aug 2023 11:11:17 +0530 Message-Id: <20230824054123.820518-11-bhanuprakash.modem@intel.com> In-Reply-To: <20230824054123.820518-1-bhanuprakash.modem@intel.com> References: <20230824054123.820518-1-bhanuprakash.modem@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [i-g-t 10/16] tests/i915/kms_draw_crc: Add tiling support for XE List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kunal Joshi Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: Remove the tiling restrictions in Xe specific tests V2: - Update XE blocklist V3: - New patch for blocklist changes Fixes: f6d0bacc0 (tests/i915/kms_draw_crc: Add XE support) Signed-off-by: Bhanuprakash Modem Reviewed-by: Kunal Joshi --- tests/i915/kms_draw_crc.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/i915/kms_draw_crc.c b/tests/i915/kms_draw_crc.c index ddd025455..ee1980552 100644 --- a/tests/i915/kms_draw_crc.c +++ b/tests/i915/kms_draw_crc.c @@ -340,10 +340,6 @@ igt_main for (modifier_idx = 0; modifier_idx < ARRAY_SIZE(modifiers); modifier_idx++) { modifier = modifiers[modifier_idx]; - /* No tiling support in XE. */ - if (is_xe_device(drm_fd) && modifier != DRM_FORMAT_MOD_LINEAR) - continue; - for (format_idx = 0; format_idx < ARRAY_SIZE(formats); format_idx++) { if (!igt_display_has_format_mod(&display, formats[format_idx], modifier)) continue; -- 2.40.0