public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Swati Sharma <swati2.sharma@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Juha-pekka Heikkila <juha-pekka.heikkila@intel.com>
Subject: [PATCH i-g-t, v2 2/7] tests/intel/kms_flip_scaled_crc: add flip to reflect-x tests
Date: Wed,  7 Jan 2026 15:05:30 +0530	[thread overview]
Message-ID: <20260107093535.70116-3-swati2.sharma@intel.com> (raw)
In-Reply-To: <20260107093535.70116-1-swati2.sharma@intel.com>

From: Juha-pekka Heikkila <juha-pekka.heikkila@intel.com>

Here added possibility to use rotation flags in tests, including
reflect flags. Then use the new flags to create xrgb888, xyuv8888
nv12 and P016 reflect-x tests.

Signed-off-by: Juha-pekka Heikkila <juha-pekka.heikkila@intel.com>
---
 tests/intel/kms_flip_scaled_crc.c | 158 ++++++++++++++++++++++++++++++
 1 file changed, 158 insertions(+)

diff --git a/tests/intel/kms_flip_scaled_crc.c b/tests/intel/kms_flip_scaled_crc.c
index 5ffa357e0..954b46b5f 100644
--- a/tests/intel/kms_flip_scaled_crc.c
+++ b/tests/intel/kms_flip_scaled_crc.c
@@ -122,6 +122,20 @@
  * @downscaling:        Downscaled
  * @upscaling:          Upscaled
  */
+/**
+ * SUBTEST: flip-32bpp-linear-to-32bpp-linear-reflect-x
+ * Description: Flip from 32bpp non scaled fb to 32bpp non scaled x mirrored fb
+ *
+ * SUBTEST: flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x
+ * Description: Flip from 32bpp xyuv non scaled fb to 32bpp xyuv non scaled
+ *              x mirrored fb
+ *
+ * SUBTEST: flip-NV12-linear-to-NV12-linear-reflect-x
+ * Description: Flip from NV12 non scaled fb to NV12 non scaled x mirrored fb
+ *
+ * SUBTEST: flip-P016-linear-to-P016-linear-reflect-x
+ * Description: Flip from P016 non scaled fb to P016 non scaled x mirrored fb
+ */
 
 IGT_TEST_DESCRIPTION("Test flipping between scaled/nonscaled framebuffers");
 
@@ -148,6 +162,8 @@ const struct {
 	const uint32_t secondformat;
 	const double firstmultiplier;
 	const double secondmultiplier;
+	const igt_rotation_t firstrotation;
+	const igt_rotation_t secondrotation;
 } flip_scenario_test[] = {
 	{
 		"flip-32bpp-ytile-to-64bpp-ytile-downscaling",
@@ -156,6 +172,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB16161616F,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-yftile-to-64bpp-yftile-downscaling",
@@ -164,6 +182,8 @@ const struct {
 		I915_FORMAT_MOD_Yf_TILED, DRM_FORMAT_XRGB16161616F,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-xtile-to-64bpp-xtile-downscaling",
@@ -172,6 +192,8 @@ const struct {
 		I915_FORMAT_MOD_X_TILED, DRM_FORMAT_XRGB16161616F,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-4tile-to-64bpp-4tile-downscaling",
@@ -180,6 +202,8 @@ const struct {
 		I915_FORMAT_MOD_4_TILED, DRM_FORMAT_XRGB16161616F,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-linear-to-64bpp-linear-downscaling",
@@ -188,6 +212,8 @@ const struct {
 		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_XRGB16161616F,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-ytile-to-32bpp-ytile-downscaling",
@@ -196,6 +222,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-yftile-to-32bpp-yftile-downscaling",
@@ -204,6 +232,8 @@ const struct {
 		I915_FORMAT_MOD_Yf_TILED, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-xtile-to-32bpp-xtile-downscaling",
@@ -212,6 +242,8 @@ const struct {
 		I915_FORMAT_MOD_X_TILED, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-4tile-to-32bpp-4tile-downscaling",
@@ -220,6 +252,8 @@ const struct {
 		I915_FORMAT_MOD_4_TILED, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-linear-to-32bpp-linear-downscaling",
@@ -228,6 +262,8 @@ const struct {
 		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-ytile-to-16bpp-ytile-downscaling",
@@ -236,6 +272,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_RGB565,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-yftile-to-16bpp-yftile-downscaling",
@@ -244,6 +282,8 @@ const struct {
 		I915_FORMAT_MOD_Yf_TILED, DRM_FORMAT_RGB565,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-xtile-to-16bpp-xtile-downscaling",
@@ -252,6 +292,8 @@ const struct {
 		I915_FORMAT_MOD_X_TILED, DRM_FORMAT_RGB565,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-4tile-to-16bpp-4tile-downscaling",
@@ -260,6 +302,8 @@ const struct {
 		I915_FORMAT_MOD_4_TILED, DRM_FORMAT_RGB565,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-linear-to-16bpp-linear-downscaling",
@@ -268,6 +312,8 @@ const struct {
 		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_RGB565,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-ytileccs-to-64bpp-ytile-downscaling",
@@ -276,6 +322,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB16161616F,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-yftileccs-to-64bpp-yftile-downscaling",
@@ -284,6 +332,8 @@ const struct {
 		I915_FORMAT_MOD_Yf_TILED, DRM_FORMAT_XRGB16161616F,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling",
@@ -292,6 +342,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling",
@@ -300,6 +352,8 @@ const struct {
 		I915_FORMAT_MOD_4_TILED_DG2_RC_CCS, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-ytile-to-32bpp-ytileccs-downscaling",
@@ -308,6 +362,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED_CCS, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-yftile-to-32bpp-yftileccs-downscaling",
@@ -316,6 +372,8 @@ const struct {
 		I915_FORMAT_MOD_Yf_TILED_CCS, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling",
@@ -324,6 +382,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling",
@@ -332,6 +392,8 @@ const struct {
 		I915_FORMAT_MOD_4_TILED_DG2_RC_CCS, DRM_FORMAT_XRGB8888,
 		1.0,
 		2.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-ytile-to-64bpp-ytile-upscaling",
@@ -340,6 +402,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB16161616F,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-yftile-to-64bpp-yftile-upscaling",
@@ -348,6 +412,8 @@ const struct {
 		I915_FORMAT_MOD_Yf_TILED, DRM_FORMAT_XRGB16161616F,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-xtile-to-64bpp-xtile-upscaling",
@@ -356,6 +422,8 @@ const struct {
 		I915_FORMAT_MOD_X_TILED, DRM_FORMAT_XRGB16161616F,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-4tile-to-64bpp-4tile-upscaling",
@@ -364,6 +432,8 @@ const struct {
 		I915_FORMAT_MOD_4_TILED, DRM_FORMAT_XRGB16161616F,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-linear-to-64bpp-linear-upscaling",
@@ -372,6 +442,8 @@ const struct {
 		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_XRGB16161616F,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-ytile-to-32bpp-ytile-upscaling",
@@ -380,6 +452,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-yftile-to-32bpp-yftile-upscaling",
@@ -388,6 +462,8 @@ const struct {
 		I915_FORMAT_MOD_Yf_TILED, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-xtile-to-32bpp-xtile-upscaling",
@@ -396,6 +472,8 @@ const struct {
 		I915_FORMAT_MOD_X_TILED, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-4tile-to-32bpp-4tile-upscaling",
@@ -404,6 +482,8 @@ const struct {
 		I915_FORMAT_MOD_4_TILED, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-linear-to-32bpp-linear-upscaling",
@@ -412,6 +492,8 @@ const struct {
 		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-ytile-to-16bpp-ytile-upscaling",
@@ -420,6 +502,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_RGB565,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-yftile-to-16bpp-yftile-upscaling",
@@ -428,6 +512,8 @@ const struct {
 		I915_FORMAT_MOD_Yf_TILED, DRM_FORMAT_RGB565,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-xtile-to-16bpp-xtile-upscaling",
@@ -436,6 +522,8 @@ const struct {
 		I915_FORMAT_MOD_X_TILED, DRM_FORMAT_RGB565,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-4tile-to-16bpp-4tile-upscaling",
@@ -444,6 +532,8 @@ const struct {
 		I915_FORMAT_MOD_4_TILED, DRM_FORMAT_RGB565,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-linear-to-16bpp-linear-upscaling",
@@ -452,6 +542,8 @@ const struct {
 		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_RGB565,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-ytileccs-to-64bpp-ytile-upscaling",
@@ -460,6 +552,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB16161616F,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-yftileccs-to-64bpp-yftile-upscaling",
@@ -468,6 +562,8 @@ const struct {
 		I915_FORMAT_MOD_Yf_TILED, DRM_FORMAT_XRGB16161616F,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling",
@@ -476,6 +572,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling",
@@ -484,6 +582,8 @@ const struct {
 		I915_FORMAT_MOD_4_TILED_DG2_RC_CCS, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-ytile-to-32bpp-ytileccs-upscaling",
@@ -492,6 +592,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED_CCS, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-32bpp-yftile-to-32bpp-yftileccs-upscaling",
@@ -500,6 +602,8 @@ const struct {
 		I915_FORMAT_MOD_Yf_TILED_CCS, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling",
@@ -508,6 +612,8 @@ const struct {
 		I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
 	},
 	{
 		"flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling",
@@ -516,6 +622,48 @@ const struct {
 		I915_FORMAT_MOD_4_TILED_DG2_RC_CCS, DRM_FORMAT_XRGB8888,
 		0.5,
 		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0,
+	},
+	{
+		"flip-32bpp-linear-to-32bpp-linear-reflect-x",
+		"Flip from 32bpp non scaled fb to 32bpp non scaled x mirrored fb",
+		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_XRGB8888,
+		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_XRGB8888,
+		1.0,
+		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0 | IGT_REFLECT_X,
+	},
+	{
+		"flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x",
+		"Flip from 32bpp xyuv non scaled fb to 32bpp xyuv non scaled x mirrored fb",
+		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_XYUV8888,
+		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_XYUV8888,
+		1.0,
+		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0 | IGT_REFLECT_X,
+	},
+	{
+		"flip-NV12-linear-to-NV12-linear-reflect-x",
+		"Flip from NV12 non scaled fb to NV12 non scaled x mirrored fb",
+		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_NV12,
+		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_NV12,
+		1.0,
+		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0 | IGT_REFLECT_X,
+	},
+	{
+		"flip-P016-linear-to-P016-linear-reflect-x",
+		"Flip from P016 non scaled fb to P016 non scaled x mirrored fb",
+		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_P016,
+		DRM_FORMAT_MOD_LINEAR, DRM_FORMAT_P016,
+		1.0,
+		1.0,
+		IGT_ROTATION_0,
+		IGT_ROTATION_0 | IGT_REFLECT_X,
 	},
 };
 
@@ -642,11 +790,16 @@ static void test_flip_to_scaled(data_t *data, uint32_t index,
 	igt_plane_set_fb(primary, &data->small_fb);
 	igt_plane_set_size(primary, data->attemptmodewidth,
 			   data->attemptmodeheight);
+	igt_plane_set_rotation(primary,
+			       flip_scenario_test[index].firstrotation);
 	ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
 
 	igt_skip_on_f(ret == -ERANGE, "Platform scaling limits exceeded, skipping.\n");
 	igt_skip_on_f((ret == -EINVAL) && (!modetoset || modetoset->vrefresh > 90),
 		      "Valid/default mode too big, cdclk limits exceeded. Check next connector\n");
+	igt_skip_on_f((ret == -EINVAL) &&
+		      (flip_scenario_test[index].firstrotation != IGT_ROTATION_0),
+		      "Unsupported rotation\n");
 	igt_assert_eq(ret, 0);
 
 	igt_pipe_crc_start(data->pipe_crc);
@@ -655,6 +808,8 @@ static void test_flip_to_scaled(data_t *data, uint32_t index,
 	igt_plane_set_fb(primary, &data->big_fb);
 	igt_plane_set_size(primary, data->attemptmodewidth,
 			   data->attemptmodeheight);
+	igt_plane_set_rotation(primary,
+			       flip_scenario_test[index].secondrotation);
 	ret = igt_display_try_commit_atomic(&data->display,
 					    DRM_MODE_ATOMIC_ALLOW_MODESET  |
 					    DRM_MODE_PAGE_FLIP_EVENT, NULL);
@@ -662,6 +817,9 @@ static void test_flip_to_scaled(data_t *data, uint32_t index,
 	igt_skip_on_f(ret == -ERANGE, "Platform scaling limits exceeded, skipping.\n");
 	igt_skip_on_f((ret == -EINVAL) && (!modetoset || modetoset->vrefresh > 90),
 		      "Valid/default mode too big, cdclk limits exceeded. Check next connector\n");
+	igt_skip_on_f((ret == -EINVAL) &&
+		      (flip_scenario_test[index].secondrotation != IGT_ROTATION_0),
+		      "Unsupported rotation\n");
 	igt_assert_eq(ret, 0);
 
 	igt_assert(read(data->drm_fd, &ev, sizeof(ev)) == sizeof(ev));
-- 
2.25.1


  parent reply	other threads:[~2026-01-07  9:27 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-07  9:35 [PATCH i-g-t,v2 0/7] Add NVL display related test updates Swati Sharma
2026-01-07  9:35 ` [PATCH i-g-t, v2 1/7] tests/intel/kms_big_fb: NVL supports horizontal flip with linear surfaces Swati Sharma
2026-01-08 15:32   ` Juha-Pekka Heikkilä
2026-01-09  8:37   ` Karthik B S
2026-01-07  9:35 ` Swati Sharma [this message]
2026-01-08 15:31   ` [PATCH i-g-t, v2 2/7] tests/intel/kms_flip_scaled_crc: add flip to reflect-x tests Juha-Pekka Heikkilä
2026-01-09  8:47   ` Karthik B S
2026-01-07  9:35 ` [PATCH i-g-t, v2 3/7] tests/kms_plane: add test and limitations for odd height planar tests Swati Sharma
2026-01-08 15:30   ` Juha-Pekka Heikkilä
2026-01-12  8:09   ` Karthik B S
2026-01-07  9:35 ` [PATCH i-g-t, v2 4/7] tests/kms_plane: modify the condition for odd pan Swati Sharma
2026-01-08 15:31   ` Juha-Pekka Heikkilä
2026-01-12  8:11   ` Karthik B S
2026-01-07  9:35 ` [PATCH i-g-t, v2 5/7] tests/intel/kms_frontbuffer_tracking: Add FBC support to FP16 formats Swati Sharma
2026-01-07  9:35 ` [PATCH i-g-t,v2 6/7] intel-ci: Add NVL display blocklist Swati Sharma
2026-01-07  9:35 ` [PATCH i-g-t, v2 7/7] tests/intel/kms_test_config: Add NVL display blocklist entry Swati Sharma
2026-01-07 10:48 ` ✓ Xe.CI.BAT: success for Add NVL display related test updates (rev2) Patchwork
2026-01-07 10:55 ` ✓ i915.CI.BAT: " Patchwork
2026-01-07 13:17 ` ✗ Xe.CI.Full: failure " Patchwork
2026-01-07 14:24 ` ✗ i915.CI.Full: " Patchwork
2026-01-14  5:17 ` ✓ i915.CI.Full: success " 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=20260107093535.70116-3-swati2.sharma@intel.com \
    --to=swati2.sharma@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=juha-pekka.heikkila@intel.com \
    /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