All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs
@ 2021-09-06 18:27 Imre Deak
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 1/6] drm/i915: Use tile block based dimensions for CCS origin x, y check Imre Deak
                   ` (11 more replies)
  0 siblings, 12 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-06 18:27 UTC (permalink / raw)
  To: intel-gfx; +Cc: Juha-Pekka Heikkila, Nanley G Chery

This is v2 of [1] fixing the initialization of plane_alignment in patch
5 and issues reported by checkpatch, sparse. Also the last patch in this
series adds a description to drm_fourcc.h about the main and CCS surface
stride requirements for all CCS modifiers on ADL-P.

The corresponding IGT changes are at:
https://patchwork.freedesktop.org/series/94107/

[1] https://patchwork.freedesktop.org/series/94108/

Test-with: 20210906181736.3914421-1-imre.deak@intel.com

Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Nanley G Chery <nanley.g.chery@intel.com>

Imre Deak (6):
  drm/i915: Use tile block based dimensions for CCS origin x, y check
  drm/i915/adlp: Require always a power-of-two sized CCS surface stride
  drm/i915/adlp: Assert that VMAs in DPT start at 0
  drm/i915: Follow a new->old platform check order in
    intel_fb_stride_alignment
  drm/i915/adlp: Add support for remapping CCS FBs
  drm/fourcc: Add the ADL-P specific pitch requirements of CCS modifiers

 drivers/gpu/drm/i915/display/intel_display.c  |   5 +-
 .../drm/i915/display/intel_display_types.h    |   2 -
 drivers/gpu/drm/i915/display/intel_fb.c       | 171 ++++++++++++------
 .../drm/i915/display/skl_universal_plane.c    |   5 +
 drivers/gpu/drm/i915/gt/intel_ggtt.c          |  29 ++-
 drivers/gpu/drm/i915/i915_vma_types.h         |   7 +-
 include/uapi/drm/drm_fourcc.h                 |  24 ++-
 7 files changed, 174 insertions(+), 69 deletions(-)

-- 
2.27.0


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

* [Intel-gfx] [PATCH v2 1/6] drm/i915: Use tile block based dimensions for CCS origin x, y check
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
@ 2021-09-06 18:27 ` Imre Deak
  2021-09-07  3:24   ` [Intel-gfx] [CI " Imre Deak
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 2/6] drm/i915/adlp: Require always a power-of-two sized CCS surface stride Imre Deak
                   ` (10 subsequent siblings)
  11 siblings, 1 reply; 18+ messages in thread
From: Imre Deak @ 2021-09-06 18:27 UTC (permalink / raw)
  To: intel-gfx; +Cc: Juha-Pekka Heikkila

The tile size for all surface types is 4 kbyte (or 2 kbyte on old
platforms), with the exception of the TGL/ADL CCS surface where the tile
size is 64 bytes. To be able to remap CCS FBs the CCS surface tile needs
to be defined as 4 kbyte as well (the granularity of GTT pages in a
remapped view).

The only place using the dimension of the 64 byte CCS area is the initial
check for the main vs. CCS plane origin coordinate match. To prepare for
adding support for remapping CCS FBs let's call the 64 byte CCS area a
'tile block' and add a helper to retrieve the dimensions for it.

No functional change.

Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
 drivers/gpu/drm/i915/display/intel_fb.c | 30 ++++++++++++++++++++-----
 1 file changed, 25 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index e4b8602ec0cd2..0cf568a9cb1c6 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -143,14 +143,14 @@ intel_tile_width_bytes(const struct drm_framebuffer *fb, int color_plane)
 
 unsigned int intel_tile_height(const struct drm_framebuffer *fb, int color_plane)
 {
-	if (is_gen12_ccs_plane(fb, color_plane))
-		return 1;
-
 	return intel_tile_size(to_i915(fb->dev)) /
 		intel_tile_width_bytes(fb, color_plane);
 }
 
-/* Return the tile dimensions in pixel units */
+/*
+ * Return the tile dimensions in pixel units, based on the (2 or 4 kbyte) GTT
+ * page tile size.
+ */
 static void intel_tile_dims(const struct drm_framebuffer *fb, int color_plane,
 			    unsigned int *tile_width,
 			    unsigned int *tile_height)
@@ -162,6 +162,21 @@ static void intel_tile_dims(const struct drm_framebuffer *fb, int color_plane,
 	*tile_height = intel_tile_height(fb, color_plane);
 }
 
+/*
+ * Return the tile dimensions in pixel units, based on the tile block size.
+ * The block covers the full GTT page sized tile on all tiled surfaces and
+ * it's a 64 byte portion of the tile on TGL+ CCS surfaces.
+ */
+static void intel_tile_block_dims(const struct drm_framebuffer *fb, int color_plane,
+				  unsigned int *tile_width,
+				  unsigned int *tile_height)
+{
+	intel_tile_dims(fb, color_plane, tile_width, tile_height);
+
+	if (is_gen12_ccs_plane(fb, color_plane))
+		*tile_height = 1;
+}
+
 unsigned int intel_tile_row_size(const struct drm_framebuffer *fb, int color_plane)
 {
 	unsigned int tile_width, tile_height;
@@ -567,7 +582,12 @@ static int intel_fb_check_ccs_xy(const struct drm_framebuffer *fb, int ccs_plane
 	if (!is_ccs_plane(fb, ccs_plane) || is_gen12_ccs_cc_plane(fb, ccs_plane))
 		return 0;
 
-	intel_tile_dims(fb, ccs_plane, &tile_width, &tile_height);
+	/*
+	 * While all the tile dimensions are based on a 2k or 4k GTT page size
+	 * here the main and CCS coordinates must match only within a (64 byte
+	 * on TGL+) block inside the tile.
+	 */
+	intel_tile_block_dims(fb, ccs_plane, &tile_width, &tile_height);
 	intel_fb_plane_get_subsampling(&hsub, &vsub, fb, ccs_plane);
 
 	tile_width *= hsub;
-- 
2.27.0


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

* [Intel-gfx] [PATCH v2 2/6] drm/i915/adlp: Require always a power-of-two sized CCS surface stride
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 1/6] drm/i915: Use tile block based dimensions for CCS origin x, y check Imre Deak
@ 2021-09-06 18:27 ` Imre Deak
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 3/6] drm/i915/adlp: Assert that VMAs in DPT start at 0 Imre Deak
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-06 18:27 UTC (permalink / raw)
  To: intel-gfx; +Cc: Juha-Pekka Heikkila

At the moment CCS FB strides must be power-of-two sized, but a follow-up
change will add support remapping these FBs, allowing the FB passed in
by userspace to have a non-POT sized stride. For these remapped FBs we
can only remap the main surface, not the CCS surface. This means that
userspace has to always generate the CCS surface aligning to the POT
stride padded main surface (by setting up the CCS AUX pagetables
accordingly). Adjust the CCS surface stride check to enforce this.

No functional change.

v2:
- Fix the gen12_ccs_aux_stride() is not static sparse warning.

Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
 drivers/gpu/drm/i915/display/intel_fb.c | 34 ++++++++++++++++++++++---
 1 file changed, 30 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 0cf568a9cb1c6..a0db67e85c717 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -63,10 +63,36 @@ int skl_ccs_to_main_plane(const struct drm_framebuffer *fb, int ccs_plane)
 	return ccs_plane - fb->format->num_planes / 2;
 }
 
-static int gen12_ccs_aux_stride(struct drm_framebuffer *fb, int ccs_plane)
+static unsigned int gen12_aligned_scanout_stride(const struct intel_framebuffer *fb,
+						 int color_plane)
 {
-	return DIV_ROUND_UP(fb->pitches[skl_ccs_to_main_plane(fb, ccs_plane)],
-			    512) * 64;
+	struct drm_i915_private *i915 = to_i915(fb->base.dev);
+	unsigned int stride = fb->base.pitches[color_plane];
+
+	if (IS_ALDERLAKE_P(i915))
+		return roundup_pow_of_two(max(stride,
+					      8u * intel_tile_width_bytes(&fb->base, color_plane)));
+
+	return stride;
+}
+
+static unsigned int gen12_ccs_aux_stride(struct intel_framebuffer *fb, int ccs_plane)
+{
+	struct drm_i915_private *i915 = to_i915(fb->base.dev);
+	int main_plane = skl_ccs_to_main_plane(&fb->base, ccs_plane);
+	unsigned int main_stride = fb->base.pitches[main_plane];
+	unsigned int main_tile_width = intel_tile_width_bytes(&fb->base, main_plane);
+
+	/*
+	 * On ADL-P the AUX stride must align with a power-of-two aligned main
+	 * surface stride. The stride of the allocated main surface object can
+	 * be less than this POT stride, which is then autopadded to the POT
+	 * size.
+	 */
+	if (IS_ALDERLAKE_P(i915))
+		main_stride = gen12_aligned_scanout_stride(fb, main_plane);
+
+	return DIV_ROUND_UP(main_stride, 4 * main_tile_width) * 64;
 }
 
 int skl_main_to_aux_plane(const struct drm_framebuffer *fb, int main_plane)
@@ -1379,7 +1405,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
 		}
 
 		if (is_gen12_ccs_plane(fb, i) && !is_gen12_ccs_cc_plane(fb, i)) {
-			int ccs_aux_stride = gen12_ccs_aux_stride(fb, i);
+			int ccs_aux_stride = gen12_ccs_aux_stride(intel_fb, i);
 
 			if (fb->pitches[i] != ccs_aux_stride) {
 				drm_dbg_kms(&dev_priv->drm,
-- 
2.27.0


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

* [Intel-gfx] [PATCH v2 3/6] drm/i915/adlp: Assert that VMAs in DPT start at 0
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 1/6] drm/i915: Use tile block based dimensions for CCS origin x, y check Imre Deak
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 2/6] drm/i915/adlp: Require always a power-of-two sized CCS surface stride Imre Deak
@ 2021-09-06 18:27 ` Imre Deak
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 4/6] drm/i915: Follow a new->old platform check order in intel_fb_stride_alignment Imre Deak
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-06 18:27 UTC (permalink / raw)
  To: intel-gfx; +Cc: Juha-Pekka Heikkila

Atm the DPT object can accommodate only one VMA, so the VMA offset will
be always 0. Add an assert for this.

Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
 drivers/gpu/drm/i915/display/skl_universal_plane.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 724e7b04f3b63..f50282b60de44 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -993,6 +993,11 @@ static u32 skl_surf_address(const struct intel_plane_state *plane_state,
 	u32 offset = plane_state->view.color_plane[color_plane].offset;
 
 	if (intel_fb_uses_dpt(fb)) {
+		/*
+		 * The DPT object contains only one vma, so the VMA's offset
+		 * within the DPT is always 0.
+		 */
+		WARN_ON(plane_state->dpt_vma->node.start);
 		WARN_ON(offset & 0x1fffff);
 		return offset >> 9;
 	} else {
-- 
2.27.0


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

* [Intel-gfx] [PATCH v2 4/6] drm/i915: Follow a new->old platform check order in intel_fb_stride_alignment
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
                   ` (2 preceding siblings ...)
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 3/6] drm/i915/adlp: Assert that VMAs in DPT start at 0 Imre Deak
@ 2021-09-06 18:27 ` Imre Deak
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 5/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-06 18:27 UTC (permalink / raw)
  To: intel-gfx; +Cc: Juha-Pekka Heikkila

Follow the usual new->old order in intel_fb_stride_alignment() platform
check ladder.

Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
 drivers/gpu/drm/i915/display/intel_fb.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index a0db67e85c717..479c76c7958ce 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -1158,6 +1158,12 @@ intel_fb_stride_alignment(const struct drm_framebuffer *fb, int color_plane)
 
 	tile_width = intel_tile_width_bytes(fb, color_plane);
 	if (is_ccs_modifier(fb->modifier)) {
+		/*
+		 * On TGL the surface stride must be 4 tile aligned, mapped by
+		 * one 64 byte cacheline on the CCS AUX surface.
+		 */
+		if (DISPLAY_VER(dev_priv) >= 12)
+			tile_width *= 4;
 		/*
 		 * Display WA #0531: skl,bxt,kbl,glk
 		 *
@@ -1167,14 +1173,8 @@ intel_fb_stride_alignment(const struct drm_framebuffer *fb, int color_plane)
 		 * require the entire fb to accommodate that to avoid
 		 * potential runtime errors at plane configuration time.
 		 */
-		if ((DISPLAY_VER(dev_priv) == 9 || IS_GEMINILAKE(dev_priv)) &&
-		    color_plane == 0 && fb->width > 3840)
-			tile_width *= 4;
-		/*
-		 * The main surface pitch must be padded to a multiple of four
-		 * tile widths.
-		 */
-		else if (DISPLAY_VER(dev_priv) >= 12)
+		else if ((DISPLAY_VER(dev_priv) == 9 || IS_GEMINILAKE(dev_priv)) &&
+			 color_plane == 0 && fb->width > 3840)
 			tile_width *= 4;
 	}
 	return tile_width;
-- 
2.27.0


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

* [Intel-gfx] [PATCH v2 5/6] drm/i915/adlp: Add support for remapping CCS FBs
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
                   ` (3 preceding siblings ...)
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 4/6] drm/i915: Follow a new->old platform check order in intel_fb_stride_alignment Imre Deak
@ 2021-09-06 18:27 ` Imre Deak
  2021-09-06 18:27   ` [Intel-gfx] " Imre Deak
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-06 18:27 UTC (permalink / raw)
  To: intel-gfx; +Cc: Juha-Pekka Heikkila

Add support for remapping CCS FBs on ADL-P to remove the restriction
of the power-of-two sized stride and the 2MB surface offset alignment
for these FBs.

We can only remap the tiles on the main surface, not the tiles on the
CCS surface, so userspace has to generate the CCS surface aligning to
the POT size padded main surface stride (by programming the AUX
pagetable accordingly). For the required AUX pagetable setup, this
requires that either the main surface stride is 8 tiles or that the
stride is 16 tiles aligned (= 64 kbytes, the area mapped by one AUX
PTE).

v2:
- Init intel_remapped_info::plane_alignment only for remapped views and
  do this from intel_fb_view_init().

Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> (v1)
---
 drivers/gpu/drm/i915/display/intel_display.c  |  5 +-
 .../drm/i915/display/intel_display_types.h    |  2 -
 drivers/gpu/drm/i915/display/intel_fb.c       | 93 +++++++++++--------
 drivers/gpu/drm/i915/gt/intel_ggtt.c          | 29 +++++-
 drivers/gpu/drm/i915/i915_vma_types.h         |  7 +-
 5 files changed, 89 insertions(+), 47 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 1f447ba776c79..ac68749d0f2aa 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -892,8 +892,11 @@ unsigned int intel_remapped_info_size(const struct intel_remapped_info *rem_info
 	unsigned int size = 0;
 	int i;
 
-	for (i = 0 ; i < ARRAY_SIZE(rem_info->plane); i++)
+	for (i = 0 ; i < ARRAY_SIZE(rem_info->plane); i++) {
+		if (rem_info->plane_alignment)
+			size = ALIGN(size, rem_info->plane_alignment);
 		size += rem_info->plane[i].dst_stride * rem_info->plane[i].height;
+	}
 
 	return size;
 }
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index c7bcf9183447b..e97741c2f4e32 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -103,8 +103,6 @@ struct intel_fb_view {
 	 * in the rotated and remapped GTT view all no-CCS formats (up to 2
 	 * color planes) are supported.
 	 *
-	 * TODO: add support for CCS formats in the remapped GTT view.
-	 *
 	 * The view information shared by all FB color planes in the FB,
 	 * like dst x/y and src/dst width, is stored separately in
 	 * intel_plane_state.
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 479c76c7958ce..fa1f375e696bf 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -357,15 +357,29 @@ void intel_fb_plane_get_subsampling(int *hsub, int *vsub,
 
 static void intel_fb_plane_dims(const struct intel_framebuffer *fb, int color_plane, int *w, int *h)
 {
+	struct drm_i915_private *i915 = to_i915(fb->base.dev);
 	int main_plane = is_ccs_plane(&fb->base, color_plane) ?
 			 skl_ccs_to_main_plane(&fb->base, color_plane) : 0;
+	unsigned int main_width = fb->base.width;
+	unsigned int main_height = fb->base.height;
 	int main_hsub, main_vsub;
 	int hsub, vsub;
 
+	/*
+	 * On ADL-P the CCS AUX surface layout always aligns with the
+	 * power-of-two aligned main surface stride. The main surface
+	 * stride in the allocated FB object may not be power-of-two
+	 * sized, in which case it is auto-padded to the POT size.
+	 */
+	if (IS_ALDERLAKE_P(i915) && is_ccs_plane(&fb->base, color_plane))
+		main_width = gen12_aligned_scanout_stride(fb, 0) /
+			     fb->base.format->cpp[0];
+
 	intel_fb_plane_get_subsampling(&main_hsub, &main_vsub, &fb->base, main_plane);
 	intel_fb_plane_get_subsampling(&hsub, &vsub, &fb->base, color_plane);
-	*w = fb->base.width / main_hsub / hsub;
-	*h = fb->base.height / main_vsub / vsub;
+
+	*w = main_width / main_hsub / hsub;
+	*h = main_height / main_vsub / vsub;
 }
 
 static u32 intel_adjust_tile_offset(int *x, int *y,
@@ -547,17 +561,8 @@ static int intel_fb_offset_to_xy(int *x, int *y,
 	unsigned int height;
 	u32 alignment;
 
-	/*
-	 * All DPT color planes must be 512*4k aligned (the amount mapped by a
-	 * single DPT page). For ADL_P CCS FBs this only works by requiring
-	 * the allocated offsets to be 2MB aligned.  Once supoort to remap
-	 * such FBs is added we can remove this requirement, as then all the
-	 * planes can be remapped to an aligned offset.
-	 */
-	if (IS_ALDERLAKE_P(i915) && is_ccs_modifier(fb->modifier))
-		alignment = 512 * 4096;
-	else if (DISPLAY_VER(i915) >= 12 &&
-		 is_semiplanar_uv_plane(fb, color_plane))
+	if (DISPLAY_VER(i915) >= 12 &&
+	    is_semiplanar_uv_plane(fb, color_plane))
 		alignment = intel_tile_row_size(fb, color_plane);
 	else if (fb->modifier != DRM_FORMAT_MOD_LINEAR)
 		alignment = intel_tile_size(i915);
@@ -688,8 +693,7 @@ bool intel_fb_needs_pot_stride_remap(const struct intel_framebuffer *fb)
 {
 	struct drm_i915_private *i915 = to_i915(fb->base.dev);
 
-	return IS_ALDERLAKE_P(i915) && fb->base.modifier != DRM_FORMAT_MOD_LINEAR &&
-	       !is_ccs_modifier(fb->base.modifier);
+	return IS_ALDERLAKE_P(i915) && fb->base.modifier != DRM_FORMAT_MOD_LINEAR;
 }
 
 static int intel_fb_pitch(const struct intel_framebuffer *fb, int color_plane, unsigned int rotation)
@@ -809,14 +813,16 @@ static unsigned int
 plane_view_dst_stride_tiles(const struct intel_framebuffer *fb, int color_plane,
 			    unsigned int pitch_tiles)
 {
-	if (intel_fb_needs_pot_stride_remap(fb))
+	if (intel_fb_needs_pot_stride_remap(fb)) {
+		unsigned int min_stride = is_ccs_plane(&fb->base, color_plane) ? 2 : 8;
 		/*
 		 * ADL_P, the only platform needing a POT stride has a minimum
-		 * of 8 stride tiles.
+		 * of 8 main surface and 2 CCS AUX stride tiles.
 		 */
-		return roundup_pow_of_two(max(pitch_tiles, 8u));
-	else
+		return roundup_pow_of_two(max(pitch_tiles, min_stride));
+	} else {
 		return pitch_tiles;
+	}
 }
 
 static unsigned int
@@ -852,7 +858,7 @@ static u32 calc_plane_remap_info(const struct intel_framebuffer *fb, int color_p
 	unsigned int tile_height = dims->tile_height;
 	unsigned int tile_size = intel_tile_size(i915);
 	struct drm_rect r;
-	u32 size;
+	u32 size = 0;
 
 	assign_chk_ovf(i915, remap_info->offset, obj_offset);
 	assign_chk_ovf(i915, remap_info->src_stride, plane_view_src_stride_tiles(fb, color_plane, dims));
@@ -877,7 +883,7 @@ static u32 calc_plane_remap_info(const struct intel_framebuffer *fb, int color_p
 
 		color_plane_info->stride = remap_info->dst_stride * tile_height;
 
-		size = remap_info->dst_stride * remap_info->width;
+		size += remap_info->dst_stride * remap_info->width;
 
 		/* rotate the tile dimensions to match the GTT view */
 		swap(tile_width, tile_height);
@@ -886,6 +892,14 @@ static u32 calc_plane_remap_info(const struct intel_framebuffer *fb, int color_p
 
 		check_array_bounds(i915, view->gtt.remapped.plane, color_plane);
 
+		if (view->gtt.remapped.plane_alignment) {
+			unsigned int aligned_offset = ALIGN(gtt_offset,
+							    view->gtt.remapped.plane_alignment);
+
+			size += aligned_offset - gtt_offset;
+			gtt_offset = aligned_offset;
+		}
+
 		assign_chk_ovf(i915, remap_info->dst_stride,
 			       plane_view_dst_stride_tiles(fb, color_plane, remap_info->width));
 
@@ -895,7 +909,7 @@ static u32 calc_plane_remap_info(const struct intel_framebuffer *fb, int color_p
 		color_plane_info->stride = remap_info->dst_stride * tile_width *
 					   fb->base.format->cpp[color_plane];
 
-		size = remap_info->dst_stride * remap_info->height;
+		size += remap_info->dst_stride * remap_info->height;
 	}
 
 	/*
@@ -942,10 +956,14 @@ calc_plane_normal_size(const struct intel_framebuffer *fb, int color_plane,
 	return tiles;
 }
 
-static void intel_fb_view_init(struct intel_fb_view *view, enum i915_ggtt_view_type view_type)
+static void intel_fb_view_init(struct drm_i915_private *i915, struct intel_fb_view *view,
+			       enum i915_ggtt_view_type view_type)
 {
 	memset(view, 0, sizeof(*view));
 	view->gtt.type = view_type;
+
+	if (view_type == I915_GGTT_VIEW_REMAPPED && IS_ALDERLAKE_P(i915))
+		view->gtt.remapped.plane_alignment = SZ_2M / PAGE_SIZE;
 }
 
 bool intel_fb_supports_90_270_rotation(const struct intel_framebuffer *fb)
@@ -966,16 +984,16 @@ int intel_fill_fb_info(struct drm_i915_private *i915, struct intel_framebuffer *
 	int i, num_planes = fb->base.format->num_planes;
 	unsigned int tile_size = intel_tile_size(i915);
 
-	intel_fb_view_init(&fb->normal_view, I915_GGTT_VIEW_NORMAL);
+	intel_fb_view_init(i915, &fb->normal_view, I915_GGTT_VIEW_NORMAL);
 
 	drm_WARN_ON(&i915->drm,
 		    intel_fb_supports_90_270_rotation(fb) &&
 		    intel_fb_needs_pot_stride_remap(fb));
 
 	if (intel_fb_supports_90_270_rotation(fb))
-		intel_fb_view_init(&fb->rotated_view, I915_GGTT_VIEW_ROTATED);
+		intel_fb_view_init(i915, &fb->rotated_view, I915_GGTT_VIEW_ROTATED);
 	if (intel_fb_needs_pot_stride_remap(fb))
-		intel_fb_view_init(&fb->remapped_view, I915_GGTT_VIEW_REMAPPED);
+		intel_fb_view_init(i915, &fb->remapped_view, I915_GGTT_VIEW_REMAPPED);
 
 	for (i = 0; i < num_planes; i++) {
 		struct fb_plane_view_dims view_dims;
@@ -1053,7 +1071,7 @@ static void intel_plane_remap_gtt(struct intel_plane_state *plane_state)
 	unsigned int src_w, src_h;
 	u32 gtt_offset = 0;
 
-	intel_fb_view_init(&plane_state->view,
+	intel_fb_view_init(i915, &plane_state->view,
 			   drm_rotation_90_or_270(rotation) ? I915_GGTT_VIEW_ROTATED :
 							      I915_GGTT_VIEW_REMAPPED);
 
@@ -1158,11 +1176,19 @@ intel_fb_stride_alignment(const struct drm_framebuffer *fb, int color_plane)
 
 	tile_width = intel_tile_width_bytes(fb, color_plane);
 	if (is_ccs_modifier(fb->modifier)) {
+		/*
+		 * On ADL-P the stride must be either 8 tiles or a stride
+		 * that is aligned to 16 tiles, required by the 16 tiles =
+		 * 64 kbyte CCS AUX PTE granularity, allowing CCS FBs to be
+		 * remapped.
+		 */
+		if (IS_ALDERLAKE_P(dev_priv))
+			tile_width *= fb->pitches[0] <= tile_width * 8 ? 8 : 16;
 		/*
 		 * On TGL the surface stride must be 4 tile aligned, mapped by
 		 * one 64 byte cacheline on the CCS AUX surface.
 		 */
-		if (DISPLAY_VER(dev_priv) >= 12)
+		else if (DISPLAY_VER(dev_priv) >= 12)
 			tile_width *= 4;
 		/*
 		 * Display WA #0531: skl,bxt,kbl,glk
@@ -1416,17 +1442,6 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
 			}
 		}
 
-		/* TODO: Add POT stride remapping support for CCS formats as well. */
-		if (IS_ALDERLAKE_P(dev_priv) &&
-		    mode_cmd->modifier[i] != DRM_FORMAT_MOD_LINEAR &&
-		    !intel_fb_needs_pot_stride_remap(intel_fb) &&
-		    !is_power_of_2(mode_cmd->pitches[i])) {
-			drm_dbg_kms(&dev_priv->drm,
-				    "plane %d pitch (%d) must be power of two for tiled buffers\n",
-				    i, mode_cmd->pitches[i]);
-			goto err;
-		}
-
 		fb->obj[i] = &obj->base;
 	}
 
diff --git a/drivers/gpu/drm/i915/gt/intel_ggtt.c b/drivers/gpu/drm/i915/gt/intel_ggtt.c
index de3ac58fceec3..cbd0e1010a467 100644
--- a/drivers/gpu/drm/i915/gt/intel_ggtt.c
+++ b/drivers/gpu/drm/i915/gt/intel_ggtt.c
@@ -1373,13 +1373,28 @@ intel_rotate_pages(struct intel_rotation_info *rot_info,
 }
 
 static struct scatterlist *
-remap_pages(struct drm_i915_gem_object *obj, unsigned int offset,
+remap_pages(struct drm_i915_gem_object *obj,
+	    unsigned int offset, unsigned int alignment_pad,
 	    unsigned int width, unsigned int height,
 	    unsigned int src_stride, unsigned int dst_stride,
 	    struct sg_table *st, struct scatterlist *sg)
 {
 	unsigned int row;
 
+	if (alignment_pad) {
+		st->nents++;
+
+		/*
+		 * The DE ignores the PTEs for the padding tiles, the sg entry
+		 * here is just a convenience to indicate how many padding PTEs
+		 * to insert at this spot.
+		 */
+		sg_set_page(sg, NULL, alignment_pad * 4096, 0);
+		sg_dma_address(sg) = 0;
+		sg_dma_len(sg) = alignment_pad * 4096;
+		sg = sg_next(sg);
+	}
+
 	for (row = 0; row < height; row++) {
 		unsigned int left = width * I915_GTT_PAGE_SIZE;
 
@@ -1439,6 +1454,7 @@ intel_remap_pages(struct intel_remapped_info *rem_info,
 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
 	struct sg_table *st;
 	struct scatterlist *sg;
+	unsigned int gtt_offset = 0;
 	int ret = -ENOMEM;
 	int i;
 
@@ -1455,10 +1471,19 @@ intel_remap_pages(struct intel_remapped_info *rem_info,
 	sg = st->sgl;
 
 	for (i = 0 ; i < ARRAY_SIZE(rem_info->plane); i++) {
-		sg = remap_pages(obj, rem_info->plane[i].offset,
+		unsigned int alignment_pad = 0;
+
+		if (rem_info->plane_alignment)
+			alignment_pad = ALIGN(gtt_offset, rem_info->plane_alignment) - gtt_offset;
+
+		sg = remap_pages(obj,
+				 rem_info->plane[i].offset, alignment_pad,
 				 rem_info->plane[i].width, rem_info->plane[i].height,
 				 rem_info->plane[i].src_stride, rem_info->plane[i].dst_stride,
 				 st, sg);
+
+		gtt_offset += alignment_pad +
+			      rem_info->plane[i].dst_stride * rem_info->plane[i].height;
 	}
 
 	i915_sg_trim(st);
diff --git a/drivers/gpu/drm/i915/i915_vma_types.h b/drivers/gpu/drm/i915/i915_vma_types.h
index 995b502d7e5d9..80e93bf00f2e5 100644
--- a/drivers/gpu/drm/i915/i915_vma_types.h
+++ b/drivers/gpu/drm/i915/i915_vma_types.h
@@ -105,8 +105,9 @@ struct intel_remapped_plane_info {
 } __packed;
 
 struct intel_remapped_info {
-	struct intel_remapped_plane_info plane[2];
-	u32 unused_mbz;
+	struct intel_remapped_plane_info plane[4];
+	/* in gtt pages */
+	u32 plane_alignment;
 } __packed;
 
 struct intel_rotation_info {
@@ -129,7 +130,7 @@ static inline void assert_i915_gem_gtt_types(void)
 {
 	BUILD_BUG_ON(sizeof(struct intel_rotation_info) != 2 * sizeof(u32) + 8 * sizeof(u16));
 	BUILD_BUG_ON(sizeof(struct intel_partial_info) != sizeof(u64) + sizeof(unsigned int));
-	BUILD_BUG_ON(sizeof(struct intel_remapped_info) != 3 * sizeof(u32) + 8 * sizeof(u16));
+	BUILD_BUG_ON(sizeof(struct intel_remapped_info) != 5 * sizeof(u32) + 16 * sizeof(u16));
 
 	/* Check that rotation/remapped shares offsets for simplicity */
 	BUILD_BUG_ON(offsetof(struct intel_remapped_info, plane[0]) !=
-- 
2.27.0


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

* [PATCH v2 6/6] drm/fourcc: Add the ADL-P specific pitch requirements of CCS modifiers
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
@ 2021-09-06 18:27   ` Imre Deak
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 2/6] drm/i915/adlp: Require always a power-of-two sized CCS surface stride Imre Deak
                     ` (10 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-06 18:27 UTC (permalink / raw)
  To: intel-gfx; +Cc: Nanley G Chery, Juha-Pekka Heikkila, dri-devel

On Alderlake-P for all CCS modifiers the main surface pitch must be
either 8 Y-tile width or the multiple of 16 Y-tile widths. The CCS
surface pitch must be rounded up to power-of-two.

Adjust the modifier descriptions accordingly.

Cc: Nanley G Chery <nanley.g.chery@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 include/uapi/drm/drm_fourcc.h | 24 ++++++++++++++++++------
 1 file changed, 18 insertions(+), 6 deletions(-)

diff --git a/include/uapi/drm/drm_fourcc.h b/include/uapi/drm/drm_fourcc.h
index 45a914850be0d..b63b7fa8bbac6 100644
--- a/include/uapi/drm/drm_fourcc.h
+++ b/include/uapi/drm/drm_fourcc.h
@@ -522,8 +522,16 @@ extern "C" {
  * The main surface is Y-tiled and at plane index 0, the CCS is linear and
  * at index 1. A 64B CCS cache line corresponds to an area of 4x1 tiles in
  * main surface. In other words, 4 bits in CCS map to a main surface cache
- * line pair. The main surface pitch is required to be a multiple of four
- * Y-tile widths.
+ * line pair.
+ *
+ * The pitch of the main surface is required to be either 8 or a multiple of
+ * 16 Y-tile widths on Alderlake-P and a multiple of 4 Y-tile widths on other
+ * platforms.
+ *
+ * The pitch of the CCS surface must be calculated using the
+ *    ccs_surface_pitch=main_surface_pitch_in_bytes / 512 * 64.
+ * formula. On Alderlake-P this pitch must be rounded up to be power-of-two
+ * sized.
  */
 #define I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS fourcc_mod_code(INTEL, 6)
 
@@ -533,10 +541,12 @@ extern "C" {
  * The main surface is Y-tiled and at plane index 0, the CCS is linear and
  * at index 1. A 64B CCS cache line corresponds to an area of 4x1 tiles in
  * main surface. In other words, 4 bits in CCS map to a main surface cache
- * line pair. The main surface pitch is required to be a multiple of four
- * Y-tile widths. For semi-planar formats like NV12, CCS planes follow the
+ * line pair.  For semi-planar formats like NV12, CCS planes follow the
  * Y and UV planes i.e., planes 0 and 1 are used for Y and UV surfaces,
  * planes 2 and 3 for the respective CCS.
+ *
+ * About the requirement on the main and CCS surface pitches see the
+ * description for I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS.
  */
 #define I915_FORMAT_MOD_Y_TILED_GEN12_MC_CCS fourcc_mod_code(INTEL, 7)
 
@@ -554,8 +564,10 @@ extern "C" {
  * Clear Color value when applicable. The Converted Clear Color values are
  * consumed by the DE. The last 64 bits are used to store Color Discard Enable
  * and Depth Clear Value Valid which are ignored by the DE. A CCS cache line
- * corresponds to an area of 4x1 tiles in the main surface. The main surface
- * pitch is required to be a multiple of 4 tile widths.
+ * corresponds to an area of 4x1 tiles in the main surface.
+ *
+ * About the requirement on the main and CCS surface pitches see the
+ * description for I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS.
  */
 #define I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS_CC fourcc_mod_code(INTEL, 8)
 
-- 
2.27.0


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

* [Intel-gfx] [PATCH v2 6/6] drm/fourcc: Add the ADL-P specific pitch requirements of CCS modifiers
@ 2021-09-06 18:27   ` Imre Deak
  0 siblings, 0 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-06 18:27 UTC (permalink / raw)
  To: intel-gfx; +Cc: Nanley G Chery, Juha-Pekka Heikkila, dri-devel

On Alderlake-P for all CCS modifiers the main surface pitch must be
either 8 Y-tile width or the multiple of 16 Y-tile widths. The CCS
surface pitch must be rounded up to power-of-two.

Adjust the modifier descriptions accordingly.

Cc: Nanley G Chery <nanley.g.chery@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 include/uapi/drm/drm_fourcc.h | 24 ++++++++++++++++++------
 1 file changed, 18 insertions(+), 6 deletions(-)

diff --git a/include/uapi/drm/drm_fourcc.h b/include/uapi/drm/drm_fourcc.h
index 45a914850be0d..b63b7fa8bbac6 100644
--- a/include/uapi/drm/drm_fourcc.h
+++ b/include/uapi/drm/drm_fourcc.h
@@ -522,8 +522,16 @@ extern "C" {
  * The main surface is Y-tiled and at plane index 0, the CCS is linear and
  * at index 1. A 64B CCS cache line corresponds to an area of 4x1 tiles in
  * main surface. In other words, 4 bits in CCS map to a main surface cache
- * line pair. The main surface pitch is required to be a multiple of four
- * Y-tile widths.
+ * line pair.
+ *
+ * The pitch of the main surface is required to be either 8 or a multiple of
+ * 16 Y-tile widths on Alderlake-P and a multiple of 4 Y-tile widths on other
+ * platforms.
+ *
+ * The pitch of the CCS surface must be calculated using the
+ *    ccs_surface_pitch=main_surface_pitch_in_bytes / 512 * 64.
+ * formula. On Alderlake-P this pitch must be rounded up to be power-of-two
+ * sized.
  */
 #define I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS fourcc_mod_code(INTEL, 6)
 
@@ -533,10 +541,12 @@ extern "C" {
  * The main surface is Y-tiled and at plane index 0, the CCS is linear and
  * at index 1. A 64B CCS cache line corresponds to an area of 4x1 tiles in
  * main surface. In other words, 4 bits in CCS map to a main surface cache
- * line pair. The main surface pitch is required to be a multiple of four
- * Y-tile widths. For semi-planar formats like NV12, CCS planes follow the
+ * line pair.  For semi-planar formats like NV12, CCS planes follow the
  * Y and UV planes i.e., planes 0 and 1 are used for Y and UV surfaces,
  * planes 2 and 3 for the respective CCS.
+ *
+ * About the requirement on the main and CCS surface pitches see the
+ * description for I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS.
  */
 #define I915_FORMAT_MOD_Y_TILED_GEN12_MC_CCS fourcc_mod_code(INTEL, 7)
 
@@ -554,8 +564,10 @@ extern "C" {
  * Clear Color value when applicable. The Converted Clear Color values are
  * consumed by the DE. The last 64 bits are used to store Color Discard Enable
  * and Depth Clear Value Valid which are ignored by the DE. A CCS cache line
- * corresponds to an area of 4x1 tiles in the main surface. The main surface
- * pitch is required to be a multiple of 4 tile widths.
+ * corresponds to an area of 4x1 tiles in the main surface.
+ *
+ * About the requirement on the main and CCS surface pitches see the
+ * description for I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS.
  */
 #define I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS_CC fourcc_mod_code(INTEL, 8)
 
-- 
2.27.0


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

* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/adlp: Add support for remapping CCS FBs (rev2)
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
                   ` (5 preceding siblings ...)
  2021-09-06 18:27   ` [Intel-gfx] " Imre Deak
@ 2021-09-06 19:49 ` Patchwork
  2021-09-06 21:14 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-09-06 19:49 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 3177 bytes --]

== Series Details ==

Series: drm/i915/adlp: Add support for remapping CCS FBs (rev2)
URL   : https://patchwork.freedesktop.org/series/94108/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10553 -> Patchwork_20968
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_cs_nop@sync-fork-gfx0:
    - fi-skl-6600u:       NOTRUN -> [SKIP][1] ([fdo#109271]) +18 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html

  * igt@runner@aborted:
    - fi-bdw-5557u:       NOTRUN -> [FAIL][2] ([i915#1602] / [i915#2029])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/fi-bdw-5557u/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - fi-skl-6600u:       [INCOMPLETE][3] ([i915#198]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/fi-skl-6600u/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/fi-skl-6600u/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.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#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198
  [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
  [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541


Participating hosts (45 -> 39)
------------------------------

  Missing    (6): bat-adls-5 bat-dg1-6 bat-dg1-5 fi-bsw-cyan bat-adlp-4 bat-jsl-1 


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

  * IGT: IGT_6197 -> IGTPW_6201
  * Linux: CI_DRM_10553 -> Patchwork_20968

  CI-20190529: 20190529
  CI_DRM_10553: 47b2bd2caa7b29b5741ff2521206657853b85165 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6201: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6201/index.html
  IGT_6197: 40888f97a6ad219f4ed48a1830d0ef3c9617d006 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20968: d59a5a203c014fdbd06b4b01215c5f0c1c433fac @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

d59a5a203c01 drm/fourcc: Add the ADL-P specific pitch requirements of CCS modifiers
6de7a755ff6b drm/i915/adlp: Add support for remapping CCS FBs
db26d072b678 drm/i915: Follow a new->old platform check order in intel_fb_stride_alignment
69f8d6cd402f drm/i915/adlp: Assert that VMAs in DPT start at 0
f008405ab6cc drm/i915/adlp: Require always a power-of-two sized CCS surface stride
5ea74ea48d04 drm/i915: Use tile block based dimensions for CCS origin x, y check

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 3819 bytes --]

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

* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/adlp: Add support for remapping CCS FBs (rev2)
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
                   ` (6 preceding siblings ...)
  2021-09-06 19:49 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/adlp: Add support for remapping CCS FBs (rev2) Patchwork
@ 2021-09-06 21:14 ` Patchwork
  2021-09-07  2:49 ` [Intel-gfx] [CI 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-09-06 21:14 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 30278 bytes --]

== Series Details ==

Series: drm/i915/adlp: Add support for remapping CCS FBs (rev2)
URL   : https://patchwork.freedesktop.org/series/94108/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10553_full -> Patchwork_20968_full
====================================================

Summary
-------

  **FAILURE**

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

  

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:
    - shard-skl:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-skl:          [PASS][2] -> [FAIL][3] +5 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_ccs.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl8/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_ccs.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][4] ([fdo#111827])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb1/igt@feature_discovery@chamelium.html

  * igt@feature_discovery@display-2x:
    - shard-tglb:         NOTRUN -> [SKIP][5] ([i915#1839])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb7/igt@feature_discovery@display-2x.html

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

  * igt@gem_eio@in-flight-contexts-1us:
    - shard-iclb:         [PASS][7] -> [TIMEOUT][8] ([i915#3070])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb3/igt@gem_eio@in-flight-contexts-1us.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb3/igt@gem_eio@in-flight-contexts-1us.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][9] -> [FAIL][10] ([i915#2846])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-kbl7/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          [PASS][11] -> [FAIL][12] ([i915#2846])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk5/igt@gem_exec_fair@basic-deadline.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk3/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][13] ([i915#2842]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-kbl:          [PASS][14] -> [FAIL][15] ([i915#2842]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@gem_exec_fair@basic-none-vip@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-tglb:         [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-tglb6/igt@gem_exec_fair@basic-pace@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-kbl:          [PASS][18] -> [SKIP][19] ([fdo#109271])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#2842]) +3 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk6/igt@gem_exec_fair@basic-pace@vecs0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk4/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_params@secure-non-master:
    - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#112283])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb2/igt@gem_exec_params@secure-non-master.html

  * igt@gem_exec_whisper@basic-queues-priority:
    - shard-glk:          [PASS][23] -> [DMESG-WARN][24] ([i915#118] / [i915#95])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk2/igt@gem_exec_whisper@basic-queues-priority.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk3/igt@gem_exec_whisper@basic-queues-priority.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
    - shard-iclb:         [PASS][25] -> [FAIL][26] ([i915#307])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb3/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb1/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html

  * igt@gem_mmap_gtt@cpuset-big-copy:
    - shard-iclb:         NOTRUN -> [FAIL][27] ([i915#2428])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb7/igt@gem_mmap_gtt@cpuset-big-copy.html

  * igt@gem_pread@exhaustion:
    - shard-apl:          NOTRUN -> [WARN][28] ([i915#2658])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-apl1/igt@gem_pread@exhaustion.html
    - shard-snb:          NOTRUN -> [WARN][29] ([i915#2658])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-snb5/igt@gem_pread@exhaustion.html

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

  * igt@gem_softpin@evict-snoop:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#109312])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb2/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][32] ([i915#3002])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-apl1/igt@gem_userptr_blits@input-checking.html

  * igt@gen3_render_tiledy_blits:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([fdo#109289]) +3 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb1/igt@gen3_render_tiledy_blits.html
    - shard-iclb:         NOTRUN -> [SKIP][34] ([fdo#109289]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb2/igt@gen3_render_tiledy_blits.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([i915#2856]) +1 similar issue
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb2/igt@gen9_exec_parse@bb-oversize.html

  * igt@gen9_exec_parse@unaligned-access:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([i915#2856]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb8/igt@gen9_exec_parse@unaligned-access.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-tglb:         NOTRUN -> [WARN][37] ([i915#2681])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb7/igt@i915_pm_rc6_residency@rc6-fence.html
    - shard-iclb:         NOTRUN -> [WARN][38] ([i915#1804] / [i915#2684])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb6/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@i915_pm_rpm@pc8-residency:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109293] / [fdo#109506])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb2/igt@i915_pm_rpm@pc8-residency.html
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#109506] / [i915#2411])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb3/igt@i915_pm_rpm@pc8-residency.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([i915#404])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-iclb:         NOTRUN -> [SKIP][42] ([i915#404])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@linear-32bpp-rotate-180:
    - shard-glk:          NOTRUN -> [DMESG-WARN][43] ([i915#118] / [i915#95])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-skl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#3777])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-glk:          NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#3777])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-skl:          NOTRUN -> [FAIL][47] ([i915#3722])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#111614]) +2 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-apl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#3777]) +1 similar issue
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-apl8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-skl:          NOTRUN -> [FAIL][50] ([i915#3763])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#111615]) +4 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#110723]) +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([i915#3689] / [i915#3886]) +4 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
    - shard-skl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3886]) +4 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#3886]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-kbl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#3886]) +6 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109278] / [i915#3886]) +4 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb8/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#3886]) +10 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-apl7/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([i915#3689]) +9 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb2/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html

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

  * igt@kms_chamelium@hdmi-cmp-planar-formats:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb2/igt@kms_chamelium@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium@vga-edid-read:
    - shard-glk:          NOTRUN -> [SKIP][62] ([fdo#109271] / [fdo#111827]) +6 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk7/igt@kms_chamelium@vga-edid-read.html

  * igt@kms_chamelium@vga-hpd:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([fdo#109284] / [fdo#111827]) +10 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb7/igt@kms_chamelium@vga-hpd.html

  * igt@kms_color_chamelium@pipe-c-ctm-negative:
    - shard-kbl:          NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-kbl1/igt@kms_color_chamelium@pipe-c-ctm-negative.html

  * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
    - shard-skl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl5/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html
    - shard-snb:          NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +24 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][67] ([i915#3116])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb1/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][68] ([fdo#109279] / [i915#3359]) +4 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109278] / [fdo#109279]) +2 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-apl:          [PASS][70] -> [DMESG-WARN][71] ([i915#180])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_cursor_crc@pipe-b-cursor-128x128-random:
    - shard-skl:          [PASS][72] -> [SKIP][73] ([fdo#109271]) +10 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl7/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl3/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][74] ([i915#3319]) +1 similar issue
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding.html

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][75] ([i915#3359]) +3 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109274] / [fdo#109278])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-skl:          [PASS][77] -> [FAIL][78] ([i915#2346] / [i915#533])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@pipe-d-single-bo:
    - shard-glk:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533]) +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk8/igt@kms_cursor_legacy@pipe-d-single-bo.html

  * igt@kms_cursor_legacy@pipe-d-single-move:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109278]) +25 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb6/igt@kms_cursor_legacy@pipe-d-single-move.html

  * igt@kms_draw_crc@draw-method-rgb565-render-ytiled:
    - shard-glk:          [PASS][81] -> [FAIL][82] ([i915#1888])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk5/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html

  * igt@kms_dsc@basic-dsc-enable:
    - shard-iclb:         NOTRUN -> [SKIP][83] ([i915#3840])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb1/igt@kms_dsc@basic-dsc-enable.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-kbl:          NOTRUN -> [SKIP][84] ([fdo#109271]) +78 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-kbl3/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
    - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#109274])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb7/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

  * igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][86] -> [FAIL][87] ([i915#2122])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-rmfb-interruptible@a-edp1:
    - shard-skl:          [PASS][88] -> [DMESG-WARN][89] ([i915#1982])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl2/igt@kms_flip@flip-vs-rmfb-interruptible@a-edp1.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl10/igt@kms_flip@flip-vs-rmfb-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-edp1:
    - shard-skl:          [PASS][90] -> [INCOMPLETE][91] ([i915#198])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl6/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl9/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
    - shard-kbl:          [PASS][92] -> [DMESG-WARN][93] ([i915#180])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
    - shard-iclb:         [PASS][95] -> [SKIP][96] ([i915#3701])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
    - shard-skl:          NOTRUN -> [SKIP][97] ([fdo#109271]) +166 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-glk:          NOTRUN -> [SKIP][98] ([fdo#109271]) +103 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([fdo#111825]) +35 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][100] ([fdo#109280]) +18 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
    - shard-snb:          NOTRUN -> [SKIP][101] ([fdo#109271]) +513 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-snb7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-skl:          [PASS][102] -> [FAIL][103] ([i915#1188]) +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl2/igt@kms_hdr@bpc-switch-dpms.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl5/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@static-swap:
    - shard-tglb:         NOTRUN -> [SKIP][104] ([i915#1187])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb7/igt@kms_hdr@static-swap.html
    - shard-iclb:         NOTRUN -> [SKIP][105] ([i915#1187])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb5/igt@kms_hdr@static-swap.html

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

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][108] ([fdo#108145] / [i915#265]) +5 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
    - shard-kbl:          NOTRUN -> [FAIL][109] ([fdo#108145] / [i915#265])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-kbl1/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
    - shard-skl:          NOTRUN -> [FAIL][110] ([fdo#108145] / [i915#265]) +1 similar issue
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl8/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][111] ([i915#265])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-apl6/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
    - shard-skl:          NOTRUN -> [FAIL][112] ([i915#265]) +1 similar issue
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl3/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html

  * igt@kms_plane_lowres@pipe-b-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][113] ([fdo#112054])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb3/igt@kms_plane_lowres@pipe-b-tiling-yf.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-tglb:         NOTRUN -> [SKIP][114] ([i915#2920]) +2 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
    - shard-iclb:         NOTRUN -> [SKIP][115] ([i915#2920])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
    - shard-apl:          NOTRUN -> [SKIP][116] ([fdo#109271] / [i915#658]) +2 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-apl3/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
    - shard-glk:          NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#658]) +3 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-glk9/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
    - shard-iclb:         NOTRUN -> [SKIP][118] ([i915#658])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
    - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#658]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-kbl7/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
    - shard-skl:          NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#658]) +2 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][121] ([i915#132] / [i915#3467]) +1 similar issue
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb2/igt@kms_psr@psr2_cursor_plane_onoff.html
    - shard-iclb:         NOTRUN -> [SKIP][122] ([fdo#109441])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb7/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [PASS][123] -> [SKIP][124] ([fdo#109441]) +1 similar issue
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
    - shard-skl:          [PASS][125] -> [INCOMPLETE][126] ([i915#198] / [i915#2828])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-skl10/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html

  * igt@kms_vblank@pipe-d-ts-continuation-idle:
    - shard-apl:          NOTRUN -> [SKIP][127] ([fdo#109271]) +253 similar issues
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-apl3/igt@kms_vblank@pipe-d-ts-continuation-idle.html

  * igt@kms_vrr@flip-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][128] ([fdo#109502])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-tglb6/igt@kms_vrr@flip-dpms.html

  * igt@kms_writeback@writeback-check-output:
    - shard-apl:          NOTRUN -> [SKIP][129] ([fdo#109271] / [i915#2437])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20968/shard-apl1/igt@kms_writeback@writeback

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 33765 bytes --]

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

* [Intel-gfx] [CI 0/6] drm/i915/adlp: Add support for remapping CCS FBs
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
                   ` (7 preceding siblings ...)
  2021-09-06 21:14 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-09-07  2:49 ` Imre Deak
  2021-09-07  3:24 ` Imre Deak
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-07  2:49 UTC (permalink / raw)
  To: intel-gfx; +Cc: Juha-Pekka Heikkila, Nanley G Chery

Resending [1] to test with the fixed IGT changes at [2].

[1] https://patchwork.freedesktop.org/series/94108/
[2] https://patchwork.freedesktop.org/series/94107/

Test-with: 20210907015807.3932309-1-imre.deak@intel.com

Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Nanley G Chery <nanley.g.chery@intel.com>

Imre Deak (6):
  drm/i915: Use tile block based dimensions for CCS origin x, y check
  drm/i915/adlp: Require always a power-of-two sized CCS surface stride
  drm/i915/adlp: Assert that VMAs in DPT start at 0
  drm/i915: Follow a new->old platform check order in
    intel_fb_stride_alignment
  drm/i915/adlp: Add support for remapping CCS FBs
  drm/fourcc: Add the ADL-P specific pitch requirements of CCS modifiers

 drivers/gpu/drm/i915/display/intel_display.c  |   5 +-
 .../drm/i915/display/intel_display_types.h    |   2 -
 drivers/gpu/drm/i915/display/intel_fb.c       | 171 ++++++++++++------
 .../drm/i915/display/skl_universal_plane.c    |   5 +
 drivers/gpu/drm/i915/gt/intel_ggtt.c          |  29 ++-
 drivers/gpu/drm/i915/i915_vma_types.h         |   7 +-
 include/uapi/drm/drm_fourcc.h                 |  24 ++-
 7 files changed, 174 insertions(+), 69 deletions(-)

-- 
2.27.0


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

* [Intel-gfx] [CI 0/6] drm/i915/adlp: Add support for remapping CCS FBs
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
                   ` (8 preceding siblings ...)
  2021-09-07  2:49 ` [Intel-gfx] [CI 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
@ 2021-09-07  3:24 ` Imre Deak
  2021-09-07  4:08 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/adlp: Add support for remapping CCS FBs (rev3) Patchwork
  2021-09-07  5:25 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
  11 siblings, 0 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-07  3:24 UTC (permalink / raw)
  To: intel-gfx; +Cc: Juha-Pekka Heikkila, Nanley G Chery

Resending [1] to test with the fixed IGT changes at [2]. Sending only a
cover letter doesn't seem to trigger a new patchwork test run, so try
again also sending the first patch.

[1] https://patchwork.freedesktop.org/series/94108/
[2] https://patchwork.freedesktop.org/series/94107/

Test-with: 20210907015807.3932309-1-imre.deak@intel.com

Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Nanley G Chery <nanley.g.chery@intel.com>

Imre Deak (6):
  drm/i915: Use tile block based dimensions for CCS origin x, y check
  drm/i915/adlp: Require always a power-of-two sized CCS surface stride
  drm/i915/adlp: Assert that VMAs in DPT start at 0
  drm/i915: Follow a new->old platform check order in
    intel_fb_stride_alignment
  drm/i915/adlp: Add support for remapping CCS FBs
  drm/fourcc: Add the ADL-P specific pitch requirements of CCS modifiers

 drivers/gpu/drm/i915/display/intel_display.c  |   5 +-
 .../drm/i915/display/intel_display_types.h    |   2 -
 drivers/gpu/drm/i915/display/intel_fb.c       | 171 ++++++++++++------
 .../drm/i915/display/skl_universal_plane.c    |   5 +
 drivers/gpu/drm/i915/gt/intel_ggtt.c          |  29 ++-
 drivers/gpu/drm/i915/i915_vma_types.h         |   7 +-
 include/uapi/drm/drm_fourcc.h                 |  24 ++-
 7 files changed, 174 insertions(+), 69 deletions(-)

-- 
2.27.0


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

* [Intel-gfx] [CI 1/6] drm/i915: Use tile block based dimensions for CCS origin x, y check
  2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 1/6] drm/i915: Use tile block based dimensions for CCS origin x, y check Imre Deak
@ 2021-09-07  3:24   ` Imre Deak
  0 siblings, 0 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-07  3:24 UTC (permalink / raw)
  To: intel-gfx; +Cc: Juha-Pekka Heikkila

The tile size for all surface types is 4 kbyte (or 2 kbyte on old
platforms), with the exception of the TGL/ADL CCS surface where the tile
size is 64 bytes. To be able to remap CCS FBs the CCS surface tile needs
to be defined as 4 kbyte as well (the granularity of GTT pages in a
remapped view).

The only place using the dimension of the 64 byte CCS area is the initial
check for the main vs. CCS plane origin coordinate match. To prepare for
adding support for remapping CCS FBs let's call the 64 byte CCS area a
'tile block' and add a helper to retrieve the dimensions for it.

No functional change.

Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
 drivers/gpu/drm/i915/display/intel_fb.c | 30 ++++++++++++++++++++-----
 1 file changed, 25 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index e4b8602ec0cd2..0cf568a9cb1c6 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -143,14 +143,14 @@ intel_tile_width_bytes(const struct drm_framebuffer *fb, int color_plane)
 
 unsigned int intel_tile_height(const struct drm_framebuffer *fb, int color_plane)
 {
-	if (is_gen12_ccs_plane(fb, color_plane))
-		return 1;
-
 	return intel_tile_size(to_i915(fb->dev)) /
 		intel_tile_width_bytes(fb, color_plane);
 }
 
-/* Return the tile dimensions in pixel units */
+/*
+ * Return the tile dimensions in pixel units, based on the (2 or 4 kbyte) GTT
+ * page tile size.
+ */
 static void intel_tile_dims(const struct drm_framebuffer *fb, int color_plane,
 			    unsigned int *tile_width,
 			    unsigned int *tile_height)
@@ -162,6 +162,21 @@ static void intel_tile_dims(const struct drm_framebuffer *fb, int color_plane,
 	*tile_height = intel_tile_height(fb, color_plane);
 }
 
+/*
+ * Return the tile dimensions in pixel units, based on the tile block size.
+ * The block covers the full GTT page sized tile on all tiled surfaces and
+ * it's a 64 byte portion of the tile on TGL+ CCS surfaces.
+ */
+static void intel_tile_block_dims(const struct drm_framebuffer *fb, int color_plane,
+				  unsigned int *tile_width,
+				  unsigned int *tile_height)
+{
+	intel_tile_dims(fb, color_plane, tile_width, tile_height);
+
+	if (is_gen12_ccs_plane(fb, color_plane))
+		*tile_height = 1;
+}
+
 unsigned int intel_tile_row_size(const struct drm_framebuffer *fb, int color_plane)
 {
 	unsigned int tile_width, tile_height;
@@ -567,7 +582,12 @@ static int intel_fb_check_ccs_xy(const struct drm_framebuffer *fb, int ccs_plane
 	if (!is_ccs_plane(fb, ccs_plane) || is_gen12_ccs_cc_plane(fb, ccs_plane))
 		return 0;
 
-	intel_tile_dims(fb, ccs_plane, &tile_width, &tile_height);
+	/*
+	 * While all the tile dimensions are based on a 2k or 4k GTT page size
+	 * here the main and CCS coordinates must match only within a (64 byte
+	 * on TGL+) block inside the tile.
+	 */
+	intel_tile_block_dims(fb, ccs_plane, &tile_width, &tile_height);
 	intel_fb_plane_get_subsampling(&hsub, &vsub, fb, ccs_plane);
 
 	tile_width *= hsub;
-- 
2.27.0


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

* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/adlp: Add support for remapping CCS FBs (rev3)
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
                   ` (9 preceding siblings ...)
  2021-09-07  3:24 ` Imre Deak
@ 2021-09-07  4:08 ` Patchwork
  2021-09-07  5:25 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
  11 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-09-07  4:08 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 4293 bytes --]

== Series Details ==

Series: drm/i915/adlp: Add support for remapping CCS FBs (rev3)
URL   : https://patchwork.freedesktop.org/series/94108/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10553 -> Patchwork_20971
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_cs_nop@sync-fork-gfx0:
    - fi-skl-6600u:       NOTRUN -> [SKIP][1] ([fdo#109271]) +18 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html

  * igt@gem_exec_suspend@basic-s0:
    - fi-kbl-soraka:      [PASS][2] -> [INCOMPLETE][3] ([i915#155])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_exec_suspend@basic-s3:
    - fi-tgl-1115g4:      [PASS][4] -> [FAIL][5] ([i915#1888])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html

  * igt@runner@aborted:
    - fi-kbl-r:           NOTRUN -> [FAIL][6] ([i915#1569] / [i915#192] / [i915#193] / [i915#194] / [i915#3363])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/fi-kbl-r/igt@runner@aborted.html
    - fi-bdw-5557u:       NOTRUN -> [FAIL][7] ([i915#1602] / [i915#2029])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/fi-bdw-5557u/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - fi-skl-6600u:       [INCOMPLETE][8] ([i915#198]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/fi-skl-6600u/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/fi-skl-6600u/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1569]: https://gitlab.freedesktop.org/drm/intel/issues/1569
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#192]: https://gitlab.freedesktop.org/drm/intel/issues/192
  [i915#193]: https://gitlab.freedesktop.org/drm/intel/issues/193
  [i915#194]: https://gitlab.freedesktop.org/drm/intel/issues/194
  [i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198
  [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363


Participating hosts (45 -> 39)
------------------------------

  Missing    (6): bat-adls-5 bat-dg1-6 bat-dg1-5 fi-bsw-cyan bat-adlp-4 bat-jsl-1 


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

  * IGT: IGT_6197 -> IGTPW_6202
  * Linux: CI_DRM_10553 -> Patchwork_20971

  CI-20190529: 20190529
  CI_DRM_10553: 47b2bd2caa7b29b5741ff2521206657853b85165 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6202: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6202/index.html
  IGT_6197: 40888f97a6ad219f4ed48a1830d0ef3c9617d006 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20971: c8552aaceea7412b0a9ab9590a94399d8a144967 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

c8552aaceea7 drm/fourcc: Add the ADL-P specific pitch requirements of CCS modifiers
6dc44341ecbf drm/i915/adlp: Add support for remapping CCS FBs
f2a2176817a5 drm/i915: Follow a new->old platform check order in intel_fb_stride_alignment
bc1f46e15e83 drm/i915/adlp: Assert that VMAs in DPT start at 0
3e3035b666ae drm/i915/adlp: Require always a power-of-two sized CCS surface stride
fcebda4f317f drm/i915: Use tile block based dimensions for CCS origin x, y check

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 5063 bytes --]

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

* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/adlp: Add support for remapping CCS FBs (rev3)
  2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
                   ` (10 preceding siblings ...)
  2021-09-07  4:08 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/adlp: Add support for remapping CCS FBs (rev3) Patchwork
@ 2021-09-07  5:25 ` Patchwork
  2021-09-07 10:41   ` Imre Deak
  2021-09-23 15:15   ` Imre Deak
  11 siblings, 2 replies; 18+ messages in thread
From: Patchwork @ 2021-09-07  5:25 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 30278 bytes --]

== Series Details ==

Series: drm/i915/adlp: Add support for remapping CCS FBs (rev3)
URL   : https://patchwork.freedesktop.org/series/94108/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10553_full -> Patchwork_20971_full
====================================================

Summary
-------

  **FAILURE**

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

  

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_suspend@sysfs-reader:
    - shard-iclb:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb2/igt@i915_suspend@sysfs-reader.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@i915_suspend@sysfs-reader.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][3] ([fdo#111827])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@feature_discovery@chamelium.html

  * igt@feature_discovery@display-2x:
    - shard-tglb:         NOTRUN -> [SKIP][4] ([i915#1839])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@feature_discovery@display-2x.html

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

  * igt@gem_eio@in-flight-contexts-1us:
    - shard-iclb:         [PASS][6] -> [TIMEOUT][7] ([i915#3070])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb3/igt@gem_eio@in-flight-contexts-1us.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@gem_eio@in-flight-contexts-1us.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][8] -> [FAIL][9] ([i915#2846])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          [PASS][10] -> [FAIL][11] ([i915#2846])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk5/igt@gem_exec_fair@basic-deadline.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk2/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][12] ([i915#2842]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][15] -> [FAIL][16] ([i915#2842])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-tglb:         [PASS][17] -> [FAIL][18] ([i915#2842])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-tglb6/igt@gem_exec_fair@basic-pace@rcs0.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][19] ([i915#2842])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_parallel@engines@basic:
    - shard-glk:          [PASS][20] -> [DMESG-WARN][21] ([i915#118] / [i915#95]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk9/igt@gem_exec_parallel@engines@basic.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk7/igt@gem_exec_parallel@engines@basic.html

  * igt@gem_exec_params@secure-non-master:
    - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#112283])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gem_exec_params@secure-non-master.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-odd:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#307])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html

  * igt@gem_pread@exhaustion:
    - shard-apl:          NOTRUN -> [WARN][25] ([i915#2658]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl1/igt@gem_pread@exhaustion.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][26] ([i915#768]) +2 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([fdo#109312])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][28] ([i915#3002])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl7/igt@gem_userptr_blits@input-checking.html

  * igt@gen3_render_tiledy_blits:
    - shard-tglb:         NOTRUN -> [SKIP][29] ([fdo#109289]) +3 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gen3_render_tiledy_blits.html
    - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109289]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb4/igt@gen3_render_tiledy_blits.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([i915#2856]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gen9_exec_parse@bb-oversize.html

  * igt@gen9_exec_parse@unaligned-access:
    - shard-iclb:         NOTRUN -> [SKIP][32] ([i915#2856]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@gen9_exec_parse@unaligned-access.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-tglb:         NOTRUN -> [WARN][33] ([i915#2681])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@i915_pm_rc6_residency@rc6-fence.html
    - shard-iclb:         NOTRUN -> [WARN][34] ([i915#2684])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@i915_pm_rpm@pc8-residency:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#109293] / [fdo#109506])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@i915_pm_rpm@pc8-residency.html
    - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#109506] / [i915#2411])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@i915_pm_rpm@pc8-residency.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([i915#404])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#404])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@linear-32bpp-rotate-0:
    - shard-glk:          NOTRUN -> [DMESG-WARN][39] ([i915#118] / [i915#95])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk1/igt@kms_big_fb@linear-32bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-skl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3777])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-skl:          NOTRUN -> [FAIL][42] ([i915#3722])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#111614]) +2 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-apl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#3777]) +2 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-skl:          NOTRUN -> [FAIL][45] ([i915#3763])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#111615]) +4 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-apl:          NOTRUN -> [SKIP][47] ([fdo#109271]) +300 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#110723]) +1 similar issue
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#3689] / [i915#3886]) +4 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3886]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3886]) +5 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk6/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-skl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#3886]) +4 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109278] / [i915#3886]) +4 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb8/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3886]) +17 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([i915#3689]) +9 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html

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

  * igt@kms_chamelium@hdmi-cmp-planar-formats:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_chamelium@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium@vga-edid-read:
    - shard-glk:          NOTRUN -> [SKIP][58] ([fdo#109271] / [fdo#111827]) +6 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk3/igt@kms_chamelium@vga-edid-read.html

  * igt@kms_chamelium@vga-hpd:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#109284] / [fdo#111827]) +9 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb2/igt@kms_chamelium@vga-hpd.html

  * igt@kms_color_chamelium@pipe-c-ctm-negative:
    - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl3/igt@kms_color_chamelium@pipe-c-ctm-negative.html

  * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
    - shard-skl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html
    - shard-snb:          NOTRUN -> [SKIP][62] ([fdo#109271] / [fdo#111827]) +26 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#3116])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb2/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#109279] / [i915#3359]) +4 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109278] / [fdo#109279]) +2 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-size-change:
    - shard-snb:          NOTRUN -> [FAIL][66] ([i915#4024])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
    - shard-glk:          NOTRUN -> [FAIL][67] ([i915#3444])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
    - shard-kbl:          NOTRUN -> [FAIL][68] ([i915#3444])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-size-change.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#3319]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding.html

  * igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque:
    - shard-glk:          [PASS][70] -> [FAIL][71] ([i915#3444]) +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html

  * igt@kms_cursor_crc@pipe-b-cursor-size-change:
    - shard-skl:          NOTRUN -> [FAIL][72] ([i915#3444])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
    - shard-kbl:          [PASS][73] -> [FAIL][74] ([i915#3444])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
    - shard-iclb:         [PASS][75] -> [FAIL][76] ([i915#3444])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb7/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb1/igt@kms_cursor_crc@pipe-b-cursor-size-change.html

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-kbl:          [PASS][77] -> [INCOMPLETE][78] ([i915#155])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

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

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][80] ([i915#3359]) +3 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109274] / [fdo#109278])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-skl:          [PASS][82] -> [FAIL][83] ([i915#2346])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@pipe-d-single-bo:
    - shard-glk:          NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#533]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk3/igt@kms_cursor_legacy@pipe-d-single-bo.html

  * igt@kms_cursor_legacy@pipe-d-single-move:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#109278]) +27 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109274]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][87] -> [FAIL][88] ([i915#2122])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
    - shard-skl:          [PASS][89] -> [FAIL][90] ([i915#2122])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl2/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
    - shard-skl:          NOTRUN -> [SKIP][92] ([fdo#109271]) +175 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-glk:          NOTRUN -> [SKIP][93] ([fdo#109271]) +104 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#111825]) +35 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109280]) +19 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
    - shard-snb:          NOTRUN -> [SKIP][96] ([fdo#109271]) +550 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_hdr@bpc-switch:
    - shard-skl:          [PASS][97] -> [FAIL][98] ([i915#1188])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl10/igt@kms_hdr@bpc-switch.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl7/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@static-swap:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#1187])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@kms_hdr@static-swap.html
    - shard-iclb:         NOTRUN -> [SKIP][100] ([i915#1187])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@kms_hdr@static-swap.html

  * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533]) +2 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl2/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-d:
    - shard-skl:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#533])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-apl:          [PASS][103] -> [DMESG-WARN][104] ([i915#180])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-apl8/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
    - shard-skl:          [PASS][105] -> [SKIP][106] ([fdo#109271]) +14 similar issues
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
    - shard-apl:          NOTRUN -> [FAIL][107] ([fdo#108145] / [i915#265]) +3 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
    - shard-skl:          [PASS][108] -> [FAIL][109] ([fdo#108145] / [i915#265])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl4/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
    - shard-kbl:          NOTRUN -> [FAIL][110] ([fdo#108145] / [i915#265])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
    - shard-skl:          NOTRUN -> [FAIL][111] ([fdo#108145] / [i915#265]) +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl5/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][112] ([i915#265])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
    - shard-skl:          NOTRUN -> [FAIL][113] ([i915#265]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html

  * igt@kms_plane_lowres@pipe-b-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][114] ([fdo#112054])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@kms_plane_lowres@pipe-b-tiling-yf.html

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

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-tglb:         NOTRUN -> [SKIP][116] ([i915#2920]) +2 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
    - shard-glk:          NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#658]) +3 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk9/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
    - shard-iclb:         NOTRUN -> [SKIP][118] ([i915#658]) +1 similar issue
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
    - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#658]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl2/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
    - shard-skl:          NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#658]) +3 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][121] ([i915#132] / [i915#3467]) +1 similar issue
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@kms_psr@psr2_cursor_plane_onoff.html
    - shard-iclb:         NOTRUN -> [SKIP][122] ([fdo#109441])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [PASS][123] -> [SKIP][124] ([fdo#109441]) +2 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_writeback@writeback-check-output:
    - shard-apl:          NOTRUN -> [SKIP][125] ([fdo#109271] / [i915#2437]) +1 similar issue
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl6/igt@kms_writeback@writeback-check-output.html
    - shard-iclb:         NOTRUN -> [SKIP][126] ([i915#2437])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@kms_writeback@writeback-check-output.html
    - shard-skl:          NOTRUN -> [SKIP][127] ([fdo#109271] / [i915#2437])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl3/igt@kms_writeback@writeback-check-output.html
    - shard-kbl:          NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#2437])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl4/igt@kms_writeback@writeback-check-output.html
    - shard-tglb:         NOTRUN -> [SKIP][129] ([i915#2437])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_writeback@writeback-check-output.html
    - shard-glk:          NOTRUN -> [SKIP][130] ([fdo#109271] / [i915#2437])
   [130]: https://intel-g

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 33744 bytes --]

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/i915/adlp: Add support for remapping CCS FBs (rev3)
  2021-09-07  5:25 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-09-07 10:41   ` Imre Deak
  2021-09-07 10:56     ` Sarvela, Tomi P
  2021-09-23 15:15   ` Imre Deak
  1 sibling, 1 reply; 18+ messages in thread
From: Imre Deak @ 2021-09-07 10:41 UTC (permalink / raw)
  To: intel-gfx, Lakshminarayana Vudum, Tomi P Sarvela

Hi Lakshmi, Tomi,

could you check the failure below, looks like a storage device issue.

On Tue, Sep 07, 2021 at 05:25:30AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: drm/i915/adlp: Add support for remapping CCS FBs (rev3)
> URL   : https://patchwork.freedesktop.org/series/94108/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_10553_full -> Patchwork_20971_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with Patchwork_20971_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in Patchwork_20971_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in Patchwork_20971_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_suspend@sysfs-reader:
>     - shard-iclb:         [PASS][1] -> [INCOMPLETE][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb2/igt@i915_suspend@sysfs-reader.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@i915_suspend@sysfs-reader.html

In
https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/pstore6-1630987738_Panic_1.txt

<4>[  186.690964] ata3.00: qc timeout (cmd 0x27)

followed by ata3/sda2 device errors.

This happened on the same machine already at:
https://lore.kernel.org/intel-gfx/20201003134854.GA1278041@ideak-desk.fi.intel.com/

and recently on the same machine also in:

Trybot_7967/shard-iclb3
Patchwork_20943/shard-iclb3
IGTPW_6178/shard-iclb3
Patchwork_20963/shard-iclb3
Patchwork_20962/shard-iclb3

as well as on:
shard-iclb4
shard-iclb7
shard-kbl6
shard-tglb1
shard-tglb7

I can't see this related to the changes, as no CCS tests were run.

> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_20971_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@feature_discovery@chamelium:
>     - shard-tglb:         NOTRUN -> [SKIP][3] ([fdo#111827])
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@feature_discovery@chamelium.html
> 
>   * igt@feature_discovery@display-2x:
>     - shard-tglb:         NOTRUN -> [SKIP][4] ([i915#1839])
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@feature_discovery@display-2x.html
> 
>   * igt@gem_ctx_persistence@smoketest:
>     - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +6 similar issues
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb5/igt@gem_ctx_persistence@smoketest.html
> 
>   * igt@gem_eio@in-flight-contexts-1us:
>     - shard-iclb:         [PASS][6] -> [TIMEOUT][7] ([i915#3070])
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb3/igt@gem_eio@in-flight-contexts-1us.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@gem_eio@in-flight-contexts-1us.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-kbl:          [PASS][8] -> [FAIL][9] ([i915#2846])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
>     - shard-glk:          [PASS][10] -> [FAIL][11] ([i915#2846])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk5/igt@gem_exec_fair@basic-deadline.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk2/igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-rrul@rcs0:
>     - shard-glk:          NOTRUN -> [FAIL][12] ([i915#2842]) +1 similar issue
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-kbl:          [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [PASS][15] -> [FAIL][16] ([i915#2842])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - shard-tglb:         [PASS][17] -> [FAIL][18] ([i915#2842])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-tglb6/igt@gem_exec_fair@basic-pace@rcs0.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vcs1:
>     - shard-iclb:         NOTRUN -> [FAIL][19] ([i915#2842])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html
> 
>   * igt@gem_exec_parallel@engines@basic:
>     - shard-glk:          [PASS][20] -> [DMESG-WARN][21] ([i915#118] / [i915#95]) +1 similar issue
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk9/igt@gem_exec_parallel@engines@basic.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk7/igt@gem_exec_parallel@engines@basic.html
> 
>   * igt@gem_exec_params@secure-non-master:
>     - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#112283])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gem_exec_params@secure-non-master.html
> 
>   * igt@gem_mmap_gtt@cpuset-medium-copy-odd:
>     - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#307])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
> 
>   * igt@gem_pread@exhaustion:
>     - shard-apl:          NOTRUN -> [WARN][25] ([i915#2658]) +1 similar issue
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl1/igt@gem_pread@exhaustion.html
> 
>   * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
>     - shard-iclb:         NOTRUN -> [SKIP][26] ([i915#768]) +2 similar issues
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
> 
>   * igt@gem_softpin@evict-snoop:
>     - shard-tglb:         NOTRUN -> [SKIP][27] ([fdo#109312])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gem_softpin@evict-snoop.html
> 
>   * igt@gem_userptr_blits@input-checking:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][28] ([i915#3002])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl7/igt@gem_userptr_blits@input-checking.html
> 
>   * igt@gen3_render_tiledy_blits:
>     - shard-tglb:         NOTRUN -> [SKIP][29] ([fdo#109289]) +3 similar issues
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gen3_render_tiledy_blits.html
>     - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109289]) +1 similar issue
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb4/igt@gen3_render_tiledy_blits.html
> 
>   * igt@gen9_exec_parse@bb-oversize:
>     - shard-tglb:         NOTRUN -> [SKIP][31] ([i915#2856]) +1 similar issue
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gen9_exec_parse@bb-oversize.html
> 
>   * igt@gen9_exec_parse@unaligned-access:
>     - shard-iclb:         NOTRUN -> [SKIP][32] ([i915#2856]) +1 similar issue
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@gen9_exec_parse@unaligned-access.html
> 
>   * igt@i915_pm_rc6_residency@rc6-fence:
>     - shard-tglb:         NOTRUN -> [WARN][33] ([i915#2681])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@i915_pm_rc6_residency@rc6-fence.html
>     - shard-iclb:         NOTRUN -> [WARN][34] ([i915#2684])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@i915_pm_rc6_residency@rc6-fence.html
> 
>   * igt@i915_pm_rpm@pc8-residency:
>     - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#109293] / [fdo#109506])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@i915_pm_rpm@pc8-residency.html
>     - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#109506] / [i915#2411])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@i915_pm_rpm@pc8-residency.html
> 
>   * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>     - shard-tglb:         NOTRUN -> [SKIP][37] ([i915#404])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
>     - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#404])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
> 
>   * igt@kms_big_fb@linear-32bpp-rotate-0:
>     - shard-glk:          NOTRUN -> [DMESG-WARN][39] ([i915#118] / [i915#95])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk1/igt@kms_big_fb@linear-32bpp-rotate-0.html
> 
>   * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
>     - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110725] / [fdo#111614]) +1 similar issue
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>     - shard-skl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3777])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>     - shard-skl:          NOTRUN -> [FAIL][42] ([i915#3722])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
> 
>   * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
>     - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#111614]) +2 similar issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>     - shard-apl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#3777]) +2 similar issues
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>     - shard-skl:          NOTRUN -> [FAIL][45] ([i915#3763])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> 
>   * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
>     - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#111615]) +4 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
>     - shard-apl:          NOTRUN -> [SKIP][47] ([fdo#109271]) +300 similar issues
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>     - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#110723]) +1 similar issue
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
> 
>   * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
>     - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#3689] / [i915#3886]) +4 similar issues
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
>     - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3886]) +1 similar issue
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
>     - shard-glk:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3886]) +5 similar issues
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk6/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
>     - shard-skl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#3886]) +4 similar issues
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
>     - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109278] / [i915#3886]) +4 similar issues
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb8/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
>     - shard-apl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3886]) +17 similar issues
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs:
>     - shard-tglb:         NOTRUN -> [SKIP][55] ([i915#3689]) +9 similar issues
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_chamelium@dp-crc-multiple:
>     - shard-apl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +23 similar issues
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl2/igt@kms_chamelium@dp-crc-multiple.html
> 
>   * igt@kms_chamelium@hdmi-cmp-planar-formats:
>     - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109284] / [fdo#111827]) +3 similar issues
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_chamelium@hdmi-cmp-planar-formats.html
> 
>   * igt@kms_chamelium@vga-edid-read:
>     - shard-glk:          NOTRUN -> [SKIP][58] ([fdo#109271] / [fdo#111827]) +6 similar issues
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk3/igt@kms_chamelium@vga-edid-read.html
> 
>   * igt@kms_chamelium@vga-hpd:
>     - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#109284] / [fdo#111827]) +9 similar issues
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb2/igt@kms_chamelium@vga-hpd.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-negative:
>     - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271] / [fdo#111827]) +3 similar issues
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl3/igt@kms_color_chamelium@pipe-c-ctm-negative.html
> 
>   * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
>     - shard-skl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [fdo#111827]) +12 similar issues
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html
>     - shard-snb:          NOTRUN -> [SKIP][62] ([fdo#109271] / [fdo#111827]) +26 similar issues
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html
> 
>   * igt@kms_content_protection@dp-mst-type-0:
>     - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#3116])
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb2/igt@kms_content_protection@dp-mst-type-0.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
>     - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#109279] / [i915#3359]) +4 similar issues
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html
>     - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109278] / [fdo#109279]) +2 similar issues
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-size-change:
>     - shard-snb:          NOTRUN -> [FAIL][66] ([i915#4024])
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
>     - shard-glk:          NOTRUN -> [FAIL][67] ([i915#3444])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
>     - shard-kbl:          NOTRUN -> [FAIL][68] ([i915#3444])
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding:
>     - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#3319]) +1 similar issue
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque:
>     - shard-glk:          [PASS][70] -> [FAIL][71] ([i915#3444]) +1 similar issue
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-size-change:
>     - shard-skl:          NOTRUN -> [FAIL][72] ([i915#3444])
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
>     - shard-kbl:          [PASS][73] -> [FAIL][74] ([i915#3444])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
>     - shard-iclb:         [PASS][75] -> [FAIL][76] ([i915#3444])
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb7/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb1/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-suspend:
>     - shard-kbl:          [PASS][77] -> [INCOMPLETE][78] ([i915#155])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-suspend:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][79] ([i915#180])
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding:
>     - shard-tglb:         NOTRUN -> [SKIP][80] ([i915#3359]) +3 similar issues
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>     - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109274] / [fdo#109278])
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
>     - shard-skl:          [PASS][82] -> [FAIL][83] ([i915#2346])
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@pipe-d-single-bo:
>     - shard-glk:          NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#533]) +1 similar issue
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk3/igt@kms_cursor_legacy@pipe-d-single-bo.html
> 
>   * igt@kms_cursor_legacy@pipe-d-single-move:
>     - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#109278]) +27 similar issues
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
>     - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109274]) +1 similar issue
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
> 
>   * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
>     - shard-glk:          [PASS][87] -> [FAIL][88] ([i915#2122])
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
>     - shard-skl:          [PASS][89] -> [FAIL][90] ([i915#2122])
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl2/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
>     - shard-apl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2672])
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
>     - shard-skl:          NOTRUN -> [SKIP][92] ([fdo#109271]) +175 similar issues
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
>     - shard-glk:          NOTRUN -> [SKIP][93] ([fdo#109271]) +104 similar issues
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
>     - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#111825]) +35 similar issues
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
>     - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109280]) +19 similar issues
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
>     - shard-snb:          NOTRUN -> [SKIP][96] ([fdo#109271]) +550 similar issues
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
> 
>   * igt@kms_hdr@bpc-switch:
>     - shard-skl:          [PASS][97] -> [FAIL][98] ([i915#1188])
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl10/igt@kms_hdr@bpc-switch.html
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl7/igt@kms_hdr@bpc-switch.html
> 
>   * igt@kms_hdr@static-swap:
>     - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#1187])
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@kms_hdr@static-swap.html
>     - shard-iclb:         NOTRUN -> [SKIP][100] ([i915#1187])
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@kms_hdr@static-swap.html
> 
>   * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
>     - shard-apl:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533]) +2 similar issues
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl2/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
> 
>   * igt@kms_pipe_crc_basic@read-crc-pipe-d:
>     - shard-skl:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#533])
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
>     - shard-apl:          [PASS][103] -> [DMESG-WARN][104] ([i915#180])
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-apl8/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
>     - shard-skl:          [PASS][105] -> [SKIP][106] ([fdo#109271]) +14 similar issues
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
>     - shard-apl:          NOTRUN -> [FAIL][107] ([fdo#108145] / [i915#265]) +3 similar issues
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
>     - shard-skl:          [PASS][108] -> [FAIL][109] ([fdo#108145] / [i915#265])
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl4/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
>     - shard-kbl:          NOTRUN -> [FAIL][110] ([fdo#108145] / [i915#265])
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
>     - shard-skl:          NOTRUN -> [FAIL][111] ([fdo#108145] / [i915#265]) +1 similar issue
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl5/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
>     - shard-apl:          NOTRUN -> [FAIL][112] ([i915#265])
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
>     - shard-skl:          NOTRUN -> [FAIL][113] ([i915#265]) +1 similar issue
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
> 
>   * igt@kms_plane_lowres@pipe-b-tiling-yf:
>     - shard-tglb:         NOTRUN -> [SKIP][114] ([fdo#112054])
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@kms_plane_lowres@pipe-b-tiling-yf.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4:
>     - shard-apl:          NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#658]) +4 similar issues
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-tglb:         NOTRUN -> [SKIP][116] ([i915#2920]) +2 similar issues
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
>     - shard-glk:          NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#658]) +3 similar issues
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk9/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
>     - shard-iclb:         NOTRUN -> [SKIP][118] ([i915#658]) +1 similar issue
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
>     - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#658]) +1 similar issue
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl2/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
>     - shard-skl:          NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#658]) +3 similar issues
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
> 
>   * igt@kms_psr@psr2_cursor_plane_onoff:
>     - shard-tglb:         NOTRUN -> [FAIL][121] ([i915#132] / [i915#3467]) +1 similar issue
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@kms_psr@psr2_cursor_plane_onoff.html
>     - shard-iclb:         NOTRUN -> [SKIP][122] ([fdo#109441])
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_psr@psr2_cursor_plane_onoff.html
> 
>   * igt@kms_psr@psr2_primary_mmap_cpu:
>     - shard-iclb:         [PASS][123] -> [SKIP][124] ([fdo#109441]) +2 similar issues
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_psr@psr2_primary_mmap_cpu.html
> 
>   * igt@kms_writeback@writeback-check-output:
>     - shard-apl:          NOTRUN -> [SKIP][125] ([fdo#109271] / [i915#2437]) +1 similar issue
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl6/igt@kms_writeback@writeback-check-output.html
>     - shard-iclb:         NOTRUN -> [SKIP][126] ([i915#2437])
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@kms_writeback@writeback-check-output.html
>     - shard-skl:          NOTRUN -> [SKIP][127] ([fdo#109271] / [i915#2437])
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl3/igt@kms_writeback@writeback-check-output.html
>     - shard-kbl:          NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#2437])
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl4/igt@kms_writeback@writeback-check-output.html
>     - shard-tglb:         NOTRUN -> [SKIP][129] ([i915#2437])
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_writeback@writeback-check-output.html
>     - shard-glk:          NOTRUN -> [SKIP][130] ([fdo#109271] / [i915#2437])
>    [130]: https://intel-g
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/index.html

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/i915/adlp: Add support for remapping CCS FBs (rev3)
  2021-09-07 10:41   ` Imre Deak
@ 2021-09-07 10:56     ` Sarvela, Tomi P
  0 siblings, 0 replies; 18+ messages in thread
From: Sarvela, Tomi P @ 2021-09-07 10:56 UTC (permalink / raw)
  To: Deak, Imre, intel-gfx, Vudum, Lakshminarayana

This looks very much like SATA drive issue.

I'll replace the drive for shard-iclb3 and we'll see if this happens again.

Tomi

> -----Original Message-----
> From: Deak, Imre <imre.deak@intel.com>
> Subject: Re: ✗ Fi.CI.IGT: failure for drm/i915/adlp: Add support for
> remapping CCS FBs (rev3)
> 
> Hi Lakshmi, Tomi,
> 
> could you check the failure below, looks like a storage device issue.
> 
> On Tue, Sep 07, 2021 at 05:25:30AM +0000, Patchwork wrote:
> > == Series Details ==
> >
> > Series: drm/i915/adlp: Add support for remapping CCS FBs (rev3)
> > URL   : https://patchwork.freedesktop.org/series/94108/
> > State : failure
> >
> > == Summary ==
> >
> > CI Bug Log - changes from CI_DRM_10553_full -> Patchwork_20971_full
> > ====================================================
> >
> > Summary
> > -------
> >
> >   **FAILURE**
> >
> >   Serious unknown changes coming with Patchwork_20971_full absolutely
> need to be
> >   verified manually.
> >
> >   If you think the reported changes have nothing to do with the changes
> >   introduced in Patchwork_20971_full, please notify your bug team to allow
> them
> >   to document this new failure mode, which will reduce false positives in CI.
> >
> >
> >
> > Possible new issues
> > -------------------
> >
> >   Here are the unknown changes that may have been introduced in
> Patchwork_20971_full:
> >
> > ### IGT changes ###
> >
> > #### Possible regressions ####
> >
> >   * igt@i915_suspend@sysfs-reader:
> >     - shard-iclb:         [PASS][1] -> [INCOMPLETE][2]
> >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> iclb2/igt@i915_suspend@sysfs-reader.html
> >    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb3/igt@i915_suspend@sysfs-reader.html
> 
> In
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb3/pstore6-1630987738_Panic_1.txt
> 
> <4>[  186.690964] ata3.00: qc timeout (cmd 0x27)
> 
> followed by ata3/sda2 device errors.
> 
> This happened on the same machine already at:
> https://lore.kernel.org/intel-gfx/20201003134854.GA1278041@ideak-
> desk.fi.intel.com/
> 
> and recently on the same machine also in:
> 
> Trybot_7967/shard-iclb3
> Patchwork_20943/shard-iclb3
> IGTPW_6178/shard-iclb3
> Patchwork_20963/shard-iclb3
> Patchwork_20962/shard-iclb3
> 
> as well as on:
> shard-iclb4
> shard-iclb7
> shard-kbl6
> shard-tglb1
> shard-tglb7
> 
> I can't see this related to the changes, as no CCS tests were run.
> 
> > Known issues
> > ------------
> >
> >   Here are the changes found in Patchwork_20971_full that come from
> known issues:
> >
> > ### IGT changes ###
> >
> > #### Issues hit ####
> >
> >   * igt@feature_discovery@chamelium:
> >     - shard-tglb:         NOTRUN -> [SKIP][3] ([fdo#111827])
> >    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb8/igt@feature_discovery@chamelium.html
> >
> >   * igt@feature_discovery@display-2x:
> >     - shard-tglb:         NOTRUN -> [SKIP][4] ([i915#1839])
> >    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb3/igt@feature_discovery@display-2x.html
> >
> >   * igt@gem_ctx_persistence@smoketest:
> >     - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +6
> similar issues
> >    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> snb5/igt@gem_ctx_persistence@smoketest.html
> >
> >   * igt@gem_eio@in-flight-contexts-1us:
> >     - shard-iclb:         [PASS][6] -> [TIMEOUT][7] ([i915#3070])
> >    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> iclb3/igt@gem_eio@in-flight-contexts-1us.html
> >    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb3/igt@gem_eio@in-flight-contexts-1us.html
> >
> >   * igt@gem_exec_fair@basic-deadline:
> >     - shard-kbl:          [PASS][8] -> [FAIL][9] ([i915#2846])
> >    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> kbl1/igt@gem_exec_fair@basic-deadline.html
> >    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> kbl1/igt@gem_exec_fair@basic-deadline.html
> >     - shard-glk:          [PASS][10] -> [FAIL][11] ([i915#2846])
> >    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> glk5/igt@gem_exec_fair@basic-deadline.html
> >    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk2/igt@gem_exec_fair@basic-deadline.html
> >
> >   * igt@gem_exec_fair@basic-none-rrul@rcs0:
> >     - shard-glk:          NOTRUN -> [FAIL][12] ([i915#2842]) +1 similar issue
> >    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html
> >
> >   * igt@gem_exec_fair@basic-none@vcs0:
> >     - shard-kbl:          [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue
> >    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> kbl3/igt@gem_exec_fair@basic-none@vcs0.html
> >    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> kbl6/igt@gem_exec_fair@basic-none@vcs0.html
> >
> >   * igt@gem_exec_fair@basic-pace-share@rcs0:
> >     - shard-glk:          [PASS][15] -> [FAIL][16] ([i915#2842])
> >    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> >    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> >
> >   * igt@gem_exec_fair@basic-pace@rcs0:
> >     - shard-tglb:         [PASS][17] -> [FAIL][18] ([i915#2842])
> >    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> tglb6/igt@gem_exec_fair@basic-pace@rcs0.html
> >    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb3/igt@gem_exec_fair@basic-pace@rcs0.html
> >
> >   * igt@gem_exec_fair@basic-pace@vcs1:
> >     - shard-iclb:         NOTRUN -> [FAIL][19] ([i915#2842])
> >    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb2/igt@gem_exec_fair@basic-pace@vcs1.html
> >
> >   * igt@gem_exec_parallel@engines@basic:
> >     - shard-glk:          [PASS][20] -> [DMESG-WARN][21] ([i915#118] /
> [i915#95]) +1 similar issue
> >    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> glk9/igt@gem_exec_parallel@engines@basic.html
> >    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk7/igt@gem_exec_parallel@engines@basic.html
> >
> >   * igt@gem_exec_params@secure-non-master:
> >     - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#112283])
> >    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb7/igt@gem_exec_params@secure-non-master.html
> >
> >   * igt@gem_mmap_gtt@cpuset-medium-copy-odd:
> >     - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#307])
> >    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> iclb5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
> >    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
> >
> >   * igt@gem_pread@exhaustion:
> >     - shard-apl:          NOTRUN -> [WARN][25] ([i915#2658]) +1 similar issue
> >    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl1/igt@gem_pread@exhaustion.html
> >
> >   * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
> >     - shard-iclb:         NOTRUN -> [SKIP][26] ([i915#768]) +2 similar issues
> >    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
> >
> >   * igt@gem_softpin@evict-snoop:
> >     - shard-tglb:         NOTRUN -> [SKIP][27] ([fdo#109312])
> >    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb7/igt@gem_softpin@evict-snoop.html
> >
> >   * igt@gem_userptr_blits@input-checking:
> >     - shard-apl:          NOTRUN -> [DMESG-WARN][28] ([i915#3002])
> >    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl7/igt@gem_userptr_blits@input-checking.html
> >
> >   * igt@gen3_render_tiledy_blits:
> >     - shard-tglb:         NOTRUN -> [SKIP][29] ([fdo#109289]) +3 similar issues
> >    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb7/igt@gen3_render_tiledy_blits.html
> >     - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109289]) +1 similar issue
> >    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb4/igt@gen3_render_tiledy_blits.html
> >
> >   * igt@gen9_exec_parse@bb-oversize:
> >     - shard-tglb:         NOTRUN -> [SKIP][31] ([i915#2856]) +1 similar issue
> >    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb7/igt@gen9_exec_parse@bb-oversize.html
> >
> >   * igt@gen9_exec_parse@unaligned-access:
> >     - shard-iclb:         NOTRUN -> [SKIP][32] ([i915#2856]) +1 similar issue
> >    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb2/igt@gen9_exec_parse@unaligned-access.html
> >
> >   * igt@i915_pm_rc6_residency@rc6-fence:
> >     - shard-tglb:         NOTRUN -> [WARN][33] ([i915#2681])
> >    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb1/igt@i915_pm_rc6_residency@rc6-fence.html
> >     - shard-iclb:         NOTRUN -> [WARN][34] ([i915#2684])
> >    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb2/igt@i915_pm_rc6_residency@rc6-fence.html
> >
> >   * igt@i915_pm_rpm@pc8-residency:
> >     - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#109293] / [fdo#109506])
> >    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb3/igt@i915_pm_rpm@pc8-residency.html
> >     - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#109506] / [i915#2411])
> >    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb1/igt@i915_pm_rpm@pc8-residency.html
> >
> >   * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
> >     - shard-tglb:         NOTRUN -> [SKIP][37] ([i915#404])
> >    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
> >     - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#404])
> >    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
> >
> >   * igt@kms_big_fb@linear-32bpp-rotate-0:
> >     - shard-glk:          NOTRUN -> [DMESG-WARN][39] ([i915#118] / [i915#95])
> >    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk1/igt@kms_big_fb@linear-32bpp-rotate-0.html
> >
> >   * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
> >     - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110725] / [fdo#111614]) +1
> similar issue
> >    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
> >
> >   * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
> >     - shard-skl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3777])
> >    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
> >
> >   * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
> >     - shard-skl:          NOTRUN -> [FAIL][42] ([i915#3722])
> >    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl10/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-
> flip.html
> >
> >   * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
> >     - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#111614]) +2 similar issues
> >    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
> >
> >   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
> >     - shard-apl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#3777]) +2
> similar issues
> >    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
> >
> >   * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> >     - shard-skl:          NOTRUN -> [FAIL][45] ([i915#3763])
> >    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-
> flip.html
> >
> >   * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
> >     - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#111615]) +4 similar issues
> >    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
> >
> >   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
> >     - shard-apl:          NOTRUN -> [SKIP][47] ([fdo#109271]) +300 similar issues
> >    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
> >
> >   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-
> flip:
> >     - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#110723]) +1 similar issue
> >    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-
> flip.html
> >
> >   * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
> >     - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#3689] / [i915#3886]) +4
> similar issues
> >    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
> >
> >   * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
> >     - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3886]) +1
> similar issue
> >    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> kbl6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-
> y_tiled_gen12_mc_ccs.html
> >
> >   * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
> >     - shard-glk:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3886]) +5
> similar issues
> >    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk6/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
> >
> >   * igt@kms_ccs@pipe-b-crc-primary-rotation-180-
> y_tiled_gen12_rc_ccs_cc:
> >     - shard-skl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#3886]) +4
> similar issues
> >    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-
> y_tiled_gen12_rc_ccs_cc.html
> >
> >   * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
> >     - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109278] / [i915#3886]) +4
> similar issues
> >    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb8/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
> >
> >   * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
> >     - shard-apl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3886]) +17
> similar issues
> >    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
> >
> >   * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs:
> >     - shard-tglb:         NOTRUN -> [SKIP][55] ([i915#3689]) +9 similar issues
> >    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb3/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html
> >
> >   * igt@kms_chamelium@dp-crc-multiple:
> >     - shard-apl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +23
> similar issues
> >    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl2/igt@kms_chamelium@dp-crc-multiple.html
> >
> >   * igt@kms_chamelium@hdmi-cmp-planar-formats:
> >     - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109284] / [fdo#111827]) +3
> similar issues
> >    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb5/igt@kms_chamelium@hdmi-cmp-planar-formats.html
> >
> >   * igt@kms_chamelium@vga-edid-read:
> >     - shard-glk:          NOTRUN -> [SKIP][58] ([fdo#109271] / [fdo#111827]) +6
> similar issues
> >    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk3/igt@kms_chamelium@vga-edid-read.html
> >
> >   * igt@kms_chamelium@vga-hpd:
> >     - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#109284] / [fdo#111827]) +9
> similar issues
> >    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb2/igt@kms_chamelium@vga-hpd.html
> >
> >   * igt@kms_color_chamelium@pipe-c-ctm-negative:
> >     - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271] / [fdo#111827]) +3
> similar issues
> >    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> kbl3/igt@kms_color_chamelium@pipe-c-ctm-negative.html
> >
> >   * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
> >     - shard-skl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [fdo#111827]) +12
> similar issues
> >    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html
> >     - shard-snb:          NOTRUN -> [SKIP][62] ([fdo#109271] / [fdo#111827])
> +26 similar issues
> >    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html
> >
> >   * igt@kms_content_protection@dp-mst-type-0:
> >     - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#3116])
> >    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb2/igt@kms_content_protection@dp-mst-type-0.html
> >
> >   * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
> >     - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#109279] / [i915#3359]) +4
> similar issues
> >    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html
> >     - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109278] / [fdo#109279]) +2
> similar issues
> >    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html
> >
> >   * igt@kms_cursor_crc@pipe-a-cursor-size-change:
> >     - shard-snb:          NOTRUN -> [FAIL][66] ([i915#4024])
> >    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> snb7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
> >     - shard-glk:          NOTRUN -> [FAIL][67] ([i915#3444])
> >    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
> >     - shard-kbl:          NOTRUN -> [FAIL][68] ([i915#3444])
> >    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> kbl2/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
> >
> >   * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding:
> >     - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#3319]) +1 similar issue
> >    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding.html
> >
> >   * igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque:
> >     - shard-glk:          [PASS][70] -> [FAIL][71] ([i915#3444]) +1 similar issue
> >    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> glk3/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
> >    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk2/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
> >
> >   * igt@kms_cursor_crc@pipe-b-cursor-size-change:
> >     - shard-skl:          NOTRUN -> [FAIL][72] ([i915#3444])
> >    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl10/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
> >     - shard-kbl:          [PASS][73] -> [FAIL][74] ([i915#3444])
> >    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> kbl1/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
> >    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> kbl2/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
> >     - shard-iclb:         [PASS][75] -> [FAIL][76] ([i915#3444])
> >    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> iclb7/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
> >    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb1/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
> >
> >   * igt@kms_cursor_crc@pipe-b-cursor-suspend:
> >     - shard-kbl:          [PASS][77] -> [INCOMPLETE][78] ([i915#155])
> >    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> kbl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> >    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> >
> >   * igt@kms_cursor_crc@pipe-c-cursor-suspend:
> >     - shard-apl:          NOTRUN -> [DMESG-WARN][79] ([i915#180])
> >    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl2/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
> >
> >   * igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding:
> >     - shard-tglb:         NOTRUN -> [SKIP][80] ([i915#3359]) +3 similar issues
> >    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb8/igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding.html
> >
> >   * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
> >     - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109274] / [fdo#109278])
> >    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
> >
> >   * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
> >     - shard-skl:          [PASS][82] -> [FAIL][83] ([i915#2346])
> >    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
> >    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
> >
> >   * igt@kms_cursor_legacy@pipe-d-single-bo:
> >     - shard-glk:          NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#533]) +1
> similar issue
> >    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk3/igt@kms_cursor_legacy@pipe-d-single-bo.html
> >
> >   * igt@kms_cursor_legacy@pipe-d-single-move:
> >     - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#109278]) +27 similar issues
> >    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html
> >
> >   * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
> >     - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109274]) +1 similar issue
> >    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
> >
> >   * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
> >     - shard-glk:          [PASS][87] -> [FAIL][88] ([i915#2122])
> >    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
> >    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
> >
> >   * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
> >     - shard-skl:          [PASS][89] -> [FAIL][90] ([i915#2122])
> >    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> skl2/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
> >    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl10/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
> >
> >   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
> >     - shard-apl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2672])
> >    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-
> ytilegen12rcccs.html
> >
> >   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
> >     - shard-skl:          NOTRUN -> [SKIP][92] ([fdo#109271]) +175 similar issues
> >    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-
> blt.html
> >
> >   * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-
> mmap-cpu:
> >     - shard-glk:          NOTRUN -> [SKIP][93] ([fdo#109271]) +104 similar issues
> >    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-
> mmap-cpu.html
> >
> >   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
> >     - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#111825]) +35 similar issues
> >    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-
> blt.html
> >
> >   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
> >     - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109280]) +19 similar issues
> >    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-
> blt.html
> >
> >   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
> >     - shard-snb:          NOTRUN -> [SKIP][96] ([fdo#109271]) +550 similar issues
> >    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> snb7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
> >
> >   * igt@kms_hdr@bpc-switch:
> >     - shard-skl:          [PASS][97] -> [FAIL][98] ([i915#1188])
> >    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> skl10/igt@kms_hdr@bpc-switch.html
> >    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl7/igt@kms_hdr@bpc-switch.html
> >
> >   * igt@kms_hdr@static-swap:
> >     - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#1187])
> >    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb3/igt@kms_hdr@static-swap.html
> >     - shard-iclb:         NOTRUN -> [SKIP][100] ([i915#1187])
> >    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb2/igt@kms_hdr@static-swap.html
> >
> >   * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
> >     - shard-apl:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533]) +2
> similar issues
> >    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl2/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
> >
> >   * igt@kms_pipe_crc_basic@read-crc-pipe-d:
> >     - shard-skl:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#533])
> >    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html
> >
> >   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
> >     - shard-apl:          [PASS][103] -> [DMESG-WARN][104] ([i915#180])
> >    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> apl8/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
> >    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
> >
> >   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
> >     - shard-skl:          [PASS][105] -> [SKIP][106] ([fdo#109271]) +14 similar
> issues
> >    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> skl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
> >    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
> >
> >   * igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
> >     - shard-apl:          NOTRUN -> [FAIL][107] ([fdo#108145] / [i915#265]) +3
> similar issues
> >    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
> >
> >   * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
> >     - shard-skl:          [PASS][108] -> [FAIL][109] ([fdo#108145] / [i915#265])
> >    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> skl4/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
> >    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
> >
> >   * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
> >     - shard-kbl:          NOTRUN -> [FAIL][110] ([fdo#108145] / [i915#265])
> >    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
> >     - shard-skl:          NOTRUN -> [FAIL][111] ([fdo#108145] / [i915#265]) +1
> similar issue
> >    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl5/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
> >
> >   * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
> >     - shard-apl:          NOTRUN -> [FAIL][112] ([i915#265])
> >    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
> >     - shard-skl:          NOTRUN -> [FAIL][113] ([i915#265]) +1 similar issue
> >    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl1/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
> >
> >   * igt@kms_plane_lowres@pipe-b-tiling-yf:
> >     - shard-tglb:         NOTRUN -> [SKIP][114] ([fdo#112054])
> >    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb3/igt@kms_plane_lowres@pipe-b-tiling-yf.html
> >
> >   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4:
> >     - shard-apl:          NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#658]) +4
> similar issues
> >    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html
> >
> >   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
> >     - shard-tglb:         NOTRUN -> [SKIP][116] ([i915#2920]) +2 similar issues
> >    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> >
> >   * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
> >     - shard-glk:          NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#658]) +3
> similar issues
> >    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> glk9/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> >
> >   * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
> >     - shard-iclb:         NOTRUN -> [SKIP][118] ([i915#658]) +1 similar issue
> >    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
> >     - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#658]) +1
> similar issue
> >    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> kbl2/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
> >
> >   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
> >     - shard-skl:          NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#658]) +3
> similar issues
> >    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
> >
> >   * igt@kms_psr@psr2_cursor_plane_onoff:
> >     - shard-tglb:         NOTRUN -> [FAIL][121] ([i915#132] / [i915#3467]) +1
> similar issue
> >    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb8/igt@kms_psr@psr2_cursor_plane_onoff.html
> >     - shard-iclb:         NOTRUN -> [SKIP][122] ([fdo#109441])
> >    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb5/igt@kms_psr@psr2_cursor_plane_onoff.html
> >
> >   * igt@kms_psr@psr2_primary_mmap_cpu:
> >     - shard-iclb:         [PASS][123] -> [SKIP][124] ([fdo#109441]) +2 similar
> issues
> >    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-
> iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
> >    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb5/igt@kms_psr@psr2_primary_mmap_cpu.html
> >
> >   * igt@kms_writeback@writeback-check-output:
> >     - shard-apl:          NOTRUN -> [SKIP][125] ([fdo#109271] / [i915#2437]) +1
> similar issue
> >    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> apl6/igt@kms_writeback@writeback-check-output.html
> >     - shard-iclb:         NOTRUN -> [SKIP][126] ([i915#2437])
> >    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> iclb3/igt@kms_writeback@writeback-check-output.html
> >     - shard-skl:          NOTRUN -> [SKIP][127] ([fdo#109271] / [i915#2437])
> >    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> skl3/igt@kms_writeback@writeback-check-output.html
> >     - shard-kbl:          NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#2437])
> >    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> kbl4/igt@kms_writeback@writeback-check-output.html
> >     - shard-tglb:         NOTRUN -> [SKIP][129] ([i915#2437])
> >    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-
> tglb5/igt@kms_writeback@writeback-check-output.html
> >     - shard-glk:          NOTRUN -> [SKIP][130] ([fdo#109271] / [i915#2437])
> >    [130]: https://intel-g
> >
> > == Logs ==
> >
> > For more details see: https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_20971/index.html

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/i915/adlp: Add support for remapping CCS FBs (rev3)
  2021-09-07  5:25 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
  2021-09-07 10:41   ` Imre Deak
@ 2021-09-23 15:15   ` Imre Deak
  1 sibling, 0 replies; 18+ messages in thread
From: Imre Deak @ 2021-09-23 15:15 UTC (permalink / raw)
  To: intel-gfx, Juha-Pekka Heikkilä

On Tue, Sep 07, 2021 at 05:25:30AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: drm/i915/adlp: Add support for remapping CCS FBs (rev3)
> URL   : https://patchwork.freedesktop.org/series/94108/
> State : failure

Patches 1-5 pushed to drm-intel-next, thanks for the review.

The failure is unrelated, commented on it earlier in this thread.

> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_10553_full -> Patchwork_20971_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with Patchwork_20971_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in Patchwork_20971_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in Patchwork_20971_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_suspend@sysfs-reader:
>     - shard-iclb:         [PASS][1] -> [INCOMPLETE][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb2/igt@i915_suspend@sysfs-reader.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@i915_suspend@sysfs-reader.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_20971_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@feature_discovery@chamelium:
>     - shard-tglb:         NOTRUN -> [SKIP][3] ([fdo#111827])
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@feature_discovery@chamelium.html
> 
>   * igt@feature_discovery@display-2x:
>     - shard-tglb:         NOTRUN -> [SKIP][4] ([i915#1839])
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@feature_discovery@display-2x.html
> 
>   * igt@gem_ctx_persistence@smoketest:
>     - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +6 similar issues
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb5/igt@gem_ctx_persistence@smoketest.html
> 
>   * igt@gem_eio@in-flight-contexts-1us:
>     - shard-iclb:         [PASS][6] -> [TIMEOUT][7] ([i915#3070])
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb3/igt@gem_eio@in-flight-contexts-1us.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@gem_eio@in-flight-contexts-1us.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-kbl:          [PASS][8] -> [FAIL][9] ([i915#2846])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
>     - shard-glk:          [PASS][10] -> [FAIL][11] ([i915#2846])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk5/igt@gem_exec_fair@basic-deadline.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk2/igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-rrul@rcs0:
>     - shard-glk:          NOTRUN -> [FAIL][12] ([i915#2842]) +1 similar issue
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-kbl:          [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [PASS][15] -> [FAIL][16] ([i915#2842])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - shard-tglb:         [PASS][17] -> [FAIL][18] ([i915#2842])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-tglb6/igt@gem_exec_fair@basic-pace@rcs0.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vcs1:
>     - shard-iclb:         NOTRUN -> [FAIL][19] ([i915#2842])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html
> 
>   * igt@gem_exec_parallel@engines@basic:
>     - shard-glk:          [PASS][20] -> [DMESG-WARN][21] ([i915#118] / [i915#95]) +1 similar issue
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk9/igt@gem_exec_parallel@engines@basic.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk7/igt@gem_exec_parallel@engines@basic.html
> 
>   * igt@gem_exec_params@secure-non-master:
>     - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#112283])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gem_exec_params@secure-non-master.html
> 
>   * igt@gem_mmap_gtt@cpuset-medium-copy-odd:
>     - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#307])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
> 
>   * igt@gem_pread@exhaustion:
>     - shard-apl:          NOTRUN -> [WARN][25] ([i915#2658]) +1 similar issue
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl1/igt@gem_pread@exhaustion.html
> 
>   * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
>     - shard-iclb:         NOTRUN -> [SKIP][26] ([i915#768]) +2 similar issues
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
> 
>   * igt@gem_softpin@evict-snoop:
>     - shard-tglb:         NOTRUN -> [SKIP][27] ([fdo#109312])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gem_softpin@evict-snoop.html
> 
>   * igt@gem_userptr_blits@input-checking:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][28] ([i915#3002])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl7/igt@gem_userptr_blits@input-checking.html
> 
>   * igt@gen3_render_tiledy_blits:
>     - shard-tglb:         NOTRUN -> [SKIP][29] ([fdo#109289]) +3 similar issues
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gen3_render_tiledy_blits.html
>     - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109289]) +1 similar issue
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb4/igt@gen3_render_tiledy_blits.html
> 
>   * igt@gen9_exec_parse@bb-oversize:
>     - shard-tglb:         NOTRUN -> [SKIP][31] ([i915#2856]) +1 similar issue
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@gen9_exec_parse@bb-oversize.html
> 
>   * igt@gen9_exec_parse@unaligned-access:
>     - shard-iclb:         NOTRUN -> [SKIP][32] ([i915#2856]) +1 similar issue
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@gen9_exec_parse@unaligned-access.html
> 
>   * igt@i915_pm_rc6_residency@rc6-fence:
>     - shard-tglb:         NOTRUN -> [WARN][33] ([i915#2681])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@i915_pm_rc6_residency@rc6-fence.html
>     - shard-iclb:         NOTRUN -> [WARN][34] ([i915#2684])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@i915_pm_rc6_residency@rc6-fence.html
> 
>   * igt@i915_pm_rpm@pc8-residency:
>     - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#109293] / [fdo#109506])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@i915_pm_rpm@pc8-residency.html
>     - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#109506] / [i915#2411])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@i915_pm_rpm@pc8-residency.html
> 
>   * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>     - shard-tglb:         NOTRUN -> [SKIP][37] ([i915#404])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
>     - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#404])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
> 
>   * igt@kms_big_fb@linear-32bpp-rotate-0:
>     - shard-glk:          NOTRUN -> [DMESG-WARN][39] ([i915#118] / [i915#95])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk1/igt@kms_big_fb@linear-32bpp-rotate-0.html
> 
>   * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
>     - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110725] / [fdo#111614]) +1 similar issue
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>     - shard-skl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3777])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>     - shard-skl:          NOTRUN -> [FAIL][42] ([i915#3722])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
> 
>   * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
>     - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#111614]) +2 similar issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>     - shard-apl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#3777]) +2 similar issues
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>     - shard-skl:          NOTRUN -> [FAIL][45] ([i915#3763])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> 
>   * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
>     - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#111615]) +4 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
>     - shard-apl:          NOTRUN -> [SKIP][47] ([fdo#109271]) +300 similar issues
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>     - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#110723]) +1 similar issue
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
> 
>   * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
>     - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#3689] / [i915#3886]) +4 similar issues
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
>     - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3886]) +1 similar issue
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
>     - shard-glk:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3886]) +5 similar issues
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk6/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
>     - shard-skl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#3886]) +4 similar issues
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
>     - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109278] / [i915#3886]) +4 similar issues
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb8/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
>     - shard-apl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3886]) +17 similar issues
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs:
>     - shard-tglb:         NOTRUN -> [SKIP][55] ([i915#3689]) +9 similar issues
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_chamelium@dp-crc-multiple:
>     - shard-apl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +23 similar issues
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl2/igt@kms_chamelium@dp-crc-multiple.html
> 
>   * igt@kms_chamelium@hdmi-cmp-planar-formats:
>     - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109284] / [fdo#111827]) +3 similar issues
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_chamelium@hdmi-cmp-planar-formats.html
> 
>   * igt@kms_chamelium@vga-edid-read:
>     - shard-glk:          NOTRUN -> [SKIP][58] ([fdo#109271] / [fdo#111827]) +6 similar issues
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk3/igt@kms_chamelium@vga-edid-read.html
> 
>   * igt@kms_chamelium@vga-hpd:
>     - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#109284] / [fdo#111827]) +9 similar issues
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb2/igt@kms_chamelium@vga-hpd.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-negative:
>     - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271] / [fdo#111827]) +3 similar issues
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl3/igt@kms_color_chamelium@pipe-c-ctm-negative.html
> 
>   * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
>     - shard-skl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [fdo#111827]) +12 similar issues
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html
>     - shard-snb:          NOTRUN -> [SKIP][62] ([fdo#109271] / [fdo#111827]) +26 similar issues
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html
> 
>   * igt@kms_content_protection@dp-mst-type-0:
>     - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#3116])
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb2/igt@kms_content_protection@dp-mst-type-0.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
>     - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#109279] / [i915#3359]) +4 similar issues
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html
>     - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109278] / [fdo#109279]) +2 similar issues
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-size-change:
>     - shard-snb:          NOTRUN -> [FAIL][66] ([i915#4024])
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
>     - shard-glk:          NOTRUN -> [FAIL][67] ([i915#3444])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
>     - shard-kbl:          NOTRUN -> [FAIL][68] ([i915#3444])
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding:
>     - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#3319]) +1 similar issue
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque:
>     - shard-glk:          [PASS][70] -> [FAIL][71] ([i915#3444]) +1 similar issue
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-size-change:
>     - shard-skl:          NOTRUN -> [FAIL][72] ([i915#3444])
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
>     - shard-kbl:          [PASS][73] -> [FAIL][74] ([i915#3444])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
>     - shard-iclb:         [PASS][75] -> [FAIL][76] ([i915#3444])
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb7/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb1/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-suspend:
>     - shard-kbl:          [PASS][77] -> [INCOMPLETE][78] ([i915#155])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-suspend:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][79] ([i915#180])
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding:
>     - shard-tglb:         NOTRUN -> [SKIP][80] ([i915#3359]) +3 similar issues
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>     - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109274] / [fdo#109278])
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
>     - shard-skl:          [PASS][82] -> [FAIL][83] ([i915#2346])
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@pipe-d-single-bo:
>     - shard-glk:          NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#533]) +1 similar issue
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk3/igt@kms_cursor_legacy@pipe-d-single-bo.html
> 
>   * igt@kms_cursor_legacy@pipe-d-single-move:
>     - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#109278]) +27 similar issues
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
>     - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109274]) +1 similar issue
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
> 
>   * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
>     - shard-glk:          [PASS][87] -> [FAIL][88] ([i915#2122])
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
>     - shard-skl:          [PASS][89] -> [FAIL][90] ([i915#2122])
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl2/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl10/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
>     - shard-apl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2672])
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
>     - shard-skl:          NOTRUN -> [SKIP][92] ([fdo#109271]) +175 similar issues
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
>     - shard-glk:          NOTRUN -> [SKIP][93] ([fdo#109271]) +104 similar issues
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
>     - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#111825]) +35 similar issues
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
>     - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109280]) +19 similar issues
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
>     - shard-snb:          NOTRUN -> [SKIP][96] ([fdo#109271]) +550 similar issues
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-snb7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
> 
>   * igt@kms_hdr@bpc-switch:
>     - shard-skl:          [PASS][97] -> [FAIL][98] ([i915#1188])
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl10/igt@kms_hdr@bpc-switch.html
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl7/igt@kms_hdr@bpc-switch.html
> 
>   * igt@kms_hdr@static-swap:
>     - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#1187])
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@kms_hdr@static-swap.html
>     - shard-iclb:         NOTRUN -> [SKIP][100] ([i915#1187])
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb2/igt@kms_hdr@static-swap.html
> 
>   * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
>     - shard-apl:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533]) +2 similar issues
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl2/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
> 
>   * igt@kms_pipe_crc_basic@read-crc-pipe-d:
>     - shard-skl:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#533])
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
>     - shard-apl:          [PASS][103] -> [DMESG-WARN][104] ([i915#180])
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-apl8/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
>     - shard-skl:          [PASS][105] -> [SKIP][106] ([fdo#109271]) +14 similar issues
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
>     - shard-apl:          NOTRUN -> [FAIL][107] ([fdo#108145] / [i915#265]) +3 similar issues
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
>     - shard-skl:          [PASS][108] -> [FAIL][109] ([fdo#108145] / [i915#265])
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-skl4/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
>     - shard-kbl:          NOTRUN -> [FAIL][110] ([fdo#108145] / [i915#265])
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
>     - shard-skl:          NOTRUN -> [FAIL][111] ([fdo#108145] / [i915#265]) +1 similar issue
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl5/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
>     - shard-apl:          NOTRUN -> [FAIL][112] ([i915#265])
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
>     - shard-skl:          NOTRUN -> [FAIL][113] ([i915#265]) +1 similar issue
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
> 
>   * igt@kms_plane_lowres@pipe-b-tiling-yf:
>     - shard-tglb:         NOTRUN -> [SKIP][114] ([fdo#112054])
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb3/igt@kms_plane_lowres@pipe-b-tiling-yf.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4:
>     - shard-apl:          NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#658]) +4 similar issues
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-tglb:         NOTRUN -> [SKIP][116] ([i915#2920]) +2 similar issues
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
>     - shard-glk:          NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#658]) +3 similar issues
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-glk9/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
>     - shard-iclb:         NOTRUN -> [SKIP][118] ([i915#658]) +1 similar issue
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
>     - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#658]) +1 similar issue
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl2/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
>     - shard-skl:          NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#658]) +3 similar issues
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
> 
>   * igt@kms_psr@psr2_cursor_plane_onoff:
>     - shard-tglb:         NOTRUN -> [FAIL][121] ([i915#132] / [i915#3467]) +1 similar issue
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb8/igt@kms_psr@psr2_cursor_plane_onoff.html
>     - shard-iclb:         NOTRUN -> [SKIP][122] ([fdo#109441])
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_psr@psr2_cursor_plane_onoff.html
> 
>   * igt@kms_psr@psr2_primary_mmap_cpu:
>     - shard-iclb:         [PASS][123] -> [SKIP][124] ([fdo#109441]) +2 similar issues
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10553/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb5/igt@kms_psr@psr2_primary_mmap_cpu.html
> 
>   * igt@kms_writeback@writeback-check-output:
>     - shard-apl:          NOTRUN -> [SKIP][125] ([fdo#109271] / [i915#2437]) +1 similar issue
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-apl6/igt@kms_writeback@writeback-check-output.html
>     - shard-iclb:         NOTRUN -> [SKIP][126] ([i915#2437])
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-iclb3/igt@kms_writeback@writeback-check-output.html
>     - shard-skl:          NOTRUN -> [SKIP][127] ([fdo#109271] / [i915#2437])
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-skl3/igt@kms_writeback@writeback-check-output.html
>     - shard-kbl:          NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#2437])
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-kbl4/igt@kms_writeback@writeback-check-output.html
>     - shard-tglb:         NOTRUN -> [SKIP][129] ([i915#2437])
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/shard-tglb5/igt@kms_writeback@writeback-check-output.html
>     - shard-glk:          NOTRUN -> [SKIP][130] ([fdo#109271] / [i915#2437])
>    [130]: https://intel-g
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20971/index.html

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

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

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-06 18:27 [Intel-gfx] [PATCH v2 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 1/6] drm/i915: Use tile block based dimensions for CCS origin x, y check Imre Deak
2021-09-07  3:24   ` [Intel-gfx] [CI " Imre Deak
2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 2/6] drm/i915/adlp: Require always a power-of-two sized CCS surface stride Imre Deak
2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 3/6] drm/i915/adlp: Assert that VMAs in DPT start at 0 Imre Deak
2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 4/6] drm/i915: Follow a new->old platform check order in intel_fb_stride_alignment Imre Deak
2021-09-06 18:27 ` [Intel-gfx] [PATCH v2 5/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
2021-09-06 18:27 ` [PATCH v2 6/6] drm/fourcc: Add the ADL-P specific pitch requirements of CCS modifiers Imre Deak
2021-09-06 18:27   ` [Intel-gfx] " Imre Deak
2021-09-06 19:49 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/adlp: Add support for remapping CCS FBs (rev2) Patchwork
2021-09-06 21:14 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-09-07  2:49 ` [Intel-gfx] [CI 0/6] drm/i915/adlp: Add support for remapping CCS FBs Imre Deak
2021-09-07  3:24 ` Imre Deak
2021-09-07  4:08 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/adlp: Add support for remapping CCS FBs (rev3) Patchwork
2021-09-07  5:25 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-09-07 10:41   ` Imre Deak
2021-09-07 10:56     ` Sarvela, Tomi P
2021-09-23 15:15   ` Imre Deak

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.