Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Pottumuttu, Sai Teja" <sai.teja.pottumuttu@intel.com>
To: Clint Taylor <clinton.a.taylor@intel.com>,
	<igt-dev@lists.freedesktop.org>
Subject: Re: [PATCH i-g-t v3 6/9] XE3: tests/intel/kms_draw_crc: fix x-tiled tests for case when there is no x-tile
Date: Thu, 21 Nov 2024 11:22:22 +0530	[thread overview]
Message-ID: <55d6ef30-7bb4-49a1-8c37-a969d4514c37@intel.com> (raw)
In-Reply-To: <20241114190339.3885752-7-clinton.a.taylor@intel.com>

On 15-11-2024 00:33, Clint Taylor wrote:
> From: "Heikkila, Juha-pekka" <juha-pekka.heikkila@intel.com>
> 
> On Xe3 display no more support x-tile and will disable such framebuffers
> 
> Signed-off-by: Heikkila, Juha-pekka <juha-pekka.heikkila@intel.com>
> Signed-off-by: Clint Taylor <Clinton.A.Taylor@intel.com>
> ---
>   tests/intel/kms_draw_crc.c | 6 ++++--
>   1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/intel/kms_draw_crc.c b/tests/intel/kms_draw_crc.c
> index e3d1c0ba9..3084e9c9b 100644
> --- a/tests/intel/kms_draw_crc.c
> +++ b/tests/intel/kms_draw_crc.c
> @@ -243,8 +243,10 @@ static void fill_fb_subtest(void)
>   	get_fill_crc(DRM_FORMAT_MOD_LINEAR, &crc);
>   	igt_assert_crc_equal(&crc, &base_crc);
>   
> -	get_fill_crc(I915_FORMAT_MOD_X_TILED, &crc);
> -	igt_assert_crc_equal(&crc, &base_crc);
> +	if (intel_display_ver(intel_get_drm_devid(drm_fd)) <= 20) {

In the kernel, we now have,

{
   .modifier = I915_FORMAT_MOD_X_TILED,
   .display_ver = { 0, 29 },
   .plane_caps = INTEL_PLANE_CAP_TILING_X,
}

So, we should probably change the condition here as well to

if (intel_display_ver(intel_get_drm_devid(drm_fd)) < 30)

Thanks
Sai Teja


> +		get_fill_crc(I915_FORMAT_MOD_X_TILED, &crc);
> +		igt_assert_crc_equal(&crc, &base_crc);
> +	}
>   
>   	if (intel_display_ver(intel_get_drm_devid(drm_fd)) >= 9) {
>   		get_fill_crc(has_4tile ?

  reply	other threads:[~2024-11-21  5:52 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-14 19:03 [PATCH i-g-t v3 0/9] Initial PTL support Clint Taylor
2024-11-14 19:03 ` [PATCH i-g-t v3 1/9] PTL: lib/intel_chipset: add pantherlake definition and support Clint Taylor
2024-11-15  8:46   ` Pottumuttu, Sai Teja
2024-11-15 23:38     ` Taylor, Clinton A
2024-11-14 19:03 ` [PATCH i-g-t v3 2/9] PTL: lib/intel_device_info: Enable flatccs for PTL Clint Taylor
2024-11-14 19:03 ` [PATCH i-g-t v3 3/9] XE3: lib/intel_pat: extend for xe3 Clint Taylor
2024-11-19  9:34   ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 4/9] XE3: tests/intel/xe_pat: " Clint Taylor
2024-11-19 10:09   ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 5/9] XE3: tests/kms_addfb_basic: fix x-tiled tests for case when there is no x-tile Clint Taylor
2024-11-15 13:31   ` Kamil Konieczny
2024-11-15 23:42     ` Taylor, Clinton A
2024-11-18 12:48       ` Kamil Konieczny
2024-11-28 14:05       ` Juha-Pekka Heikkilä
2024-11-14 19:03 ` [PATCH i-g-t v3 6/9] XE3: tests/intel/kms_draw_crc: " Clint Taylor
2024-11-21  5:52   ` Pottumuttu, Sai Teja [this message]
2024-11-14 19:03 ` [PATCH i-g-t v3 7/9] XE3: tests/kms_cursor_legacy: flip_vs_cursor_busy_crc was requiring any driver but used intel x-tile Clint Taylor
2024-11-14 19:03 ` [PATCH i-g-t v3 8/9] XE3: tests/intel/kms_frontbuffer_tracking: fix x-tiled tests for case when there is no x-tile Clint Taylor
2024-12-02  7:04   ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 9/9] XE3: tests/intel/kms_frontbuffer_tracking: platform based handling of x-tile cases Clint Taylor
2024-11-14 19:53 ` ✗ Fi.CI.BAT: failure for Initial PTL support (rev3) Patchwork
2024-11-14 20:37 ` ✓ CI.xeBAT: success " Patchwork
2024-11-15 15:48 ` ✗ CI.xeFULL: failure " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55d6ef30-7bb4-49a1-8c37-a969d4514c37@intel.com \
    --to=sai.teja.pottumuttu@intel.com \
    --cc=clinton.a.taylor@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox