* [PATCH 0/3] drm/i915: Fix skl+ watermark linetime stuff
@ 2025-09-19 18:08 Ville Syrjala
2025-09-19 18:08 ` [PATCH 1/3] drm/i915: Use the the correct pixel rate to compute wm line time Ville Syrjala
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Ville Syrjala @ 2025-09-19 18:08 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Fix the linetime calculation in the skl+ watermark code. The current
code is wrong for plane downscalign use cases.
Ville Syrjälä (3):
drm/i915: Use the the correct pixel rate to compute wm line time
drm/i915: Deobfuscate wm linetime calculation
drm/i915: s/intel_get_linetime_us()/skl_wm_linetime_us()/
drivers/gpu/drm/i915/display/skl_watermark.c | 25 ++++----------------
1 file changed, 5 insertions(+), 20 deletions(-)
--
2.49.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 1/3] drm/i915: Use the the correct pixel rate to compute wm line time
2025-09-19 18:08 [PATCH 0/3] drm/i915: Fix skl+ watermark linetime stuff Ville Syrjala
@ 2025-09-19 18:08 ` Ville Syrjala
2025-10-01 10:27 ` Govindapillai, Vinod
2025-09-19 18:08 ` [PATCH 2/3] drm/i915: Deobfuscate wm linetime calculation Ville Syrjala
` (4 subsequent siblings)
5 siblings, 1 reply; 12+ messages in thread
From: Ville Syrjala @ 2025-09-19 18:08 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The line time used for the watermark calculations is supposed to
based on the plane's adjusted pixel rate, not the pipe's adjusted
pixel rate. The current code will give incorrect answers if plane
downscaling is used.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index d74cbb43ae6f..bdd005c6cc2d 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -1637,18 +1637,16 @@ skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
}
static uint_fixed_16_16_t
-intel_get_linetime_us(const struct intel_crtc_state *crtc_state)
+intel_get_linetime_us(const struct intel_crtc_state *crtc_state,
+ int pixel_rate)
{
struct intel_display *display = to_intel_display(crtc_state);
- u32 pixel_rate;
u32 crtc_htotal;
uint_fixed_16_16_t linetime_us;
if (!crtc_state->hw.active)
return u32_to_fixed16(0);
- pixel_rate = crtc_state->pixel_rate;
-
if (drm_WARN_ON(display->drm, pixel_rate == 0))
return u32_to_fixed16(0);
@@ -1743,7 +1741,8 @@ skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
wp->plane_blocks_per_line);
- wp->linetime_us = fixed16_to_u32_round_up(intel_get_linetime_us(crtc_state));
+ wp->linetime_us = fixed16_to_u32_round_up(intel_get_linetime_us(crtc_state,
+ plane_pixel_rate));
return 0;
}
--
2.49.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 2/3] drm/i915: Deobfuscate wm linetime calculation
2025-09-19 18:08 [PATCH 0/3] drm/i915: Fix skl+ watermark linetime stuff Ville Syrjala
2025-09-19 18:08 ` [PATCH 1/3] drm/i915: Use the the correct pixel rate to compute wm line time Ville Syrjala
@ 2025-09-19 18:08 ` Ville Syrjala
2025-10-01 12:06 ` Govindapillai, Vinod
2025-09-19 18:08 ` [PATCH 3/3] drm/i915: s/intel_get_linetime_us()/skl_wm_linetime_us()/ Ville Syrjala
` (3 subsequent siblings)
5 siblings, 1 reply; 12+ messages in thread
From: Ville Syrjala @ 2025-09-19 18:08 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
intel_get_linetime_us() is a mess. Rewrite it in a straightforward
manner. Also the checks for the !active and pixel_rate==0 are
completely pointless here since we know that the plane is visible.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 21 ++++----------------
1 file changed, 4 insertions(+), 17 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index bdd005c6cc2d..3eaaf26100f1 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -1636,24 +1636,12 @@ skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
return ret;
}
-static uint_fixed_16_16_t
+static int
intel_get_linetime_us(const struct intel_crtc_state *crtc_state,
int pixel_rate)
{
- struct intel_display *display = to_intel_display(crtc_state);
- u32 crtc_htotal;
- uint_fixed_16_16_t linetime_us;
-
- if (!crtc_state->hw.active)
- return u32_to_fixed16(0);
-
- if (drm_WARN_ON(display->drm, pixel_rate == 0))
- return u32_to_fixed16(0);
-
- crtc_htotal = crtc_state->hw.pipe_mode.crtc_htotal;
- linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
-
- return linetime_us;
+ return DIV_ROUND_UP(crtc_state->hw.pipe_mode.crtc_htotal * 1000,
+ pixel_rate);
}
static int
@@ -1741,8 +1729,7 @@ skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
wp->plane_blocks_per_line);
- wp->linetime_us = fixed16_to_u32_round_up(intel_get_linetime_us(crtc_state,
- plane_pixel_rate));
+ wp->linetime_us = intel_get_linetime_us(crtc_state, plane_pixel_rate);
return 0;
}
--
2.49.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 3/3] drm/i915: s/intel_get_linetime_us()/skl_wm_linetime_us()/
2025-09-19 18:08 [PATCH 0/3] drm/i915: Fix skl+ watermark linetime stuff Ville Syrjala
2025-09-19 18:08 ` [PATCH 1/3] drm/i915: Use the the correct pixel rate to compute wm line time Ville Syrjala
2025-09-19 18:08 ` [PATCH 2/3] drm/i915: Deobfuscate wm linetime calculation Ville Syrjala
@ 2025-09-19 18:08 ` Ville Syrjala
2025-10-01 12:07 ` Govindapillai, Vinod
2025-09-19 19:06 ` ✗ i915.CI.BAT: failure for drm/i915: Fix skl+ watermark linetime stuff Patchwork
` (2 subsequent siblings)
5 siblings, 1 reply; 12+ messages in thread
From: Ville Syrjala @ 2025-09-19 18:08 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Rename intel_get_linetime_us() to skl_wm_linetime_us() to better
reflect that it's not meant to be used for anything apart from
the watermark calculations.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 3eaaf26100f1..e8ed9df34b1f 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -1636,9 +1636,8 @@ skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
return ret;
}
-static int
-intel_get_linetime_us(const struct intel_crtc_state *crtc_state,
- int pixel_rate)
+static int skl_wm_linetime_us(const struct intel_crtc_state *crtc_state,
+ int pixel_rate)
{
return DIV_ROUND_UP(crtc_state->hw.pipe_mode.crtc_htotal * 1000,
pixel_rate);
@@ -1729,7 +1728,7 @@ skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
wp->plane_blocks_per_line);
- wp->linetime_us = intel_get_linetime_us(crtc_state, plane_pixel_rate);
+ wp->linetime_us = skl_wm_linetime_us(crtc_state, plane_pixel_rate);
return 0;
}
--
2.49.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✗ i915.CI.BAT: failure for drm/i915: Fix skl+ watermark linetime stuff
2025-09-19 18:08 [PATCH 0/3] drm/i915: Fix skl+ watermark linetime stuff Ville Syrjala
` (2 preceding siblings ...)
2025-09-19 18:08 ` [PATCH 3/3] drm/i915: s/intel_get_linetime_us()/skl_wm_linetime_us()/ Ville Syrjala
@ 2025-09-19 19:06 ` Patchwork
2025-09-20 17:45 ` ✓ i915.CI.BAT: success for drm/i915: Fix skl+ watermark linetime stuff (rev2) Patchwork
2025-09-20 21:18 ` ✗ i915.CI.Full: failure " Patchwork
5 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-09-19 19:06 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 6264 bytes --]
== Series Details ==
Series: drm/i915: Fix skl+ watermark linetime stuff
URL : https://patchwork.freedesktop.org/series/154788/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17244 -> Patchwork_154788v1
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_154788v1 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_154788v1, 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_154788v1/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_154788v1:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@guc_hang:
- bat-arlh-2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/bat-arlh-2/igt@i915_selftest@live@guc_hang.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/bat-arlh-2/igt@i915_selftest@live@guc_hang.html
Known issues
------------
Here are the changes found in Patchwork_154788v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-n3050: [PASS][3] -> [ABORT][4] ([i915#12904]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/bat-mtlp-8/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/bat-mtlp-8/igt@i915_selftest@live.html
- bat-arlh-2: [PASS][7] -> [INCOMPLETE][8] ([i915#14803] / [i915#14838])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/bat-arlh-2/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/bat-arls-6/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/bat-arls-6/igt@i915_selftest@live@workarounds.html
- bat-dg2-8: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/bat-dg2-8/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/bat-dg2-8/igt@i915_selftest@live@workarounds.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [PASS][15] -> [SKIP][16] ([i915#13030])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
#### Possible fixes ####
* igt@i915_selftest@live@guc_multi_lrc:
- bat-dg2-8: [ABORT][17] ([i915#14201]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/bat-dg2-8/igt@i915_selftest@live@guc_multi_lrc.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/bat-dg2-8/igt@i915_selftest@live@guc_multi_lrc.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-dg2-9: [DMESG-FAIL][21] ([i915#12061]) -> [PASS][22] +1 other test pass
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/bat-dg2-9/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-dg2-8: [ABORT][23] ([i915#14201]) -> [DMESG-FAIL][24] ([i915#12061])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17244/bat-dg2-8/igt@i915_selftest@live.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/bat-dg2-8/igt@i915_selftest@live.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201
[i915#14803]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14803
[i915#14838]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14838
Build changes
-------------
* Linux: CI_DRM_17244 -> Patchwork_154788v1
CI-20190529: 20190529
CI_DRM_17244: 6279a928fb7ed7a69e44171637abf2bf50668a9c @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8544: b7d758d47000f2092226f4bf68e9299883cf02de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_154788v1: 6279a928fb7ed7a69e44171637abf2bf50668a9c @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v1/index.html
[-- Attachment #2: Type: text/html, Size: 7594 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915: Fix skl+ watermark linetime stuff (rev2)
2025-09-19 18:08 [PATCH 0/3] drm/i915: Fix skl+ watermark linetime stuff Ville Syrjala
` (3 preceding siblings ...)
2025-09-19 19:06 ` ✗ i915.CI.BAT: failure for drm/i915: Fix skl+ watermark linetime stuff Patchwork
@ 2025-09-20 17:45 ` Patchwork
2025-09-20 21:18 ` ✗ i915.CI.Full: failure " Patchwork
5 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-09-20 17:45 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 3564 bytes --]
== Series Details ==
Series: drm/i915: Fix skl+ watermark linetime stuff (rev2)
URL : https://patchwork.freedesktop.org/series/154788/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_17245 -> Patchwork_154788v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_154788v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][1] -> [DMESG-WARN][2] ([i915#13494])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/bat-mtlp-9/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/bat-arls-5/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/bat-arls-5/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-atsm-1: [DMESG-FAIL][9] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][10] ([i915#12061] / [i915#14204])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/bat-atsm-1/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][11] ([i915#13929]) -> [DMESG-FAIL][12] ([i915#14204])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/bat-atsm-1/igt@i915_selftest@live@mman.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
Build changes
-------------
* Linux: CI_DRM_17245 -> Patchwork_154788v2
CI-20190529: 20190529
CI_DRM_17245: cfa128d879d8cdea4007ddd56dcc2eac73ff2142 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8546: 8546
Patchwork_154788v2: cfa128d879d8cdea4007ddd56dcc2eac73ff2142 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/index.html
[-- Attachment #2: Type: text/html, Size: 4747 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915: Fix skl+ watermark linetime stuff (rev2)
2025-09-19 18:08 [PATCH 0/3] drm/i915: Fix skl+ watermark linetime stuff Ville Syrjala
` (4 preceding siblings ...)
2025-09-20 17:45 ` ✓ i915.CI.BAT: success for drm/i915: Fix skl+ watermark linetime stuff (rev2) Patchwork
@ 2025-09-20 21:18 ` Patchwork
5 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-09-20 21:18 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 127470 bytes --]
== Series Details ==
Series: drm/i915: Fix skl+ watermark linetime stuff (rev2)
URL : https://patchwork.freedesktop.org/series/154788/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17245_full -> Patchwork_154788v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_154788v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_154788v2_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_154788v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_balancer@fairslice:
- shard-dg1: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg1-15/igt@gem_exec_balancer@fairslice.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-17/igt@gem_exec_balancer@fairslice.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
Known issues
------------
Here are the changes found in Patchwork_154788v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2-9: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@device_reset@cold-reset-bound.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][8] -> [INCOMPLETE][9] ([i915#13356])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [PASS][13] -> [INCOMPLETE][14] ([i915#12353]) +1 other test incomplete
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@hang:
- shard-snb: NOTRUN -> [SKIP][15] ([i915#1099])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-snb4/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][19] -> [FAIL][20] ([i915#5784])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-11/igt@gem_eio@kms.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-4/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#4771])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#4525])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#4525])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][24] ([i915#6334]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2-9: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2-9: NOTRUN -> [SKIP][28] +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2-9: NOTRUN -> [SKIP][30] ([i915#3281]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4860]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#4860])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-glk: NOTRUN -> [SKIP][33] ([i915#4613])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk5/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#4613]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#4613]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][36] -> [TIMEOUT][37] ([i915#5493]) +1 other test timeout
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2-9: NOTRUN -> [SKIP][38] ([i915#4077]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4077]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@gem_mmap_gtt@basic.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][40] -> [ABORT][41] ([i915#14809]) +1 other test abort
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-mtlp-3/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4083]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2-9: NOTRUN -> [SKIP][43] ([i915#4083]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk10: NOTRUN -> [WARN][44] ([i915#14702] / [i915#2658])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3282]) +6 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: [PASS][46] -> [TIMEOUT][47] ([i915#12964])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#13398])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg2-9: NOTRUN -> [SKIP][49] ([i915#4270])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4270]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: [PASS][51] -> [TIMEOUT][52] ([i915#12917] / [i915#12964]) +1 other test timeout
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_readwrite@read-write:
- shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#3282])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#5190] / [i915#8428]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#5190] / [i915#8428]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2-9: NOTRUN -> [SKIP][56] ([i915#4079])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gem_set_tiling_vs_gtt.html
* igt@gem_spin_batch@engines@rcs0:
- shard-rkl: [PASS][57] -> [DMESG-WARN][58] ([i915#12964]) +16 other tests dmesg-warn
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@gem_spin_batch@engines@rcs0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@gem_spin_batch@engines@rcs0.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#3297]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297] / [i915#4880])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu-1: NOTRUN -> [SKIP][62] ([i915#3297]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][63] ([i915#13356])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk9/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#2527] / [i915#2856]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#2527] / [i915#2856]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2-9: NOTRUN -> [SKIP][66] ([i915#2856]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#2856]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#14123])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#13786])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#8399]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-dg2-9: NOTRUN -> [INCOMPLETE][71] ([i915#13356] / [i915#13820]) +1 other test incomplete
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [PASS][72] -> [DMESG-FAIL][73] ([i915#12964]) +1 other test dmesg-fail
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-accuracy.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@debugfs-read:
- shard-rkl: [PASS][74] -> [SKIP][75] ([i915#13328])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-5/igt@i915_pm_rpm@debugfs-read.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@i915_pm_rpm@debugfs-read.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#4387])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#6188])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#5723])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-dg2-9: NOTRUN -> [DMESG-FAIL][79] ([i915#12061]) +1 other test dmesg-fail
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][80] ([i915#4817] / [i915#7443])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4215] / [i915#5190])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4212])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-tglu-1: NOTRUN -> [FAIL][83] ([i915#14947])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][84] ([i915#12761])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][85] ([i915#12761] / [i915#14995])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#9531])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#5286]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#5286]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][89] -> [FAIL][90] ([i915#5138])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5190]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#4538] / [i915#5190]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][93] +189 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#12313])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#6095]) +147 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#14098] / [i915#6095]) +40 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#12313])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#6095]) +49 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#6095]) +40 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#12805])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#6095]) +24 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6095]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#6095]) +12 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#10307] / [i915#6095]) +146 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][106] ([i915#10307] / [i915#6095]) +14 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#3742])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-9/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#13781]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#13783]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2: NOTRUN -> [SKIP][110] +8 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#11151] / [i915#7828]) +6 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#11151] / [i915#7828]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-dg2-9: NOTRUN -> [SKIP][113] ([i915#11151] / [i915#7828]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#11151] / [i915#7828]) +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@ctm-green-to-red:
- shard-rkl: [PASS][115] -> [SKIP][116] ([i915#12655] / [i915#14544])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_color@ctm-green-to-red.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_color@ctm-green-to-red.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][117] ([i915#7173])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-3.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#6944] / [i915#9424])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-9/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#7118] / [i915#9424])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#3555]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-256x256:
- shard-rkl: [PASS][122] -> [SKIP][123] ([i915#14544]) +22 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-256x256.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x256.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-FAIL][124] ([i915#12964])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#13049]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [PASS][126] -> [FAIL][127] ([i915#13566]) +1 other test fail
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#13049]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][129] ([i915#13566])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#3555]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg1: [PASS][131] -> [DMESG-WARN][132] ([i915#4423])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-64x64.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2: [PASS][133] -> [ABORT][134] ([i915#8213])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-6/igt@kms_cursor_crc@cursor-suspend.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-10/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-dp-3:
- shard-dg2: NOTRUN -> [ABORT][135] ([i915#8213])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-10/igt@kms_cursor_crc@cursor-suspend@pipe-d-dp-3.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: NOTRUN -> [FAIL][136] ([i915#13028])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-dg2-9: NOTRUN -> [SKIP][137] ([i915#13046] / [i915#5354]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#13046] / [i915#5354]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#9067])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#4103])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#9833])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3804])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-dg2: [PASS][143] -> [SKIP][144] ([i915#1257])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-11/igt@kms_dp_aux_dev.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-4/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#13749])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#13748])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#13707])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][148] ([i915#8812])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#3840])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#3840])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#3840])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#3469])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#9337])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#658])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#3637] / [i915#9934]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#9934])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2-9: NOTRUN -> [SKIP][157] ([i915#9934]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#9934]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-snb: [PASS][159] -> [TIMEOUT][160] ([i915#14033] / [i915#14350])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][161] -> [TIMEOUT][162] ([i915#14033])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#3637] / [i915#9934]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2: [PASS][164] -> [FAIL][165] ([i915#13027])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-10/igt@kms_flip@flip-vs-expired-vblank.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-rkl: [PASS][166] -> [SKIP][167] ([i915#14544] / [i915#3637]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#2672]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/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:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672] / [i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555] / [i915#5190])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-rkl: [PASS][174] -> [SKIP][175] ([i915#14544] / [i915#3555]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#2587] / [i915#2672]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#2672] / [i915#3555]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#2587] / [i915#2672]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-rkl: [PASS][180] -> [SKIP][181] ([i915#14544] / [i915#1849] / [i915#5354])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#5354]) +20 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][183] ([i915#8708]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][184] +229 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#3458]) +11 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#8708]) +17 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][187] +36 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#9766])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][189] ([i915#3458]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#1825])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][191] ([i915#5354]) +10 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][192] +58 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-snb: [PASS][193] -> [SKIP][194]
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-snb1/igt@kms_hdmi_inject@inject-audio.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-snb4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@int-max-clock:
- shard-rkl: [PASS][199] -> [SKIP][200] ([i915#14544] / [i915#3555] / [i915#8826]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_invalid_mode@int-max-clock.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_invalid_mode@int-max-clock.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#13688])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#12339])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#12339])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#13522])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#6301])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-snb: NOTRUN -> [SKIP][206] +13 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-snb4/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- shard-glk10: NOTRUN -> [SKIP][207] ([i915#11190]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk10/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-rkl: [PASS][208] -> [SKIP][209] ([i915#14544] / [i915#9581])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_plane@planar-pixel-format-settings.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-rkl: [PASS][210] -> [SKIP][211] ([i915#14544] / [i915#7294])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_plane_alpha_blend@alpha-basic.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][212] ([i915#10647] / [i915#12169])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][213] ([i915#10647]) +1 other test fail
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128:
- shard-rkl: NOTRUN -> [DMESG-WARN][214] ([i915#12964]) +5 other tests dmesg-warn
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#13958])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#13958])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#13958])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#14259])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-9/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#12247]) +3 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#12247]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- shard-rkl: [PASS][221] -> [SKIP][222] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-rkl: [PASS][223] -> [SKIP][224] ([i915#14544] / [i915#3555] / [i915#8152])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- shard-rkl: [PASS][225] -> [SKIP][226] ([i915#12247] / [i915#14544]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#9812])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#9812])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-9: NOTRUN -> [SKIP][229] ([i915#9685])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#3828])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][231] -> [SKIP][232] ([i915#9340])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#3828])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#8430])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#9519]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][236] -> [SKIP][237] ([i915#9519])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [PASS][238] -> [SKIP][239] ([i915#9519])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#6524] / [i915#6805])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#11520]) +5 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][242] ([i915#11520]) +4 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-9: NOTRUN -> [SKIP][243] ([i915#11520]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#11520]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][245] ([i915#11520]) +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#11520]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-9: NOTRUN -> [SKIP][247] ([i915#1072] / [i915#9732]) +6 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#1072] / [i915#9732]) +14 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#9732]) +15 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#9732]) +9 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-1/igt@kms_psr@psr-suspend.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#1072] / [i915#9732])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-17/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#9685])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#5289])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-9: NOTRUN -> [SKIP][254] ([i915#12755])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#12755])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#3555]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-dg2-9: NOTRUN -> [SKIP][257] ([i915#3555])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2-9: NOTRUN -> [SKIP][258] ([i915#9906])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#9906]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][260] ([i915#2437]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-glk5/igt@kms_writeback@writeback-fb-id.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#7387])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@perf@global-sseu-config.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][262] -> [FAIL][263] ([i915#4349]) +4 other tests fail
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-tglu: NOTRUN -> [FAIL][264] ([i915#14433])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#8516])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2-9: NOTRUN -> [SKIP][266] ([i915#3708]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#3708])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [FAIL][268] ([i915#12910]) +9 other tests fail
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@gem_pxp@display-protected-crc:
- shard-rkl: [TIMEOUT][269] ([i915#12917] / [i915#12964]) -> [PASS][270] +1 other test pass
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-3/igt@gem_pxp@display-protected-crc.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-8/igt@gem_pxp@display-protected-crc.html
* {igt@kms_async_flips@async-flip-hang}:
- shard-rkl: [SKIP][271] ([i915#14544]) -> [PASS][272] +21 other tests pass
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_async_flips@async-flip-hang.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_async_flips@async-flip-hang.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [FAIL][273] ([i915#5956]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][275] ([i915#5138]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-rkl: [FAIL][277] ([i915#14001] / [i915#2346]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-8/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: [SKIP][279] ([i915#3555]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][281] ([i915#14033]) -> [PASS][282] +1 other test pass
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-snb6/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-dpms-on-nop:
- shard-rkl: [SKIP][283] ([i915#14544] / [i915#14553]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_flip@flip-vs-dpms-on-nop.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_flip@flip-vs-dpms-on-nop.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-rkl: [SKIP][285] ([i915#14544] / [i915#3637]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_flip@plain-flip-fb-recreate.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-rkl: [SKIP][287] ([i915#14544] / [i915#3555]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][289] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][290] +9 other tests pass
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: [SKIP][291] ([i915#3555] / [i915#8228]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-5/igt@kms_hdr@bpc-switch.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-11/igt@kms_hdr@bpc-switch.html
* igt@kms_invalid_mode@bad-htotal:
- shard-rkl: [SKIP][293] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_invalid_mode@bad-htotal.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_invalid_mode@bad-htotal.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- shard-rkl: [SKIP][295] ([i915#11190] / [i915#14544]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_pipe_crc_basic@hang-read-crc.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-rkl: [SKIP][297] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- shard-rkl: [SKIP][299] ([i915#12247] / [i915#14544]) -> [PASS][300] +2 other tests pass
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- shard-rkl: [SKIP][301] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][302] +3 other tests pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-rkl: [SKIP][303] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][304] +1 other test pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_pm_rpm@cursor:
- shard-rkl: [SKIP][305] ([i915#14544] / [i915#1849]) -> [PASS][306] +1 other test pass
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_pm_rpm@cursor.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][307] ([i915#9519]) -> [PASS][308] +3 other tests pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][309] ([i915#9519]) -> [PASS][310] +1 other test pass
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [FAIL][311] ([i915#9196]) -> [PASS][312] +1 other test pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak.html
* igt@perf@blocking@0-rcs0:
- shard-rkl: [FAIL][313] ([i915#10538]) -> [PASS][314] +1 other test pass
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-2/igt@perf@blocking@0-rcs0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-7/igt@perf@blocking@0-rcs0.html
* igt@perf@polling@0-rcs0:
- shard-rkl: [DMESG-WARN][315] ([i915#12964]) -> [PASS][316] +17 other tests pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-7/igt@perf@polling@0-rcs0.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-8/igt@perf@polling@0-rcs0.html
#### Warnings ####
* igt@api_intel_bb@crc32:
- shard-rkl: [SKIP][317] ([i915#14544] / [i915#6230]) -> [SKIP][318] ([i915#6230])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@api_intel_bb@crc32.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: [SKIP][319] ([i915#8411]) -> [SKIP][320] ([i915#14544] / [i915#8411])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@api_intel_bb@object-reloc-keep-cache.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: [SKIP][321] ([i915#3281]) -> [SKIP][322] ([i915#14544] / [i915#3281]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@gem_bad_reloc@negative-reloc-lut.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][323] ([i915#14544] / [i915#7697]) -> [SKIP][324] ([i915#7697])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: [SKIP][325] ([i915#14544] / [i915#4525]) -> [SKIP][326] ([i915#4525])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-rkl: [SKIP][327] ([i915#14544] / [i915#3281]) -> [SKIP][328] ([i915#3281]) +3 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: [SKIP][329] ([i915#4613]) -> [SKIP][330] ([i915#14544] / [i915#4613])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: [SKIP][331] ([i915#14544] / [i915#4613]) -> [SKIP][332] ([i915#4613]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-rkl: [SKIP][333] ([i915#3282]) -> [SKIP][334] ([i915#14544] / [i915#3282]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@gem_partial_pwrite_pread@write-snoop.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_pread@snoop:
- shard-rkl: [SKIP][335] ([i915#14544] / [i915#3282]) -> [SKIP][336] ([i915#3282]) +3 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@gem_pread@snoop.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@gem_pread@snoop.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: [SKIP][337] ([i915#14544] / [i915#4270]) -> [TIMEOUT][338] ([i915#12964])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@gem_pxp@create-protected-buffer.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [TIMEOUT][339] ([i915#12917] / [i915#12964]) -> [SKIP][340] ([i915#13717])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: [SKIP][341] ([i915#14544] / [i915#3297]) -> [SKIP][342] ([i915#3297])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: [SKIP][343] ([i915#3297]) -> [SKIP][344] ([i915#14544] / [i915#3297])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: [SKIP][345] ([i915#2527]) -> [SKIP][346] ([i915#14544] / [i915#2527])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@gen9_exec_parse@bb-oversize.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: [SKIP][347] ([i915#14544] / [i915#2527]) -> [SKIP][348] ([i915#2527]) +2 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][349] ([i915#14544] / [i915#6412]) -> [SKIP][350] ([i915#6412])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@i915_module_load@resize-bar.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: [SKIP][351] ([i915#8399]) -> [SKIP][352] ([i915#14544] / [i915#8399])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@i915_pm_freq_api@freq-basic-api.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][353] ([i915#7707]) -> [SKIP][354] ([i915#14544] / [i915#7707])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@intel_hwmon@hwmon-read.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: [SKIP][355] ([i915#12454] / [i915#12712] / [i915#14544]) -> [SKIP][356] ([i915#12454] / [i915#12712])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][357] ([i915#14544]) -> [SKIP][358] ([i915#9531])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][359] ([i915#1769] / [i915#3555]) -> [SKIP][360] ([i915#14544])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][361] ([i915#5286]) -> [SKIP][362] ([i915#14544]) +3 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][363] ([i915#14544]) -> [SKIP][364] ([i915#5286]) +2 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][365] ([i915#14544]) -> [SKIP][366] ([i915#3638]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][367] ([i915#3638]) -> [SKIP][368] ([i915#14544])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: [SKIP][369] ([i915#4538]) -> [SKIP][370] ([i915#4423] / [i915#4538])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][371] ([i915#14098] / [i915#6095]) -> [SKIP][372] ([i915#6095]) +6 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][373] ([i915#14544]) -> [SKIP][374] ([i915#12313]) +2 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-rkl: [SKIP][375] ([i915#14098] / [i915#6095]) -> [SKIP][376] ([i915#14544]) +5 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
- shard-rkl: [SKIP][377] ([i915#14544]) -> [SKIP][378] ([i915#14098] / [i915#6095]) +5 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][379] ([i915#3742]) -> [SKIP][380] ([i915#14544] / [i915#3742])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_cdclk@mode-transition-all-outputs.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-rkl: [SKIP][381] ([i915#11151] / [i915#7828]) -> [SKIP][382] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: [SKIP][383] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][384] ([i915#11151] / [i915#7828]) +3 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][385] ([i915#7118] / [i915#9424]) -> [FAIL][386] ([i915#7173])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][387] ([i915#3116]) -> [SKIP][388] ([i915#14544])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [FAIL][389] ([i915#7173]) -> [SKIP][390] ([i915#9424])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-10/igt@kms_content_protection@lic-type-0.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-7/igt@kms_content_protection@lic-type-0.html
- shard-rkl: [SKIP][391] ([i915#9424]) -> [SKIP][392] ([i915#14544])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_content_protection@lic-type-0.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][393] ([i915#9433]) -> [SKIP][394] ([i915#9424])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-14/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][395] ([i915#14544]) -> [SKIP][396] ([i915#13049])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-rkl: [FAIL][397] ([i915#13566]) -> [DMESG-FAIL][398] ([i915#12964])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][399] ([i915#13049]) -> [SKIP][400] ([i915#14544]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-rkl: [SKIP][401] ([i915#14544]) -> [SKIP][402] ([i915#3555]) +3 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_cursor_crc@cursor-random-max-size.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: [SKIP][403] ([i915#3555]) -> [SKIP][404] ([i915#14544]) +1 other test skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [SKIP][405] ([i915#14544]) -> [FAIL][406] ([i915#13566])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][407] -> [SKIP][408] ([i915#14544]) +10 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-rkl: [SKIP][409] ([i915#14544]) -> [SKIP][410] +9 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][411] ([i915#14544]) -> [SKIP][412] ([i915#4103])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: [SKIP][413] ([i915#4103]) -> [SKIP][414] ([i915#14544])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][415] ([i915#14544]) -> [SKIP][416] ([i915#13691])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: [SKIP][417] ([i915#14544]) -> [SKIP][418] ([i915#13748])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: [SKIP][419] ([i915#3555] / [i915#3840]) -> [SKIP][420] ([i915#11190] / [i915#14544])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_dsc@dsc-basic.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][421] ([i915#3555] / [i915#3840]) -> [SKIP][422] ([i915#14544])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_dsc@dsc-with-formats.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][423] ([i915#14544] / [i915#3955]) -> [SKIP][424] ([i915#3955])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][425] ([i915#14544] / [i915#9337]) -> [SKIP][426] ([i915#9337])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-rkl: [SKIP][427] ([i915#9934]) -> [SKIP][428] ([i915#14544] / [i915#9934]) +2 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_flip@2x-flip-vs-modeset.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-rkl: [SKIP][429] ([i915#14544] / [i915#9934]) -> [SKIP][430] ([i915#9934])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_flip@2x-flip-vs-rmfb.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: [SKIP][431] ([i915#2672] / [i915#3555]) -> [SKIP][432] ([i915#14544] / [i915#3555]) +1 other test skip
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-rkl: [SKIP][433] ([i915#14544] / [i915#3555]) -> [SKIP][434] ([i915#2672] / [i915#3555]) +1 other test skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][435] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][436]
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: [SKIP][437] ([i915#8708]) -> [SKIP][438] ([i915#4423] / [i915#8708])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: [SKIP][439] ([i915#4423] / [i915#8708]) -> [SKIP][440] ([i915#8708])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][441] ([i915#10433] / [i915#3458]) -> [SKIP][442] ([i915#3458]) +3 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][443] ([i915#1825]) -> [SKIP][444] ([i915#14544] / [i915#1849] / [i915#5354]) +20 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][445] ([i915#5439]) -> [SKIP][446] ([i915#14544] / [i915#1849] / [i915#5354])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][447] ([i915#3458]) -> [SKIP][448] ([i915#10433] / [i915#3458]) +2 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][449] ([i915#3023]) -> [SKIP][450] ([i915#14544] / [i915#1849] / [i915#5354]) +9 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][451] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][452] ([i915#3023]) +10 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][453] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][454] ([i915#1825]) +16 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][455] ([i915#12713]) -> [SKIP][456] ([i915#1187] / [i915#12713])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [SKIP][457] ([i915#14544]) -> [SKIP][458] ([i915#3555] / [i915#8228])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][459] ([i915#12388]) -> [SKIP][460] ([i915#12388] / [i915#14544])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][461] ([i915#4816]) -> [SKIP][462] ([i915#1839] / [i915#4816])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][463] ([i915#14259]) -> [SKIP][464] ([i915#14544])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [SKIP][465] ([i915#6953]) -> [SKIP][466] ([i915#14544] / [i915#6953] / [i915#8152])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][467] ([i915#12247]) -> [SKIP][468] ([i915#12247] / [i915#14544])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- shard-rkl: [SKIP][469] ([i915#12247]) -> [SKIP][470] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][471] ([i915#9519]) -> [SKIP][472] ([i915#14544] / [i915#9519])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: [SKIP][473] ([i915#11520]) -> [SKIP][474] ([i915#11520] / [i915#4423])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg1-17/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-18/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][475] ([i915#11520] / [i915#14544]) -> [SKIP][476] ([i915#11520]) +2 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][477] ([i915#11520]) -> [SKIP][478] ([i915#11520] / [i915#14544]) +3 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][479] ([i915#14544] / [i915#9683]) -> [SKIP][480] ([i915#9683])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-rkl: [SKIP][481] ([i915#1072] / [i915#9732]) -> [SKIP][482] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_psr@fbc-psr-cursor-blt.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-dg1: [SKIP][483] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][484] ([i915#1072] / [i915#9732])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg1-15/igt@kms_psr@fbc-psr2-cursor-render.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-17/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: [SKIP][485] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][486] ([i915#1072] / [i915#9732]) +9 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr2-basic:
- shard-dg1: [SKIP][487] ([i915#1072] / [i915#9732]) -> [SKIP][488] ([i915#1072] / [i915#4423] / [i915#9732])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-dg1-13/igt@kms_psr@psr2-basic.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-dg1-14/igt@kms_psr@psr2-basic.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: [SKIP][489] ([i915#9685]) -> [SKIP][490] ([i915#14544] / [i915#9685])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: [SKIP][491] ([i915#14544]) -> [SKIP][492] ([i915#5289])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_vblank@query-idle:
- shard-rkl: [SKIP][493] ([i915#14544]) -> [DMESG-WARN][494] ([i915#12964]) +2 other tests dmesg-warn
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-6/igt@kms_vblank@query-idle.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-4/igt@kms_vblank@query-idle.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][495] ([i915#11920]) -> [SKIP][496] ([i915#14544])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_vrr@lobf.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][497] ([i915#9906]) -> [SKIP][498] ([i915#14544])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-virtual.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@module-unload:
- shard-rkl: [DMESG-FAIL][499] ([i915#12964]) -> [FAIL][500] ([i915#14433])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-3/igt@perf_pmu@module-unload.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-8/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][501] ([i915#3291] / [i915#3708]) -> [SKIP][502] ([i915#14544] / [i915#3291] / [i915#3708])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@prime_vgem@basic-fence-read.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: [SKIP][503] ([i915#9917]) -> [SKIP][504] ([i915#14544] / [i915#9917])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17245/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154788v2/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[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#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13028]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13028
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14001]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14001
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14553
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#14947]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14947
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[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#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[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#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[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#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[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#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[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#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[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#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9581]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_17245 -> Patchwork_154788v2
CI-20190529: 20190529
CI_DRM_17245: cfa128d879d8cdea4007ddd56dcc2eac73ff2142 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8546: 8546
Patchwork_154788v2: cfa128d879d8cdea4007ddd56dcc2eac73ff2142 @ 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_154788v2/index.html
[-- Attachment #2: Type: text/html, Size: 168846 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/3] drm/i915: Use the the correct pixel rate to compute wm line time
2025-09-19 18:08 ` [PATCH 1/3] drm/i915: Use the the correct pixel rate to compute wm line time Ville Syrjala
@ 2025-10-01 10:27 ` Govindapillai, Vinod
2025-10-01 11:34 ` Ville Syrjälä
0 siblings, 1 reply; 12+ messages in thread
From: Govindapillai, Vinod @ 2025-10-01 10:27 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
On Fri, 2025-09-19 at 21:08 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The line time used for the watermark calculations is supposed to
> based on the plane's adjusted pixel rate, not the pipe's adjusted
> pixel rate. The current code will give incorrect answers if plane
> downscaling is used.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_watermark.c | 9 ++++-----
> 1 file changed, 4 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c
> b/drivers/gpu/drm/i915/display/skl_watermark.c
> index d74cbb43ae6f..bdd005c6cc2d 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> @@ -1637,18 +1637,16 @@ skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
> }
>
> static uint_fixed_16_16_t
> -intel_get_linetime_us(const struct intel_crtc_state *crtc_state)
> +intel_get_linetime_us(const struct intel_crtc_state *crtc_state,
> + int pixel_rate)
> {
> struct intel_display *display = to_intel_display(crtc_state);
> - u32 pixel_rate;
> u32 crtc_htotal;
> uint_fixed_16_16_t linetime_us;
>
> if (!crtc_state->hw.active)
> return u32_to_fixed16(0);
>
> - pixel_rate = crtc_state->pixel_rate;
> -
> if (drm_WARN_ON(display->drm, pixel_rate == 0))
> return u32_to_fixed16(0);
>
> @@ -1743,7 +1741,8 @@ skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
> wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
> wp->plane_blocks_per_line);
>
> - wp->linetime_us = fixed16_to_u32_round_up(intel_get_linetime_us(crtc_state));
> + wp->linetime_us = fixed16_to_u32_round_up(intel_get_linetime_us(crtc_state,
> + plane_pixel_rate));
Hi Ville,
As per the bspec 49325 the starting point is,
Adjusted pipe pixel rate = pixel rate for the screen resolution
if (pipe scale enabled)
adjusted pipe pixel rate = adjusted pipe pixel rate * pipe down scale amoun
adjusted plane pixel rate = adjusted pipe pixel rate
if (plane scale enabled)
adjusted plane pixel rate = adjusted plane pixel rate * plane down scale
and
line time microseconds = pipe horizontal total pixels/adjusted plane pixel rate MHz
Our Method1, Method2 and line time calculations are based on plane_pixel_rate vs. adjusted plane
pixel rate in bspec. So I wonder if we differ from the bspec in these wm calculations?
BR
Vinod
>
> return 0;
> }
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/3] drm/i915: Use the the correct pixel rate to compute wm line time
2025-10-01 10:27 ` Govindapillai, Vinod
@ 2025-10-01 11:34 ` Ville Syrjälä
2025-10-01 12:06 ` Govindapillai, Vinod
0 siblings, 1 reply; 12+ messages in thread
From: Ville Syrjälä @ 2025-10-01 11:34 UTC (permalink / raw)
To: Govindapillai, Vinod
Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
On Wed, Oct 01, 2025 at 10:27:44AM +0000, Govindapillai, Vinod wrote:
> On Fri, 2025-09-19 at 21:08 +0300, Ville Syrjala wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > The line time used for the watermark calculations is supposed to
> > based on the plane's adjusted pixel rate, not the pipe's adjusted
> > pixel rate. The current code will give incorrect answers if plane
> > downscaling is used.
> >
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> > drivers/gpu/drm/i915/display/skl_watermark.c | 9 ++++-----
> > 1 file changed, 4 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c
> > b/drivers/gpu/drm/i915/display/skl_watermark.c
> > index d74cbb43ae6f..bdd005c6cc2d 100644
> > --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> > +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> > @@ -1637,18 +1637,16 @@ skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
> > }
> >
> > static uint_fixed_16_16_t
> > -intel_get_linetime_us(const struct intel_crtc_state *crtc_state)
> > +intel_get_linetime_us(const struct intel_crtc_state *crtc_state,
> > + int pixel_rate)
> > {
> > struct intel_display *display = to_intel_display(crtc_state);
> > - u32 pixel_rate;
> > u32 crtc_htotal;
> > uint_fixed_16_16_t linetime_us;
> >
> > if (!crtc_state->hw.active)
> > return u32_to_fixed16(0);
> >
> > - pixel_rate = crtc_state->pixel_rate;
> > -
> > if (drm_WARN_ON(display->drm, pixel_rate == 0))
> > return u32_to_fixed16(0);
> >
> > @@ -1743,7 +1741,8 @@ skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
> > wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
> > wp->plane_blocks_per_line);
> >
> > - wp->linetime_us = fixed16_to_u32_round_up(intel_get_linetime_us(crtc_state));
> > + wp->linetime_us = fixed16_to_u32_round_up(intel_get_linetime_us(crtc_state,
> > + plane_pixel_rate));
>
> Hi Ville,
>
> As per the bspec 49325 the starting point is,
>
> Adjusted pipe pixel rate = pixel rate for the screen resolution
> if (pipe scale enabled)
> adjusted pipe pixel rate = adjusted pipe pixel rate * pipe down scale amoun
>
> adjusted plane pixel rate = adjusted pipe pixel rate
> if (plane scale enabled)
> adjusted plane pixel rate = adjusted plane pixel rate * plane down scale
>
> and
> line time microseconds = pipe horizontal total pixels/adjusted plane pixel rate MHz
>
> Our Method1, Method2 and line time calculations are based on plane_pixel_rate vs. adjusted plane
> pixel rate in bspec. So I wonder if we differ from the bspec in these wm calculations?
plane_pixel_rate is what the spec calls "adjusted plane pixel rate"
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/3] drm/i915: Use the the correct pixel rate to compute wm line time
2025-10-01 11:34 ` Ville Syrjälä
@ 2025-10-01 12:06 ` Govindapillai, Vinod
0 siblings, 0 replies; 12+ messages in thread
From: Govindapillai, Vinod @ 2025-10-01 12:06 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com
Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org
On Wed, 2025-10-01 at 14:34 +0300, Ville Syrjälä wrote:
> On Wed, Oct 01, 2025 at 10:27:44AM +0000, Govindapillai, Vinod wrote:
> > On Fri, 2025-09-19 at 21:08 +0300, Ville Syrjala wrote:
> > > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > >
> > > The line time used for the watermark calculations is supposed to
> > > based on the plane's adjusted pixel rate, not the pipe's adjusted
> > > pixel rate. The current code will give incorrect answers if plane
> > > downscaling is used.
> > >
> > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > ---
> > > drivers/gpu/drm/i915/display/skl_watermark.c | 9 ++++-----
> > > 1 file changed, 4 insertions(+), 5 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c
> > > b/drivers/gpu/drm/i915/display/skl_watermark.c
> > > index d74cbb43ae6f..bdd005c6cc2d 100644
> > > --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> > > +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> > > @@ -1637,18 +1637,16 @@ skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
> > > }
> > >
> > > static uint_fixed_16_16_t
> > > -intel_get_linetime_us(const struct intel_crtc_state *crtc_state)
> > > +intel_get_linetime_us(const struct intel_crtc_state *crtc_state,
> > > + int pixel_rate)
> > > {
> > > struct intel_display *display = to_intel_display(crtc_state);
> > > - u32 pixel_rate;
> > > u32 crtc_htotal;
> > > uint_fixed_16_16_t linetime_us;
> > >
> > > if (!crtc_state->hw.active)
> > > return u32_to_fixed16(0);
> > >
> > > - pixel_rate = crtc_state->pixel_rate;
> > > -
> > > if (drm_WARN_ON(display->drm, pixel_rate == 0))
> > > return u32_to_fixed16(0);
> > >
> > > @@ -1743,7 +1741,8 @@ skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
> > > wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
> > > wp->plane_blocks_per_line);
> > >
> > > - wp->linetime_us = fixed16_to_u32_round_up(intel_get_linetime_us(crtc_state));
> > > + wp->linetime_us = fixed16_to_u32_round_up(intel_get_linetime_us(crtc_state,
> > > + plane_pixel_rate));
> >
> > Hi Ville,
> >
> > As per the bspec 49325 the starting point is,
> >
> > Adjusted pipe pixel rate = pixel rate for the screen resolution
> > if (pipe scale enabled)
> > adjusted pipe pixel rate = adjusted pipe pixel rate * pipe down scale amoun
> >
> > adjusted plane pixel rate = adjusted pipe pixel rate
> > if (plane scale enabled)
> > adjusted plane pixel rate = adjusted plane pixel rate * plane down scale
> >
> > and
> > line time microseconds = pipe horizontal total pixels/adjusted plane pixel rate MHz
> >
> > Our Method1, Method2 and line time calculations are based on plane_pixel_rate vs. adjusted plane
> > pixel rate in bspec. So I wonder if we differ from the bspec in these wm calculations?
>
> plane_pixel_rate is what the spec calls "adjusted plane pixel rate"
>
Well it is not really related to this patch. But the confusion came from the bspec part where its
sequence start with adjusted plane pixel rate = adjusted pipe pixel rate (i am still not really
clear why the bspec use Adjusted plane pixel rate = adjusted pipe pixel rate). So just wanted to
clarify that! Anyway linetime calculation address in this patch makes sense..
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/3] drm/i915: Deobfuscate wm linetime calculation
2025-09-19 18:08 ` [PATCH 2/3] drm/i915: Deobfuscate wm linetime calculation Ville Syrjala
@ 2025-10-01 12:06 ` Govindapillai, Vinod
0 siblings, 0 replies; 12+ messages in thread
From: Govindapillai, Vinod @ 2025-10-01 12:06 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
On Fri, 2025-09-19 at 21:08 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> intel_get_linetime_us() is a mess. Rewrite it in a straightforward
> manner. Also the checks for the !active and pixel_rate==0 are
> completely pointless here since we know that the plane is visible.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_watermark.c | 21 ++++----------------
> 1 file changed, 4 insertions(+), 17 deletions(-)
>
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c
> b/drivers/gpu/drm/i915/display/skl_watermark.c
> index bdd005c6cc2d..3eaaf26100f1 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> @@ -1636,24 +1636,12 @@ skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
> return ret;
> }
>
> -static uint_fixed_16_16_t
> +static int
> intel_get_linetime_us(const struct intel_crtc_state *crtc_state,
> int pixel_rate)
> {
> - struct intel_display *display = to_intel_display(crtc_state);
> - u32 crtc_htotal;
> - uint_fixed_16_16_t linetime_us;
> -
> - if (!crtc_state->hw.active)
> - return u32_to_fixed16(0);
> -
> - if (drm_WARN_ON(display->drm, pixel_rate == 0))
> - return u32_to_fixed16(0);
> -
> - crtc_htotal = crtc_state->hw.pipe_mode.crtc_htotal;
> - linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
> -
> - return linetime_us;
> + return DIV_ROUND_UP(crtc_state->hw.pipe_mode.crtc_htotal * 1000,
> + pixel_rate);
> }
>
> static int
> @@ -1741,8 +1729,7 @@ skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
> wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
> wp->plane_blocks_per_line);
>
> - wp->linetime_us = fixed16_to_u32_round_up(intel_get_linetime_us(crtc_state,
> - plane_pixel_rate));
> + wp->linetime_us = intel_get_linetime_us(crtc_state, plane_pixel_rate);
>
> return 0;
> }
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 3/3] drm/i915: s/intel_get_linetime_us()/skl_wm_linetime_us()/
2025-09-19 18:08 ` [PATCH 3/3] drm/i915: s/intel_get_linetime_us()/skl_wm_linetime_us()/ Ville Syrjala
@ 2025-10-01 12:07 ` Govindapillai, Vinod
0 siblings, 0 replies; 12+ messages in thread
From: Govindapillai, Vinod @ 2025-10-01 12:07 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
On Fri, 2025-09-19 at 21:08 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Rename intel_get_linetime_us() to skl_wm_linetime_us() to better
> reflect that it's not meant to be used for anything apart from
> the watermark calculations.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_watermark.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c
> b/drivers/gpu/drm/i915/display/skl_watermark.c
> index 3eaaf26100f1..e8ed9df34b1f 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> @@ -1636,9 +1636,8 @@ skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
> return ret;
> }
>
> -static int
> -intel_get_linetime_us(const struct intel_crtc_state *crtc_state,
> - int pixel_rate)
> +static int skl_wm_linetime_us(const struct intel_crtc_state *crtc_state,
> + int pixel_rate)
> {
> return DIV_ROUND_UP(crtc_state->hw.pipe_mode.crtc_htotal * 1000,
> pixel_rate);
> @@ -1729,7 +1728,7 @@ skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
> wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
> wp->plane_blocks_per_line);
>
> - wp->linetime_us = intel_get_linetime_us(crtc_state, plane_pixel_rate);
> + wp->linetime_us = skl_wm_linetime_us(crtc_state, plane_pixel_rate);
>
> return 0;
> }
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-10-01 12:07 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-19 18:08 [PATCH 0/3] drm/i915: Fix skl+ watermark linetime stuff Ville Syrjala
2025-09-19 18:08 ` [PATCH 1/3] drm/i915: Use the the correct pixel rate to compute wm line time Ville Syrjala
2025-10-01 10:27 ` Govindapillai, Vinod
2025-10-01 11:34 ` Ville Syrjälä
2025-10-01 12:06 ` Govindapillai, Vinod
2025-09-19 18:08 ` [PATCH 2/3] drm/i915: Deobfuscate wm linetime calculation Ville Syrjala
2025-10-01 12:06 ` Govindapillai, Vinod
2025-09-19 18:08 ` [PATCH 3/3] drm/i915: s/intel_get_linetime_us()/skl_wm_linetime_us()/ Ville Syrjala
2025-10-01 12:07 ` Govindapillai, Vinod
2025-09-19 19:06 ` ✗ i915.CI.BAT: failure for drm/i915: Fix skl+ watermark linetime stuff Patchwork
2025-09-20 17:45 ` ✓ i915.CI.BAT: success for drm/i915: Fix skl+ watermark linetime stuff (rev2) Patchwork
2025-09-20 21:18 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox