* [PATCH 1/4] drm/i915/fb: Relax clear color alignment to 64 bytes
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
@ 2024-11-29 6:50 ` Ville Syrjala
2024-11-29 13:45 ` Xi Ruoyao
2024-11-29 6:50 ` [PATCH 2/4] drm/i915/fb: Add debug spew for misaligned CC plane Ville Syrjala
` (10 subsequent siblings)
11 siblings, 1 reply; 16+ messages in thread
From: Ville Syrjala @ 2024-11-29 6:50 UTC (permalink / raw)
To: intel-gfx; +Cc: stable, Sagar Ghuge, Nanley Chery, Xi Ruoyao
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Mesa changed its clear color alignment from 4k to 64 bytes
without informing the kernel side about the change. This
is now likely to cause framebuffer creation to fail.
The only thing we do with the clear color buffer in i915 is:
1. map a single page
2. read out bytes 16-23 from said page
3. unmap the page
So the only requirement we really have is that those 8 bytes
are all contained within one page. Thus we can deal with the
Mesa regression by reducing the alignment requiment from 4k
to the same 64 bytes in the kernel. We could even go as low as
32 bytes, but IIRC 64 bytes is the hardware requirement on
the 3D engine side so matching that seems sensible.
Cc: stable@vger.kernel.org
Cc: Sagar Ghuge <sagar.ghuge@intel.com>
Cc: Nanley Chery <nanley.g.chery@intel.com>
Reported-by: Xi Ruoyao <xry111@xry111.site>
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13057
Closes: https://lore.kernel.org/all/45a5bba8de009347262d86a4acb27169d9ae0d9f.camel@xry111.site/
Link: https://gitlab.freedesktop.org/mesa/mesa/-/commit/17f97a69c13832a6c1b0b3aad45b06f07d4b852f
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_fb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 6a7060889f40..223c4218c019 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -1694,7 +1694,7 @@ int intel_fill_fb_info(struct drm_i915_private *i915, struct intel_framebuffer *
* arithmetic related to alignment and offset calculation.
*/
if (is_gen12_ccs_cc_plane(&fb->base, i)) {
- if (IS_ALIGNED(fb->base.offsets[i], PAGE_SIZE))
+ if (IS_ALIGNED(fb->base.offsets[i], 64))
continue;
else
return -EINVAL;
--
2.45.2
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH 1/4] drm/i915/fb: Relax clear color alignment to 64 bytes
2024-11-29 6:50 ` [PATCH 1/4] drm/i915/fb: Relax clear color alignment to 64 bytes Ville Syrjala
@ 2024-11-29 13:45 ` Xi Ruoyao
0 siblings, 0 replies; 16+ messages in thread
From: Xi Ruoyao @ 2024-11-29 13:45 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: stable, Sagar Ghuge, Nanley Chery
On Fri, 2024-11-29 at 08:50 +0200, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Mesa changed its clear color alignment from 4k to 64 bytes
> without informing the kernel side about the change. This
> is now likely to cause framebuffer creation to fail.
>
> The only thing we do with the clear color buffer in i915 is:
> 1. map a single page
> 2. read out bytes 16-23 from said page
> 3. unmap the page
>
> So the only requirement we really have is that those 8 bytes
> are all contained within one page. Thus we can deal with the
> Mesa regression by reducing the alignment requiment from 4k
> to the same 64 bytes in the kernel. We could even go as low as
> 32 bytes, but IIRC 64 bytes is the hardware requirement on
> the 3D engine side so matching that seems sensible.
>
> Cc: stable@vger.kernel.org
> Cc: Sagar Ghuge <sagar.ghuge@intel.com>
> Cc: Nanley Chery <nanley.g.chery@intel.com>
> Reported-by: Xi Ruoyao <xry111@xry111.site>
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13057
> Closes: https://lore.kernel.org/all/45a5bba8de009347262d86a4acb27169d9ae0d9f.camel@xry111.site/
> Link: https://gitlab.freedesktop.org/mesa/mesa/-/commit/17f97a69c13832a6c1b0b3aad45b06f07d4b852f
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Xi Ruoyao <xry111@xry111.site>
> ---
> drivers/gpu/drm/i915/display/intel_fb.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
> index 6a7060889f40..223c4218c019 100644
> --- a/drivers/gpu/drm/i915/display/intel_fb.c
> +++ b/drivers/gpu/drm/i915/display/intel_fb.c
> @@ -1694,7 +1694,7 @@ int intel_fill_fb_info(struct drm_i915_private *i915, struct intel_framebuffer *
> * arithmetic related to alignment and offset calculation.
> */
> if (is_gen12_ccs_cc_plane(&fb->base, i)) {
> - if (IS_ALIGNED(fb->base.offsets[i], PAGE_SIZE))
> + if (IS_ALIGNED(fb->base.offsets[i], 64))
> continue;
> else
> return -EINVAL;
--
Xi Ruoyao <xry111@xry111.site>
School of Aerospace Science and Technology, Xidian University
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 2/4] drm/i915/fb: Add debug spew for misaligned CC plane
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
2024-11-29 6:50 ` [PATCH 1/4] drm/i915/fb: Relax clear color alignment to 64 bytes Ville Syrjala
@ 2024-11-29 6:50 ` Ville Syrjala
2024-11-29 6:50 ` [PATCH 3/4] drm/i915/fb: Check that the clear color fits within the BO Ville Syrjala
` (9 subsequent siblings)
11 siblings, 0 replies; 16+ messages in thread
From: Ville Syrjala @ 2024-11-29 6:50 UTC (permalink / raw)
To: intel-gfx; +Cc: Sagar Ghuge, Nanley Chery, Xi Ruoyao
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
We're currently failing to provide any debug output when the
user passes in a misaligned offset for the clear color plane.
Add some debugs prints to make debugging actually possible.
Cc: Sagar Ghuge <sagar.ghuge@intel.com>
Cc: Nanley Chery <nanley.g.chery@intel.com>
Cc: Xi Ruoyao <xry111@xry111.site>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_fb.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 223c4218c019..e478d412785e 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -1694,10 +1694,14 @@ int intel_fill_fb_info(struct drm_i915_private *i915, struct intel_framebuffer *
* arithmetic related to alignment and offset calculation.
*/
if (is_gen12_ccs_cc_plane(&fb->base, i)) {
- if (IS_ALIGNED(fb->base.offsets[i], 64))
- continue;
- else
+ if (!IS_ALIGNED(fb->base.offsets[i], 64)) {
+ drm_dbg_kms(&i915->drm,
+ "fb misaligned clear color plane %d offset (0x%x)\n",
+ i, fb->base.offsets[i]);
return -EINVAL;
+ }
+
+ continue;
}
intel_fb_plane_dims(fb, i, &width, &height);
--
2.45.2
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 3/4] drm/i915/fb: Check that the clear color fits within the BO
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
2024-11-29 6:50 ` [PATCH 1/4] drm/i915/fb: Relax clear color alignment to 64 bytes Ville Syrjala
2024-11-29 6:50 ` [PATCH 2/4] drm/i915/fb: Add debug spew for misaligned CC plane Ville Syrjala
@ 2024-11-29 6:50 ` Ville Syrjala
2024-11-29 6:50 ` [PATCH 4/4] drm/uapi/fourcc: Document the Intel clear color alignment better Ville Syrjala
` (8 subsequent siblings)
11 siblings, 0 replies; 16+ messages in thread
From: Ville Syrjala @ 2024-11-29 6:50 UTC (permalink / raw)
To: intel-gfx; +Cc: Sagar Ghuge, Nanley Chery, Xi Ruoyao
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Make sure the user supplied offset[] for the clear color plane
fits within the actual BO. Note that we use tile units to track
the size here. All the other color/aux planes are already
being checked correctly.
Cc: Sagar Ghuge <sagar.ghuge@intel.com>
Cc: Nanley Chery <nanley.g.chery@intel.com>
Cc: Xi Ruoyao <xry111@xry111.site>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_fb.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index e478d412785e..9f7f1b9f3275 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -1694,6 +1694,8 @@ int intel_fill_fb_info(struct drm_i915_private *i915, struct intel_framebuffer *
* arithmetic related to alignment and offset calculation.
*/
if (is_gen12_ccs_cc_plane(&fb->base, i)) {
+ unsigned int end;
+
if (!IS_ALIGNED(fb->base.offsets[i], 64)) {
drm_dbg_kms(&i915->drm,
"fb misaligned clear color plane %d offset (0x%x)\n",
@@ -1701,6 +1703,14 @@ int intel_fill_fb_info(struct drm_i915_private *i915, struct intel_framebuffer *
return -EINVAL;
}
+ if (check_add_overflow(fb->base.offsets[i], 64, &end)) {
+ drm_dbg_kms(&i915->drm,
+ "fb bad clear color plane %d offset (0x%x)\n",
+ i, fb->base.offsets[i]);
+ return -EINVAL;
+ }
+
+ max_size = max(max_size, DIV_ROUND_UP(end, tile_size));
continue;
}
--
2.45.2
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 4/4] drm/uapi/fourcc: Document the Intel clear color alignment better
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
` (2 preceding siblings ...)
2024-11-29 6:50 ` [PATCH 3/4] drm/i915/fb: Check that the clear color fits within the BO Ville Syrjala
@ 2024-11-29 6:50 ` Ville Syrjala
2025-01-10 15:43 ` Chery, Nanley G
2024-11-29 7:11 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/fb: Deal with Mesa clear color alignment regression Patchwork
` (7 subsequent siblings)
11 siblings, 1 reply; 16+ messages in thread
From: Ville Syrjala @ 2024-11-29 6:50 UTC (permalink / raw)
To: intel-gfx; +Cc: Sagar Ghuge, Nanley Chery, Xi Ruoyao
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Document the fact that the Intel clear color offset and pitch
must be 64 byte aligned.
Cc: Sagar Ghuge <sagar.ghuge@intel.com>
Cc: Nanley Chery <nanley.g.chery@intel.com>
Cc: Xi Ruoyao <xry111@xry111.site>
Link: https://gitlab.freedesktop.org/mesa/mesa/-/commit/17f97a69c13832a6c1b0b3aad45b06f07d4b852f
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
include/uapi/drm/drm_fourcc.h | 27 ++++++++++++++-------------
1 file changed, 14 insertions(+), 13 deletions(-)
diff --git a/include/uapi/drm/drm_fourcc.h b/include/uapi/drm/drm_fourcc.h
index 70f3b00b0681..8234db1f484a 100644
--- a/include/uapi/drm/drm_fourcc.h
+++ b/include/uapi/drm/drm_fourcc.h
@@ -598,7 +598,7 @@ extern "C" {
* compression.
*
* The main surface is Y-tiled and is at plane index 0 whereas CCS is linear
- * and at index 1. The clear color is stored at index 2, and the pitch should
+ * and at index 1. The clear color is stored at index 2, and the offset and pitch must
* be 64 bytes aligned. The clear color structure is 256 bits. The first 128 bits
* represents Raw Clear Color Red, Green, Blue and Alpha color each represented
* by 32 bits. The raw clear color is consumed by the 3d engine and generates
@@ -652,7 +652,7 @@ extern "C" {
* outside of the GEM object in a reserved memory area dedicated for the
* storage of the CCS data for all RC/RC_CC/MC compressible GEM objects. The
* main surface pitch is required to be a multiple of four Tile 4 widths. The
- * clear color is stored at plane index 1 and the pitch should be 64 bytes
+ * clear color is stored at plane index 1, and the offset and pitch must be 64 bytes
* aligned. The format of the 256 bits of clear color data matches the one used
* for the I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS_CC modifier, see its description
* for details.
@@ -688,17 +688,18 @@ extern "C" {
* compression.
*
* The main surface is tile4 and is at plane index 0 whereas CCS is linear
- * and at index 1. The clear color is stored at index 2, and the pitch should
- * be ignored. The clear color structure is 256 bits. The first 128 bits
- * represents Raw Clear Color Red, Green, Blue and Alpha color each represented
- * by 32 bits. The raw clear color is consumed by the 3d engine and generates
- * the converted clear color of size 64 bits. The first 32 bits store the Lower
- * Converted Clear Color value and the next 32 bits store the Higher Converted
- * 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.
+ * and at index 1. The clear color is stored at index 2, and the offset and
+ * pitch must be 64 bytes aligned. The clear color structure is 256 bits.
+ * The first 128 bits represents Raw Clear Color Red, Green, Blue and Alpha
+ * color each represented by 32 bits. The raw clear color is consumed by the
+ * 3d engine and generates the converted clear color of size 64 bits. The
+ * first 32 bits store the Lower Converted Clear Color value and the next 32
+ * bits store the Higher Converted 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.
*/
#define I915_FORMAT_MOD_4_TILED_MTL_RC_CCS_CC fourcc_mod_code(INTEL, 15)
--
2.45.2
^ permalink raw reply related [flat|nested] 16+ messages in thread* RE: [PATCH 4/4] drm/uapi/fourcc: Document the Intel clear color alignment better
2024-11-29 6:50 ` [PATCH 4/4] drm/uapi/fourcc: Document the Intel clear color alignment better Ville Syrjala
@ 2025-01-10 15:43 ` Chery, Nanley G
2025-01-13 16:38 ` Ville Syrjälä
0 siblings, 1 reply; 16+ messages in thread
From: Chery, Nanley G @ 2025-01-10 15:43 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx@lists.freedesktop.org
Cc: Ghuge, Sagar, Xi Ruoyao, Souza, Jose
> -----Original Message-----
> From: Ville Syrjala <ville.syrjala@linux.intel.com>
> Sent: Friday, November 29, 2024 1:50 AM
> To: intel-gfx@lists.freedesktop.org
> Cc: Ghuge, Sagar <sagar.ghuge@intel.com>; Chery, Nanley G <nanley.g.chery@intel.com>; Xi Ruoyao <xry111@xry111.site>
> Subject: [PATCH 4/4] drm/uapi/fourcc: Document the Intel clear color alignment better
>
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Document the fact that the Intel clear color offset and pitch
> must be 64 byte aligned.
>
Documenting this new flexibility raises some questions. Particularly, how can userspace make use of the 64B alignment given that there are old kernels which require the 4K alignment?
-Nanley
> Cc: Sagar Ghuge <sagar.ghuge@intel.com>
> Cc: Nanley Chery <nanley.g.chery@intel.com>
> Cc: Xi Ruoyao <xry111@xry111.site>
> Link: https://gitlab.freedesktop.org/mesa/mesa/-/commit/17f97a69c13832a6c1b0b3aad45b06f07d4b852f
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> include/uapi/drm/drm_fourcc.h | 27 ++++++++++++++-------------
> 1 file changed, 14 insertions(+), 13 deletions(-)
>
> diff --git a/include/uapi/drm/drm_fourcc.h b/include/uapi/drm/drm_fourcc.h
> index 70f3b00b0681..8234db1f484a 100644
> --- a/include/uapi/drm/drm_fourcc.h
> +++ b/include/uapi/drm/drm_fourcc.h
> @@ -598,7 +598,7 @@ extern "C" {
> * compression.
> *
> * The main surface is Y-tiled and is at plane index 0 whereas CCS is linear
> - * and at index 1. The clear color is stored at index 2, and the pitch should
> + * and at index 1. The clear color is stored at index 2, and the offset and pitch must
> * be 64 bytes aligned. The clear color structure is 256 bits. The first 128 bits
> * represents Raw Clear Color Red, Green, Blue and Alpha color each represented
> * by 32 bits. The raw clear color is consumed by the 3d engine and generates
> @@ -652,7 +652,7 @@ extern "C" {
> * outside of the GEM object in a reserved memory area dedicated for the
> * storage of the CCS data for all RC/RC_CC/MC compressible GEM objects. The
> * main surface pitch is required to be a multiple of four Tile 4 widths. The
> - * clear color is stored at plane index 1 and the pitch should be 64 bytes
> + * clear color is stored at plane index 1, and the offset and pitch must be 64 bytes
> * aligned. The format of the 256 bits of clear color data matches the one used
> * for the I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS_CC modifier, see its description
> * for details.
> @@ -688,17 +688,18 @@ extern "C" {
> * compression.
> *
> * The main surface is tile4 and is at plane index 0 whereas CCS is linear
> - * and at index 1. The clear color is stored at index 2, and the pitch should
> - * be ignored. The clear color structure is 256 bits. The first 128 bits
> - * represents Raw Clear Color Red, Green, Blue and Alpha color each represented
> - * by 32 bits. The raw clear color is consumed by the 3d engine and generates
> - * the converted clear color of size 64 bits. The first 32 bits store the Lower
> - * Converted Clear Color value and the next 32 bits store the Higher Converted
> - * 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.
> + * and at index 1. The clear color is stored at index 2, and the offset and
> + * pitch must be 64 bytes aligned. The clear color structure is 256 bits.
> + * The first 128 bits represents Raw Clear Color Red, Green, Blue and Alpha
> + * color each represented by 32 bits. The raw clear color is consumed by the
> + * 3d engine and generates the converted clear color of size 64 bits. The
> + * first 32 bits store the Lower Converted Clear Color value and the next 32
> + * bits store the Higher Converted 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.
> */
> #define I915_FORMAT_MOD_4_TILED_MTL_RC_CCS_CC fourcc_mod_code(INTEL, 15)
>
> --
> 2.45.2
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [PATCH 4/4] drm/uapi/fourcc: Document the Intel clear color alignment better
2025-01-10 15:43 ` Chery, Nanley G
@ 2025-01-13 16:38 ` Ville Syrjälä
0 siblings, 0 replies; 16+ messages in thread
From: Ville Syrjälä @ 2025-01-13 16:38 UTC (permalink / raw)
To: Chery, Nanley G
Cc: intel-gfx@lists.freedesktop.org, Ghuge, Sagar, Xi Ruoyao,
Souza, Jose
On Fri, Jan 10, 2025 at 03:43:35PM +0000, Chery, Nanley G wrote:
> > -----Original Message-----
> > From: Ville Syrjala <ville.syrjala@linux.intel.com>
> > Sent: Friday, November 29, 2024 1:50 AM
> > To: intel-gfx@lists.freedesktop.org
> > Cc: Ghuge, Sagar <sagar.ghuge@intel.com>; Chery, Nanley G <nanley.g.chery@intel.com>; Xi Ruoyao <xry111@xry111.site>
> > Subject: [PATCH 4/4] drm/uapi/fourcc: Document the Intel clear color alignment better
> >
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > Document the fact that the Intel clear color offset and pitch
> > must be 64 byte aligned.
> >
>
> Documenting this new flexibility raises some questions. Particularly, how can userspace make use of the 64B alignment given that there are old kernels which require the 4K alignment?
I suppose we should document that part as well. And maybe
after a few years we can drop the 4k part, or something.
I did add cc:stable to the alignment patch so hopefully
after a while most kernels people actually use will
expect 64 byte alignment.
I've pushed everything except this last patch to
drm-intel-next. I'll try to reword this part a bit and
repost.
>
> -Nanley
>
> > Cc: Sagar Ghuge <sagar.ghuge@intel.com>
> > Cc: Nanley Chery <nanley.g.chery@intel.com>
> > Cc: Xi Ruoyao <xry111@xry111.site>
> > Link: https://gitlab.freedesktop.org/mesa/mesa/-/commit/17f97a69c13832a6c1b0b3aad45b06f07d4b852f
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> > include/uapi/drm/drm_fourcc.h | 27 ++++++++++++++-------------
> > 1 file changed, 14 insertions(+), 13 deletions(-)
> >
> > diff --git a/include/uapi/drm/drm_fourcc.h b/include/uapi/drm/drm_fourcc.h
> > index 70f3b00b0681..8234db1f484a 100644
> > --- a/include/uapi/drm/drm_fourcc.h
> > +++ b/include/uapi/drm/drm_fourcc.h
> > @@ -598,7 +598,7 @@ extern "C" {
> > * compression.
> > *
> > * The main surface is Y-tiled and is at plane index 0 whereas CCS is linear
> > - * and at index 1. The clear color is stored at index 2, and the pitch should
> > + * and at index 1. The clear color is stored at index 2, and the offset and pitch must
> > * be 64 bytes aligned. The clear color structure is 256 bits. The first 128 bits
> > * represents Raw Clear Color Red, Green, Blue and Alpha color each represented
> > * by 32 bits. The raw clear color is consumed by the 3d engine and generates
> > @@ -652,7 +652,7 @@ extern "C" {
> > * outside of the GEM object in a reserved memory area dedicated for the
> > * storage of the CCS data for all RC/RC_CC/MC compressible GEM objects. The
> > * main surface pitch is required to be a multiple of four Tile 4 widths. The
> > - * clear color is stored at plane index 1 and the pitch should be 64 bytes
> > + * clear color is stored at plane index 1, and the offset and pitch must be 64 bytes
> > * aligned. The format of the 256 bits of clear color data matches the one used
> > * for the I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS_CC modifier, see its description
> > * for details.
> > @@ -688,17 +688,18 @@ extern "C" {
> > * compression.
> > *
> > * The main surface is tile4 and is at plane index 0 whereas CCS is linear
> > - * and at index 1. The clear color is stored at index 2, and the pitch should
> > - * be ignored. The clear color structure is 256 bits. The first 128 bits
> > - * represents Raw Clear Color Red, Green, Blue and Alpha color each represented
> > - * by 32 bits. The raw clear color is consumed by the 3d engine and generates
> > - * the converted clear color of size 64 bits. The first 32 bits store the Lower
> > - * Converted Clear Color value and the next 32 bits store the Higher Converted
> > - * 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.
> > + * and at index 1. The clear color is stored at index 2, and the offset and
> > + * pitch must be 64 bytes aligned. The clear color structure is 256 bits.
> > + * The first 128 bits represents Raw Clear Color Red, Green, Blue and Alpha
> > + * color each represented by 32 bits. The raw clear color is consumed by the
> > + * 3d engine and generates the converted clear color of size 64 bits. The
> > + * first 32 bits store the Lower Converted Clear Color value and the next 32
> > + * bits store the Higher Converted 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.
> > */
> > #define I915_FORMAT_MOD_4_TILED_MTL_RC_CCS_CC fourcc_mod_code(INTEL, 15)
> >
> > --
> > 2.45.2
>
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/fb: Deal with Mesa clear color alignment regression
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
` (3 preceding siblings ...)
2024-11-29 6:50 ` [PATCH 4/4] drm/uapi/fourcc: Document the Intel clear color alignment better Ville Syrjala
@ 2024-11-29 7:11 ` Patchwork
2024-11-29 7:11 ` ✗ Fi.CI.SPARSE: " Patchwork
` (6 subsequent siblings)
11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-29 7:11 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/fb: Deal with Mesa clear color alignment regression
URL : https://patchwork.freedesktop.org/series/141911/
State : warning
== Summary ==
Error: dim checkpatch failed
a1a9f5ac1652 drm/i915/fb: Relax clear color alignment to 64 bytes
-:46: WARNING:MISSING_FIXES_TAG: The commit message has 'stable@', perhaps it also needs a 'Fixes:' tag?
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
5cd042bbf0d6 drm/i915/fb: Add debug spew for misaligned CC plane
431ff26d3da2 drm/i915/fb: Check that the clear color fits within the BO
da40a1d24b60 drm/uapi/fourcc: Document the Intel clear color alignment better
^ permalink raw reply [flat|nested] 16+ messages in thread* ✗ Fi.CI.SPARSE: warning for drm/i915/fb: Deal with Mesa clear color alignment regression
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
` (4 preceding siblings ...)
2024-11-29 7:11 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/fb: Deal with Mesa clear color alignment regression Patchwork
@ 2024-11-29 7:11 ` Patchwork
2024-11-29 7:27 ` ✗ i915.CI.BAT: failure " Patchwork
` (5 subsequent siblings)
11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-29 7:11 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/fb: Deal with Mesa clear color alignment regression
URL : https://patchwork.freedesktop.org/series/141911/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 16+ messages in thread* ✗ i915.CI.BAT: failure for drm/i915/fb: Deal with Mesa clear color alignment regression
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
` (5 preceding siblings ...)
2024-11-29 7:11 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-11-29 7:27 ` Patchwork
2024-11-29 8:45 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/fb: Deal with Mesa clear color alignment regression (rev2) Patchwork
` (4 subsequent siblings)
11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-29 7:27 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/fb: Deal with Mesa clear color alignment regression
URL : https://patchwork.freedesktop.org/series/141911/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15761 -> Patchwork_141911v1
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_141911v1 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_141911v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_141911v1:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@verify-random:
- bat-dg2-8: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/bat-dg2-8/igt@gem_lmem_swapping@verify-random.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/bat-dg2-8/igt@gem_lmem_swapping@verify-random.html
* igt@i915_selftest@live:
- fi-pnv-d510: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/fi-pnv-d510/igt@i915_selftest@live.html
* igt@i915_selftest@live@vma:
- fi-pnv-d510: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/fi-pnv-d510/igt@i915_selftest@live@vma.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/fi-pnv-d510/igt@i915_selftest@live@vma.html
* igt@kms_flip@basic-flip-vs-dpms@b-dp2:
- fi-cfl-8109u: [PASS][6] -> [DMESG-WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms@b-dp2.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms@b-dp2.html
Known issues
------------
Here are the changes found in Patchwork_141911v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-dpms:
- fi-cfl-8109u: [PASS][8] -> [DMESG-WARN][9] ([i915#12914])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [FAIL][10] ([i915#12903]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
- fi-cfl-guc: [FAIL][12] ([i915#12903]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [ABORT][14] ([i915#12061]) -> [PASS][15] +1 other test pass
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- {bat-mtlp-9}: [ABORT][16] ([i915#12061]) -> [PASS][17] +1 other test pass
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: [SKIP][18] ([i915#9197]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* Linux: CI_DRM_15761 -> Patchwork_141911v1
CI-20190529: 20190529
CI_DRM_15761: 709349e154b56980b3957b3f72af3f67cfdd7aee @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8130: 52c84deb5f45bcbd3c2b22d1fcff01d4c522cb62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_141911v1: 709349e154b56980b3957b3f72af3f67cfdd7aee @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v1/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/fb: Deal with Mesa clear color alignment regression (rev2)
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
` (6 preceding siblings ...)
2024-11-29 7:27 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-29 8:45 ` Patchwork
2024-11-29 8:45 ` ✗ Fi.CI.SPARSE: " Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-29 8:45 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/fb: Deal with Mesa clear color alignment regression (rev2)
URL : https://patchwork.freedesktop.org/series/141911/
State : warning
== Summary ==
Error: dim checkpatch failed
953e9d17ad46 drm/i915/fb: Relax clear color alignment to 64 bytes
-:46: WARNING:MISSING_FIXES_TAG: The commit message has 'stable@', perhaps it also needs a 'Fixes:' tag?
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
f5e3123ec64a drm/i915/fb: Add debug spew for misaligned CC plane
d070f8878d4e drm/i915/fb: Check that the clear color fits within the BO
f029a43c3729 drm/uapi/fourcc: Document the Intel clear color alignment better
^ permalink raw reply [flat|nested] 16+ messages in thread* ✗ Fi.CI.SPARSE: warning for drm/i915/fb: Deal with Mesa clear color alignment regression (rev2)
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
` (7 preceding siblings ...)
2024-11-29 8:45 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/fb: Deal with Mesa clear color alignment regression (rev2) Patchwork
@ 2024-11-29 8:45 ` Patchwork
2024-11-29 8:57 ` ✓ i915.CI.BAT: success " Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-29 8:45 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/fb: Deal with Mesa clear color alignment regression (rev2)
URL : https://patchwork.freedesktop.org/series/141911/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 16+ messages in thread* ✓ i915.CI.BAT: success for drm/i915/fb: Deal with Mesa clear color alignment regression (rev2)
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
` (8 preceding siblings ...)
2024-11-29 8:45 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-11-29 8:57 ` Patchwork
2024-11-29 11:17 ` ✗ i915.CI.Full: failure " Patchwork
2025-01-07 19:44 ` [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Souza, Jose
11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-29 8:57 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/fb: Deal with Mesa clear color alignment regression (rev2)
URL : https://patchwork.freedesktop.org/series/141911/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15762 -> Patchwork_141911v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_141911v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][3] -> [SKIP][4] ([i915#9197]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@gem_tiled_blits@basic:
- fi-pnv-d510: [SKIP][5] -> [PASS][6] +2 other tests pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/fi-pnv-d510/igt@gem_tiled_blits@basic.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/fi-pnv-d510/igt@gem_tiled_blits@basic.html
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [FAIL][7] ([i915#12903]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
- bat-rpls-4: [FAIL][9] ([i915#12903]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_pm:
- bat-jsl-3: [DMESG-FAIL][11] -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/bat-jsl-3/igt@i915_selftest@live@gt_pm.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/bat-jsl-3/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [ABORT][13] ([i915#12061]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/bat-arls-5/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/bat-arls-5/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* Linux: CI_DRM_15762 -> Patchwork_141911v2
CI-20190529: 20190529
CI_DRM_15762: 4f5b3a832a6480c82639b5500d731d7222b7eee7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8130: 52c84deb5f45bcbd3c2b22d1fcff01d4c522cb62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_141911v2: 4f5b3a832a6480c82639b5500d731d7222b7eee7 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread* ✗ i915.CI.Full: failure for drm/i915/fb: Deal with Mesa clear color alignment regression (rev2)
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
` (9 preceding siblings ...)
2024-11-29 8:57 ` ✓ i915.CI.BAT: success " Patchwork
@ 2024-11-29 11:17 ` Patchwork
2025-01-07 19:44 ` [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Souza, Jose
11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-29 11:17 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 82836 bytes --]
== Series Details ==
Series: drm/i915/fb: Deal with Mesa clear color alignment regression (rev2)
URL : https://patchwork.freedesktop.org/series/141911/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15762_full -> Patchwork_141911v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_141911v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_141911v2_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_141911v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@kms:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@gem_eio@kms.html
* igt@gem_exec_schedule@pi-common:
- shard-glk: [PASS][2] -> [FAIL][3] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-glk5/igt@gem_exec_schedule@pi-common.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-glk3/igt@gem_exec_schedule@pi-common.html
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: NOTRUN -> [FAIL][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-snb2/igt@gem_tiled_swapping@non-threaded.html
Known issues
------------
Here are the changes found in Patchwork_141911v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@api_intel_bb@crc32.html
* igt@debugfs_test@basic-hwmon:
- shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#9318])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +25 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@memory-info-active:
- shard-rkl: [PASS][11] -> [DMESG-WARN][12] ([i915#12964]) +16 other tests dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-rkl-7/igt@drm_fdinfo@memory-info-active.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-3/igt@drm_fdinfo@memory-info-active.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#3936])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_freq@sysfs:
- shard-dg2: [PASS][19] -> [FAIL][20] ([i915#9561]) +1 other test fail
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-10/igt@gem_ctx_freq@sysfs.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-7/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-snb2/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@smoketest:
- shard-rkl: [PASS][23] -> [FAIL][24] ([i915#11837])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-rkl-4/igt@gem_ctx_persistence@smoketest.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-1/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@reset-stress:
- shard-dg1: NOTRUN -> [FAIL][26] ([i915#12543] / [i915#5784])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@gem_eio@reset-stress.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#6334]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@gem_exec_capture@capture-invisible.html
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +15 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) +4 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4860])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4860]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#12193])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#4613]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4565])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@massive:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@gem_lmem_swapping@massive.html
* igt@gem_mmap@pf-nonblock:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4083]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@gem_mmap@pf-nonblock.html
* igt@gem_mmap_gtt@basic-wc:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4077])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_wc@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4083])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@gem_mmap_wc@pf-nonblock.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3282]) +6 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#13033])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#13033])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4270]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#4270])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#5190] / [i915#8428])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_softpin@32b-excludes-last-page:
- shard-snb: NOTRUN -> [SKIP][49] +64 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-snb2/igt@gem_softpin@32b-excludes-last-page.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077]) +16 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4079]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#3297]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#3297])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3297] / [i915#4958])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3297]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#2527] / [i915#2856]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#2527] / [i915#2856]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#2527]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@gen9_exec_parse@bb-chained.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][59] -> [ABORT][60] ([i915#9820])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [PASS][61] -> [ABORT][62] ([i915#9820])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][63] -> [ABORT][64] ([i915#12817] / [i915#9820])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#7178])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#8399])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg1: [PASS][67] -> [DMESG-WARN][68] ([i915#4423])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#11681] / [i915#6621])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#11681])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#11681])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#7984])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@i915_power@sanity.html
* igt@i915_selftest@live@sanitycheck:
- shard-tglu-1: NOTRUN -> [ABORT][73] ([i915#13010]) +1 other test abort
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][74] -> [ABORT][75] ([i915#12061]) +1 other test abort
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-mtlp-4/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4212]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-FAIL][77] ([i915#12964])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#8709]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#8709]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#8709]) +7 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#8709]) +11 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_atomic_transition@modeset-transition-fencing:
- shard-glk: [PASS][82] -> [FAIL][83] ([i915#12238])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-glk1/igt@kms_atomic_transition@modeset-transition-fencing.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing.html
* igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs:
- shard-glk: [PASS][84] -> [FAIL][85] ([i915#11859])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-glk1/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#5286]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#5286])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb.html
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#5286]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4538] / [i915#5286]) +9 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#5286]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#3638]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#4538]) +9 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#6095]) +29 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#12313]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#10307] / [i915#6095]) +128 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#6095]) +59 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#12805])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#6095]) +111 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#6095]) +161 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#6095]) +23 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#12313]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#3742])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#7213]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#7828]) +11 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#7828]) +6 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#7828])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#7828]) +6 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#3299])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@kms_content_protection@dp-mst-type-1.html
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#3116] / [i915#3299])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#7118])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#7116])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#7118] / [i915#9424])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#3555]) +8 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#13049])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#13049])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#13049]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3555])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#13049] / [i915#4423])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4103] / [i915#4213]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#4103])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#9067])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#9723])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#3804])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#1257])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#12402])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#3840])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#3555] / [i915#3840])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3555] / [i915#3840])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#3555] / [i915#3840]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#3840] / [i915#9053])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#3840] / [i915#9053])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#3469])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3469])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#1839])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#1839])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#658])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4881])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#3637]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#9934])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#3637]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#9934]) +7 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-mtlp: [PASS][143] -> [FAIL][144] ([i915#11989]) +1 other test fail
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-mtlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][145] ([i915#11989]) +2 other tests fail
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][146] ([i915#11989]) +1 other test fail
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#2587] / [i915#2672]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#2672]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#2587] / [i915#2672]) +6 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#2587] / [i915#2672]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#2672] / [i915#3555]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#2672] / [i915#3555]) +6 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#2672] / [i915#3555]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#2672] / [i915#3555]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: NOTRUN -> [SKIP][155] +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][156] -> [FAIL][157] ([i915#6880])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#8708])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][159] +49 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-snb: [PASS][160] -> [SKIP][161] +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#4423])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][163] +46 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#5439]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#5354]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#9766])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#8708]) +20 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3023]) +5 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#1825]) +5 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3458])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3458]) +26 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][172] +66 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: [PASS][173] -> [SKIP][174] ([i915#3555] / [i915#8228])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-2/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#8228])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8228])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8228])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8228])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [PASS][179] -> [SKIP][180] ([i915#12388])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#12388])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#12394])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#12339])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#12339])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#6301])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#6953])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][187] ([i915#8292])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#12247]) +9 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#12247]) +9 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#12247]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#12247] / [i915#9423])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#12247] / [i915#3555] / [i915#9423])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#12247]) +7 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#5354])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#12343])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#4423] / [i915#5354])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#9685]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#9685])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#8430])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#9519]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#9519])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][202] -> [SKIP][203] ([i915#9519]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][204] -> [SKIP][205] ([i915#9519]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#9519])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#11520]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#11520]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#11520]) +6 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#11520]) +11 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-snb: NOTRUN -> [SKIP][211] ([i915#11520]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-snb2/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#9683])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#9732]) +14 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#9732]) +18 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#1072] / [i915#9732])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#1072] / [i915#9732]) +4 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#1072] / [i915#9732]) +29 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@kms_psr@psr2-primary-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#9685])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#4884])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#5289]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#5289])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#3555]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#3555]) +6 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2: NOTRUN -> [SKIP][224]
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [PASS][225] -> [FAIL][226] ([i915#9196]) +1 other test fail
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vblank@wait-forked-busy@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][227] ([i915#12964]) +9 other tests dmesg-warn
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-2/igt@kms_vblank@wait-forked-busy@pipe-a-hdmi-a-1.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#11920])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-2/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#2437] / [i915#9412])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#2437])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@kms_writeback@writeback-invalid-parameters.html
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#2437])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@mi-rpc:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#2434])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@perf@mi-rpc.html
* igt@perf@polling@0-rcs0:
- shard-tglu: [PASS][233] -> [FAIL][234] ([i915#10538]) +1 other test fail
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-tglu-5/igt@perf@polling@0-rcs0.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-8/igt@perf@polling@0-rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#8850])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-14/igt@perf_pmu@cpu-hotplug.html
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#8850])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#8516]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@perf_pmu@rc6-all-gts.html
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#8516])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#3708] / [i915#4077])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@fence-read-hang:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#3708])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-17/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5:
- shard-tglu-1: NOTRUN -> [FAIL][241] ([i915#12910]) +9 other tests fail
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][242] ([i915#12910])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_create@hog-create:
- shard-dg1: [INCOMPLETE][243] -> [PASS][244] +1 other test pass
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg1-12/igt@gem_create@hog-create.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-13/igt@gem_create@hog-create.html
* igt@gem_ctx_persistence@hostile:
- shard-mtlp: [FAIL][245] ([i915#11980] / [i915#12580]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-mtlp-5/igt@gem_ctx_persistence@hostile.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-mtlp-4/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@hibernate:
- shard-dg2: [ABORT][247] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-4/igt@gem_eio@hibernate.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@gem_eio@hibernate.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][249] ([i915#11713]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-tglu-7/igt@gem_exec_big@single.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-2/igt@gem_exec_big@single.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][251] ([i915#5493]) -> [PASS][252] +1 other test pass
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: [FAIL][253] -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-8/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][255] ([i915#7790]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-snb2/igt@i915_pm_rps@reset.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-snb2/igt@i915_pm_rps@reset.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][257] ([i915#2346]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_aux_dev:
- shard-dg2: [SKIP][259] ([i915#1257]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-6/igt@kms_dp_aux_dev.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-10/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][261] ([i915#11989]) -> [PASS][262] +1 other test pass
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-snb7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-snb7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1:
- shard-tglu: [FAIL][263] ([i915#13027]) -> [PASS][264] +1 other test pass
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-tglu-9/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-rkl: [DMESG-WARN][265] ([i915#12964]) -> [PASS][266] +11 other tests pass
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [SKIP][267] ([i915#3555] / [i915#8228]) -> [PASS][268] +1 other test pass
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-8/igt@kms_hdr@static-toggle.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-10/igt@kms_hdr@static-toggle.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][269] ([i915#9295]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [SKIP][271] ([i915#9519]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][273] ([i915#9519]) -> [PASS][274] +2 other tests pass
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [SKIP][275] ([i915#3555] / [i915#9906]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-8/igt@kms_vrr@negative-basic.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-10/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][277] ([i915#4349]) -> [PASS][278] +2 other tests pass
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [ABORT][279] ([i915#9820]) -> [DMESG-WARN][280] ([i915#4391] / [i915#4423])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][281] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][282] ([i915#10131] / [i915#10887])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@mock:
- shard-glk: [DMESG-WARN][283] ([i915#9311]) -> [DMESG-WARN][284] ([i915#1982] / [i915#9311])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-glk2/igt@i915_selftest@mock.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-glk5/igt@i915_selftest@mock.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [INCOMPLETE][285] -> [DMESG-FAIL][286] ([i915#12964])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-rkl-5/igt@kms_async_flips@async-flip-suspend-resume.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][287] ([i915#9424]) -> [SKIP][288] ([i915#9433])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg1-14/igt@kms_content_protection@mei-interface.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][289] ([i915#3458]) -> [SKIP][290] ([i915#10433] / [i915#3458]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][291] ([i915#10433] / [i915#3458]) -> [SKIP][292] ([i915#3458]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: [SKIP][293] ([i915#1187] / [i915#12713]) -> [SKIP][294] ([i915#12713])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [SKIP][295] ([i915#6953] / [i915#9423]) -> [FAIL][296] ([i915#8292])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [DMESG-WARN][297] ([i915#12964]) -> [SKIP][298] ([i915#9519])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [DMESG-FAIL][299] ([i915#12964]) -> [DMESG-WARN][300] ([i915#12964])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15762/shard-rkl-2/igt@perf_pmu@most-busy-check-all.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11837]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11837
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12580
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13010
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13033
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_15762 -> Patchwork_141911v2
CI-20190529: 20190529
CI_DRM_15762: 4f5b3a832a6480c82639b5500d731d7222b7eee7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8130: 52c84deb5f45bcbd3c2b22d1fcff01d4c522cb62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_141911v2: 4f5b3a832a6480c82639b5500d731d7222b7eee7 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141911v2/index.html
[-- Attachment #2: Type: text/html, Size: 100720 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression
2024-11-29 6:50 [PATCH 0/4] drm/i915/fb: Deal with Mesa clear color alignment regression Ville Syrjala
` (10 preceding siblings ...)
2024-11-29 11:17 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-01-07 19:44 ` Souza, Jose
11 siblings, 0 replies; 16+ messages in thread
From: Souza, Jose @ 2025-01-07 19:44 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org
Cc: Ghuge, Sagar, Chery, Nanley G, xry111@xry111.site
On Fri, 2024-11-29 at 08:50 +0200, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Mesa changed its clear color alignment without informing the kernel,
> and now the kernel expects 4k alignment whereas Mesa only guaratees
> 64 bytes. Reduce the kernel alignment requirement to the same 64 bytes
> since there's no real reason for the current 4k limit. And while at it
> add some missing checks and debugs to the clear color hadling.
>
> Cc: Sagar Ghuge <sagar.ghuge@intel.com>
> Cc: Nanley Chery <nanley.g.chery@intel.com>
> Cc: Xi Ruoyao <xry111@xry111.site>
whole series lgtm
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
>
> Ville Syrjälä (4):
> drm/i915/fb: Relax clear color alignment to 64 bytes
> drm/i915/fb: Add debug spew for misaligned CC plane
> drm/i915/fb: Check that the clear color fits within the BO
> drm/uapi/fourcc: Document the Intel clear color alignment better
>
> drivers/gpu/drm/i915/display/intel_fb.c | 20 +++++++++++++++---
> include/uapi/drm/drm_fourcc.h | 27 +++++++++++++------------
> 2 files changed, 31 insertions(+), 16 deletions(-)
>
^ permalink raw reply [flat|nested] 16+ messages in thread