* [PATCH v3] drm/i915: Remove unused underrun irq/reporting bits
@ 2024-10-15 8:05 Sai Teja Pottumuttu
2024-10-15 9:13 ` ✓ Fi.CI.BAT: success for drm/i915: Remove unused underrun irq/reporting bits (rev3) Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Sai Teja Pottumuttu @ 2024-10-15 8:05 UTC (permalink / raw)
To: intel-gfx
Cc: matthew.d.roper, ville.syrjala, balasubramani.vivekanandan,
Sai Teja Pottumuttu
Underrun recovery was defeatured and was never brought into usage.
Thus we can remove the underrun recovery interrupt/reporting
register bits and related logic introduced to detect/report soft,
hard, port underruns.
Essentially this is a revert of the commit 8bcc0840cf7c
("drm/i915/xelpd: Enhanced pipe underrun reporting") which originally
added this functionality. Also note that PIPE_STATUS_UNDERRUN bit in
PIPESTATUS still stays relevant but we would move back to not
clearing this sticky bit as we are not using any information from
this register.
v2: Extend commit message to add more details (Matt Roper)
v3: Fix the old commit mention in commit message
Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
---
.../gpu/drm/i915/display/intel_display_irq.c | 19 +-----
.../gpu/drm/i915/display/intel_display_irq.h | 1 -
.../drm/i915/display/intel_fifo_underrun.c | 58 ++-----------------
drivers/gpu/drm/i915/i915_reg.h | 9 ---
4 files changed, 8 insertions(+), 79 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.c b/drivers/gpu/drm/i915/display/intel_display_irq.c
index a4367ddc7a44..827891070461 100644
--- a/drivers/gpu/drm/i915/display/intel_display_irq.c
+++ b/drivers/gpu/drm/i915/display/intel_display_irq.c
@@ -1021,17 +1021,6 @@ static u32 gen8_de_pipe_flip_done_mask(struct drm_i915_private *i915)
return GEN8_PIPE_PRIMARY_FLIP_DONE;
}
-u32 gen8_de_pipe_underrun_mask(struct drm_i915_private *dev_priv)
-{
- u32 mask = GEN8_PIPE_FIFO_UNDERRUN;
-
- if (DISPLAY_VER(dev_priv) >= 13)
- mask |= XELPD_PIPE_SOFT_UNDERRUN |
- XELPD_PIPE_HARD_UNDERRUN;
-
- return mask;
-}
-
static void gen8_read_and_ack_pch_irqs(struct drm_i915_private *i915, u32 *pch_iir, u32 *pica_iir)
{
u32 pica_ier = 0;
@@ -1177,7 +1166,7 @@ void gen8_de_irq_handler(struct drm_i915_private *dev_priv, u32 master_ctl)
if (iir & GEN8_PIPE_CDCLK_CRC_DONE)
hsw_pipe_crc_irq_handler(dev_priv, pipe);
- if (iir & gen8_de_pipe_underrun_mask(dev_priv))
+ if (iir & GEN8_PIPE_FIFO_UNDERRUN)
intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
fault_errors = iir & gen8_de_pipe_fault_mask(dev_priv);
@@ -1617,8 +1606,7 @@ void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
u8 pipe_mask)
{
struct intel_uncore *uncore = &dev_priv->uncore;
- u32 extra_ier = GEN8_PIPE_VBLANK |
- gen8_de_pipe_underrun_mask(dev_priv) |
+ u32 extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN |
gen8_de_pipe_flip_done_mask(dev_priv);
enum pipe pipe;
@@ -1807,8 +1795,7 @@ void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
GEN12_DSB_INT(INTEL_DSB_2);
de_pipe_enables = de_pipe_masked |
- GEN8_PIPE_VBLANK |
- gen8_de_pipe_underrun_mask(dev_priv) |
+ GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN |
gen8_de_pipe_flip_done_mask(dev_priv);
de_port_enables = de_port_masked;
diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.h b/drivers/gpu/drm/i915/display/intel_display_irq.h
index 4b493cff7b8e..b077712b7be1 100644
--- a/drivers/gpu/drm/i915/display/intel_display_irq.h
+++ b/drivers/gpu/drm/i915/display/intel_display_irq.h
@@ -33,7 +33,6 @@ void ibx_disable_display_interrupt(struct drm_i915_private *i915, u32 bits);
void gen8_irq_power_well_post_enable(struct drm_i915_private *i915, u8 pipe_mask);
void gen8_irq_power_well_pre_disable(struct drm_i915_private *i915, u8 pipe_mask);
-u32 gen8_de_pipe_underrun_mask(struct drm_i915_private *i915);
int i8xx_enable_vblank(struct drm_crtc *crtc);
int i915gm_enable_vblank(struct drm_crtc *crtc);
diff --git a/drivers/gpu/drm/i915/display/intel_fifo_underrun.c b/drivers/gpu/drm/i915/display/intel_fifo_underrun.c
index 745ce22afb89..cda1daf4cdea 100644
--- a/drivers/gpu/drm/i915/display/intel_fifo_underrun.c
+++ b/drivers/gpu/drm/i915/display/intel_fifo_underrun.c
@@ -192,35 +192,15 @@ static void ivb_set_fifo_underrun_reporting(struct drm_device *dev,
}
}
-static u32
-icl_pipe_status_underrun_mask(struct drm_i915_private *dev_priv)
-{
- u32 mask = PIPE_STATUS_UNDERRUN;
-
- if (DISPLAY_VER(dev_priv) >= 13)
- mask |= PIPE_STATUS_SOFT_UNDERRUN_XELPD |
- PIPE_STATUS_HARD_UNDERRUN_XELPD |
- PIPE_STATUS_PORT_UNDERRUN_XELPD;
-
- return mask;
-}
-
static void bdw_set_fifo_underrun_reporting(struct drm_device *dev,
enum pipe pipe, bool enable)
{
struct drm_i915_private *dev_priv = to_i915(dev);
- u32 mask = gen8_de_pipe_underrun_mask(dev_priv);
-
- if (enable) {
- if (DISPLAY_VER(dev_priv) >= 11)
- intel_de_write(dev_priv,
- ICL_PIPESTATUS(dev_priv, pipe),
- icl_pipe_status_underrun_mask(dev_priv));
- bdw_enable_pipe_irq(dev_priv, pipe, mask);
- } else {
- bdw_disable_pipe_irq(dev_priv, pipe, mask);
- }
+ if (enable)
+ bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_FIFO_UNDERRUN);
+ else
+ bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_FIFO_UNDERRUN);
}
static void ibx_set_fifo_underrun_reporting(struct drm_device *dev,
@@ -404,7 +384,6 @@ void intel_cpu_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
{
struct intel_display *display = &dev_priv->display;
struct intel_crtc *crtc = intel_crtc_for_pipe(display, pipe);
- u32 underruns = 0;
/* We may be called too early in init, thanks BIOS! */
if (crtc == NULL)
@@ -415,37 +394,10 @@ void intel_cpu_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
crtc->cpu_fifo_underrun_disabled)
return;
- /*
- * Starting with display version 11, the PIPE_STAT register records
- * whether an underrun has happened, and on XELPD+, it will also record
- * whether the underrun was soft/hard and whether it was triggered by
- * the downstream port logic. We should clear these bits (which use
- * write-1-to-clear logic) too.
- *
- * Note that although the IIR gives us the same underrun and soft/hard
- * information, PIPE_STAT is the only place we can find out whether
- * the underrun was caused by the downstream port.
- */
- if (DISPLAY_VER(dev_priv) >= 11) {
- underruns = intel_de_read(dev_priv,
- ICL_PIPESTATUS(dev_priv, pipe)) &
- icl_pipe_status_underrun_mask(dev_priv);
- intel_de_write(dev_priv, ICL_PIPESTATUS(dev_priv, pipe),
- underruns);
- }
-
if (intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false)) {
trace_intel_cpu_fifo_underrun(display, pipe);
- if (DISPLAY_VER(dev_priv) >= 11)
- drm_err(&dev_priv->drm, "CPU pipe %c FIFO underrun: %s%s%s%s\n",
- pipe_name(pipe),
- underruns & PIPE_STATUS_SOFT_UNDERRUN_XELPD ? "soft," : "",
- underruns & PIPE_STATUS_HARD_UNDERRUN_XELPD ? "hard," : "",
- underruns & PIPE_STATUS_PORT_UNDERRUN_XELPD ? "port," : "",
- underruns & PIPE_STATUS_UNDERRUN ? "transcoder," : "");
- else
- drm_err(&dev_priv->drm, "CPU pipe %c FIFO underrun\n", pipe_name(pipe));
+ drm_err(&dev_priv->drm, "CPU pipe %c FIFO underrun\n", pipe_name(pipe));
}
intel_fbc_handle_fifo_underrun_irq(&dev_priv->display);
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 818142f5a10c..405f409e9761 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -1735,13 +1735,6 @@
#define PIPE_MISC2_FLIP_INFO_PLANE_SEL_MASK REG_GENMASK(2, 0) /* tgl+ */
#define PIPE_MISC2_FLIP_INFO_PLANE_SEL(plane_id) REG_FIELD_PREP(PIPE_MISC2_FLIP_INFO_PLANE_SEL_MASK, (plane_id))
-#define _ICL_PIPE_A_STATUS 0x70058
-#define ICL_PIPESTATUS(dev_priv, pipe) _MMIO_PIPE2(dev_priv, pipe, _ICL_PIPE_A_STATUS)
-#define PIPE_STATUS_UNDERRUN REG_BIT(31)
-#define PIPE_STATUS_SOFT_UNDERRUN_XELPD REG_BIT(28)
-#define PIPE_STATUS_HARD_UNDERRUN_XELPD REG_BIT(27)
-#define PIPE_STATUS_PORT_UNDERRUN_XELPD REG_BIT(26)
-
#define VLV_DPFLIPSTAT _MMIO(VLV_DISPLAY_BASE + 0x70028)
#define PIPEB_LINE_COMPARE_INT_EN REG_BIT(29)
#define PIPEB_HLINE_INT_EN REG_BIT(28)
@@ -2512,9 +2505,7 @@
#define GEN12_PIPEDMC_INTERRUPT REG_BIT(26) /* tgl+ */
#define GEN12_PIPEDMC_FAULT REG_BIT(25) /* tgl+ */
#define MTL_PIPEDMC_ATS_FAULT REG_BIT(24) /* mtl+ */
-#define XELPD_PIPE_SOFT_UNDERRUN REG_BIT(22) /* adl/dg2+ */
#define GEN11_PIPE_PLANE7_FAULT REG_BIT(22) /* icl/tgl */
-#define XELPD_PIPE_HARD_UNDERRUN REG_BIT(21) /* adl/dg2+ */
#define GEN11_PIPE_PLANE6_FAULT REG_BIT(21) /* icl/tgl */
#define GEN11_PIPE_PLANE5_FAULT REG_BIT(20) /* icl+ */
#define GEN12_PIPE_VBLANK_UNMOD REG_BIT(19) /* tgl+ */
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915: Remove unused underrun irq/reporting bits (rev3)
2024-10-15 8:05 [PATCH v3] drm/i915: Remove unused underrun irq/reporting bits Sai Teja Pottumuttu
@ 2024-10-15 9:13 ` Patchwork
2024-10-15 10:58 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-17 19:06 ` [PATCH v3] drm/i915: Remove unused underrun irq/reporting bits Rodrigo Vivi
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2024-10-15 9:13 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 4128 bytes --]
== Series Details ==
Series: drm/i915: Remove unused underrun irq/reporting bits (rev3)
URL : https://patchwork.freedesktop.org/series/139955/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15537 -> Patchwork_139955v3
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/index.html
Participating hosts (42 -> 41)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_139955v3 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arls-2: [PASS][1] -> [ABORT][2] ([i915#12061] / [i915#12133])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/bat-arls-2/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/bat-arls-2/igt@i915_selftest@live.html
- bat-dg2-11: [PASS][3] -> [ABORT][4] ([i915#12133])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/bat-dg2-11/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/bat-dg2-11/igt@i915_selftest@live.html
* igt@i915_selftest@live@uncore:
- bat-dg2-11: [PASS][5] -> [ABORT][6] ([i915#12307])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/bat-dg2-11/igt@i915_selftest@live@uncore.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/bat-dg2-11/igt@i915_selftest@live@uncore.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][7] -> [ABORT][8] ([i915#12216]) +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
- bat-arls-2: [PASS][9] -> [ABORT][10] ([i915#12061])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/bat-arls-2/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/bat-arls-2/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][11] ([i915#12216]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/bat-mtlp-8/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/bat-mtlp-8/igt@i915_selftest@live.html
- {bat-arlh-3}: [ABORT][13] ([i915#12133]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/bat-arlh-3/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- {bat-arlh-3}: [ABORT][15] ([i915#12061]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/bat-arlh-3/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12307
Build changes
-------------
* Linux: CI_DRM_15537 -> Patchwork_139955v3
CI-20190529: 20190529
CI_DRM_15537: f98f4e573392b882c0ca5aa1c025e20dbe4aa7e8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8072: 8072
Patchwork_139955v3: f98f4e573392b882c0ca5aa1c025e20dbe4aa7e8 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/index.html
[-- Attachment #2: Type: text/html, Size: 5234 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915: Remove unused underrun irq/reporting bits (rev3)
2024-10-15 8:05 [PATCH v3] drm/i915: Remove unused underrun irq/reporting bits Sai Teja Pottumuttu
2024-10-15 9:13 ` ✓ Fi.CI.BAT: success for drm/i915: Remove unused underrun irq/reporting bits (rev3) Patchwork
@ 2024-10-15 10:58 ` Patchwork
2024-10-17 19:06 ` [PATCH v3] drm/i915: Remove unused underrun irq/reporting bits Rodrigo Vivi
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2024-10-15 10:58 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 98853 bytes --]
== Series Details ==
Series: drm/i915: Remove unused underrun irq/reporting bits (rev3)
URL : https://patchwork.freedesktop.org/series/139955/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15537_full -> Patchwork_139955v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_139955v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_139955v3_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 (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_139955v3_full:
### CI changes ###
#### Possible regressions ####
* boot:
- shard-glk: ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25]) -> ([PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [FAIL][50])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk1/boot.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk1/boot.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk1/boot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk2/boot.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk2/boot.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk2/boot.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk3/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk3/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk4/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk4/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk5/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk5/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk5/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk6/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk6/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk6/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk7/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk7/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk7/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk8/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk8/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk8/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk9/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk9/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk9/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk3/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk3/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk2/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk9/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk9/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk9/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk8/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk8/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk8/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk7/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk7/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk1/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk1/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk6/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk1/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk6/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk2/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk6/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk5/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk5/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk5/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk4/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk4/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk4/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk3/boot.html
### IGT changes ###
#### Possible regressions ####
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-snb: [PASS][51] -> [ABORT][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-snb1/igt@i915_suspend@basic-s2idle-without-i915.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-snb7/igt@i915_suspend@basic-s2idle-without-i915.html
New tests
---------
New tests have been introduced between CI_DRM_15537_full and Patchwork_139955v3_full:
### New IGT tests (5) ###
* igt@kms_chamelium_frames:
- Statuses :
- Exec time: [None] s
* igt@kms_sequence@get-idle@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.20] s
* igt@kms_vblank@query-busy-hang@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [13.64] s
* igt@kms_vblank@query-busy-hang@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [25.00] s
* igt@kms_vblank@wait-idle@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.16] s
Known issues
------------
Here are the changes found in Patchwork_139955v3_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#6230])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#11078])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#8414]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#3555] / [i915#9323])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#3555] / [i915#9323])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][58] -> [INCOMPLETE][59] ([i915#7297]) +1 other test incomplete
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@gem_ccs@suspend-resume.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#6335])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_engines@invalid-engines:
- shard-tglu: NOTRUN -> [FAIL][61] ([i915#12027])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#8555])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: [PASS][63] -> [FAIL][64] ([i915#11980])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-tglu-6/igt@gem_ctx_persistence@hostile.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#280]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4812])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-4/igt@gem_exec_balancer@bonded-semaphore.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4812])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [PASS][68] -> [DMESG-WARN][69] ([i915#12412])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-mtlp-4/igt@gem_exec_balancer@nop.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-1/igt@gem_exec_balancer@nop.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#4525]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-glk: NOTRUN -> [FAIL][71] ([i915#2842]) +1 other test fail
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk8/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3539] / [i915#4852]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#5107])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-4/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3281]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#3281]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][76] ([i915#7975] / [i915#8213]) +1 other test abort
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html
- shard-tglu: NOTRUN -> [ABORT][77] ([i915#7975] / [i915#8213]) +1 other test abort
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4860])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4860]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_swapping@basic:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#4613]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#4613])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-glk: NOTRUN -> [SKIP][82] ([i915#4613])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#8289])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4077]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@write:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4083]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-4/igt@gem_mmap_wc@write.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4083])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@gem_mmap_wc@write.html
* igt@gem_pxp@display-protected-crc:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#4270]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4270])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4270])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-19/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#4270]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#5190] / [i915#8428])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#8411])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3282]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#3297]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-snb: NOTRUN -> [SKIP][97] +9 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-snb5/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@gen9_exec_parse@allowed-single.html
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#2527])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@gen9_exec_parse@batch-invalid-length.html
* igt@i915_module_load@load:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#6227])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: NOTRUN -> [ABORT][103] ([i915#10887] / [i915#9697])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][104] ([i915#10131] / [i915#9697])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#8399])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][106] -> [FAIL][107] ([i915#3591])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#4387])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5723])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#5723])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#3826])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#8709]) +11 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-dg2: [PASS][115] -> [SKIP][116] ([i915#9197]) +27 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_atomic_transition@plane-all-transition-fencing.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#5286]) +6 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/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-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3638])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][121]
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6187])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#6095]) +168 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#6095]) +62 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/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: NOTRUN -> [SKIP][125] ([i915#12313])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#6095]) +54 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#6095]) +120 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#3742])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#7828]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#7828]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#7828]) +5 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3116])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#3116] / [i915#3299])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@srm:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#6944] / [i915#7116] / [i915#7118])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [TIMEOUT][136] ([i915#7173])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-3.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#3555])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#11453]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#11453])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3555]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#4103])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#4103])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: NOTRUN -> [SKIP][143] +15 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][144] -> [FAIL][145] ([i915#2346])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#9723])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#3840])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#3840])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#1839])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#9337])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#658])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#3637]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#9934]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-dg2: NOTRUN -> [SKIP][155] +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][156] -> [FAIL][157] ([i915#2122]) +5 other tests fail
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3637])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][159] ([i915#2122]) +1 other test fail
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu: [PASS][160] -> [FAIL][161] ([i915#2122]) +4 other tests fail
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-tglu-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
- shard-mtlp: [PASS][162] -> [FAIL][163] ([i915#2122]) +2 other tests fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
- shard-mtlp: [PASS][164] -> [FAIL][165] ([i915#12138])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-rkl: NOTRUN -> [FAIL][166] ([i915#2122]) +2 other tests fail
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [PASS][167] -> [SKIP][168] ([i915#3555]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#2672]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#2672]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672] / [i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555]) +4 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#2672] / [i915#3555])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#2672] / [i915#3555]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [PASS][176] -> [SKIP][177] ([i915#5354]) +7 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][178] +72 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-snb: [PASS][179] -> [SKIP][180] +9 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#3458]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#8708]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3458])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3023]) +14 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#5354]) +6 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][186] +5 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#8708]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#5439])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#1825]) +20 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [PASS][190] -> [SKIP][191] ([i915#3555] / [i915#8228])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-10/igt@kms_hdr@static-toggle.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-7/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8228])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [PASS][195] -> [SKIP][196] ([i915#12388])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#12339])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#4816])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant:
- shard-dg2: [PASS][199] -> [SKIP][200] ([i915#7294])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#8806])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-dg2: [PASS][202] -> [SKIP][203] ([i915#12247] / [i915#8152] / [i915#9423])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#3555]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#12247]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#12247]) +5 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#12247] / [i915#6953])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#12247]) +18 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-dg2: [PASS][209] -> [SKIP][210] ([i915#6953] / [i915#8152] / [i915#9423])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-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-b:
- shard-dg2: [PASS][211] -> [SKIP][212] ([i915#12247]) +8 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- shard-dg2: [PASS][213] -> [SKIP][214] ([i915#12247] / [i915#8152]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-dg2: [PASS][215] -> [SKIP][216] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#9685])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3361])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][219] -> [SKIP][220] ([i915#9519]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#4423] / [i915#9519])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#9519]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#9519])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg1: [PASS][224] -> [DMESG-WARN][225] ([i915#4423])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg1-17/igt@kms_pm_rpm@system-suspend-modeset.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#6524])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#11520])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#11520]) +5 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#11520]) +7 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#11520]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-glk: NOTRUN -> [SKIP][231] +26 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#9683])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#9683])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#9683])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-basic:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#1072] / [i915#9732]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#9732]) +15 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#1072] / [i915#9732]) +13 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_psr@psr-suspend.html
* igt@kms_psr@psr2-primary-render:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#1072] / [i915#9732]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#5289])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#5289]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#11131])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#3555]) +6 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][243] ([i915#12231]) +1 other test abort
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#9906])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#9906])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#9906])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#2437]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#2437] / [i915#9412])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#2437]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#2435])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-accuracy-50@rcs0:
- shard-tglu: [PASS][251] -> [FAIL][252] ([i915#4349]) +1 other test fail
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-tglu-6/igt@perf_pmu@busy-accuracy-50@rcs0.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-4/igt@perf_pmu@busy-accuracy-50@rcs0.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#3291] / [i915#3708])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-1/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#3708] / [i915#4077])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#3708]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-4/igt@prime_vgem@fence-read-hang.html
#### Possible fixes ####
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][256] ([i915#5784]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg1-12/igt@gem_eio@reset-stress.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-12/igt@gem_eio@reset-stress.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][258] ([i915#11713]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-tglu-9/igt@gem_exec_big@single.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-10/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [FAIL][260] ([i915#2842]) -> [PASS][261] +1 other test pass
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][262] ([i915#11441]) -> [PASS][263] +1 other test pass
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@gem_exec_suspend@basic-s0.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@gem_exec_suspend@basic-s0.html
* igt@gem_softpin@noreloc-s3:
- shard-dg2: [INCOMPLETE][264] -> [PASS][265] +2 other tests pass
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-11/igt@gem_softpin@noreloc-s3.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-6/igt@gem_softpin@noreloc-s3.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][266] ([i915#3591]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-dg2: [SKIP][268] ([i915#9197]) -> [PASS][269] +16 other tests pass
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][270] ([i915#2122]) -> [PASS][271] +3 other tests pass
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-snb6/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-snb2/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: [FAIL][272] ([i915#2122]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-11/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
- shard-glk: [FAIL][274] ([i915#2122]) -> [PASS][275] +1 other test pass
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4:
- shard-dg1: [FAIL][276] ([i915#2122]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4.html
* igt@kms_flip@plain-flip-fb-recreate@b-edp1:
- shard-mtlp: [FAIL][278] ([i915#2122]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-dg2: [SKIP][280] ([i915#3555]) -> [PASS][281] +1 other test pass
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2: [FAIL][282] ([i915#6880]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [SKIP][284] ([i915#5354]) -> [PASS][285] +11 other tests pass
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-dg2: [SKIP][286] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_plane_scaling@invalid-num-scalers.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-dg2: [SKIP][288] ([i915#8152] / [i915#9423]) -> [PASS][289] +1 other test pass
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
- shard-dg2: [SKIP][290] ([i915#12247]) -> [PASS][291] +5 other tests pass
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- shard-dg2: [SKIP][292] ([i915#8152]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2: [SKIP][294] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg2: [SKIP][296] ([i915#12247] / [i915#8152]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][298] ([i915#9519]) -> [PASS][299] +1 other test pass
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [FAIL][300] ([i915#9196]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak.html
* igt@perf@blocking@0-rcs0:
- shard-tglu: [FAIL][302] ([i915#10538]) -> [PASS][303] +1 other test pass
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-tglu-3/igt@perf@blocking@0-rcs0.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-tglu-6/igt@perf@blocking@0-rcs0.html
* igt@perf_pmu@busy-accuracy-50:
- shard-mtlp: [INCOMPLETE][304] ([i915#2295] / [i915#9853]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-mtlp-1/igt@perf_pmu@busy-accuracy-50.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-3/igt@perf_pmu@busy-accuracy-50.html
#### Warnings ####
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: [SKIP][306] ([i915#7091]) -> [SKIP][307] ([i915#9197])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg1: [SKIP][308] ([i915#4423]) -> [SKIP][309] +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg1-13/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-15/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_selftest@mock:
- shard-glk: [DMESG-WARN][310] ([i915#9311]) -> [DMESG-WARN][311] ([i915#1982] / [i915#9311])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-glk9/igt@i915_selftest@mock.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-glk5/igt@i915_selftest@mock.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: [SKIP][312] ([i915#9531]) -> [SKIP][313] ([i915#9197])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2: [SKIP][314] ([i915#9197]) -> [SKIP][315] +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2: [SKIP][316] -> [SKIP][317] ([i915#9197])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: [SKIP][318] ([i915#5190] / [i915#9197]) -> [SKIP][319] ([i915#5190])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: [SKIP][320] ([i915#4538] / [i915#5190]) -> [SKIP][321] ([i915#5190] / [i915#9197]) +3 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][322] ([i915#5190] / [i915#9197]) -> [SKIP][323] ([i915#4538] / [i915#5190]) +3 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs:
- shard-dg2: [SKIP][324] ([i915#10307] / [i915#6095]) -> [SKIP][325] ([i915#9197]) +5 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2: [SKIP][326] ([i915#9197]) -> [SKIP][327] ([i915#10307] / [i915#6095]) +6 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: [SKIP][328] ([i915#12313] / [i915#4423]) -> [SKIP][329] ([i915#12313])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg1-15/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][330] ([i915#12313]) -> [SKIP][331] ([i915#9197])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: [SKIP][332] ([i915#11616] / [i915#7213]) -> [SKIP][333] ([i915#9197])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_cdclk@mode-transition.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-dg2: [SKIP][334] ([i915#4087]) -> [SKIP][335] ([i915#9197])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_cdclk@plane-scaling.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: [SKIP][336] ([i915#3299]) -> [SKIP][337] ([i915#9197])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-0.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [TIMEOUT][338] ([i915#7173]) -> [SKIP][339] ([i915#9424])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-10/igt@kms_content_protection@lic-type-0.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: [SKIP][340] ([i915#9197]) -> [SKIP][341] ([i915#9424])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_content_protection@lic-type-1.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: [SKIP][342] ([i915#9424]) -> [SKIP][343] ([i915#9197])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_content_protection@mei-interface.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][344] ([i915#7118]) -> [TIMEOUT][345] ([i915#7173])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-8/igt@kms_content_protection@srm.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-10/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-snb: [INCOMPLETE][346] ([i915#8816]) -> [SKIP][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-snb6/igt@kms_content_protection@uevent.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-snb2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: [SKIP][348] ([i915#3555]) -> [SKIP][349] ([i915#9197])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: [SKIP][350] ([i915#9197]) -> [SKIP][351] ([i915#11453])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: [SKIP][352] ([i915#5354]) -> [SKIP][353] ([i915#9197]) +2 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: [SKIP][354] ([i915#9197]) -> [SKIP][355] ([i915#5354]) +2 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: [SKIP][356] ([i915#9197]) -> [SKIP][357] ([i915#4103] / [i915#4213])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: [SKIP][358] ([i915#9833]) -> [SKIP][359] ([i915#9197])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-dg1: [SKIP][360] ([i915#2672] / [i915#3555]) -> [SKIP][361] ([i915#2672] / [i915#3555] / [i915#4423])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: [SKIP][362] ([i915#2587] / [i915#2672]) -> [SKIP][363] ([i915#2587] / [i915#2672] / [i915#4423])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2: [SKIP][364] ([i915#3555]) -> [SKIP][365] ([i915#2672] / [i915#3555])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: [SKIP][366] ([i915#3555] / [i915#5190]) -> [SKIP][367] ([i915#2672] / [i915#3555] / [i915#5190])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: [SKIP][368] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][369] ([i915#3555] / [i915#5190])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: [SKIP][370] ([i915#2672] / [i915#3555]) -> [SKIP][371] ([i915#3555]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: [SKIP][372] ([i915#8708]) -> [SKIP][373] ([i915#5354]) +3 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][374] ([i915#3458]) -> [SKIP][375] ([i915#5354]) +7 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][376] ([i915#3458]) -> [SKIP][377] ([i915#10433] / [i915#3458]) +2 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite:
- shard-mtlp: [INCOMPLETE][378] ([i915#2295]) -> [SKIP][379] ([i915#1825])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][380] ([i915#10433] / [i915#3458]) -> [SKIP][381] ([i915#3458]) +2 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][382] ([i915#5354]) -> [SKIP][383] ([i915#3458]) +8 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: [SKIP][384] ([i915#5354]) -> [SKIP][385] ([i915#8708]) +5 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: [SKIP][386] ([i915#3555] / [i915#8228]) -> [SKIP][387] ([i915#9197])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_hdr@bpc-switch.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_hdr@bpc-switch.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: [SKIP][388] ([i915#12247] / [i915#8152] / [i915#9423]) -> [SKIP][389] ([i915#12247] / [i915#9423])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-dg2: [SKIP][390] ([i915#12247] / [i915#8152]) -> [SKIP][391] ([i915#12247])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: [SKIP][392] ([i915#12247] / [i915#6953] / [i915#9423]) -> [SKIP][393] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2: [SKIP][394] ([i915#12247]) -> [SKIP][395] ([i915#12247] / [i915#8152])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][396] ([i915#3828]) -> [SKIP][397] ([i915#9340])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: [SKIP][398] ([i915#11131]) -> [SKIP][399] ([i915#9197])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: [SKIP][400] ([i915#9197]) -> [SKIP][401] ([i915#9906])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-2/igt@kms_vrr@flip-basic-fastset.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-3/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [SKIP][402] ([i915#3555] / [i915#9906]) -> [SKIP][403] ([i915#9197])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-3/igt@kms_vrr@negative-basic.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-2/igt@kms_vrr@negative-basic.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][404] ([i915#9100]) -> [FAIL][405] ([i915#7484]) +1 other test fail
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15537/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139955v3/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[i915#12138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12138
[i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12412
[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#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[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#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[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#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[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#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
[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#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[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#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[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#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9853]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9853
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_15537 -> Patchwork_139955v3
CI-20190529: 20190529
CI_DRM_15537: f98f4e573392b882c0ca5aa1c025e20dbe4aa7e8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8072: 8072
Patchwork_139955v3: f98f4e573392b882c0ca5aa1c025e20dbe4aa7e8 @ 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_139955v3/index.html
[-- Attachment #2: Type: text/html, Size: 124693 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] drm/i915: Remove unused underrun irq/reporting bits
2024-10-15 8:05 [PATCH v3] drm/i915: Remove unused underrun irq/reporting bits Sai Teja Pottumuttu
2024-10-15 9:13 ` ✓ Fi.CI.BAT: success for drm/i915: Remove unused underrun irq/reporting bits (rev3) Patchwork
2024-10-15 10:58 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-17 19:06 ` Rodrigo Vivi
2 siblings, 0 replies; 4+ messages in thread
From: Rodrigo Vivi @ 2024-10-17 19:06 UTC (permalink / raw)
To: Sai Teja Pottumuttu
Cc: intel-gfx, matthew.d.roper, ville.syrjala,
balasubramani.vivekanandan
On Tue, Oct 15, 2024 at 01:35:03PM +0530, Sai Teja Pottumuttu wrote:
> Underrun recovery was defeatured and was never brought into usage.
> Thus we can remove the underrun recovery interrupt/reporting
> register bits and related logic introduced to detect/report soft,
> hard, port underruns.
>
> Essentially this is a revert of the commit 8bcc0840cf7c
> ("drm/i915/xelpd: Enhanced pipe underrun reporting") which originally
> added this functionality. Also note that PIPE_STATUS_UNDERRUN bit in
> PIPESTATUS still stays relevant but we would move back to not
> clearing this sticky bit as we are not using any information from
> this register.
>
> v2: Extend commit message to add more details (Matt Roper)
> v3: Fix the old commit mention in commit message
>
> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
> Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
pushed, thanks for the patch and review
> ---
> .../gpu/drm/i915/display/intel_display_irq.c | 19 +-----
> .../gpu/drm/i915/display/intel_display_irq.h | 1 -
> .../drm/i915/display/intel_fifo_underrun.c | 58 ++-----------------
> drivers/gpu/drm/i915/i915_reg.h | 9 ---
> 4 files changed, 8 insertions(+), 79 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.c b/drivers/gpu/drm/i915/display/intel_display_irq.c
> index a4367ddc7a44..827891070461 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_irq.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_irq.c
> @@ -1021,17 +1021,6 @@ static u32 gen8_de_pipe_flip_done_mask(struct drm_i915_private *i915)
> return GEN8_PIPE_PRIMARY_FLIP_DONE;
> }
>
> -u32 gen8_de_pipe_underrun_mask(struct drm_i915_private *dev_priv)
> -{
> - u32 mask = GEN8_PIPE_FIFO_UNDERRUN;
> -
> - if (DISPLAY_VER(dev_priv) >= 13)
> - mask |= XELPD_PIPE_SOFT_UNDERRUN |
> - XELPD_PIPE_HARD_UNDERRUN;
> -
> - return mask;
> -}
> -
> static void gen8_read_and_ack_pch_irqs(struct drm_i915_private *i915, u32 *pch_iir, u32 *pica_iir)
> {
> u32 pica_ier = 0;
> @@ -1177,7 +1166,7 @@ void gen8_de_irq_handler(struct drm_i915_private *dev_priv, u32 master_ctl)
> if (iir & GEN8_PIPE_CDCLK_CRC_DONE)
> hsw_pipe_crc_irq_handler(dev_priv, pipe);
>
> - if (iir & gen8_de_pipe_underrun_mask(dev_priv))
> + if (iir & GEN8_PIPE_FIFO_UNDERRUN)
> intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
>
> fault_errors = iir & gen8_de_pipe_fault_mask(dev_priv);
> @@ -1617,8 +1606,7 @@ void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
> u8 pipe_mask)
> {
> struct intel_uncore *uncore = &dev_priv->uncore;
> - u32 extra_ier = GEN8_PIPE_VBLANK |
> - gen8_de_pipe_underrun_mask(dev_priv) |
> + u32 extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN |
> gen8_de_pipe_flip_done_mask(dev_priv);
> enum pipe pipe;
>
> @@ -1807,8 +1795,7 @@ void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
> GEN12_DSB_INT(INTEL_DSB_2);
>
> de_pipe_enables = de_pipe_masked |
> - GEN8_PIPE_VBLANK |
> - gen8_de_pipe_underrun_mask(dev_priv) |
> + GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN |
> gen8_de_pipe_flip_done_mask(dev_priv);
>
> de_port_enables = de_port_masked;
> diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.h b/drivers/gpu/drm/i915/display/intel_display_irq.h
> index 4b493cff7b8e..b077712b7be1 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_irq.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_irq.h
> @@ -33,7 +33,6 @@ void ibx_disable_display_interrupt(struct drm_i915_private *i915, u32 bits);
>
> void gen8_irq_power_well_post_enable(struct drm_i915_private *i915, u8 pipe_mask);
> void gen8_irq_power_well_pre_disable(struct drm_i915_private *i915, u8 pipe_mask);
> -u32 gen8_de_pipe_underrun_mask(struct drm_i915_private *i915);
>
> int i8xx_enable_vblank(struct drm_crtc *crtc);
> int i915gm_enable_vblank(struct drm_crtc *crtc);
> diff --git a/drivers/gpu/drm/i915/display/intel_fifo_underrun.c b/drivers/gpu/drm/i915/display/intel_fifo_underrun.c
> index 745ce22afb89..cda1daf4cdea 100644
> --- a/drivers/gpu/drm/i915/display/intel_fifo_underrun.c
> +++ b/drivers/gpu/drm/i915/display/intel_fifo_underrun.c
> @@ -192,35 +192,15 @@ static void ivb_set_fifo_underrun_reporting(struct drm_device *dev,
> }
> }
>
> -static u32
> -icl_pipe_status_underrun_mask(struct drm_i915_private *dev_priv)
> -{
> - u32 mask = PIPE_STATUS_UNDERRUN;
> -
> - if (DISPLAY_VER(dev_priv) >= 13)
> - mask |= PIPE_STATUS_SOFT_UNDERRUN_XELPD |
> - PIPE_STATUS_HARD_UNDERRUN_XELPD |
> - PIPE_STATUS_PORT_UNDERRUN_XELPD;
> -
> - return mask;
> -}
> -
> static void bdw_set_fifo_underrun_reporting(struct drm_device *dev,
> enum pipe pipe, bool enable)
> {
> struct drm_i915_private *dev_priv = to_i915(dev);
> - u32 mask = gen8_de_pipe_underrun_mask(dev_priv);
> -
> - if (enable) {
> - if (DISPLAY_VER(dev_priv) >= 11)
> - intel_de_write(dev_priv,
> - ICL_PIPESTATUS(dev_priv, pipe),
> - icl_pipe_status_underrun_mask(dev_priv));
>
> - bdw_enable_pipe_irq(dev_priv, pipe, mask);
> - } else {
> - bdw_disable_pipe_irq(dev_priv, pipe, mask);
> - }
> + if (enable)
> + bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_FIFO_UNDERRUN);
> + else
> + bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_FIFO_UNDERRUN);
> }
>
> static void ibx_set_fifo_underrun_reporting(struct drm_device *dev,
> @@ -404,7 +384,6 @@ void intel_cpu_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
> {
> struct intel_display *display = &dev_priv->display;
> struct intel_crtc *crtc = intel_crtc_for_pipe(display, pipe);
> - u32 underruns = 0;
>
> /* We may be called too early in init, thanks BIOS! */
> if (crtc == NULL)
> @@ -415,37 +394,10 @@ void intel_cpu_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
> crtc->cpu_fifo_underrun_disabled)
> return;
>
> - /*
> - * Starting with display version 11, the PIPE_STAT register records
> - * whether an underrun has happened, and on XELPD+, it will also record
> - * whether the underrun was soft/hard and whether it was triggered by
> - * the downstream port logic. We should clear these bits (which use
> - * write-1-to-clear logic) too.
> - *
> - * Note that although the IIR gives us the same underrun and soft/hard
> - * information, PIPE_STAT is the only place we can find out whether
> - * the underrun was caused by the downstream port.
> - */
> - if (DISPLAY_VER(dev_priv) >= 11) {
> - underruns = intel_de_read(dev_priv,
> - ICL_PIPESTATUS(dev_priv, pipe)) &
> - icl_pipe_status_underrun_mask(dev_priv);
> - intel_de_write(dev_priv, ICL_PIPESTATUS(dev_priv, pipe),
> - underruns);
> - }
> -
> if (intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false)) {
> trace_intel_cpu_fifo_underrun(display, pipe);
>
> - if (DISPLAY_VER(dev_priv) >= 11)
> - drm_err(&dev_priv->drm, "CPU pipe %c FIFO underrun: %s%s%s%s\n",
> - pipe_name(pipe),
> - underruns & PIPE_STATUS_SOFT_UNDERRUN_XELPD ? "soft," : "",
> - underruns & PIPE_STATUS_HARD_UNDERRUN_XELPD ? "hard," : "",
> - underruns & PIPE_STATUS_PORT_UNDERRUN_XELPD ? "port," : "",
> - underruns & PIPE_STATUS_UNDERRUN ? "transcoder," : "");
> - else
> - drm_err(&dev_priv->drm, "CPU pipe %c FIFO underrun\n", pipe_name(pipe));
> + drm_err(&dev_priv->drm, "CPU pipe %c FIFO underrun\n", pipe_name(pipe));
> }
>
> intel_fbc_handle_fifo_underrun_irq(&dev_priv->display);
> diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
> index 818142f5a10c..405f409e9761 100644
> --- a/drivers/gpu/drm/i915/i915_reg.h
> +++ b/drivers/gpu/drm/i915/i915_reg.h
> @@ -1735,13 +1735,6 @@
> #define PIPE_MISC2_FLIP_INFO_PLANE_SEL_MASK REG_GENMASK(2, 0) /* tgl+ */
> #define PIPE_MISC2_FLIP_INFO_PLANE_SEL(plane_id) REG_FIELD_PREP(PIPE_MISC2_FLIP_INFO_PLANE_SEL_MASK, (plane_id))
>
> -#define _ICL_PIPE_A_STATUS 0x70058
> -#define ICL_PIPESTATUS(dev_priv, pipe) _MMIO_PIPE2(dev_priv, pipe, _ICL_PIPE_A_STATUS)
> -#define PIPE_STATUS_UNDERRUN REG_BIT(31)
> -#define PIPE_STATUS_SOFT_UNDERRUN_XELPD REG_BIT(28)
> -#define PIPE_STATUS_HARD_UNDERRUN_XELPD REG_BIT(27)
> -#define PIPE_STATUS_PORT_UNDERRUN_XELPD REG_BIT(26)
> -
> #define VLV_DPFLIPSTAT _MMIO(VLV_DISPLAY_BASE + 0x70028)
> #define PIPEB_LINE_COMPARE_INT_EN REG_BIT(29)
> #define PIPEB_HLINE_INT_EN REG_BIT(28)
> @@ -2512,9 +2505,7 @@
> #define GEN12_PIPEDMC_INTERRUPT REG_BIT(26) /* tgl+ */
> #define GEN12_PIPEDMC_FAULT REG_BIT(25) /* tgl+ */
> #define MTL_PIPEDMC_ATS_FAULT REG_BIT(24) /* mtl+ */
> -#define XELPD_PIPE_SOFT_UNDERRUN REG_BIT(22) /* adl/dg2+ */
> #define GEN11_PIPE_PLANE7_FAULT REG_BIT(22) /* icl/tgl */
> -#define XELPD_PIPE_HARD_UNDERRUN REG_BIT(21) /* adl/dg2+ */
> #define GEN11_PIPE_PLANE6_FAULT REG_BIT(21) /* icl/tgl */
> #define GEN11_PIPE_PLANE5_FAULT REG_BIT(20) /* icl+ */
> #define GEN12_PIPE_VBLANK_UNMOD REG_BIT(19) /* tgl+ */
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-17 19:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-15 8:05 [PATCH v3] drm/i915: Remove unused underrun irq/reporting bits Sai Teja Pottumuttu
2024-10-15 9:13 ` ✓ Fi.CI.BAT: success for drm/i915: Remove unused underrun irq/reporting bits (rev3) Patchwork
2024-10-15 10:58 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-17 19:06 ` [PATCH v3] drm/i915: Remove unused underrun irq/reporting bits Rodrigo Vivi
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.