All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P
@ 2021-04-29 19:26 Imre Deak
  2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 1/3] tests/kms_ccs: Skip CCS color clear value check for randomizing subtests Imre Deak
                   ` (7 more replies)
  0 siblings, 8 replies; 20+ messages in thread
From: Imre Deak @ 2021-04-29 19:26 UTC (permalink / raw)
  To: igt-dev; +Cc: Maxime Ripard

This patchset fixes a few things I needed to make tests pass on ADL_P
(with other patches waiting still for upstreaming in an internal
branch).

Cc: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
Cc: Lyude Paul <lyude@redhat.com>
Cc: Maxime Ripard <maxime.ripard@bootlin.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Mika Kahola <mika.kahola@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>

Imre Deak (3):
  tests/kms_ccs: Skip CCS color clear value check for randomizing
    subtests
  lib/igt_fb: Fix stride for render_copy based FB conversions
  lib/igt_fb: Remove redundant VC4 SAND plane size alignment

 lib/igt_fb.c       | 10 ++--------
 lib/intel_bufops.c | 25 +++++++++++++++++--------
 lib/intel_bufops.h |  3 ++-
 tests/kms_ccs.c    |  6 +++---
 4 files changed, 24 insertions(+), 20 deletions(-)

-- 
2.27.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [igt-dev] [PATCH i-g-t 1/3] tests/kms_ccs: Skip CCS color clear value check for randomizing subtests
  2021-04-29 19:26 [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P Imre Deak
@ 2021-04-29 19:26 ` Imre Deak
  2021-05-05  0:23   ` Rodrigo Siqueira
  2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Fix stride for render_copy based FB conversions Imre Deak
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 20+ messages in thread
From: Imre Deak @ 2021-04-29 19:26 UTC (permalink / raw)
  To: igt-dev

When filling the color planes with randomized content, the color clear
values won't match what the HW actually wrote there, so skip the clear
value check in this case.

Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Mika Kahola <mika.kahola@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 tests/kms_ccs.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
index 30e0fdb54..61c9b2277 100644
--- a/tests/kms_ccs.c
+++ b/tests/kms_ccs.c
@@ -195,7 +195,7 @@ static void check_ccs_cc_plane(int drm_fd, igt_fb_t *fb, int plane, const float
 	munmap(map, fb->size);
 };
 
-static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color)
+static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color, bool check_cc_plane)
 {
 	int i;
 
@@ -203,7 +203,7 @@ static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color
 		if (igt_fb_is_ccs_plane(fb, i) &&
 		    !igt_fb_is_gen12_ccs_cc_plane(fb, i))
 			check_ccs_plane(drm_fd, fb, i);
-		else if (igt_fb_is_gen12_ccs_cc_plane(fb, i))
+		else if (igt_fb_is_gen12_ccs_cc_plane(fb, i) && check_cc_plane)
 			check_ccs_cc_plane(drm_fd, fb, i, cc_color);
 	}
 }
@@ -348,7 +348,7 @@ static void generate_fb(data_t *data, struct igt_fb *fb,
 		igt_assert_eq(ret, 0);
 
 	if (check_ccs_planes)
-		check_all_ccs_planes(data->drm_fd, fb, cc_color);
+		check_all_ccs_planes(data->drm_fd, fb, cc_color, !(data->flags & TEST_RANDOM));
 
 	fb->fb_id = f.fb_id;
 }
-- 
2.27.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Fix stride for render_copy based FB conversions
  2021-04-29 19:26 [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P Imre Deak
  2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 1/3] tests/kms_ccs: Skip CCS color clear value check for randomizing subtests Imre Deak
@ 2021-04-29 19:26 ` Imre Deak
  2021-04-29 19:51   ` Ville Syrjälä
  2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_fb: Remove redundant VC4 SAND plane size alignment Imre Deak
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 20+ messages in thread
From: Imre Deak @ 2021-04-29 19:26 UTC (permalink / raw)
  To: igt-dev

When setting up an intel_buf for a render copy operation, the render
buffer stride has to match the framebuffer stride. Not ensuring this may
lead to a mismatch modeset error or an -EBUSY set_tiling IOCTL failure
when trying to change the stride for a framebuffer object.

Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 lib/igt_fb.c       |  3 ++-
 lib/intel_bufops.c | 25 +++++++++++++++++--------
 lib/intel_bufops.h |  3 ++-
 3 files changed, 21 insertions(+), 10 deletions(-)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 5c1670410..209bfacf0 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -2257,7 +2257,8 @@ igt_fb_create_intel_buf(int fd, struct buf_ops *bops,
 						     fb->width, fb->height,
 						     fb->plane_bpp[0], 0,
 						     igt_fb_mod_to_tiling(fb->modifier),
-						     compression, fb->size);
+						     compression, fb->size,
+						     fb->strides[0]);
 	intel_buf_set_name(buf, name);
 
 	/* Make sure we close handle on destroy path */
diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
index 3c1cca0cf..5dece5764 100644
--- a/lib/intel_bufops.c
+++ b/lib/intel_bufops.c
@@ -709,7 +709,7 @@ static void __intel_buf_init(struct buf_ops *bops,
 			     struct intel_buf *buf,
 			     int width, int height, int bpp, int alignment,
 			     uint32_t req_tiling, uint32_t compression,
-			     uint64_t bo_size)
+			     uint64_t bo_size, int bo_stride)
 {
 	uint32_t tiling = req_tiling;
 	uint64_t size;
@@ -741,7 +741,9 @@ static void __intel_buf_init(struct buf_ops *bops,
 		 * CCS units, that is 4 * 64 bytes. These 4 CCS units are in
 		 * turn mapped by one L1 AUX page table entry.
 		 */
-		if (bops->intel_gen >= 12)
+		if (bo_stride)
+			buf->surface[0].stride = bo_stride;
+		else if (bops->intel_gen >= 12)
 			buf->surface[0].stride = ALIGN(width * (bpp / 8), 128 * 4);
 		else
 			buf->surface[0].stride = ALIGN(width * (bpp / 8), 128);
@@ -765,10 +767,16 @@ static void __intel_buf_init(struct buf_ops *bops,
 		if (tiling) {
 			devid =  intel_get_drm_devid(bops->fd);
 			tile_width = get_stride(devid, tiling);
-			buf->surface[0].stride = ALIGN(width * (bpp / 8), tile_width);
+			if (bo_stride)
+				buf->surface[0].stride = bo_stride;
+			else
+				buf->surface[0].stride = ALIGN(width * (bpp / 8), tile_width);
 			align_h = tiling == I915_TILING_X ? 8 : 32;
 		} else {
-			buf->surface[0].stride = ALIGN(width * (bpp / 8), alignment ?: 1);
+			if (bo_stride)
+				buf->surface[0].stride = bo_stride;
+			else
+				buf->surface[0].stride = ALIGN(width * (bpp / 8), alignment ?: 1);
 		}
 
 		buf->surface[0].size = buf->surface[0].stride * height;
@@ -816,7 +824,7 @@ void intel_buf_init(struct buf_ops *bops,
 		    uint32_t tiling, uint32_t compression)
 {
 	__intel_buf_init(bops, 0, buf, width, height, bpp, alignment,
-			 tiling, compression, 0);
+			 tiling, compression, 0, 0);
 
 	intel_buf_set_ownership(buf, true);
 }
@@ -875,7 +883,7 @@ void intel_buf_init_using_handle(struct buf_ops *bops,
 				 uint32_t req_tiling, uint32_t compression)
 {
 	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
-			 req_tiling, compression, 0);
+			 req_tiling, compression, 0, 0);
 }
 
 /**
@@ -950,7 +958,8 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
 							 int bpp, int alignment,
 							 uint32_t req_tiling,
 							 uint32_t compression,
-							 uint64_t size)
+							 uint64_t size,
+							 int stride)
 {
 	struct intel_buf *buf;
 
@@ -960,7 +969,7 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
 	igt_assert(buf);
 
 	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
-			 req_tiling, compression, size);
+			 req_tiling, compression, size, stride);
 
 	return buf;
 }
diff --git a/lib/intel_bufops.h b/lib/intel_bufops.h
index 1a3d86925..12c2d5239 100644
--- a/lib/intel_bufops.h
+++ b/lib/intel_bufops.h
@@ -151,7 +151,8 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
 							 int bpp, int alignment,
 							 uint32_t req_tiling,
 							 uint32_t compression,
-							 uint64_t size);
+							 uint64_t size,
+							 int stride);
 void intel_buf_destroy(struct intel_buf *buf);
 
 void *intel_buf_cpu_map(struct intel_buf *buf, bool write);
-- 
2.27.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [igt-dev] [PATCH i-g-t 3/3] lib/igt_fb: Remove redundant VC4 SAND plane size alignment
  2021-04-29 19:26 [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P Imre Deak
  2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 1/3] tests/kms_ccs: Skip CCS color clear value check for randomizing subtests Imre Deak
  2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Fix stride for render_copy based FB conversions Imre Deak
@ 2021-04-29 19:26 ` Imre Deak
  2021-04-29 20:42 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: A few changes to fix test runs on ADL_P Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 20+ messages in thread
From: Imre Deak @ 2021-04-29 19:26 UTC (permalink / raw)
  To: igt-dev; +Cc: Maxime Ripard

Special casing the tile_height > plane_height by rounding up the
plane_height to tile_height is redundant, since in that case the
following return statement will do exactly the same. Remove the special
casing.

The only exception would be if plane_height was 0, but the commit adding the
special case doesn't mention this as a possiblity and I presume that as an
framebuffer configuration.

Cc: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
Cc: Lyude Paul <lyude@redhat.com>
Cc: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 lib/igt_fb.c | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 209bfacf0..f8f02766e 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -801,13 +801,6 @@ static uint64_t calc_plane_size(struct igt_fb *fb, int plane)
 		if (is_gen12_ccs_modifier(fb->modifier))
 			tile_height *= 4;
 
-		/* Special case where the "tile height" represents a
-		 * height-based stride, such as with VC4 SAND tiling modes.
-		 */
-
-		if (tile_height > fb->plane_height[plane])
-			return fb->strides[plane] * tile_height;
-
 		return (uint64_t) fb->strides[plane] *
 			ALIGN(fb->plane_height[plane], tile_height);
 	}
-- 
2.27.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Fix stride for render_copy based FB conversions
  2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Fix stride for render_copy based FB conversions Imre Deak
@ 2021-04-29 19:51   ` Ville Syrjälä
  2021-04-30  5:53     ` Zbigniew Kempczyński
  0 siblings, 1 reply; 20+ messages in thread
From: Ville Syrjälä @ 2021-04-29 19:51 UTC (permalink / raw)
  To: Imre Deak; +Cc: igt-dev

On Thu, Apr 29, 2021 at 10:26:27PM +0300, Imre Deak wrote:
> When setting up an intel_buf for a render copy operation, the render
> buffer stride has to match the framebuffer stride. Not ensuring this may
> lead to a mismatch modeset error or an -EBUSY set_tiling IOCTL failure
> when trying to change the stride for a framebuffer object.

The stride needs to always match, otherwise we're going to be
rendering garbage. What used to be the case is that the igt_buf
thing was just given the stride and size, and it just set up
things so that the render surface covers the entire stride,
whether or not the fb is smaller or not.

So I guess this is some kind of regression because we're now
using the fb->width for something?

> 
> Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
>  lib/igt_fb.c       |  3 ++-
>  lib/intel_bufops.c | 25 +++++++++++++++++--------
>  lib/intel_bufops.h |  3 ++-
>  3 files changed, 21 insertions(+), 10 deletions(-)
> 
> diff --git a/lib/igt_fb.c b/lib/igt_fb.c
> index 5c1670410..209bfacf0 100644
> --- a/lib/igt_fb.c
> +++ b/lib/igt_fb.c
> @@ -2257,7 +2257,8 @@ igt_fb_create_intel_buf(int fd, struct buf_ops *bops,
>  						     fb->width, fb->height,
>  						     fb->plane_bpp[0], 0,
>  						     igt_fb_mod_to_tiling(fb->modifier),
> -						     compression, fb->size);
> +						     compression, fb->size,
> +						     fb->strides[0]);
>  	intel_buf_set_name(buf, name);
>  
>  	/* Make sure we close handle on destroy path */
> diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
> index 3c1cca0cf..5dece5764 100644
> --- a/lib/intel_bufops.c
> +++ b/lib/intel_bufops.c
> @@ -709,7 +709,7 @@ static void __intel_buf_init(struct buf_ops *bops,
>  			     struct intel_buf *buf,
>  			     int width, int height, int bpp, int alignment,
>  			     uint32_t req_tiling, uint32_t compression,
> -			     uint64_t bo_size)
> +			     uint64_t bo_size, int bo_stride)
>  {
>  	uint32_t tiling = req_tiling;
>  	uint64_t size;
> @@ -741,7 +741,9 @@ static void __intel_buf_init(struct buf_ops *bops,
>  		 * CCS units, that is 4 * 64 bytes. These 4 CCS units are in
>  		 * turn mapped by one L1 AUX page table entry.
>  		 */
> -		if (bops->intel_gen >= 12)
> +		if (bo_stride)
> +			buf->surface[0].stride = bo_stride;
> +		else if (bops->intel_gen >= 12)
>  			buf->surface[0].stride = ALIGN(width * (bpp / 8), 128 * 4);
>  		else
>  			buf->surface[0].stride = ALIGN(width * (bpp / 8), 128);
> @@ -765,10 +767,16 @@ static void __intel_buf_init(struct buf_ops *bops,
>  		if (tiling) {
>  			devid =  intel_get_drm_devid(bops->fd);
>  			tile_width = get_stride(devid, tiling);
> -			buf->surface[0].stride = ALIGN(width * (bpp / 8), tile_width);
> +			if (bo_stride)
> +				buf->surface[0].stride = bo_stride;
> +			else
> +				buf->surface[0].stride = ALIGN(width * (bpp / 8), tile_width);
>  			align_h = tiling == I915_TILING_X ? 8 : 32;
>  		} else {
> -			buf->surface[0].stride = ALIGN(width * (bpp / 8), alignment ?: 1);
> +			if (bo_stride)
> +				buf->surface[0].stride = bo_stride;
> +			else
> +				buf->surface[0].stride = ALIGN(width * (bpp / 8), alignment ?: 1);
>  		}
>  
>  		buf->surface[0].size = buf->surface[0].stride * height;
> @@ -816,7 +824,7 @@ void intel_buf_init(struct buf_ops *bops,
>  		    uint32_t tiling, uint32_t compression)
>  {
>  	__intel_buf_init(bops, 0, buf, width, height, bpp, alignment,
> -			 tiling, compression, 0);
> +			 tiling, compression, 0, 0);
>  
>  	intel_buf_set_ownership(buf, true);
>  }
> @@ -875,7 +883,7 @@ void intel_buf_init_using_handle(struct buf_ops *bops,
>  				 uint32_t req_tiling, uint32_t compression)
>  {
>  	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
> -			 req_tiling, compression, 0);
> +			 req_tiling, compression, 0, 0);
>  }
>  
>  /**
> @@ -950,7 +958,8 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
>  							 int bpp, int alignment,
>  							 uint32_t req_tiling,
>  							 uint32_t compression,
> -							 uint64_t size)
> +							 uint64_t size,
> +							 int stride)
>  {
>  	struct intel_buf *buf;
>  
> @@ -960,7 +969,7 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
>  	igt_assert(buf);
>  
>  	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
> -			 req_tiling, compression, size);
> +			 req_tiling, compression, size, stride);
>  
>  	return buf;
>  }
> diff --git a/lib/intel_bufops.h b/lib/intel_bufops.h
> index 1a3d86925..12c2d5239 100644
> --- a/lib/intel_bufops.h
> +++ b/lib/intel_bufops.h
> @@ -151,7 +151,8 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
>  							 int bpp, int alignment,
>  							 uint32_t req_tiling,
>  							 uint32_t compression,
> -							 uint64_t size);
> +							 uint64_t size,
> +							 int stride);
>  void intel_buf_destroy(struct intel_buf *buf);
>  
>  void *intel_buf_cpu_map(struct intel_buf *buf, bool write);
> -- 
> 2.27.0
> 
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev

-- 
Ville Syrjälä
Intel
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: A few changes to fix test runs on ADL_P
  2021-04-29 19:26 [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P Imre Deak
                   ` (2 preceding siblings ...)
  2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_fb: Remove redundant VC4 SAND plane size alignment Imre Deak
@ 2021-04-29 20:42 ` Patchwork
  2021-04-30  0:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2021-04-29 20:42 UTC (permalink / raw)
  To: Imre Deak; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 3451 bytes --]

== Series Details ==

Series: lib/igt_fb: A few changes to fix test runs on ADL_P
URL   : https://patchwork.freedesktop.org/series/89668/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10028 -> IGTPW_5771
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html

Known issues
------------

  Here are the changes found in IGTPW_5771 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bdw-5557u:       NOTRUN -> [SKIP][1] ([fdo#109271]) +27 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html

  * igt@core_hotunplug@unbind-rebind:
    - fi-bdw-5557u:       NOTRUN -> [WARN][2] ([i915#2283])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/fi-bdw-5557u/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_exec_suspend@basic-s0:
    - fi-kbl-soraka:      [PASS][3] -> [INCOMPLETE][4] ([i915#155])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html
    - fi-tgl-u2:          [PASS][5] -> [FAIL][6] ([i915#1888])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/fi-tgl-u2/igt@gem_exec_suspend@basic-s0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/fi-tgl-u2/igt@gem_exec_suspend@basic-s0.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-bdw-5557u:       NOTRUN -> [SKIP][7] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@requests:
    - fi-cml-s:           [DMESG-FAIL][8] -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/fi-cml-s/igt@i915_selftest@live@requests.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/fi-cml-s/igt@i915_selftest@live@requests.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
  [i915#3277]: https://gitlab.freedesktop.org/drm/intel/issues/3277
  [i915#3283]: https://gitlab.freedesktop.org/drm/intel/issues/3283


Participating hosts (44 -> 38)
------------------------------

  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-dg1-1 fi-bdw-samus fi-snb-2600 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_6077 -> IGTPW_5771

  CI-20190529: 20190529
  CI_DRM_10028: d6c61ca97601e774c28aa62b1a84158294d3ec57 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5771: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html
  IGT_6077: 126a3f6fc0e97786e2819085efc84e741093aed5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html

[-- Attachment #1.2: Type: text/html, Size: 4117 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: A few changes to fix test runs on ADL_P
  2021-04-29 19:26 [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P Imre Deak
                   ` (3 preceding siblings ...)
  2021-04-29 20:42 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: A few changes to fix test runs on ADL_P Patchwork
@ 2021-04-30  0:55 ` Patchwork
  2021-05-04 15:00   ` Imre Deak
  2021-05-04  9:39 ` [igt-dev] [PATCH i-g-t 0/3] " Juha-Pekka Heikkila
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 20+ messages in thread
From: Patchwork @ 2021-04-30  0:55 UTC (permalink / raw)
  To: Imre Deak; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 30269 bytes --]

== Series Details ==

Series: lib/igt_fb: A few changes to fix test runs on ADL_P
URL   : https://patchwork.freedesktop.org/series/89668/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10028_full -> IGTPW_5771_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_5771_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_5771_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_5771_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_plane@pixel-format-pipe-a-planes:
    - shard-tglb:         [PASS][1] -> [SKIP][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb3/igt@kms_plane@pixel-format-pipe-a-planes.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb7/igt@kms_plane@pixel-format-pipe-a-planes.html

  * igt@kms_vblank@pipe-d-wait-forked:
    - shard-tglb:         [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb2/igt@kms_vblank@pipe-d-wait-forked.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb5/igt@kms_vblank@pipe-d-wait-forked.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * {igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium}:
    - shard-tglb:         NOTRUN -> [SKIP][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb7/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-iclb:         NOTRUN -> [SKIP][6]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

  
Known issues
------------

  Here are the changes found in IGTPW_5771_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@chamelium:
    - shard-iclb:         NOTRUN -> [SKIP][7] ([fdo#111827])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@feature_discovery@chamelium.html

  * igt@gem_create@create-massive:
    - shard-snb:          NOTRUN -> [DMESG-WARN][8] ([i915#3002])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb2/igt@gem_create@create-massive.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-tglb:         NOTRUN -> [SKIP][9] ([fdo#109314])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@gem_ctx_param@set-priority-not-supported.html
    - shard-iclb:         NOTRUN -> [SKIP][10] ([fdo#109314])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb7/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_persistence@idempotent:
    - shard-snb:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1099]) +5 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb5/igt@gem_ctx_persistence@idempotent.html

  * igt@gem_ctx_persistence@many-contexts:
    - shard-tglb:         [PASS][12] -> [FAIL][13] ([i915#2410])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb8/igt@gem_ctx_persistence@many-contexts.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb8/igt@gem_ctx_persistence@many-contexts.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][14] ([i915#2842])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk1/igt@gem_exec_fair@basic-none@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-tglb:         NOTRUN -> [FAIL][15] ([i915#2842]) +4 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb8/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-iclb:         NOTRUN -> [FAIL][16] ([i915#2842]) +3 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@gem_exec_fair@basic-none@vecs0.html
    - shard-kbl:          NOTRUN -> [FAIL][17] ([i915#2842])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#2842]) +2 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk9/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_reloc@basic-wide-active@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][20] ([i915#2389])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@gem_exec_reloc@basic-wide-active@vcs1.html

  * igt@gem_exec_whisper@basic-contexts-all:
    - shard-glk:          [PASS][21] -> [DMESG-WARN][22] ([i915#118] / [i915#95]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk2/igt@gem_exec_whisper@basic-contexts-all.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk9/igt@gem_exec_whisper@basic-contexts-all.html

  * igt@gem_pread@exhaustion:
    - shard-tglb:         NOTRUN -> [WARN][23] ([i915#2658])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@gem_pread@exhaustion.html
    - shard-glk:          NOTRUN -> [WARN][24] ([i915#2658])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk3/igt@gem_pread@exhaustion.html
    - shard-apl:          NOTRUN -> [WARN][25] ([i915#2658])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl2/igt@gem_pread@exhaustion.html
    - shard-iclb:         NOTRUN -> [WARN][26] ([i915#2658])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb6/igt@gem_pread@exhaustion.html
    - shard-kbl:          NOTRUN -> [WARN][27] ([i915#2658])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl6/igt@gem_pread@exhaustion.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][28] ([i915#2658]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb6/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([i915#768]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#3323])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl2/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gen3_render_tiledx_blits:
    - shard-iclb:         NOTRUN -> [SKIP][31] ([fdo#109289]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb1/igt@gen3_render_tiledx_blits.html
    - shard-tglb:         NOTRUN -> [SKIP][32] ([fdo#109289])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb1/igt@gen3_render_tiledx_blits.html

  * igt@gen7_exec_parse@basic-offset:
    - shard-apl:          NOTRUN -> [SKIP][33] ([fdo#109271]) +248 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl7/igt@gen7_exec_parse@basic-offset.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([fdo#112306])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb2/igt@gen9_exec_parse@allowed-all.html
    - shard-tglb:         NOTRUN -> [SKIP][35] ([fdo#112306])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb5/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [PASS][36] -> [FAIL][37] ([i915#454])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb6/igt@i915_pm_dc@dc6-dpms.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb1/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         NOTRUN -> [FAIL][38] ([i915#454])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-kbl:          NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#1937])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
    - shard-apl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#1937])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
    - shard-glk:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#1937])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          NOTRUN -> [INCOMPLETE][42] ([i915#2782])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb6/igt@i915_selftest@live@hangcheck.html

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-apl6/igt@i915_suspend@sysfs-reader.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl8/igt@i915_suspend@sysfs-reader.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#111615]) +5 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_chamelium@dp-crc-multiple:
    - shard-apl:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +20 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl7/igt@kms_chamelium@dp-crc-multiple.html

  * igt@kms_chamelium@hdmi-audio-edid:
    - shard-kbl:          NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl1/igt@kms_chamelium@hdmi-audio-edid.html

  * igt@kms_chamelium@hdmi-mode-timings:
    - shard-snb:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +20 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb6/igt@kms_chamelium@hdmi-mode-timings.html

  * igt@kms_color@pipe-a-degamma:
    - shard-tglb:         NOTRUN -> [FAIL][49] ([i915#1149])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_color@pipe-a-degamma.html
    - shard-iclb:         NOTRUN -> [FAIL][50] ([i915#1149])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb7/igt@kms_color@pipe-a-degamma.html

  * igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb6/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
    - shard-glk:          NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk4/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html
    - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html

  * igt@kms_content_protection@legacy:
    - shard-apl:          NOTRUN -> [TIMEOUT][55] ([i915#1319])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl1/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@uevent:
    - shard-apl:          NOTRUN -> [FAIL][56] ([i915#2105])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl8/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109278] / [fdo#109279])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#109279] / [i915#3359])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-apl:          NOTRUN -> [DMESG-WARN][59] ([i915#180])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl8/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
    - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271]) +51 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html
    - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#3319]) +1 similar issue
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-dpms:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([fdo#109278]) +12 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-dpms.html

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#3359]) +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109274] / [fdo#109278])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][65] -> [FAIL][66] ([i915#79])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109274]) +1 similar issue
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][68] -> [FAIL][69] ([i915#2122])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1:
    - shard-apl:          NOTRUN -> [FAIL][70] ([i915#79])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
    - shard-kbl:          [PASS][71] -> [DMESG-WARN][72] ([i915#180])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#2587])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
    - shard-apl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#2672])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-glk:          NOTRUN -> [SKIP][75] ([fdo#109271]) +45 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk9/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109280]) +13 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#111825]) +17 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][78] ([i915#1187])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb2/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
    - shard-apl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533]) +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl6/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
    - shard-apl:          NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
    - shard-glk:          NOTRUN -> [FAIL][82] ([fdo#108145] / [i915#265])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-apl:          NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#658]) +4 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#658]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
    - shard-glk:          NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#658]) +1 similar issue
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
    - shard-kbl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html

  * igt@kms_psr2_su@page_flip:
    - shard-tglb:         NOTRUN -> [SKIP][87] ([i915#1911])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_psr2_su@page_flip.html
    - shard-iclb:         NOTRUN -> [SKIP][88] ([fdo#109642] / [fdo#111068] / [i915#658])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([fdo#109441]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [PASS][90] -> [SKIP][91] ([fdo#109441]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-tglb:         NOTRUN -> [FAIL][92] ([i915#132]) +1 similar issue
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb5/igt@kms_psr@psr2_sprite_render.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([fdo#109309])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@kms_tv_load_detect@load-detect.html
    - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109309])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb1/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-kbl:          NOTRUN -> [INCOMPLETE][95] ([i915#155] / [i915#2828])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  * igt@kms_vblank@pipe-d-query-forked-hang:
    - shard-snb:          NOTRUN -> [SKIP][96] ([fdo#109271]) +378 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb2/igt@kms_vblank@pipe-d-query-forked-hang.html

  * igt@kms_vrr@flip-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][97] ([fdo#109502])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@kms_vrr@flip-suspend.html
    - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109502])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb1/igt@kms_vrr@flip-suspend.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][99] ([i915#2530])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb6/igt@nouveau_crc@pipe-a-source-rg.html
    - shard-tglb:         NOTRUN -> [SKIP][100] ([i915#2530]) +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb8/igt@nouveau_crc@pipe-a-source-rg.html

  * igt@nouveau_crc@pipe-d-source-outp-complete:
    - shard-iclb:         NOTRUN -> [SKIP][101] ([fdo#109278] / [i915#2530])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb3/igt@nouveau_crc@pipe-d-source-outp-complete.html

  * igt@prime_nv_api@nv_self_import:
    - shard-iclb:         NOTRUN -> [SKIP][102] ([fdo#109291]) +2 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb7/igt@prime_nv_api@nv_self_import.html

  * igt@prime_nv_pcopy@test1_macro:
    - shard-tglb:         NOTRUN -> [SKIP][103] ([fdo#109291]) +1 similar issue
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@prime_nv_pcopy@test1_macro.html

  * igt@sysfs_clients@create:
    - shard-glk:          NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2994])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk1/igt@sysfs_clients@create.html
    - shard-tglb:         NOTRUN -> [SKIP][105] ([i915#2994]) +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb8/igt@sysfs_clients@create.html
    - shard-apl:          NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#2994]) +2 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl8/igt@sysfs_clients@create.html
    - shard-iclb:         NOTRUN -> [SKIP][107] ([i915#2994]) +1 similar issue
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@sysfs_clients@create.html
    - shard-kbl:          NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#2994])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl7/igt@sysfs_clients@create.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@preservation-s3@vcs1:
    - shard-tglb:         [INCOMPLETE][109] -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb6/igt@gem_ctx_isolation@preservation-s3@vcs1.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb1/igt@gem_ctx_isolation@preservation-s3@vcs1.html

  * igt@gem_eio@in-flight-suspend:
    - shard-apl:          [DMESG-WARN][111] ([i915#180]) -> [PASS][112] +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-apl2/igt@gem_eio@in-flight-suspend.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl7/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [TIMEOUT][113] ([i915#2369] / [i915#3063]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb3/igt@gem_eio@unwedge-stress.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb8/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][115] ([i915#2842]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-apl:          [SKIP][117] ([fdo#109271]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl8/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_whisper@basic-fds-forked-all:
    - shard-glk:          [DMESG-WARN][119] ([i915#118] / [i915#95]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk6/igt@gem_exec_whisper@basic-fds-forked-all.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk7/igt@gem_exec_whisper@basic-fds-forked-all.html

  * igt@gem_mmap_gtt@big-copy:
    - shard-glk:          [FAIL][121] ([i915#307]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk4/igt@gem_mmap_gtt@big-copy.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk6/igt@gem_mmap_gtt@big-copy.html

  * igt@gem_mmap_gtt@big-copy-odd:
    - shard-kbl:          [FAIL][123] ([i915#2428] / [i915#307]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-kbl6/igt@gem_mmap_gtt@big-copy-odd.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl3/igt@gem_mmap_gtt@big-copy-odd.html

  * igt@gem_mmap_gtt@cpuset-big-copy-xy:
    - shard-iclb:         [FAIL][125] ([i915#307]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb5/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb2/igt@gem_mmap_gtt@cpuset-big-copy-xy.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-tglb:         [FAIL][127] -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb2/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_psr@psr2_cursor_blt:
    - shard-iclb:         [SKIP][129] ([fdo#109441]) -> [PASS][130] +2 similar issues
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb6/igt@kms_psr@psr2_cursor_blt.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
    - shard-iclb:         [INCOMPLETE][131] ([i915#1185] / [i915#1373] / [i915#2828]) -> [PASS][132]
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb1/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][133] ([i915#658]) -> [SKIP][134] ([i915#588])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][135] ([i915#2684]) -> [WARN][136] ([i915#1804] / [i915#2684])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [DMESG-WARN][137] ([i915#1226]) -> [SKIP][138] ([fdo#109349])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb5/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
    - shard-iclb:         [SKIP][139] ([i915#2920]) -> [SKIP][140] ([i915#658])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][141], [FAIL][142]) ([i915#2505] / [i915#3002]) -> ([FAIL][143], [FAIL][144], [FAIL][1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html

[-- Attachment #1.2: Type: text/html, Size: 33856 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Fix stride for render_copy based FB conversions
  2021-04-29 19:51   ` Ville Syrjälä
@ 2021-04-30  5:53     ` Zbigniew Kempczyński
  2021-04-30 10:29       ` Imre Deak
  0 siblings, 1 reply; 20+ messages in thread
From: Zbigniew Kempczyński @ 2021-04-30  5:53 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: igt-dev

On Thu, Apr 29, 2021 at 10:51:15PM +0300, Ville Syrjälä wrote:
> On Thu, Apr 29, 2021 at 10:26:27PM +0300, Imre Deak wrote:
> > When setting up an intel_buf for a render copy operation, the render
> > buffer stride has to match the framebuffer stride. Not ensuring this may
> > lead to a mismatch modeset error or an -EBUSY set_tiling IOCTL failure
> > when trying to change the stride for a framebuffer object.
> 
> The stride needs to always match, otherwise we're going to be
> rendering garbage. What used to be the case is that the igt_buf
> thing was just given the stride and size, and it just set up
> things so that the render surface covers the entire stride,
> whether or not the fb is smaller or not.
> 
> So I guess this is some kind of regression because we're now
> using the fb->width for something?

Yes, writing intel_buf I was wet behind the ears here. I assumed
calculating stride according to passed width was enough. As KMS tests
shows I was wrong and there're cases where stride can be greater than
aligned width.

IMO Imre's patch should solve the missing case, thus:

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

--
Zbigniew

> 
> > 
> > Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > ---
> >  lib/igt_fb.c       |  3 ++-
> >  lib/intel_bufops.c | 25 +++++++++++++++++--------
> >  lib/intel_bufops.h |  3 ++-
> >  3 files changed, 21 insertions(+), 10 deletions(-)
> > 
> > diff --git a/lib/igt_fb.c b/lib/igt_fb.c
> > index 5c1670410..209bfacf0 100644
> > --- a/lib/igt_fb.c
> > +++ b/lib/igt_fb.c
> > @@ -2257,7 +2257,8 @@ igt_fb_create_intel_buf(int fd, struct buf_ops *bops,
> >  						     fb->width, fb->height,
> >  						     fb->plane_bpp[0], 0,
> >  						     igt_fb_mod_to_tiling(fb->modifier),
> > -						     compression, fb->size);
> > +						     compression, fb->size,
> > +						     fb->strides[0]);
> >  	intel_buf_set_name(buf, name);
> >  
> >  	/* Make sure we close handle on destroy path */
> > diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
> > index 3c1cca0cf..5dece5764 100644
> > --- a/lib/intel_bufops.c
> > +++ b/lib/intel_bufops.c
> > @@ -709,7 +709,7 @@ static void __intel_buf_init(struct buf_ops *bops,
> >  			     struct intel_buf *buf,
> >  			     int width, int height, int bpp, int alignment,
> >  			     uint32_t req_tiling, uint32_t compression,
> > -			     uint64_t bo_size)
> > +			     uint64_t bo_size, int bo_stride)
> >  {
> >  	uint32_t tiling = req_tiling;
> >  	uint64_t size;
> > @@ -741,7 +741,9 @@ static void __intel_buf_init(struct buf_ops *bops,
> >  		 * CCS units, that is 4 * 64 bytes. These 4 CCS units are in
> >  		 * turn mapped by one L1 AUX page table entry.
> >  		 */
> > -		if (bops->intel_gen >= 12)
> > +		if (bo_stride)
> > +			buf->surface[0].stride = bo_stride;
> > +		else if (bops->intel_gen >= 12)
> >  			buf->surface[0].stride = ALIGN(width * (bpp / 8), 128 * 4);
> >  		else
> >  			buf->surface[0].stride = ALIGN(width * (bpp / 8), 128);
> > @@ -765,10 +767,16 @@ static void __intel_buf_init(struct buf_ops *bops,
> >  		if (tiling) {
> >  			devid =  intel_get_drm_devid(bops->fd);
> >  			tile_width = get_stride(devid, tiling);
> > -			buf->surface[0].stride = ALIGN(width * (bpp / 8), tile_width);
> > +			if (bo_stride)
> > +				buf->surface[0].stride = bo_stride;
> > +			else
> > +				buf->surface[0].stride = ALIGN(width * (bpp / 8), tile_width);
> >  			align_h = tiling == I915_TILING_X ? 8 : 32;
> >  		} else {
> > -			buf->surface[0].stride = ALIGN(width * (bpp / 8), alignment ?: 1);
> > +			if (bo_stride)
> > +				buf->surface[0].stride = bo_stride;
> > +			else
> > +				buf->surface[0].stride = ALIGN(width * (bpp / 8), alignment ?: 1);
> >  		}
> >  
> >  		buf->surface[0].size = buf->surface[0].stride * height;
> > @@ -816,7 +824,7 @@ void intel_buf_init(struct buf_ops *bops,
> >  		    uint32_t tiling, uint32_t compression)
> >  {
> >  	__intel_buf_init(bops, 0, buf, width, height, bpp, alignment,
> > -			 tiling, compression, 0);
> > +			 tiling, compression, 0, 0);
> >  
> >  	intel_buf_set_ownership(buf, true);
> >  }
> > @@ -875,7 +883,7 @@ void intel_buf_init_using_handle(struct buf_ops *bops,
> >  				 uint32_t req_tiling, uint32_t compression)
> >  {
> >  	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
> > -			 req_tiling, compression, 0);
> > +			 req_tiling, compression, 0, 0);
> >  }
> >  
> >  /**
> > @@ -950,7 +958,8 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
> >  							 int bpp, int alignment,
> >  							 uint32_t req_tiling,
> >  							 uint32_t compression,
> > -							 uint64_t size)
> > +							 uint64_t size,
> > +							 int stride)
> >  {
> >  	struct intel_buf *buf;
> >  
> > @@ -960,7 +969,7 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
> >  	igt_assert(buf);
> >  
> >  	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
> > -			 req_tiling, compression, size);
> > +			 req_tiling, compression, size, stride);
> >  
> >  	return buf;
> >  }
> > diff --git a/lib/intel_bufops.h b/lib/intel_bufops.h
> > index 1a3d86925..12c2d5239 100644
> > --- a/lib/intel_bufops.h
> > +++ b/lib/intel_bufops.h
> > @@ -151,7 +151,8 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
> >  							 int bpp, int alignment,
> >  							 uint32_t req_tiling,
> >  							 uint32_t compression,
> > -							 uint64_t size);
> > +							 uint64_t size,
> > +							 int stride);
> >  void intel_buf_destroy(struct intel_buf *buf);
> >  
> >  void *intel_buf_cpu_map(struct intel_buf *buf, bool write);
> > -- 
> > 2.27.0
> > 
> > _______________________________________________
> > igt-dev mailing list
> > igt-dev@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/igt-dev
> 
> -- 
> Ville Syrjälä
> Intel
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Fix stride for render_copy based FB conversions
  2021-04-30  5:53     ` Zbigniew Kempczyński
@ 2021-04-30 10:29       ` Imre Deak
  0 siblings, 0 replies; 20+ messages in thread
From: Imre Deak @ 2021-04-30 10:29 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

On Fri, Apr 30, 2021 at 07:53:02AM +0200, Zbigniew Kempczyński wrote:
> On Thu, Apr 29, 2021 at 10:51:15PM +0300, Ville Syrjälä wrote:
> > On Thu, Apr 29, 2021 at 10:26:27PM +0300, Imre Deak wrote:
> > > When setting up an intel_buf for a render copy operation, the render
> > > buffer stride has to match the framebuffer stride. Not ensuring this may
> > > lead to a mismatch modeset error or an -EBUSY set_tiling IOCTL failure
> > > when trying to change the stride for a framebuffer object.
> > 
> > The stride needs to always match, otherwise we're going to be
> > rendering garbage. What used to be the case is that the igt_buf
> > thing was just given the stride and size, and it just set up
> > things so that the render surface covers the entire stride,
> > whether or not the fb is smaller or not.
> > 
> > So I guess this is some kind of regression because we're now
> > using the fb->width for something?
> 
> Yes, writing intel_buf I was wet behind the ears here. I assumed
> calculating stride according to passed width was enough. As KMS tests
> shows I was wrong and there're cases where stride can be greater than
> aligned width.

Not sure if it can cause an actual problem in the public tree, but yes,
ADL_P needs to pad the stride for CCS FBs where there would be a
mismatch.

> IMO Imre's patch should solve the missing case, thus:
> 
> Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> 
> --
> Zbigniew
> 
> > 
> > > 
> > > Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> > > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > > ---
> > >  lib/igt_fb.c       |  3 ++-
> > >  lib/intel_bufops.c | 25 +++++++++++++++++--------
> > >  lib/intel_bufops.h |  3 ++-
> > >  3 files changed, 21 insertions(+), 10 deletions(-)
> > > 
> > > diff --git a/lib/igt_fb.c b/lib/igt_fb.c
> > > index 5c1670410..209bfacf0 100644
> > > --- a/lib/igt_fb.c
> > > +++ b/lib/igt_fb.c
> > > @@ -2257,7 +2257,8 @@ igt_fb_create_intel_buf(int fd, struct buf_ops *bops,
> > >  						     fb->width, fb->height,
> > >  						     fb->plane_bpp[0], 0,
> > >  						     igt_fb_mod_to_tiling(fb->modifier),
> > > -						     compression, fb->size);
> > > +						     compression, fb->size,
> > > +						     fb->strides[0]);
> > >  	intel_buf_set_name(buf, name);
> > >  
> > >  	/* Make sure we close handle on destroy path */
> > > diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
> > > index 3c1cca0cf..5dece5764 100644
> > > --- a/lib/intel_bufops.c
> > > +++ b/lib/intel_bufops.c
> > > @@ -709,7 +709,7 @@ static void __intel_buf_init(struct buf_ops *bops,
> > >  			     struct intel_buf *buf,
> > >  			     int width, int height, int bpp, int alignment,
> > >  			     uint32_t req_tiling, uint32_t compression,
> > > -			     uint64_t bo_size)
> > > +			     uint64_t bo_size, int bo_stride)
> > >  {
> > >  	uint32_t tiling = req_tiling;
> > >  	uint64_t size;
> > > @@ -741,7 +741,9 @@ static void __intel_buf_init(struct buf_ops *bops,
> > >  		 * CCS units, that is 4 * 64 bytes. These 4 CCS units are in
> > >  		 * turn mapped by one L1 AUX page table entry.
> > >  		 */
> > > -		if (bops->intel_gen >= 12)
> > > +		if (bo_stride)
> > > +			buf->surface[0].stride = bo_stride;
> > > +		else if (bops->intel_gen >= 12)
> > >  			buf->surface[0].stride = ALIGN(width * (bpp / 8), 128 * 4);
> > >  		else
> > >  			buf->surface[0].stride = ALIGN(width * (bpp / 8), 128);
> > > @@ -765,10 +767,16 @@ static void __intel_buf_init(struct buf_ops *bops,
> > >  		if (tiling) {
> > >  			devid =  intel_get_drm_devid(bops->fd);
> > >  			tile_width = get_stride(devid, tiling);
> > > -			buf->surface[0].stride = ALIGN(width * (bpp / 8), tile_width);
> > > +			if (bo_stride)
> > > +				buf->surface[0].stride = bo_stride;
> > > +			else
> > > +				buf->surface[0].stride = ALIGN(width * (bpp / 8), tile_width);
> > >  			align_h = tiling == I915_TILING_X ? 8 : 32;
> > >  		} else {
> > > -			buf->surface[0].stride = ALIGN(width * (bpp / 8), alignment ?: 1);
> > > +			if (bo_stride)
> > > +				buf->surface[0].stride = bo_stride;
> > > +			else
> > > +				buf->surface[0].stride = ALIGN(width * (bpp / 8), alignment ?: 1);
> > >  		}
> > >  
> > >  		buf->surface[0].size = buf->surface[0].stride * height;
> > > @@ -816,7 +824,7 @@ void intel_buf_init(struct buf_ops *bops,
> > >  		    uint32_t tiling, uint32_t compression)
> > >  {
> > >  	__intel_buf_init(bops, 0, buf, width, height, bpp, alignment,
> > > -			 tiling, compression, 0);
> > > +			 tiling, compression, 0, 0);
> > >  
> > >  	intel_buf_set_ownership(buf, true);
> > >  }
> > > @@ -875,7 +883,7 @@ void intel_buf_init_using_handle(struct buf_ops *bops,
> > >  				 uint32_t req_tiling, uint32_t compression)
> > >  {
> > >  	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
> > > -			 req_tiling, compression, 0);
> > > +			 req_tiling, compression, 0, 0);
> > >  }
> > >  
> > >  /**
> > > @@ -950,7 +958,8 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
> > >  							 int bpp, int alignment,
> > >  							 uint32_t req_tiling,
> > >  							 uint32_t compression,
> > > -							 uint64_t size)
> > > +							 uint64_t size,
> > > +							 int stride)
> > >  {
> > >  	struct intel_buf *buf;
> > >  
> > > @@ -960,7 +969,7 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
> > >  	igt_assert(buf);
> > >  
> > >  	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
> > > -			 req_tiling, compression, size);
> > > +			 req_tiling, compression, size, stride);
> > >  
> > >  	return buf;
> > >  }
> > > diff --git a/lib/intel_bufops.h b/lib/intel_bufops.h
> > > index 1a3d86925..12c2d5239 100644
> > > --- a/lib/intel_bufops.h
> > > +++ b/lib/intel_bufops.h
> > > @@ -151,7 +151,8 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
> > >  							 int bpp, int alignment,
> > >  							 uint32_t req_tiling,
> > >  							 uint32_t compression,
> > > -							 uint64_t size);
> > > +							 uint64_t size,
> > > +							 int stride);
> > >  void intel_buf_destroy(struct intel_buf *buf);
> > >  
> > >  void *intel_buf_cpu_map(struct intel_buf *buf, bool write);
> > > -- 
> > > 2.27.0
> > > 
> > > _______________________________________________
> > > igt-dev mailing list
> > > igt-dev@lists.freedesktop.org
> > > https://lists.freedesktop.org/mailman/listinfo/igt-dev
> > 
> > -- 
> > Ville Syrjälä
> > Intel
> > _______________________________________________
> > igt-dev mailing list
> > igt-dev@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P
  2021-04-29 19:26 [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P Imre Deak
                   ` (4 preceding siblings ...)
  2021-04-30  0:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-05-04  9:39 ` Juha-Pekka Heikkila
  2021-05-04 12:07 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: A few changes to fix test runs on ADL_P (rev2) Patchwork
  2021-05-04 13:45 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  7 siblings, 0 replies; 20+ messages in thread
From: Juha-Pekka Heikkila @ 2021-05-04  9:39 UTC (permalink / raw)
  To: Imre Deak, igt-dev; +Cc: Maxime Ripard

Series is

Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>

On 29.4.2021 22.26, Imre Deak wrote:
> This patchset fixes a few things I needed to make tests pass on ADL_P
> (with other patches waiting still for upstreaming in an internal
> branch).
> 
> Cc: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
> Cc: Lyude Paul <lyude@redhat.com>
> Cc: Maxime Ripard <maxime.ripard@bootlin.com>
> Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> Cc: Mika Kahola <mika.kahola@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> 
> Imre Deak (3):
>    tests/kms_ccs: Skip CCS color clear value check for randomizing
>      subtests
>    lib/igt_fb: Fix stride for render_copy based FB conversions
>    lib/igt_fb: Remove redundant VC4 SAND plane size alignment
> 
>   lib/igt_fb.c       | 10 ++--------
>   lib/intel_bufops.c | 25 +++++++++++++++++--------
>   lib/intel_bufops.h |  3 ++-
>   tests/kms_ccs.c    |  6 +++---
>   4 files changed, 24 insertions(+), 20 deletions(-)
> 

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: A few changes to fix test runs on ADL_P (rev2)
  2021-04-29 19:26 [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P Imre Deak
                   ` (5 preceding siblings ...)
  2021-05-04  9:39 ` [igt-dev] [PATCH i-g-t 0/3] " Juha-Pekka Heikkila
@ 2021-05-04 12:07 ` Patchwork
  2021-05-04 13:45 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  7 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2021-05-04 12:07 UTC (permalink / raw)
  To: Imre Deak; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 2886 bytes --]

== Series Details ==

Series: lib/igt_fb: A few changes to fix test runs on ADL_P (rev2)
URL   : https://patchwork.freedesktop.org/series/89668/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10041 -> IGTPW_5781
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/index.html

Known issues
------------

  Here are the changes found in IGTPW_5781 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_prime@amd-to-i915:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][1] ([fdo#109271])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/fi-kbl-soraka/igt@amdgpu/amd_prime@amd-to-i915.html

  * igt@i915_selftest@live@execlists:
    - fi-bsw-kefka:       [PASS][2] -> [INCOMPLETE][3] ([i915#2782] / [i915#2940])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/fi-bsw-kefka/igt@i915_selftest@live@execlists.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/fi-bsw-kefka/igt@i915_selftest@live@execlists.html

  * igt@runner@aborted:
    - fi-bsw-kefka:       NOTRUN -> [FAIL][4] ([i915#1436] / [i915#2722])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/fi-bsw-kefka/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s0:
    - {fi-tgl-1115g4}:    [FAIL][5] ([i915#1888]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940


Participating hosts (46 -> 40)
------------------------------

  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_6077 -> IGTPW_5781

  CI-20190529: 20190529
  CI_DRM_10041: 54c7983f58407208cb3bd82f04112debb4ee3440 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5781: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/index.html
  IGT_6077: 126a3f6fc0e97786e2819085efc84e741093aed5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/index.html

[-- Attachment #1.2: Type: text/html, Size: 3564 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_fb: A few changes to fix test runs on ADL_P (rev2)
  2021-04-29 19:26 [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P Imre Deak
                   ` (6 preceding siblings ...)
  2021-05-04 12:07 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: A few changes to fix test runs on ADL_P (rev2) Patchwork
@ 2021-05-04 13:45 ` Patchwork
  7 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2021-05-04 13:45 UTC (permalink / raw)
  To: Imre Deak; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 30276 bytes --]

== Series Details ==

Series: lib/igt_fb: A few changes to fix test runs on ADL_P (rev2)
URL   : https://patchwork.freedesktop.org/series/89668/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10041_full -> IGTPW_5781_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/index.html

Known issues
------------

  Here are the changes found in IGTPW_5781_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-apl:          NOTRUN -> [DMESG-WARN][1] ([i915#180])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl3/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-tglb:         NOTRUN -> [SKIP][2] ([fdo#109314])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb1/igt@gem_ctx_param@set-priority-not-supported.html
    - shard-iclb:         NOTRUN -> [SKIP][3] ([fdo#109314])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb3/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_persistence@idempotent:
    - shard-snb:          NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) +6 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-snb6/igt@gem_ctx_persistence@idempotent.html

  * igt@gem_eio@unwedge-stress:
    - shard-snb:          NOTRUN -> [FAIL][5] ([i915#3354])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-snb2/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          NOTRUN -> [FAIL][6] ([i915#2842]) +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html
    - shard-tglb:         NOTRUN -> [FAIL][7] ([i915#2842]) +5 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb8/igt@gem_exec_fair@basic-none@vcs0.html
    - shard-glk:          NOTRUN -> [FAIL][8] ([i915#2842]) +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk2/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-none@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][9] ([i915#2842]) +4 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-kbl:          [PASS][10] -> [FAIL][11] ([i915#2842])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-glk:          [PASS][12] -> [FAIL][13] ([i915#2842]) +2 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-glk8/igt@gem_exec_fair@basic-pace@vecs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk5/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][14] -> [FAIL][15] ([i915#2849])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_reloc@basic-wide-active@rcs0:
    - shard-snb:          NOTRUN -> [FAIL][16] ([i915#2389]) +2 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-snb6/igt@gem_exec_reloc@basic-wide-active@rcs0.html

  * igt@gem_exec_reloc@basic-wide-active@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][17] ([i915#2389])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb2/igt@gem_exec_reloc@basic-wide-active@vcs1.html

  * igt@gem_exec_whisper@basic-forked:
    - shard-glk:          [PASS][18] -> [DMESG-WARN][19] ([i915#118] / [i915#95])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-glk7/igt@gem_exec_whisper@basic-forked.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk9/igt@gem_exec_whisper@basic-forked.html

  * igt@gem_mmap_gtt@cpuset-medium-copy:
    - shard-iclb:         [PASS][20] -> [FAIL][21] ([i915#2428])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-iclb6/igt@gem_mmap_gtt@cpuset-medium-copy.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb8/igt@gem_mmap_gtt@cpuset-medium-copy.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-odd:
    - shard-iclb:         [PASS][22] -> [FAIL][23] ([i915#307])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-iclb6/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb8/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html

  * igt@gem_pread@exhaustion:
    - shard-tglb:         NOTRUN -> [WARN][24] ([i915#2658])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb8/igt@gem_pread@exhaustion.html
    - shard-glk:          NOTRUN -> [WARN][25] ([i915#2658])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk2/igt@gem_pread@exhaustion.html
    - shard-apl:          NOTRUN -> [WARN][26] ([i915#2658]) +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl6/igt@gem_pread@exhaustion.html
    - shard-iclb:         NOTRUN -> [WARN][27] ([i915#2658])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb4/igt@gem_pread@exhaustion.html
    - shard-kbl:          NOTRUN -> [WARN][28] ([i915#2658])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl3/igt@gem_pread@exhaustion.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][29] ([i915#2658]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-snb6/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][30] ([i915#768]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb1/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([i915#3297])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb3/igt@gem_userptr_blits@dmabuf-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][32] ([i915#3297])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb8/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_workarounds@suspend-resume:
    - shard-kbl:          [PASS][33] -> [DMESG-WARN][34] ([i915#180])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-kbl2/igt@gem_workarounds@suspend-resume.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl6/igt@gem_workarounds@suspend-resume.html

  * igt@gen3_render_tiledx_blits:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#109289])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb4/igt@gen3_render_tiledx_blits.html

  * igt@gen7_exec_parse@basic-offset:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#109289]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb3/igt@gen7_exec_parse@basic-offset.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([fdo#112306]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb5/igt@gen9_exec_parse@allowed-all.html
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#112306]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb7/igt@gen9_exec_parse@allowed-all.html

  * igt@gen9_exec_parse@bb-large:
    - shard-apl:          NOTRUN -> [FAIL][39] ([i915#3296])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl6/igt@gen9_exec_parse@bb-large.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         NOTRUN -> [FAIL][40] ([i915#454])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb3/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-kbl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#1937])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
    - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#1937])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
    - shard-glk:          NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#1937])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk9/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#111644] / [i915#1397] / [i915#2411])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [PASS][45] -> [DMESG-WARN][46] ([i915#180]) +2 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#111615]) +5 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_chamelium@hdmi-audio-edid:
    - shard-kbl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +9 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl7/igt@kms_chamelium@hdmi-audio-edid.html

  * igt@kms_color@pipe-a-degamma:
    - shard-tglb:         NOTRUN -> [FAIL][49] ([i915#1149])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb8/igt@kms_color@pipe-a-degamma.html
    - shard-iclb:         NOTRUN -> [FAIL][50] ([i915#1149])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb4/igt@kms_color@pipe-a-degamma.html

  * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
    - shard-snb:          NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +24 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-snb2/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-5:
    - shard-apl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +23 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl8/igt@kms_color_chamelium@pipe-b-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb3/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
    - shard-glk:          NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk1/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#109284] / [fdo#111827]) +6 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html
    - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb7/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html

  * igt@kms_content_protection@uevent:
    - shard-apl:          NOTRUN -> [FAIL][57] ([i915#2105])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl7/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109278] / [fdo#109279])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html
    - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#109279] / [i915#3359])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
    - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271]) +103 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html
    - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#3319]) +1 similar issue
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-dpms:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([fdo#109278]) +9 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb4/igt@kms_cursor_crc@pipe-d-cursor-dpms.html

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#3359])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109274] / [fdo#109278])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][65] ([i915#2065])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb6/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-iclb:         NOTRUN -> [SKIP][66] ([i915#2065])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109274]) +1 similar issue
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-kbl:          [PASS][68] -> [INCOMPLETE][69] ([i915#155])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl3/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([i915#2587])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
    - shard-apl:          NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#2672])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile:
    - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#2642])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
    - shard-snb:          NOTRUN -> [SKIP][73] ([fdo#109271]) +391 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-snb5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-glk:          NOTRUN -> [SKIP][74] ([fdo#109271]) +48 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109280]) +12 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:
    - shard-tglb:         NOTRUN -> [SKIP][76] ([fdo#111825]) +20 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html

  * igt@kms_hdr@static-toggle:
    - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#1187])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb7/igt@kms_hdr@static-toggle.html
    - shard-tglb:         NOTRUN -> [SKIP][78] ([i915#1187])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb6/igt@kms_hdr@static-toggle.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl1/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#533]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl7/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][82] ([fdo#108145] / [i915#265])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
    - shard-glk:          NOTRUN -> [FAIL][83] ([fdo#108145] / [i915#265])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk5/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-tglb:         [PASS][84] -> [FAIL][85] ([i915#899])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-tglb5/igt@kms_plane_lowres@pipe-a-tiling-x.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb2/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-apl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658]) +4 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
    - shard-iclb:         NOTRUN -> [SKIP][87] ([i915#658])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
    - shard-glk:          NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
    - shard-kbl:          NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#658]) +3 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html

  * igt@kms_psr2_su@page_flip:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#1911])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb5/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][91] -> [SKIP][92] ([fdo#109441])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb7/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         NOTRUN -> [SKIP][93] ([fdo#109441])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-tglb:         NOTRUN -> [FAIL][94] ([i915#132]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb3/igt@kms_psr@psr2_sprite_render.html

  * igt@kms_setmode@basic:
    - shard-snb:          NOTRUN -> [FAIL][95] ([i915#31])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-snb6/igt@kms_setmode@basic.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][96] ([fdo#109309])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb1/igt@kms_tv_load_detect@load-detect.html
    - shard-iclb:         NOTRUN -> [SKIP][97] ([fdo#109309])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb2/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@flip-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][98] ([fdo#109502])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb7/igt@kms_vrr@flip-suspend.html
    - shard-tglb:         NOTRUN -> [SKIP][99] ([fdo#109502])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb7/igt@kms_vrr@flip-suspend.html

  * igt@kms_writeback@writeback-check-output:
    - shard-apl:          NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#2437]) +2 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl3/igt@kms_writeback@writeback-check-output.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-kbl:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#2437])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl4/igt@kms_writeback@writeback-fb-id.html
    - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#2437])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb8/igt@kms_writeback@writeback-fb-id.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#2530])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb6/igt@nouveau_crc@pipe-a-source-rg.html
    - shard-tglb:         NOTRUN -> [SKIP][104] ([i915#2530]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb2/igt@nouveau_crc@pipe-a-source-rg.html

  * igt@nouveau_crc@pipe-d-source-outp-complete:
    - shard-iclb:         NOTRUN -> [SKIP][105] ([fdo#109278] / [i915#2530])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb5/igt@nouveau_crc@pipe-d-source-outp-complete.html

  * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
    - shard-apl:          NOTRUN -> [SKIP][106] ([fdo#109271]) +209 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl3/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
    - shard-tglb:         NOTRUN -> [SKIP][107] ([fdo#109291]) +2 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html

  * igt@prime_nv_api@nv_self_import:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([fdo#109291]) +1 similar issue
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb2/igt@prime_nv_api@nv_self_import.html

  * igt@sysfs_clients@create:
    - shard-glk:          NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#2994])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk1/igt@sysfs_clients@create.html
    - shard-tglb:         NOTRUN -> [SKIP][110] ([i915#2994])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb1/igt@sysfs_clients@create.html
    - shard-apl:          NOTRUN -> [SKIP][111] ([fdo#109271] / [i915#2994]) +3 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl8/igt@sysfs_clients@create.html
    - shard-iclb:         NOTRUN -> [SKIP][112] ([i915#2994])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb1/igt@sysfs_clients@create.html

  * igt@sysfs_clients@sema-25:
    - shard-kbl:          NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#2994]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl7/igt@sysfs_clients@sema-25.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@many-contexts:
    - shard-tglb:         [FAIL][114] ([i915#2410]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-tglb1/igt@gem_ctx_persistence@many-contexts.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb2/igt@gem_ctx_persistence@many-contexts.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         [FAIL][116] ([i915#2842]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-kbl:          [FAIL][118] ([i915#2842]) -> [PASS][119] +1 similar issue
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-kbl2/igt@gem_exec_fair@basic-none-vip@rcs0.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl1/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-tglb:         [FAIL][120] ([i915#2842]) -> [PASS][121] +1 similar issue
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_mmap_gtt@cpuset-big-copy:
    - shard-glk:          [FAIL][122] ([i915#307]) -> [PASS][123] +2 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-glk6/igt@gem_mmap_gtt@cpuset-big-copy.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk5/igt@gem_mmap_gtt@cpuset-big-copy.html

  * igt@gem_mmap_gtt@cpuset-big-copy-xy:
    - shard-iclb:         [FAIL][124] ([i915#2428]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-iclb5/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb4/igt@gem_mmap_gtt@cpuset-big-copy-xy.html

  * igt@gem_mmap_offset@clear:
    - shard-glk:          [FAIL][126] ([i915#1888] / [i915#3160]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-glk2/igt@gem_mmap_offset@clear.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk7/igt@gem_mmap_offset@clear.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [FAIL][128] ([i915#644]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-tglb:         [FAIL][130] ([i915#3434]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-tglb6/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb1/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-kbl:          [DMESG-WARN][132] ([i915#180]) -> [PASS][133] +4 similar issues
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          [DMESG-WARN][134] ([i915#180]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [SKIP][136] ([fdo#109441]) -> [PASS][137] +2 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-iclb5/igt@kms_psr@psr2_sprite_plane_move.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html

  
#### Warnings ####

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-iclb:         [WARN][138] ([i915#1804] / [i915#2684]) -> [WARN][139] ([i915#2684])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-iclb3/igt@i915_pm_rc6_residency@rc6-fence.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb5/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4:
    - shard-iclb:         [SKIP][140] ([i915#658]) -> [SKIP][141] ([i915#2920]) +1 similar issue
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-iclb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4:
    - shard-iclb:         [SKIP][142] ([i915#2920]) -> [SKIP][143] ([i915#658]) +2 similar issues
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10041/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-ar

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/index.html

[-- Attachment #1.2: Type: text/html, Size: 33901 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: A few changes to fix test runs on ADL_P
  2021-04-30  0:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-05-04 15:00   ` Imre Deak
  2021-05-04 15:13     ` Ville Syrjälä
  0 siblings, 1 reply; 20+ messages in thread
From: Imre Deak @ 2021-05-04 15:00 UTC (permalink / raw)
  To: igt-dev

On Fri, Apr 30, 2021 at 12:55:28AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: lib/igt_fb: A few changes to fix test runs on ADL_P
> URL   : https://patchwork.freedesktop.org/series/89668/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_10028_full -> IGTPW_5771_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_5771_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_5771_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_5771_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_plane@pixel-format-pipe-a-planes:
>     - shard-tglb:         [PASS][1] -> [SKIP][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb3/igt@kms_plane@pixel-format-pipe-a-planes.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb7/igt@kms_plane@pixel-format-pipe-a-planes.html

Test requirement not met in function test_format_plane, file ../tests/kms_plane.c:912:
Test requirement: num_unique_crcs(ref_crc[PLANAR_CRC_SET], data->num_colors) > 1

after a bunch of CRC mismatches, so I suppose the CRC generation gets
stuck at one point.

It's on the same path this patchset changes, however on TGL the patchset
should have no functional change: the stride calculated by
__intel_buf_init() and the stride passed to it by
igt_fb_create_intel_buf() always match based on my tests. After testing
the same CI testlist locally on 2 TGLs, I also rerun the testlist where
this problem didn't happen:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5781/shard-tglb2/igt@kms_plane@pixel-format-pipe-a-planes.html

>   * igt@kms_vblank@pipe-d-wait-forked:
>     - shard-tglb:         [PASS][3] -> [DMESG-WARN][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb2/igt@kms_vblank@pipe-d-wait-forked.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb5/igt@kms_vblank@pipe-d-wait-forked.html

<7> [18.622058] i915 0000:00:02.0: [drm:drm_dp_dpcd_access] AUX A/DDI A/PHY A: Too many retries, giving up. First error: -110
<3> [18.622083] i915 0000:00:02.0: [drm] *ERROR* Failed to read DPCD register 0x60

This happens already during boot-up on the same machine. Can't see how
it's related to the changes in this patchset, also happened already
earlier on the same machine:

https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10015/shard-tglb5/boot10.txt

But I couldn't find the same issue happening on any of the other 7 TGLs
in shard. Looks like something with the panel, or shard-tglb5.

> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * {igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium}:
>     - shard-tglb:         NOTRUN -> [SKIP][5]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb7/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
>     - shard-iclb:         NOTRUN -> [SKIP][6]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_5771_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@feature_discovery@chamelium:
>     - shard-iclb:         NOTRUN -> [SKIP][7] ([fdo#111827])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@feature_discovery@chamelium.html
> 
>   * igt@gem_create@create-massive:
>     - shard-snb:          NOTRUN -> [DMESG-WARN][8] ([i915#3002])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb2/igt@gem_create@create-massive.html
> 
>   * igt@gem_ctx_param@set-priority-not-supported:
>     - shard-tglb:         NOTRUN -> [SKIP][9] ([fdo#109314])
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@gem_ctx_param@set-priority-not-supported.html
>     - shard-iclb:         NOTRUN -> [SKIP][10] ([fdo#109314])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb7/igt@gem_ctx_param@set-priority-not-supported.html
> 
>   * igt@gem_ctx_persistence@idempotent:
>     - shard-snb:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1099]) +5 similar issues
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb5/igt@gem_ctx_persistence@idempotent.html
> 
>   * igt@gem_ctx_persistence@many-contexts:
>     - shard-tglb:         [PASS][12] -> [FAIL][13] ([i915#2410])
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb8/igt@gem_ctx_persistence@many-contexts.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb8/igt@gem_ctx_persistence@many-contexts.html
> 
>   * igt@gem_exec_fair@basic-none@rcs0:
>     - shard-glk:          NOTRUN -> [FAIL][14] ([i915#2842])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk1/igt@gem_exec_fair@basic-none@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-tglb:         NOTRUN -> [FAIL][15] ([i915#2842]) +4 similar issues
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb8/igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vecs0:
>     - shard-iclb:         NOTRUN -> [FAIL][16] ([i915#2842]) +3 similar issues
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@gem_exec_fair@basic-none@vecs0.html
>     - shard-kbl:          NOTRUN -> [FAIL][17] ([i915#2842])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html
> 
>   * igt@gem_exec_fair@basic-throttle@rcs0:
>     - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#2842]) +2 similar issues
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk9/igt@gem_exec_fair@basic-throttle@rcs0.html
> 
>   * igt@gem_exec_reloc@basic-wide-active@vcs1:
>     - shard-iclb:         NOTRUN -> [FAIL][20] ([i915#2389])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@gem_exec_reloc@basic-wide-active@vcs1.html
> 
>   * igt@gem_exec_whisper@basic-contexts-all:
>     - shard-glk:          [PASS][21] -> [DMESG-WARN][22] ([i915#118] / [i915#95]) +1 similar issue
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk2/igt@gem_exec_whisper@basic-contexts-all.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk9/igt@gem_exec_whisper@basic-contexts-all.html
> 
>   * igt@gem_pread@exhaustion:
>     - shard-tglb:         NOTRUN -> [WARN][23] ([i915#2658])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@gem_pread@exhaustion.html
>     - shard-glk:          NOTRUN -> [WARN][24] ([i915#2658])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk3/igt@gem_pread@exhaustion.html
>     - shard-apl:          NOTRUN -> [WARN][25] ([i915#2658])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl2/igt@gem_pread@exhaustion.html
>     - shard-iclb:         NOTRUN -> [WARN][26] ([i915#2658])
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb6/igt@gem_pread@exhaustion.html
>     - shard-kbl:          NOTRUN -> [WARN][27] ([i915#2658])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl6/igt@gem_pread@exhaustion.html
> 
>   * igt@gem_pwrite@basic-exhaustion:
>     - shard-snb:          NOTRUN -> [WARN][28] ([i915#2658]) +1 similar issue
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb6/igt@gem_pwrite@basic-exhaustion.html
> 
>   * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
>     - shard-iclb:         NOTRUN -> [SKIP][29] ([i915#768]) +1 similar issue
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-apl:          NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#3323])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl2/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gen3_render_tiledx_blits:
>     - shard-iclb:         NOTRUN -> [SKIP][31] ([fdo#109289]) +1 similar issue
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb1/igt@gen3_render_tiledx_blits.html
>     - shard-tglb:         NOTRUN -> [SKIP][32] ([fdo#109289])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb1/igt@gen3_render_tiledx_blits.html
> 
>   * igt@gen7_exec_parse@basic-offset:
>     - shard-apl:          NOTRUN -> [SKIP][33] ([fdo#109271]) +248 similar issues
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl7/igt@gen7_exec_parse@basic-offset.html
> 
>   * igt@gen9_exec_parse@allowed-all:
>     - shard-iclb:         NOTRUN -> [SKIP][34] ([fdo#112306])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb2/igt@gen9_exec_parse@allowed-all.html
>     - shard-tglb:         NOTRUN -> [SKIP][35] ([fdo#112306])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb5/igt@gen9_exec_parse@allowed-all.html
> 
>   * igt@i915_pm_dc@dc6-dpms:
>     - shard-iclb:         [PASS][36] -> [FAIL][37] ([i915#454])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb6/igt@i915_pm_dc@dc6-dpms.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb1/igt@i915_pm_dc@dc6-dpms.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-tglb:         NOTRUN -> [FAIL][38] ([i915#454])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
>     - shard-kbl:          NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#1937])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
>     - shard-apl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#1937])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
> 
>   * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>     - shard-glk:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#1937])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - shard-snb:          NOTRUN -> [INCOMPLETE][42] ([i915#2782])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb6/igt@i915_selftest@live@hangcheck.html
> 
>   * igt@i915_suspend@sysfs-reader:
>     - shard-apl:          [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +1 similar issue
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-apl6/igt@i915_suspend@sysfs-reader.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl8/igt@i915_suspend@sysfs-reader.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
>     - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#111615]) +5 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
> 
>   * igt@kms_chamelium@dp-crc-multiple:
>     - shard-apl:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +20 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl7/igt@kms_chamelium@dp-crc-multiple.html
> 
>   * igt@kms_chamelium@hdmi-audio-edid:
>     - shard-kbl:          NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +3 similar issues
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl1/igt@kms_chamelium@hdmi-audio-edid.html
> 
>   * igt@kms_chamelium@hdmi-mode-timings:
>     - shard-snb:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +20 similar issues
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb6/igt@kms_chamelium@hdmi-mode-timings.html
> 
>   * igt@kms_color@pipe-a-degamma:
>     - shard-tglb:         NOTRUN -> [FAIL][49] ([i915#1149])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_color@pipe-a-degamma.html
>     - shard-iclb:         NOTRUN -> [FAIL][50] ([i915#1149])
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb7/igt@kms_color@pipe-a-degamma.html
> 
>   * igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
>     - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827]) +4 similar issues
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb6/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
>     - shard-glk:          NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +3 similar issues
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk4/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
> 
>   * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
>     - shard-tglb:         NOTRUN -> [SKIP][53] ([fdo#109284] / [fdo#111827]) +4 similar issues
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html
>     - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#109278] / [fdo#109284] / [fdo#111827])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html
> 
>   * igt@kms_content_protection@legacy:
>     - shard-apl:          NOTRUN -> [TIMEOUT][55] ([i915#1319])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl1/igt@kms_content_protection@legacy.html
> 
>   * igt@kms_content_protection@uevent:
>     - shard-apl:          NOTRUN -> [FAIL][56] ([i915#2105])
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl8/igt@kms_content_protection@uevent.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen:
>     - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109278] / [fdo#109279])
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html
>     - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#109279] / [i915#3359])
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][59] ([i915#180])
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl8/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
>     - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271]) +51 similar issues
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html
>     - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#3319]) +1 similar issue
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-dpms:
>     - shard-iclb:         NOTRUN -> [SKIP][62] ([fdo#109278]) +12 similar issues
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-dpms.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement:
>     - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#3359]) +1 similar issue
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
>     - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109274] / [fdo#109278])
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
>     - shard-glk:          [PASS][65] -> [FAIL][66] ([i915#79])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
>     - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109274]) +1 similar issue
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2:
>     - shard-glk:          [PASS][68] -> [FAIL][69] ([i915#2122])
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1:
>     - shard-apl:          NOTRUN -> [FAIL][70] ([i915#79])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
>     - shard-kbl:          [PASS][71] -> [DMESG-WARN][72] ([i915#180])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
>     - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#2587])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
>     - shard-apl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#2672])
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
>     - shard-glk:          NOTRUN -> [SKIP][75] ([fdo#109271]) +45 similar issues
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk9/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
>     - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109280]) +13 similar issues
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:
>     - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#111825]) +17 similar issues
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html
> 
>   * igt@kms_hdr@static-toggle-suspend:
>     - shard-iclb:         NOTRUN -> [SKIP][78] ([i915#1187])
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb2/igt@kms_hdr@static-toggle-suspend.html
> 
>   * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
>     - shard-apl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533]) +1 similar issue
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl6/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
>     - shard-apl:          NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) +1 similar issue
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
>     - shard-kbl:          NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265])
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
>     - shard-glk:          NOTRUN -> [FAIL][82] ([fdo#108145] / [i915#265])
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
>     - shard-apl:          NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#658]) +4 similar issues
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
>     - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#658]) +1 similar issue
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
>     - shard-glk:          NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#658]) +1 similar issue
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
>     - shard-kbl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658]) +1 similar issue
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
> 
>   * igt@kms_psr2_su@page_flip:
>     - shard-tglb:         NOTRUN -> [SKIP][87] ([i915#1911])
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_psr2_su@page_flip.html
>     - shard-iclb:         NOTRUN -> [SKIP][88] ([fdo#109642] / [fdo#111068] / [i915#658])
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@kms_psr2_su@page_flip.html
> 
>   * igt@kms_psr@psr2_primary_page_flip:
>     - shard-iclb:         NOTRUN -> [SKIP][89] ([fdo#109441]) +1 similar issue
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@kms_psr@psr2_primary_page_flip.html
> 
>   * igt@kms_psr@psr2_sprite_mmap_gtt:
>     - shard-iclb:         [PASS][90] -> [SKIP][91] ([fdo#109441]) +1 similar issue
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html
> 
>   * igt@kms_psr@psr2_sprite_render:
>     - shard-tglb:         NOTRUN -> [FAIL][92] ([i915#132]) +1 similar issue
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb5/igt@kms_psr@psr2_sprite_render.html
> 
>   * igt@kms_tv_load_detect@load-detect:
>     - shard-tglb:         NOTRUN -> [SKIP][93] ([fdo#109309])
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@kms_tv_load_detect@load-detect.html
>     - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109309])
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb1/igt@kms_tv_load_detect@load-detect.html
> 
>   * igt@kms_vblank@pipe-b-ts-continuation-suspend:
>     - shard-kbl:          NOTRUN -> [INCOMPLETE][95] ([i915#155] / [i915#2828])
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
> 
>   * igt@kms_vblank@pipe-d-query-forked-hang:
>     - shard-snb:          NOTRUN -> [SKIP][96] ([fdo#109271]) +378 similar issues
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-snb2/igt@kms_vblank@pipe-d-query-forked-hang.html
> 
>   * igt@kms_vrr@flip-suspend:
>     - shard-iclb:         NOTRUN -> [SKIP][97] ([fdo#109502])
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@kms_vrr@flip-suspend.html
>     - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109502])
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb1/igt@kms_vrr@flip-suspend.html
> 
>   * igt@nouveau_crc@pipe-a-source-rg:
>     - shard-iclb:         NOTRUN -> [SKIP][99] ([i915#2530])
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb6/igt@nouveau_crc@pipe-a-source-rg.html
>     - shard-tglb:         NOTRUN -> [SKIP][100] ([i915#2530]) +1 similar issue
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb8/igt@nouveau_crc@pipe-a-source-rg.html
> 
>   * igt@nouveau_crc@pipe-d-source-outp-complete:
>     - shard-iclb:         NOTRUN -> [SKIP][101] ([fdo#109278] / [i915#2530])
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb3/igt@nouveau_crc@pipe-d-source-outp-complete.html
> 
>   * igt@prime_nv_api@nv_self_import:
>     - shard-iclb:         NOTRUN -> [SKIP][102] ([fdo#109291]) +2 similar issues
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb7/igt@prime_nv_api@nv_self_import.html
> 
>   * igt@prime_nv_pcopy@test1_macro:
>     - shard-tglb:         NOTRUN -> [SKIP][103] ([fdo#109291]) +1 similar issue
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb3/igt@prime_nv_pcopy@test1_macro.html
> 
>   * igt@sysfs_clients@create:
>     - shard-glk:          NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2994])
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk1/igt@sysfs_clients@create.html
>     - shard-tglb:         NOTRUN -> [SKIP][105] ([i915#2994]) +1 similar issue
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb8/igt@sysfs_clients@create.html
>     - shard-apl:          NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#2994]) +2 similar issues
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl8/igt@sysfs_clients@create.html
>     - shard-iclb:         NOTRUN -> [SKIP][107] ([i915#2994]) +1 similar issue
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb8/igt@sysfs_clients@create.html
>     - shard-kbl:          NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#2994])
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl7/igt@sysfs_clients@create.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_isolation@preservation-s3@vcs1:
>     - shard-tglb:         [INCOMPLETE][109] -> [PASS][110]
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb6/igt@gem_ctx_isolation@preservation-s3@vcs1.html
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb1/igt@gem_ctx_isolation@preservation-s3@vcs1.html
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-apl:          [DMESG-WARN][111] ([i915#180]) -> [PASS][112] +1 similar issue
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-apl2/igt@gem_eio@in-flight-suspend.html
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl7/igt@gem_eio@in-flight-suspend.html
> 
>   * igt@gem_eio@unwedge-stress:
>     - shard-tglb:         [TIMEOUT][113] ([i915#2369] / [i915#3063]) -> [PASS][114]
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb3/igt@gem_eio@unwedge-stress.html
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb8/igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_fair@basic-flow@rcs0:
>     - shard-tglb:         [FAIL][115] ([i915#2842]) -> [PASS][116]
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-apl:          [SKIP][117] ([fdo#109271]) -> [PASS][118]
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-apl8/igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_whisper@basic-fds-forked-all:
>     - shard-glk:          [DMESG-WARN][119] ([i915#118] / [i915#95]) -> [PASS][120]
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk6/igt@gem_exec_whisper@basic-fds-forked-all.html
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk7/igt@gem_exec_whisper@basic-fds-forked-all.html
> 
>   * igt@gem_mmap_gtt@big-copy:
>     - shard-glk:          [FAIL][121] ([i915#307]) -> [PASS][122]
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-glk4/igt@gem_mmap_gtt@big-copy.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-glk6/igt@gem_mmap_gtt@big-copy.html
> 
>   * igt@gem_mmap_gtt@big-copy-odd:
>     - shard-kbl:          [FAIL][123] ([i915#2428] / [i915#307]) -> [PASS][124]
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-kbl6/igt@gem_mmap_gtt@big-copy-odd.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-kbl3/igt@gem_mmap_gtt@big-copy-odd.html
> 
>   * igt@gem_mmap_gtt@cpuset-big-copy-xy:
>     - shard-iclb:         [FAIL][125] ([i915#307]) -> [PASS][126]
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb5/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb2/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
> 
>   * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
>     - shard-tglb:         [FAIL][127] -> [PASS][128]
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb2/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb6/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
> 
>   * igt@kms_psr@psr2_cursor_blt:
>     - shard-iclb:         [SKIP][129] ([fdo#109441]) -> [PASS][130] +2 similar issues
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb6/igt@kms_psr@psr2_cursor_blt.html
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
> 
>   * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
>     - shard-iclb:         [INCOMPLETE][131] ([i915#1185] / [i915#1373] / [i915#2828]) -> [PASS][132]
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb1/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_pm_dc@dc3co-vpb-simulation:
>     - shard-iclb:         [SKIP][133] ([i915#658]) -> [SKIP][134] ([i915#588])
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle:
>     - shard-iclb:         [WARN][135] ([i915#2684]) -> [WARN][136] ([i915#1804] / [i915#2684])
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle.html
> 
>   * igt@kms_dp_dsc@basic-dsc-enable-edp:
>     - shard-iclb:         [DMESG-WARN][137] ([i915#1226]) -> [SKIP][138] ([fdo#109349])
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb5/igt@kms_dp_dsc@basic-dsc-enable-edp.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
>     - shard-iclb:         [SKIP][139] ([i915#2920]) -> [SKIP][140] ([i915#658])
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          ([FAIL][141], [FAIL][142]) ([i915#2505] / [i915#3002]) -> ([FAIL][143], [FAIL][144], [FAIL][1
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: A few changes to fix test runs on ADL_P
  2021-05-04 15:00   ` Imre Deak
@ 2021-05-04 15:13     ` Ville Syrjälä
  2021-05-04 18:53       ` Imre Deak
  0 siblings, 1 reply; 20+ messages in thread
From: Ville Syrjälä @ 2021-05-04 15:13 UTC (permalink / raw)
  To: Imre Deak; +Cc: igt-dev

On Tue, May 04, 2021 at 06:00:58PM +0300, Imre Deak wrote:
> On Fri, Apr 30, 2021 at 12:55:28AM +0000, Patchwork wrote:
> > == Series Details ==
> > 
> > Series: lib/igt_fb: A few changes to fix test runs on ADL_P
> > URL   : https://patchwork.freedesktop.org/series/89668/
> > State : failure
> > 
> > == Summary ==
> > 
> > CI Bug Log - changes from CI_DRM_10028_full -> IGTPW_5771_full
> > ====================================================
> > 
> > Summary
> > -------
> > 
> >   **FAILURE**
> > 
> >   Serious unknown changes coming with IGTPW_5771_full absolutely need to be
> >   verified manually.
> >   
> >   If you think the reported changes have nothing to do with the changes
> >   introduced in IGTPW_5771_full, please notify your bug team to allow them
> >   to document this new failure mode, which will reduce false positives in CI.
> > 
> >   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html
> > 
> > Possible new issues
> > -------------------
> > 
> >   Here are the unknown changes that may have been introduced in IGTPW_5771_full:
> > 
> > ### IGT changes ###
> > 
> > #### Possible regressions ####
> > 
> >   * igt@kms_plane@pixel-format-pipe-a-planes:
> >     - shard-tglb:         [PASS][1] -> [SKIP][2]
> >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb3/igt@kms_plane@pixel-format-pipe-a-planes.html
> >    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb7/igt@kms_plane@pixel-format-pipe-a-planes.html
> 
> Test requirement not met in function test_format_plane, file ../tests/kms_plane.c:912:
> Test requirement: num_unique_crcs(ref_crc[PLANAR_CRC_SET], data->num_colors) > 1
> 
> after a bunch of CRC mismatches, so I suppose the CRC generation gets
> stuck at one point.
> 
> It's on the same path this patchset changes, however on TGL the patchset
> should have no functional change: the stride calculated by
> __intel_buf_init() and the stride passed to it by
> igt_fb_create_intel_buf() always match based on my tests. After testing
> the same CI testlist locally on 2 TGLs, I also rerun the testlist where
> this problem didn't happen:

There's definitely something hinky going on with tgl since kms_big_fb
is also failing atm in ci. But dunno if that's related or not.

-- 
Ville Syrjälä
Intel
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: A few changes to fix test runs on ADL_P
  2021-05-04 15:13     ` Ville Syrjälä
@ 2021-05-04 18:53       ` Imre Deak
  2021-05-05  8:06         ` Saarinen, Jani
  0 siblings, 1 reply; 20+ messages in thread
From: Imre Deak @ 2021-05-04 18:53 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: igt-dev

On Tue, May 04, 2021 at 06:13:11PM +0300, Ville Syrjälä wrote:
> On Tue, May 04, 2021 at 06:00:58PM +0300, Imre Deak wrote:
> > On Fri, Apr 30, 2021 at 12:55:28AM +0000, Patchwork wrote:
> > > == Series Details ==
> > > 
> > > Series: lib/igt_fb: A few changes to fix test runs on ADL_P
> > > URL   : https://patchwork.freedesktop.org/series/89668/
> > > State : failure
> > > 
> > > == Summary ==
> > > 
> > > CI Bug Log - changes from CI_DRM_10028_full -> IGTPW_5771_full
> > > ====================================================
> > > 
> > > Summary
> > > -------
> > > 
> > >   **FAILURE**
> > > 
> > >   Serious unknown changes coming with IGTPW_5771_full absolutely need to be
> > >   verified manually.
> > >   
> > >   If you think the reported changes have nothing to do with the changes
> > >   introduced in IGTPW_5771_full, please notify your bug team to allow them
> > >   to document this new failure mode, which will reduce false positives in CI.
> > > 
> > >   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html
> > > 
> > > Possible new issues
> > > -------------------
> > > 
> > >   Here are the unknown changes that may have been introduced in IGTPW_5771_full:
> > > 
> > > ### IGT changes ###
> > > 
> > > #### Possible regressions ####
> > > 
> > >   * igt@kms_plane@pixel-format-pipe-a-planes:
> > >     - shard-tglb:         [PASS][1] -> [SKIP][2]
> > >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-tglb3/igt@kms_plane@pixel-format-pipe-a-planes.html
> > >    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb7/igt@kms_plane@pixel-format-pipe-a-planes.html
> > 
> > Test requirement not met in function test_format_plane, file ../tests/kms_plane.c:912:
> > Test requirement: num_unique_crcs(ref_crc[PLANAR_CRC_SET], data->num_colors) > 1
> > 
> > after a bunch of CRC mismatches, so I suppose the CRC generation gets
> > stuck at one point.
> > 
> > It's on the same path this patchset changes, however on TGL the patchset
> > should have no functional change: the stride calculated by
> > __intel_buf_init() and the stride passed to it by
> > igt_fb_create_intel_buf() always match based on my tests. After testing
> > the same CI testlist locally on 2 TGLs, I also rerun the testlist where
> > this problem didn't happen:
> 
> There's definitely something hinky going on with tgl since kms_big_fb
> is also failing atm in ci. But dunno if that's related or not.

That seems to get triggered by kms_psr2_sf followed by kms_big_fb. I
could repro this only (consistently) on TGL/A0 (all TGL shards are like
this) either running kms_psr2_sf/plane-move-sf-dmg-area-1 or
kms_psr2_sf/overlay-primary-update-sf-dmg-area-4 followed by
kms_big_fb/x-tiled-64bpp-rotate-180 .

The same doesn't happen on TGL/B0 with the same panel as used by by TGL
shards, though PSR got disabled on B0 due to some PSR RFB error.

Since this problem seems to happen consistently on A0, affecting later
tests I suggest blacklisting kms_psr2_sf at least on those machines,
until the problem is root caused, or at least to see how the kms_big_fb
results change.

> -- 
> Ville Syrjälä
> Intel
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/3] tests/kms_ccs: Skip CCS color clear value check for randomizing subtests
  2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 1/3] tests/kms_ccs: Skip CCS color clear value check for randomizing subtests Imre Deak
@ 2021-05-05  0:23   ` Rodrigo Siqueira
  2021-05-05 10:27     ` Imre Deak
  0 siblings, 1 reply; 20+ messages in thread
From: Rodrigo Siqueira @ 2021-05-05  0:23 UTC (permalink / raw)
  To: Imre Deak; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 2629 bytes --]

Hi,

I looked at kms_ccs and tried to find a reference for "color control
surfaces" in DRM, and I found multiple references for this format in
i915. Is it an Intel-specific format? Is kms_ccs a test that can be
executed in different ASICs?

Thanks
Siqueira

On 04/29, Imre Deak wrote:
> When filling the color planes with randomized content, the color clear
> values won't match what the HW actually wrote there, so skip the clear
> value check in this case.
> 
> Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> Cc: Mika Kahola <mika.kahola@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
>  tests/kms_ccs.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
> index 30e0fdb54..61c9b2277 100644
> --- a/tests/kms_ccs.c
> +++ b/tests/kms_ccs.c
> @@ -195,7 +195,7 @@ static void check_ccs_cc_plane(int drm_fd, igt_fb_t *fb, int plane, const float
>  	munmap(map, fb->size);
>  };
>  
> -static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color)
> +static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color, bool check_cc_plane)
>  {
>  	int i;
>  
> @@ -203,7 +203,7 @@ static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color
>  		if (igt_fb_is_ccs_plane(fb, i) &&
>  		    !igt_fb_is_gen12_ccs_cc_plane(fb, i))
>  			check_ccs_plane(drm_fd, fb, i);
> -		else if (igt_fb_is_gen12_ccs_cc_plane(fb, i))
> +		else if (igt_fb_is_gen12_ccs_cc_plane(fb, i) && check_cc_plane)
>  			check_ccs_cc_plane(drm_fd, fb, i, cc_color);
>  	}
>  }
> @@ -348,7 +348,7 @@ static void generate_fb(data_t *data, struct igt_fb *fb,
>  		igt_assert_eq(ret, 0);
>  
>  	if (check_ccs_planes)
> -		check_all_ccs_planes(data->drm_fd, fb, cc_color);
> +		check_all_ccs_planes(data->drm_fd, fb, cc_color, !(data->flags & TEST_RANDOM));
>  
>  	fb->fb_id = f.fb_id;
>  }
> -- 
> 2.27.0
> 
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Figt-dev&amp;data=04%7C01%7CRodrigo.Siqueira%40amd.com%7C015d075eda3348bce83208d90b44b52e%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637553211995281967%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=IqMSw%2BtvmobHEOTGjdcrUL%2BE3gW6QlRfavthnqM1%2FVc%3D&amp;reserved=0

-- 
Rodrigo Siqueira
https://siqueira.tech

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: A few changes to fix test runs on ADL_P
  2021-05-04 18:53       ` Imre Deak
@ 2021-05-05  8:06         ` Saarinen, Jani
  2021-05-05 21:03           ` Souza, Jose
  0 siblings, 1 reply; 20+ messages in thread
From: Saarinen, Jani @ 2021-05-05  8:06 UTC (permalink / raw)
  To: Deak, Imre, Ville Syrjälä, Mun, Gwan-gyeong, Souza, Jose
  Cc: igt-dev

+@Mun, Gwan-gyeong, @Souza, Jose. See below from Imre.

> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Imre Deak
> Sent: tiistai 4. toukokuuta 2021 21.54
> To: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Cc: igt-dev@lists.freedesktop.org
> Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: A few changes to fix test runs
> on ADL_P
> 
> On Tue, May 04, 2021 at 06:13:11PM +0300, Ville Syrjälä wrote:
> > On Tue, May 04, 2021 at 06:00:58PM +0300, Imre Deak wrote:
> > > On Fri, Apr 30, 2021 at 12:55:28AM +0000, Patchwork wrote:
> > > > == Series Details ==
> > > >
> > > > Series: lib/igt_fb: A few changes to fix test runs on ADL_P
> > > > URL   : https://patchwork.freedesktop.org/series/89668/
> > > > State : failure
> > > >
> > > > == Summary ==
> > > >
> > > > CI Bug Log - changes from CI_DRM_10028_full -> IGTPW_5771_full
> > > > ====================================================
> > > >
> > > > Summary
> > > > -------
> > > >
> > > >   **FAILURE**
> > > >
> > > >   Serious unknown changes coming with IGTPW_5771_full absolutely need to
> be
> > > >   verified manually.
> > > >
> > > >   If you think the reported changes have nothing to do with the changes
> > > >   introduced in IGTPW_5771_full, please notify your bug team to allow them
> > > >   to document this new failure mode, which will reduce false positives in CI.
> > > >
> > > >   External URL:
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html
> > > >
> > > > Possible new issues
> > > > -------------------
> > > >
> > > >   Here are the unknown changes that may have been introduced in
> IGTPW_5771_full:
> > > >
> > > > ### IGT changes ###
> > > >
> > > > #### Possible regressions ####
> > > >
> > > >   * igt@kms_plane@pixel-format-pipe-a-planes:
> > > >     - shard-tglb:         [PASS][1] -> [SKIP][2]
> > > >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-
> tglb3/igt@kms_plane@pixel-format-pipe-a-planes.html
> > > >    [2]:
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb7/ig
> > > > t@kms_plane@pixel-format-pipe-a-planes.html
> > >
> > > Test requirement not met in function test_format_plane, file
> ../tests/kms_plane.c:912:
> > > Test requirement: num_unique_crcs(ref_crc[PLANAR_CRC_SET],
> > > data->num_colors) > 1
> > >
> > > after a bunch of CRC mismatches, so I suppose the CRC generation
> > > gets stuck at one point.
> > >
> > > It's on the same path this patchset changes, however on TGL the
> > > patchset should have no functional change: the stride calculated by
> > > __intel_buf_init() and the stride passed to it by
> > > igt_fb_create_intel_buf() always match based on my tests. After
> > > testing the same CI testlist locally on 2 TGLs, I also rerun the
> > > testlist where this problem didn't happen:
> >
> > There's definitely something hinky going on with tgl since kms_big_fb
> > is also failing atm in ci. But dunno if that's related or not.
> 
> That seems to get triggered by kms_psr2_sf followed by kms_big_fb. I could repro
> this only (consistently) on TGL/A0 (all TGL shards are like
> this) either running kms_psr2_sf/plane-move-sf-dmg-area-1 or
> kms_psr2_sf/overlay-primary-update-sf-dmg-area-4 followed by
> kms_big_fb/x-tiled-64bpp-rotate-180 .
> 
> The same doesn't happen on TGL/B0 with the same panel as used by by TGL shards,
> though PSR got disabled on B0 due to some PSR RFB error.
> 
> Since this problem seems to happen consistently on A0, affecting later tests I suggest
> blacklisting kms_psr2_sf at least on those machines, until the problem is root
> caused, or at least to see how the kms_big_fb results change.
> 
> > --
> > Ville Syrjälä
> > Intel
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/3] tests/kms_ccs: Skip CCS color clear value check for randomizing subtests
  2021-05-05  0:23   ` Rodrigo Siqueira
@ 2021-05-05 10:27     ` Imre Deak
  2021-05-05 23:07       ` Rodrigo Siqueira
  0 siblings, 1 reply; 20+ messages in thread
From: Imre Deak @ 2021-05-05 10:27 UTC (permalink / raw)
  To: Rodrigo Siqueira; +Cc: igt-dev

Hi,

On Tue, May 04, 2021 at 08:23:05PM -0400, Rodrigo Siqueira wrote:
> Hi,
> 
> I looked at kms_ccs and tried to find a reference for "color control
> surfaces" in DRM, and I found multiple references for this format in
> i915.

CCS means here Compression Control Surface. Yes, the render and media
GPU engines use their own compression format, hence multiple CCS
modifiers are needed. There are also format differences between
platforms, which further increases the number of modifiers.

> Is it an Intel-specific format? Is kms_ccs a test that can be
> executed in different ASICs?

Yes, the CCS FB modifiers are Intel specific and kms_ccs will not run on
other platforms.

--Imre

> Thanks
> Siqueira
> 
> On 04/29, Imre Deak wrote:
> > When filling the color planes with randomized content, the color clear
> > values won't match what the HW actually wrote there, so skip the clear
> > value check in this case.
> > 
> > Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > Cc: Mika Kahola <mika.kahola@intel.com>
> > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > ---
> >  tests/kms_ccs.c | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> > 
> > diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
> > index 30e0fdb54..61c9b2277 100644
> > --- a/tests/kms_ccs.c
> > +++ b/tests/kms_ccs.c
> > @@ -195,7 +195,7 @@ static void check_ccs_cc_plane(int drm_fd, igt_fb_t *fb, int plane, const float
> >  	munmap(map, fb->size);
> >  };
> >  
> > -static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color)
> > +static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color, bool check_cc_plane)
> >  {
> >  	int i;
> >  
> > @@ -203,7 +203,7 @@ static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color
> >  		if (igt_fb_is_ccs_plane(fb, i) &&
> >  		    !igt_fb_is_gen12_ccs_cc_plane(fb, i))
> >  			check_ccs_plane(drm_fd, fb, i);
> > -		else if (igt_fb_is_gen12_ccs_cc_plane(fb, i))
> > +		else if (igt_fb_is_gen12_ccs_cc_plane(fb, i) && check_cc_plane)
> >  			check_ccs_cc_plane(drm_fd, fb, i, cc_color);
> >  	}
> >  }
> > @@ -348,7 +348,7 @@ static void generate_fb(data_t *data, struct igt_fb *fb,
> >  		igt_assert_eq(ret, 0);
> >  
> >  	if (check_ccs_planes)
> > -		check_all_ccs_planes(data->drm_fd, fb, cc_color);
> > +		check_all_ccs_planes(data->drm_fd, fb, cc_color, !(data->flags & TEST_RANDOM));
> >  
> >  	fb->fb_id = f.fb_id;
> >  }
> > -- 
> > 2.27.0
> > 
> > _______________________________________________
> > igt-dev mailing list
> > igt-dev@lists.freedesktop.org
> > https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Figt-dev&amp;data=04%7C01%7CRodrigo.Siqueira%40amd.com%7C015d075eda3348bce83208d90b44b52e%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637553211995281967%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=IqMSw%2BtvmobHEOTGjdcrUL%2BE3gW6QlRfavthnqM1%2FVc%3D&amp;reserved=0
> 
> -- 
> Rodrigo Siqueira
> https://siqueira.tech


_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: A few changes to fix test runs on ADL_P
  2021-05-05  8:06         ` Saarinen, Jani
@ 2021-05-05 21:03           ` Souza, Jose
  0 siblings, 0 replies; 20+ messages in thread
From: Souza, Jose @ 2021-05-05 21:03 UTC (permalink / raw)
  To: Saarinen, Jani, ville.syrjala, Mun, Gwan-gyeong, Deak, Imre; +Cc: igt-dev

On Wed, 2021-05-05 at 09:06 +0100, Saarinen, Jani wrote:
> +@Mun, Gwan-gyeong, @Souza, Jose. See below from Imre.
> 
> > -----Original Message-----
> > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Imre Deak
> > Sent: tiistai 4. toukokuuta 2021 21.54
> > To: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > Cc: igt-dev@lists.freedesktop.org
> > Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: A few changes to fix test runs
> > on ADL_P
> > 
> > On Tue, May 04, 2021 at 06:13:11PM +0300, Ville Syrjälä wrote:
> > > On Tue, May 04, 2021 at 06:00:58PM +0300, Imre Deak wrote:
> > > > On Fri, Apr 30, 2021 at 12:55:28AM +0000, Patchwork wrote:
> > > > > == Series Details ==
> > > > > 
> > > > > Series: lib/igt_fb: A few changes to fix test runs on ADL_P
> > > > > URL   : https://patchwork.freedesktop.org/series/89668/
> > > > > State : failure
> > > > > 
> > > > > == Summary ==
> > > > > 
> > > > > CI Bug Log - changes from CI_DRM_10028_full -> IGTPW_5771_full
> > > > > ====================================================
> > > > > 
> > > > > Summary
> > > > > -------
> > > > > 
> > > > >   **FAILURE**
> > > > > 
> > > > >   Serious unknown changes coming with IGTPW_5771_full absolutely need to
> > be
> > > > >   verified manually.
> > > > > 
> > > > >   If you think the reported changes have nothing to do with the changes
> > > > >   introduced in IGTPW_5771_full, please notify your bug team to allow them
> > > > >   to document this new failure mode, which will reduce false positives in CI.
> > > > > 
> > > > >   External URL:
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/index.html
> > > > > 
> > > > > Possible new issues
> > > > > -------------------
> > > > > 
> > > > >   Here are the unknown changes that may have been introduced in
> > IGTPW_5771_full:
> > > > > 
> > > > > ### IGT changes ###
> > > > > 
> > > > > #### Possible regressions ####
> > > > > 
> > > > >   * igt@kms_plane@pixel-format-pipe-a-planes:
> > > > >     - shard-tglb:         [PASS][1] -> [SKIP][2]
> > > > >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10028/shard-
> > tglb3/igt@kms_plane@pixel-format-pipe-a-planes.html
> > > > >    [2]:
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5771/shard-tglb7/ig
> > > > > t@kms_plane@pixel-format-pipe-a-planes.html
> > > > 
> > > > Test requirement not met in function test_format_plane, file
> > ../tests/kms_plane.c:912:
> > > > Test requirement: num_unique_crcs(ref_crc[PLANAR_CRC_SET],
> > > > data->num_colors) > 1
> > > > 
> > > > after a bunch of CRC mismatches, so I suppose the CRC generation
> > > > gets stuck at one point.
> > > > 
> > > > It's on the same path this patchset changes, however on TGL the
> > > > patchset should have no functional change: the stride calculated by
> > > > __intel_buf_init() and the stride passed to it by
> > > > igt_fb_create_intel_buf() always match based on my tests. After
> > > > testing the same CI testlist locally on 2 TGLs, I also rerun the
> > > > testlist where this problem didn't happen:
> > > 
> > > There's definitely something hinky going on with tgl since kms_big_fb
> > > is also failing atm in ci. But dunno if that's related or not.
> > 
> > That seems to get triggered by kms_psr2_sf followed by kms_big_fb. I could repro
> > this only (consistently) on TGL/A0 (all TGL shards are like
> > this) either running kms_psr2_sf/plane-move-sf-dmg-area-1 or
> > kms_psr2_sf/overlay-primary-update-sf-dmg-area-4 followed by
> > kms_big_fb/x-tiled-64bpp-rotate-180 .
> > 
> > The same doesn't happen on TGL/B0 with the same panel as used by by TGL shards,
> > though PSR got disabled on B0 due to some PSR RFB error.
> > 
> > Since this problem seems to happen consistently on A0, affecting later tests I suggest
> > blacklisting kms_psr2_sf at least on those machines, until the problem is root
> > caused, or at least to see how the kms_big_fb results change.

We have two PSR2 SF workarounds missing implementation, 14010103792 fixed on display b0 and 14010254185 fixed on display C0.
They kind of conflict with each other so would need a little bit of testing but for now we could disable PSR2 SF up to TGL display C0 stepping, will
be sending this patch in a couple of minutes.


> > 
> > > --
> > > Ville Syrjälä
> > > Intel
> > _______________________________________________
> > igt-dev mailing list
> > igt-dev@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/igt-dev

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/3] tests/kms_ccs: Skip CCS color clear value check for randomizing subtests
  2021-05-05 10:27     ` Imre Deak
@ 2021-05-05 23:07       ` Rodrigo Siqueira
  0 siblings, 0 replies; 20+ messages in thread
From: Rodrigo Siqueira @ 2021-05-05 23:07 UTC (permalink / raw)
  To: Imre Deak; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 3861 bytes --]

On 05/05, Imre Deak wrote:
> Hi,
> 
> On Tue, May 04, 2021 at 08:23:05PM -0400, Rodrigo Siqueira wrote:
> > Hi,
> > 
> > I looked at kms_ccs and tried to find a reference for "color control
> > surfaces" in DRM, and I found multiple references for this format in
> > i915.
> 
> CCS means here Compression Control Surface. Yes, the render and media
> GPU engines use their own compression format, hence multiple CCS
> modifiers are needed. There are also format differences between
> platforms, which further increases the number of modifiers.
> 
> > Is it an Intel-specific format? Is kms_ccs a test that can be
> > executed in different ASICs?
> 
> Yes, the CCS FB modifiers are Intel specific and kms_ccs will not run on
> other platforms.

Thanks for the explanation.
 
> --Imre
> 
> > Thanks
> > Siqueira
> > 
> > On 04/29, Imre Deak wrote:
> > > When filling the color planes with randomized content, the color clear
> > > values won't match what the HW actually wrote there, so skip the clear
> > > value check in this case.
> > > 
> > > Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > > Cc: Mika Kahola <mika.kahola@intel.com>
> > > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > > ---
> > >  tests/kms_ccs.c | 6 +++---
> > >  1 file changed, 3 insertions(+), 3 deletions(-)
> > > 
> > > diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
> > > index 30e0fdb54..61c9b2277 100644
> > > --- a/tests/kms_ccs.c
> > > +++ b/tests/kms_ccs.c
> > > @@ -195,7 +195,7 @@ static void check_ccs_cc_plane(int drm_fd, igt_fb_t *fb, int plane, const float
> > >  	munmap(map, fb->size);
> > >  };
> > >  
> > > -static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color)
> > > +static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color, bool check_cc_plane)
> > >  {
> > >  	int i;
> > >  
> > > @@ -203,7 +203,7 @@ static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color
> > >  		if (igt_fb_is_ccs_plane(fb, i) &&
> > >  		    !igt_fb_is_gen12_ccs_cc_plane(fb, i))
> > >  			check_ccs_plane(drm_fd, fb, i);
> > > -		else if (igt_fb_is_gen12_ccs_cc_plane(fb, i))
> > > +		else if (igt_fb_is_gen12_ccs_cc_plane(fb, i) && check_cc_plane)
> > >  			check_ccs_cc_plane(drm_fd, fb, i, cc_color);
> > >  	}
> > >  }
> > > @@ -348,7 +348,7 @@ static void generate_fb(data_t *data, struct igt_fb *fb,
> > >  		igt_assert_eq(ret, 0);
> > >  
> > >  	if (check_ccs_planes)
> > > -		check_all_ccs_planes(data->drm_fd, fb, cc_color);
> > > +		check_all_ccs_planes(data->drm_fd, fb, cc_color, !(data->flags & TEST_RANDOM));
> > >  
> > >  	fb->fb_id = f.fb_id;
> > >  }
> > > -- 
> > > 2.27.0
> > > 
> > > _______________________________________________
> > > igt-dev mailing list
> > > igt-dev@lists.freedesktop.org
> > > https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Figt-dev&amp;data=04%7C01%7CRodrigo.Siqueira%40amd.com%7Cedb4aea1c4e249252dfb08d90fb06aef%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637558072643709539%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=%2FwF620WrokFKD77Athnep%2FYb%2BY6AFOl%2FPj%2B%2F1PdCfL0%3D&amp;reserved=0
> > 
> > -- 
> > Rodrigo Siqueira
> > https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsiqueira.tech%2F&amp;data=04%7C01%7CRodrigo.Siqueira%40amd.com%7Cedb4aea1c4e249252dfb08d90fb06aef%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637558072643719534%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=oKsprNNETtsy012m2FFAtNiX71NfsTxjapl1FW2dEcw%3D&amp;reserved=0
> 
> 

-- 
Rodrigo Siqueira
https://siqueira.tech

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2021-05-05 23:07 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-29 19:26 [igt-dev] [PATCH i-g-t 0/3] lib/igt_fb: A few changes to fix test runs on ADL_P Imre Deak
2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 1/3] tests/kms_ccs: Skip CCS color clear value check for randomizing subtests Imre Deak
2021-05-05  0:23   ` Rodrigo Siqueira
2021-05-05 10:27     ` Imre Deak
2021-05-05 23:07       ` Rodrigo Siqueira
2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Fix stride for render_copy based FB conversions Imre Deak
2021-04-29 19:51   ` Ville Syrjälä
2021-04-30  5:53     ` Zbigniew Kempczyński
2021-04-30 10:29       ` Imre Deak
2021-04-29 19:26 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_fb: Remove redundant VC4 SAND plane size alignment Imre Deak
2021-04-29 20:42 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: A few changes to fix test runs on ADL_P Patchwork
2021-04-30  0:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-05-04 15:00   ` Imre Deak
2021-05-04 15:13     ` Ville Syrjälä
2021-05-04 18:53       ` Imre Deak
2021-05-05  8:06         ` Saarinen, Jani
2021-05-05 21:03           ` Souza, Jose
2021-05-04  9:39 ` [igt-dev] [PATCH i-g-t 0/3] " Juha-Pekka Heikkila
2021-05-04 12:07 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: A few changes to fix test runs on ADL_P (rev2) Patchwork
2021-05-04 13:45 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.