public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH 0/2] drm/i915/dmc: Update PIPEDMC interrupt mask
@ 2026-03-11  6:32 Dibin Moolakadan Subrahmanian
  2026-03-11  6:32 ` [PATCH 1/2] drm/i915/dmc: Remove invalid PIPEDMC interrupt bits Dibin Moolakadan Subrahmanian
                   ` (3 more replies)
  0 siblings, 4 replies; 17+ messages in thread
From: Dibin Moolakadan Subrahmanian @ 2026-03-11  6:32 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, uma.shankar, swati2.sharma

On display version 35+ the PIPEDMC_ATS_FAULT and
PIPEDMC_GTT_FAULT interrupt bits are no longer defined.
Update the interrupt mask accordingly and enable the
PIPEDMC_ERROR interrupt.

This series is a continuation of:
https://patchwork.freedesktop.org/series/162934/
The original patch has been into two patches as suggested by
Ville Syrjala

Dibin Moolakadan Subrahmanian (2):
  drm/i915/dmc: Remove invalid PIPEDMC interrupt bits
  drm/i915/dmc: Enable PIPEDMC_ERROR interrupt

 drivers/gpu/drm/i915/display/intel_dmc.c | 4 ++++
 1 file changed, 4 insertions(+)

-- 
2.43.0


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

* [PATCH 1/2] drm/i915/dmc: Remove invalid PIPEDMC interrupt bits
  2026-03-11  6:32 [PATCH 0/2] drm/i915/dmc: Update PIPEDMC interrupt mask Dibin Moolakadan Subrahmanian
@ 2026-03-11  6:32 ` Dibin Moolakadan Subrahmanian
  2026-03-12  3:10   ` Kandpal, Suraj
  2026-03-11  6:32 ` [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt Dibin Moolakadan Subrahmanian
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 17+ messages in thread
From: Dibin Moolakadan Subrahmanian @ 2026-03-11  6:32 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, uma.shankar, swati2.sharma

On display version 35+ PIPEDMC_ATS_FAULT and
PIPEDMC_GTT_FAULT interrupt bits are no longer defined.

Update the interrupt mask to drop these.

Signed-off-by: Dibin Moolakadan Subrahmanian <dibin.moolakadan.subrahmanian@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dmc.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c b/drivers/gpu/drm/i915/display/intel_dmc.c
index c3b411259a0c..38b284a0db82 100644
--- a/drivers/gpu/drm/i915/display/intel_dmc.c
+++ b/drivers/gpu/drm/i915/display/intel_dmc.c
@@ -509,6 +509,9 @@ static void pipedmc_clock_gating_wa(struct intel_display *display, bool enable)
 
 static u32 pipedmc_interrupt_mask(struct intel_display *display)
 {
+	if (DISPLAY_VER(display) >= 35)
+		return PIPEDMC_FLIPQ_PROG_DONE;
+
 	/*
 	 * FIXME PIPEDMC_ERROR not enabled for now due to LNL pipe B
 	 * triggering it during the first DC state transition. Figure
-- 
2.43.0


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

* [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-11  6:32 [PATCH 0/2] drm/i915/dmc: Update PIPEDMC interrupt mask Dibin Moolakadan Subrahmanian
  2026-03-11  6:32 ` [PATCH 1/2] drm/i915/dmc: Remove invalid PIPEDMC interrupt bits Dibin Moolakadan Subrahmanian
@ 2026-03-11  6:32 ` Dibin Moolakadan Subrahmanian
  2026-03-12  3:18   ` Kandpal, Suraj
  2026-03-11  7:58 ` ✓ i915.CI.BAT: success for drm/i915/dmc: Update PIPEDMC interrupt mask (rev2) Patchwork
  2026-03-11 18:42 ` ✓ i915.CI.Full: " Patchwork
  3 siblings, 1 reply; 17+ messages in thread
From: Dibin Moolakadan Subrahmanian @ 2026-03-11  6:32 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, uma.shankar, swati2.sharma

Enable PIPEDMC_ERROR interrupt bit for display version 35+.

Signed-off-by: Dibin Moolakadan Subrahmanian <dibin.moolakadan.subrahmanian@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dmc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c b/drivers/gpu/drm/i915/display/intel_dmc.c
index 38b284a0db82..e60f1f977070 100644
--- a/drivers/gpu/drm/i915/display/intel_dmc.c
+++ b/drivers/gpu/drm/i915/display/intel_dmc.c
@@ -510,7 +510,8 @@ static void pipedmc_clock_gating_wa(struct intel_display *display, bool enable)
 static u32 pipedmc_interrupt_mask(struct intel_display *display)
 {
 	if (DISPLAY_VER(display) >= 35)
-		return PIPEDMC_FLIPQ_PROG_DONE;
+		return PIPEDMC_FLIPQ_PROG_DONE |
+			PIPEDMC_ERROR;
 
 	/*
 	 * FIXME PIPEDMC_ERROR not enabled for now due to LNL pipe B
-- 
2.43.0


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

* ✓ i915.CI.BAT: success for drm/i915/dmc: Update PIPEDMC interrupt mask (rev2)
  2026-03-11  6:32 [PATCH 0/2] drm/i915/dmc: Update PIPEDMC interrupt mask Dibin Moolakadan Subrahmanian
  2026-03-11  6:32 ` [PATCH 1/2] drm/i915/dmc: Remove invalid PIPEDMC interrupt bits Dibin Moolakadan Subrahmanian
  2026-03-11  6:32 ` [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt Dibin Moolakadan Subrahmanian
@ 2026-03-11  7:58 ` Patchwork
  2026-03-11 18:42 ` ✓ i915.CI.Full: " Patchwork
  3 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2026-03-11  7:58 UTC (permalink / raw)
  To: Dibin Moolakadan Subrahmanian; +Cc: intel-gfx

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

== Series Details ==

Series: drm/i915/dmc: Update PIPEDMC interrupt mask (rev2)
URL   : https://patchwork.freedesktop.org/series/162934/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_18125 -> Patchwork_162934v2
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (41 -> 37)
------------------------------

  Missing    (4): bat-dg2-13 bat-arlh-3 fi-snb-2520m fi-pnv-d510 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@workarounds:
    - bat-dg2-9:          [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/bat-dg2-9/igt@i915_selftest@live@workarounds.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/bat-dg2-9/igt@i915_selftest@live@workarounds.html
    - bat-dg2-14:         [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/bat-dg2-14/igt@i915_selftest@live@workarounds.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/bat-dg2-14/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-dg2-8:          [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/bat-dg2-8/igt@i915_selftest@live.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/bat-dg2-8/igt@i915_selftest@live.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061


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

  * Linux: CI_DRM_18125 -> Patchwork_162934v2

  CI-20190529: 20190529
  CI_DRM_18125: e2ad8f051843c953c01f8609c8b392abc2bd5c82 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8792: 8792
  Patchwork_162934v2: e2ad8f051843c953c01f8609c8b392abc2bd5c82 @ git://anongit.freedesktop.org/gfx-ci/linux

== Logs ==

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

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

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

* ✓ i915.CI.Full: success for drm/i915/dmc: Update PIPEDMC interrupt mask (rev2)
  2026-03-11  6:32 [PATCH 0/2] drm/i915/dmc: Update PIPEDMC interrupt mask Dibin Moolakadan Subrahmanian
                   ` (2 preceding siblings ...)
  2026-03-11  7:58 ` ✓ i915.CI.BAT: success for drm/i915/dmc: Update PIPEDMC interrupt mask (rev2) Patchwork
@ 2026-03-11 18:42 ` Patchwork
  3 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2026-03-11 18:42 UTC (permalink / raw)
  To: Dibin Moolakadan Subrahmanian; +Cc: intel-gfx

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

== Series Details ==

Series: drm/i915/dmc: Update PIPEDMC interrupt mask (rev2)
URL   : https://patchwork.freedesktop.org/series/162934/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_18125_full -> Patchwork_162934v2_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@crc32:
    - shard-rkl:          NOTRUN -> [SKIP][1] ([i915#6230])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@api_intel_bb@crc32.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-rkl:          NOTRUN -> [SKIP][2] ([i915#11078])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@drm_buddy@drm_buddy:
    - shard-rkl:          NOTRUN -> [SKIP][3] ([i915#15678])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@drm_buddy@drm_buddy.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-rkl:          NOTRUN -> [SKIP][4] ([i915#14544] / [i915#3555] / [i915#9323])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ccs@block-multicopy-inplace:
    - shard-mtlp:         NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@gem_ccs@block-multicopy-inplace.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323]) +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][7] ([i915#13008])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@gem_ccs@large-ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume:
    - shard-tglu-1:       NOTRUN -> [SKIP][8] ([i915#9323])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@gem_ccs@suspend-resume.html

  * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
    - shard-dg2:          [PASS][9] -> [INCOMPLETE][10] ([i915#12392] / [i915#13356])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-tglu-1:       NOTRUN -> [SKIP][11] ([i915#7697])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_create@create-ext-set-pat:
    - shard-tglu-1:       NOTRUN -> [SKIP][12] ([i915#8562])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_persistence@heartbeat-many:
    - shard-mtlp:         NOTRUN -> [SKIP][13] ([i915#8555])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-many.html

  * igt@gem_ctx_persistence@hostile:
    - shard-snb:          NOTRUN -> [SKIP][14] ([i915#1099]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-snb7/igt@gem_ctx_persistence@hostile.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-tglu-1:       NOTRUN -> [SKIP][15] ([i915#280]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-rkl:          NOTRUN -> [SKIP][16] ([i915#280])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_exec_balancer@bonded-dual:
    - shard-dg2:          NOTRUN -> [SKIP][17] ([i915#4771])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-tglu-1:       NOTRUN -> [SKIP][18] ([i915#4525])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_balancer@parallel-keep-submit-fence:
    - shard-rkl:          NOTRUN -> [SKIP][19] ([i915#4525]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-glk:          NOTRUN -> [SKIP][20] ([i915#6334]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-tglu-1:       NOTRUN -> [SKIP][21] ([i915#6344])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_reloc@basic-cpu-active:
    - shard-rkl:          NOTRUN -> [SKIP][22] ([i915#14544] / [i915#3281])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-active.html

  * igt@gem_exec_reloc@basic-gtt-wc:
    - shard-rkl:          NOTRUN -> [SKIP][23] ([i915#3281]) +7 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc.html

  * igt@gem_exec_reloc@basic-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][24] ([i915#3281]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@gem_exec_reloc@basic-wc.html

  * igt@gem_exec_reloc@basic-wc-gtt-active:
    - shard-dg2:          NOTRUN -> [SKIP][25] ([i915#3281]) +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@gem_exec_reloc@basic-wc-gtt-active.html

  * igt@gem_lmem_swapping@massive:
    - shard-rkl:          NOTRUN -> [SKIP][26] ([i915#4613])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@gem_lmem_swapping@massive.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-glk:          NOTRUN -> [SKIP][27] ([i915#4613]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk1/igt@gem_lmem_swapping@parallel-random.html
    - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#4613])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-tglu-1:       NOTRUN -> [SKIP][29] ([i915#4613]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify:
    - shard-rkl:          NOTRUN -> [SKIP][30] ([i915#14544] / [i915#4613])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gem_lmem_swapping@verify.html
    - shard-tglu:         NOTRUN -> [SKIP][31] ([i915#4613])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@gem_lmem_swapping@verify.html

  * igt@gem_mmap@bad-object:
    - shard-mtlp:         NOTRUN -> [SKIP][32] ([i915#4083]) +3 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@gem_mmap@bad-object.html

  * igt@gem_mmap_gtt@bad-object:
    - shard-mtlp:         NOTRUN -> [SKIP][33] ([i915#4077]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@gem_mmap_gtt@bad-object.html

  * igt@gem_mmap_wc@write-wc-read-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#4083])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@gem_mmap_wc@write-wc-read-gtt.html

  * igt@gem_pread@display:
    - shard-rkl:          NOTRUN -> [SKIP][35] ([i915#3282]) +2 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@gem_pread@display.html

  * igt@gem_pread@uncached:
    - shard-mtlp:         NOTRUN -> [SKIP][36] ([i915#3282])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@gem_pread@uncached.html

  * igt@gem_pwrite_snooped:
    - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#3282]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@gem_pwrite_snooped.html

  * igt@gem_readwrite@read-write:
    - shard-rkl:          NOTRUN -> [SKIP][38] ([i915#14544] / [i915#3282])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gem_readwrite@read-write.html

  * igt@gem_render_copy@linear-to-vebox-y-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][39] ([i915#8428]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@gem_render_copy@linear-to-vebox-y-tiled.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#5190] / [i915#8428]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html

  * igt@gem_softpin@noreloc-s3:
    - shard-rkl:          [PASS][41] -> [INCOMPLETE][42] ([i915#13809])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-3/igt@gem_softpin@noreloc-s3.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-3/igt@gem_softpin@noreloc-s3.html

  * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
    - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#4077]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_userptr_blits@access-control:
    - shard-tglu-1:       NOTRUN -> [SKIP][44] ([i915#3297])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-tglu-1:       NOTRUN -> [SKIP][45] ([i915#3297] / [i915#3323])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][46] ([i915#3297]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-dg2:          NOTRUN -> [SKIP][47] ([i915#3282] / [i915#3297])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-mtlp:         NOTRUN -> [SKIP][48] ([i915#3297])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@relocations:
    - shard-rkl:          NOTRUN -> [SKIP][49] ([i915#3281] / [i915#3297])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@gem_userptr_blits@relocations.html

  * igt@gem_workarounds@suspend-resume:
    - shard-rkl:          [PASS][50] -> [ABORT][51] ([i915#15152])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-7/igt@gem_workarounds@suspend-resume.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-1/igt@gem_workarounds@suspend-resume.html
    - shard-glk11:        NOTRUN -> [INCOMPLETE][52] ([i915#13356] / [i915#14586])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk11/igt@gem_workarounds@suspend-resume.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-glk:          NOTRUN -> [INCOMPLETE][53] ([i915#13356])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk9/igt@gem_workarounds@suspend-resume-context.html
    - shard-rkl:          NOTRUN -> [INCOMPLETE][54] ([i915#13356])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gem_workarounds@suspend-resume-context.html

  * igt@gen9_exec_parse@basic-rejected-ctx-param:
    - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#2856])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@gen9_exec_parse@basic-rejected-ctx-param.html

  * igt@gen9_exec_parse@batch-without-end:
    - shard-mtlp:         NOTRUN -> [SKIP][56] ([i915#2856])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@gen9_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@batch-zero-length:
    - shard-tglu:         NOTRUN -> [SKIP][57] ([i915#2527] / [i915#2856]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@gen9_exec_parse@batch-zero-length.html
    - shard-rkl:          NOTRUN -> [SKIP][58] ([i915#14544] / [i915#2527])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gen9_exec_parse@batch-zero-length.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-tglu-1:       NOTRUN -> [SKIP][59] ([i915#2527] / [i915#2856]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-rkl:          NOTRUN -> [SKIP][60] ([i915#2527]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_drm_fdinfo@busy-check-all@vecs0:
    - shard-dg2:          NOTRUN -> [SKIP][61] ([i915#11527]) +7 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@i915_drm_fdinfo@busy-check-all@vecs0.html

  * igt@i915_drm_fdinfo@isolation@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#14073]) +6 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@i915_drm_fdinfo@isolation@rcs0.html

  * igt@i915_fb_tiling@basic-x-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#13786])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@i915_fb_tiling@basic-x-tiling.html

  * igt@i915_module_load@fault-injection@intel_connector_register:
    - shard-glk10:        NOTRUN -> [ABORT][64] ([i915#15342]) +1 other test abort
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk10/igt@i915_module_load@fault-injection@intel_connector_register.html

  * igt@i915_module_load@fault-injection@intel_gt_init-enodev:
    - shard-glk10:        NOTRUN -> [SKIP][65] +249 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk10/igt@i915_module_load@fault-injection@intel_gt_init-enodev.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-tglu:         NOTRUN -> [SKIP][66] ([i915#8399])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@i915_pm_freq_api@freq-reset.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-rkl:          NOTRUN -> [SKIP][67] +8 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@i915_pm_rps@thresholds-idle-park:
    - shard-mtlp:         NOTRUN -> [SKIP][68] ([i915#11681])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html

  * igt@i915_query@hwconfig_table:
    - shard-tglu-1:       NOTRUN -> [SKIP][69] ([i915#6245])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@i915_query@hwconfig_table.html

  * igt@i915_query@test-query-geometry-subslices:
    - shard-tglu-1:       NOTRUN -> [SKIP][70] ([i915#5723])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-glk:          NOTRUN -> [INCOMPLETE][71] ([i915#4817])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html

  * igt@intel_hwmon@hwmon-read:
    - shard-tglu-1:       NOTRUN -> [SKIP][72] ([i915#7707])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@intel_hwmon@hwmon-read.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#5190])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-tglu-1:       NOTRUN -> [SKIP][74] ([i915#12454] / [i915#12712])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-rkl:          [PASS][75] -> [INCOMPLETE][76] ([i915#12761])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_async_flips@async-flip-suspend-resume.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][77] ([i915#12761])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html

  * igt@kms_async_flips@test-cursor@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][78] ([i915#15791]) +4 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_async_flips@test-cursor@pipe-d-edp-1.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-glk:          NOTRUN -> [SKIP][79] ([i915#1769]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-mtlp:         NOTRUN -> [FAIL][80] ([i915#5956]) +1 other test fail
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
    - shard-dg2:          [PASS][81] -> [FAIL][82] ([i915#5956]) +1 other test fail
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-tglu-1:       NOTRUN -> [SKIP][83] ([i915#5286]) +4 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-tglu:         NOTRUN -> [SKIP][84] ([i915#5286]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-rkl:          NOTRUN -> [SKIP][85] ([i915#14544] / [i915#5286])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][86] ([i915#5286]) +5 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-tglu-1:       NOTRUN -> [SKIP][87] ([i915#3828])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][88] ([i915#3828])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-mtlp:         NOTRUN -> [SKIP][89] +4 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2:          NOTRUN -> [SKIP][90] ([i915#4538] / [i915#5190]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-rkl:          NOTRUN -> [SKIP][91] ([i915#14544]) +1 other test skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][92] ([i915#14544] / [i915#6095]) +12 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][93] ([i915#6095]) +70 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][94] ([i915#6095]) +39 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#10307] / [i915#6095]) +46 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][96] ([i915#12313])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#10307] / [i915#10434] / [i915#6095])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
    - shard-rkl:          NOTRUN -> [SKIP][98] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][99] ([i915#6095]) +16 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][100] ([i915#6095]) +54 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][101] ([i915#14098] / [i915#6095]) +43 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
    - shard-mtlp:         NOTRUN -> [SKIP][102] ([i915#6095]) +9 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-dg1:          NOTRUN -> [SKIP][103] ([i915#6095]) +223 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-tglu-1:       NOTRUN -> [SKIP][104] ([i915#3742])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][105] ([i915#13781]) +3 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - shard-rkl:          NOTRUN -> [SKIP][106] ([i915#11151] / [i915#7828]) +6 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-read.html

  * igt@kms_chamelium_edid@vga-edid-read:
    - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#11151] / [i915#7828]) +1 other test skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_chamelium_edid@vga-edid-read.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-tglu-1:       NOTRUN -> [SKIP][108] ([i915#11151] / [i915#7828]) +5 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-tglu:         NOTRUN -> [SKIP][109] ([i915#11151] / [i915#7828]) +2 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-mtlp:         NOTRUN -> [SKIP][110] ([i915#11151] / [i915#7828]) +2 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
    - shard-glk11:        NOTRUN -> [SKIP][111] +42 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk11/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-tglu-1:       NOTRUN -> [SKIP][112] ([i915#15330])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-rkl:          NOTRUN -> [SKIP][113] ([i915#15330] / [i915#3116]) +1 other test skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#15330])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

  * igt@kms_content_protection@lic-type-0:
    - shard-tglu:         NOTRUN -> [SKIP][115] ([i915#6944] / [i915#9424])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-tglu:         NOTRUN -> [SKIP][116] ([i915#6944])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_content_protection@srm:
    - shard-rkl:          NOTRUN -> [SKIP][117] ([i915#6944] / [i915#7118])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@type1:
    - shard-tglu-1:       NOTRUN -> [SKIP][118] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-rkl:          NOTRUN -> [SKIP][119] ([i915#13049] / [i915#14544])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][120] ([i915#13049])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglu-1:       NOTRUN -> [SKIP][121] ([i915#13049])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [FAIL][122] ([i915#13566]) +3 other tests fail
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-8/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-mtlp:         NOTRUN -> [SKIP][123] ([i915#8814])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-rkl:          [PASS][124] -> [FAIL][125] ([i915#13566])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-rkl:          NOTRUN -> [SKIP][126] ([i915#4103]) +1 other test skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-mtlp:         NOTRUN -> [SKIP][127] ([i915#9809])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-tglu-1:       NOTRUN -> [SKIP][128] +36 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglu-1:       NOTRUN -> [SKIP][129] ([i915#4103])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-rkl:          NOTRUN -> [SKIP][130] ([i915#14544] / [i915#4103])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-tglu-1:       NOTRUN -> [SKIP][131] ([i915#9723])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-tglu:         NOTRUN -> [SKIP][132] ([i915#9723])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dp_aux_dev:
    - shard-dg2:          NOTRUN -> [SKIP][133] ([i915#1257])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_dp_aux_dev.html

  * igt@kms_dsc@dsc-basic:
    - shard-tglu:         NOTRUN -> [SKIP][134] ([i915#3555] / [i915#3840])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-tglu:         NOTRUN -> [SKIP][135] ([i915#3840])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-dg2:          NOTRUN -> [SKIP][136] ([i915#3555] / [i915#3840])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-mtlp:         NOTRUN -> [SKIP][137] ([i915#3555] / [i915#3840])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-rkl:          NOTRUN -> [SKIP][138] ([i915#3555] / [i915#3840])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-tglu-1:       NOTRUN -> [SKIP][139] ([i915#3840] / [i915#9053])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@psr:
    - shard-rkl:          NOTRUN -> [SKIP][140] ([i915#3955])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@psr2:
    - shard-rkl:          NOTRUN -> [SKIP][141] ([i915#658])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-tglu-1:       NOTRUN -> [SKIP][142] ([i915#3637] / [i915#9934]) +2 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-rkl:          NOTRUN -> [SKIP][143] ([i915#14544] / [i915#9934])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][144] ([i915#3637] / [i915#9934]) +2 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          NOTRUN -> [SKIP][145] ([i915#9934]) +2 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-tglu:         NOTRUN -> [SKIP][146] ([i915#3637] / [i915#9934]) +1 other test skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-rkl:          NOTRUN -> [SKIP][147] ([i915#9934]) +4 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][148] ([i915#15643]) +1 other test skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][149] ([i915#15643])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][150] ([i915#15643]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][151] ([i915#15643]) +2 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
    - shard-mtlp:         NOTRUN -> [SKIP][152] ([i915#15643])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-rkl:          NOTRUN -> [SKIP][153] ([i915#14544] / [i915#15643])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][154] ([i915#8708]) +3 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][155] ([i915#1825]) +8 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][156] ([i915#5354]) +8 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][157] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#15102]) +1 other test skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][159] ([i915#15102]) +2 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-rkl:          NOTRUN -> [SKIP][160] ([i915#14544] / [i915#15102]) +1 other test skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][161] ([i915#15102] / [i915#3458]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][162] ([i915#1825]) +18 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][163] ([i915#14544] / [i915#1825])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
    - shard-tglu-1:       NOTRUN -> [SKIP][164] ([i915#15102]) +22 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][165] ([i915#15104])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][166] ([i915#15102] / [i915#3023]) +12 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> [SKIP][167] +26 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#8708]) +3 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
    - shard-tglu:         NOTRUN -> [SKIP][169] ([i915#15102]) +13 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-mtlp:         [PASS][170] -> [SKIP][171] ([i915#15725])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-mtlp-8/igt@kms_hdmi_inject@inject-4k.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_hdr@bpc-switch:
    - shard-rkl:          [PASS][172] -> [SKIP][173] ([i915#3555] / [i915#8228])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_hdr@bpc-switch.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8228])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-tglu:         NOTRUN -> [SKIP][175] ([i915#3555] / [i915#8228])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@static-toggle:
    - shard-dg2:          NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8228])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-5/igt@kms_hdr@static-toggle.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][177] ([i915#15436]) +1 other test incomplete
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][178] ([i915#15458])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][179] ([i915#13688])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][180] ([i915#14544] / [i915#15638] / [i915#15722])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-tglu-1:       NOTRUN -> [SKIP][181] ([i915#15815])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-dg2:          NOTRUN -> [SKIP][182] ([i915#14712])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
    - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#15709]) +1 other test skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
    - shard-tglu-1:       NOTRUN -> [SKIP][184] ([i915#15709]) +1 other test skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
    - shard-mtlp:         NOTRUN -> [SKIP][185] ([i915#15709])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
    - shard-tglu:         NOTRUN -> [SKIP][186] ([i915#15709]) +2 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5:
    - shard-rkl:          NOTRUN -> [SKIP][187] ([i915#15608]) +1 other test skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][188] ([i915#15709]) +2 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html

  * igt@kms_plane_alpha_blend@alpha-basic:
    - shard-glk10:        NOTRUN -> [FAIL][189] ([i915#12178])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
    - shard-glk10:        NOTRUN -> [FAIL][190] ([i915#7862]) +1 other test fail
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8821])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-tglu-1:       NOTRUN -> [SKIP][192] ([i915#13958])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-tglu:         NOTRUN -> [SKIP][193] ([i915#13958])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-rkl:          NOTRUN -> [SKIP][194] ([i915#14259])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-rkl:          [PASS][195] -> [SKIP][196] ([i915#6953])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-mtlp:         NOTRUN -> [SKIP][197] ([i915#6953])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-tglu:         NOTRUN -> [SKIP][198] ([i915#15329]) +4 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
    - shard-mtlp:         NOTRUN -> [SKIP][199] ([i915#15329] / [i915#3555] / [i915#6953])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-mtlp:         NOTRUN -> [SKIP][200] ([i915#15329]) +3 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][201] ([i915#9812])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#9685])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-tglu:         NOTRUN -> [SKIP][203] ([i915#3828])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][204] ([i915#15073])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_pm_rpm@dpms-lpsp.html
    - shard-rkl:          [PASS][205] -> [SKIP][206] ([i915#15073])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
    - shard-dg1:          [PASS][207] -> [SKIP][208] ([i915#15073]) +1 other test skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg1-19/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-mtlp:         NOTRUN -> [SKIP][209] ([i915#15073])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@fences:
    - shard-snb:          NOTRUN -> [SKIP][210] +13 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-snb7/igt@kms_pm_rpm@fences.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-rkl:          NOTRUN -> [SKIP][211] ([i915#15073])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-rkl:          [PASS][212] -> [SKIP][213] ([i915#14544] / [i915#15073])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-tglu-1:       NOTRUN -> [SKIP][214] ([i915#15073]) +1 other test skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-dg2:          [PASS][215] -> [SKIP][216] ([i915#15073]) +1 other test skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-pc8-residency-stress:
    - shard-dg2:          NOTRUN -> [SKIP][217] +3 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_pm_rpm@modeset-pc8-residency-stress.html

  * igt@kms_pm_rpm@package-g7:
    - shard-dg2:          NOTRUN -> [SKIP][218] ([i915#15403])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-5/igt@kms_pm_rpm@package-g7.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-rkl:          [PASS][219] -> [ABORT][220] ([i915#15132])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-1/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_prime@basic-modeset-hybrid:
    - shard-rkl:          NOTRUN -> [SKIP][221] ([i915#6524])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_prime@basic-modeset-hybrid.html

  * igt@kms_prime@d3hot:
    - shard-tglu:         NOTRUN -> [SKIP][222] ([i915#6524])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-glk:          NOTRUN -> [SKIP][223] ([i915#11520]) +2 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk9/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
    - shard-rkl:          NOTRUN -> [SKIP][224] ([i915#11520] / [i915#14544])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
    - shard-tglu-1:       NOTRUN -> [SKIP][225] ([i915#11520]) +5 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-glk10:        NOTRUN -> [SKIP][226] ([i915#11520]) +7 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-rkl:          NOTRUN -> [SKIP][227] ([i915#11520]) +4 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-glk11:        NOTRUN -> [SKIP][228] ([i915#11520]) +1 other test skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
    - shard-dg2:          NOTRUN -> [SKIP][229] ([i915#11520]) +2 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-mtlp:         NOTRUN -> [SKIP][230] ([i915#12316])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/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][231] ([i915#11520]) +3 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-tglu-1:       NOTRUN -> [SKIP][232] ([i915#9683])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-cursor-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][233] ([i915#1072] / [i915#9732]) +5 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html

  * igt@kms_psr@fbc-psr-no-drrs:
    - shard-tglu:         NOTRUN -> [SKIP][234] ([i915#9732]) +10 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_psr@fbc-psr-no-drrs.html

  * igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][235] ([i915#9688]) +5 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-rkl:          NOTRUN -> [SKIP][236] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@pr-cursor-mmap-cpu:
    - shard-rkl:          NOTRUN -> [SKIP][237] ([i915#1072] / [i915#9732]) +11 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_psr@pr-cursor-mmap-cpu.html

  * igt@kms_psr@psr-cursor-plane-move:
    - shard-tglu-1:       NOTRUN -> [SKIP][238] ([i915#9732]) +13 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_psr@psr-cursor-plane-move.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-tglu:         NOTRUN -> [SKIP][239] ([i915#5289])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-tglu-1:       NOTRUN -> [SKIP][240] ([i915#3555]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-rkl:          NOTRUN -> [SKIP][241] ([i915#3555]) +1 other test skip
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_setmode@basic@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][242] ([i915#15106])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-tglu:         NOTRUN -> [SKIP][243] ([i915#3555])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-glk10:        NOTRUN -> [FAIL][244] ([i915#10959])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk10/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-basic:
    - shard-dg2:          NOTRUN -> [SKIP][245] ([i915#15243] / [i915#3555])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#14544] / [i915#9906])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@negative-basic:
    - shard-glk:          NOTRUN -> [SKIP][247] +102 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk1/igt@kms_vrr@negative-basic.html
    - shard-rkl:          NOTRUN -> [SKIP][248] ([i915#3555] / [i915#9906])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-tglu:         NOTRUN -> [SKIP][249] ([i915#9906])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#9906])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - shard-rkl:          NOTRUN -> [SKIP][251] ([i915#2436])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html

  * igt@perf@per-context-mode-unprivileged:
    - shard-rkl:          NOTRUN -> [SKIP][252] ([i915#2435])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html

  * igt@perf_pmu@busy-double-start@rcs0:
    - shard-mtlp:         [PASS][253] -> [FAIL][254] ([i915#4349])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html

  * igt@perf_pmu@module-unload:
    - shard-glk11:        NOTRUN -> [ABORT][255] ([i915#15778])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk11/igt@perf_pmu@module-unload.html

  * igt@prime_vgem@basic-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][256] ([i915#3708] / [i915#4077])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@prime_vgem@basic-gtt.html

  * igt@prime_vgem@basic-write:
    - shard-rkl:          NOTRUN -> [SKIP][257] ([i915#3291] / [i915#3708])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@prime_vgem@basic-write.html

  * igt@prime_vgem@fence-read-hang:
    - shard-mtlp:         NOTRUN -> [SKIP][258] ([i915#3708])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-4/igt@prime_vgem@fence-read-hang.html

  
#### Possible fixes ####

  * igt@gem_eio@in-flight-suspend:
    - shard-dg1:          [DMESG-WARN][259] ([i915#4391] / [i915#4423]) -> [PASS][260]
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-14/igt@gem_eio@in-flight-suspend.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg1-13/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_suspend@basic-s0:
    - shard-dg2:          [INCOMPLETE][261] ([i915#13356]) -> [PASS][262] +1 other test pass
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-dg2:          [FAIL][263] ([i915#15734]) -> [PASS][264]
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-8/igt@gem_lmem_swapping@smem-oom.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-6/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg2:          [CRASH][265] ([i915#5493]) -> [PASS][266]
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-rkl:          [ABORT][267] ([i915#15152]) -> [PASS][268]
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          [INCOMPLETE][269] ([i915#13356] / [i915#13820]) -> [PASS][270] +1 other test pass
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-rkl:          [INCOMPLETE][271] ([i915#4817]) -> [PASS][272]
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-dg1:          [FAIL][273] ([i915#14888]) -> [PASS][274]
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip.html
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg1-18/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
    - shard-dg2:          [FAIL][275] ([i915#5956]) -> [PASS][276] +1 other test pass
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
    - shard-dg1:          [DMESG-WARN][277] ([i915#4423]) -> [PASS][278] +2 other tests pass
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-19/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg1-15/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-rkl:          [FAIL][279] ([i915#13566]) -> [PASS][280]
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
    - shard-snb:          [TIMEOUT][281] ([i915#14033]) -> [PASS][282] +1 other test pass
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-rkl:          [INCOMPLETE][283] ([i915#6113]) -> [PASS][284]
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-rkl:          [SKIP][285] ([i915#3555] / [i915#8228]) -> [PASS][286]
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@kms_hdr@static-toggle-dpms.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          [SKIP][287] ([i915#15073]) -> [PASS][288] +2 other tests pass
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-dg1:          [SKIP][289] ([i915#15073]) -> [PASS][290] +2 other tests pass
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@perf_pmu@busy-double-start@ccs0:
    - shard-mtlp:         [FAIL][291] ([i915#4349]) -> [PASS][292]
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html

  * igt@perf_pmu@rc6-suspend:
    - shard-rkl:          [INCOMPLETE][293] ([i915#13520]) -> [PASS][294]
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@perf_pmu@rc6-suspend.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-7/igt@perf_pmu@rc6-suspend.html

  
#### Warnings ####

  * igt@api_intel_bb@blit-reloc-keep-cache:
    - shard-rkl:          [SKIP][295] ([i915#8411]) -> [SKIP][296] ([i915#14544] / [i915#8411]) +1 other test skip
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-rkl:          [SKIP][297] ([i915#14544] / [i915#4525]) -> [SKIP][298] ([i915#4525])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_reloc@basic-gtt-read:
    - shard-rkl:          [SKIP][299] ([i915#3281]) -> [SKIP][300] ([i915#14544] / [i915#3281]) +2 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html

  * igt@gem_exec_reloc@basic-write-read:
    - shard-rkl:          [SKIP][301] ([i915#14544] / [i915#3281]) -> [SKIP][302] ([i915#3281]) +5 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-rkl:          [SKIP][303] ([i915#14544] / [i915#4613] / [i915#7582]) -> [SKIP][304] ([i915#4613] / [i915#7582])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-rkl:          [SKIP][305] ([i915#4613]) -> [SKIP][306] ([i915#14544] / [i915#4613]) +1 other test skip
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_lmem_swapping@random:
    - shard-rkl:          [SKIP][307] ([i915#14544] / [i915#4613]) -> [SKIP][308] ([i915#4613])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gem_lmem_swapping@random.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@gem_lmem_swapping@random.html

  * igt@gem_partial_pwrite_pread@reads-snoop:
    - shard-rkl:          [SKIP][309] ([i915#3282]) -> [SKIP][310] ([i915#14544] / [i915#3282]) +1 other test skip
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-snoop.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-snoop.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-rkl:          [SKIP][311] ([i915#3297]) -> [SKIP][312] ([i915#14544] / [i915#3297]) +1 other test skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@gem_userptr_blits@coherency-unsync.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@unsync-unmap-after-close:
    - shard-rkl:          [SKIP][313] ([i915#14544] / [i915#3297]) -> [SKIP][314] ([i915#3297])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-rkl:          [SKIP][315] ([i915#2527]) -> [SKIP][316] ([i915#14544] / [i915#2527]) +1 other test skip
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@gen9_exec_parse@bb-secure.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@cmd-crossing-page:
    - shard-rkl:          [SKIP][317] ([i915#14544] / [i915#2527]) -> [SKIP][318] ([i915#2527]) +1 other test skip
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@gen9_exec_parse@cmd-crossing-page.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          [SKIP][319] ([i915#6412]) -> [SKIP][320] ([i915#14544] / [i915#6412])
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@i915_module_load@resize-bar.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@i915_module_load@resize-bar.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-rkl:          [SKIP][321] ([i915#5286]) -> [SKIP][322] ([i915#14544] / [i915#5286]) +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-rkl:          [SKIP][323] ([i915#14544] / [i915#5286]) -> [SKIP][324] ([i915#5286]) +2 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/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:          [SKIP][325] ([i915#14544] / [i915#3638]) -> [SKIP][326] ([i915#3638])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-rkl:          [SKIP][327] ([i915#3638]) -> [SKIP][328] ([i915#14544] / [i915#3638])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-rkl:          [SKIP][329] -> [SKIP][330] ([i915#14544]) +4 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-rkl:          [SKIP][331] ([i915#14544]) -> [SKIP][332] +9 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][333] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][334] ([i915#14098] / [i915#6095]) +9 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
    - shard-rkl:          [SKIP][335] ([i915#14098] / [i915#6095]) -> [SKIP][336] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-3:
    - shard-dg1:          [SKIP][337] ([i915#4423] / [i915#6095]) -> [SKIP][338] ([i915#6095]) +1 other test skip
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-3.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-glk:          [INCOMPLETE][339] ([i915#15582]) -> [INCOMPLETE][340] ([i915#14694] / [i915#15582]) +1 other test incomplete
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][341] ([i915#14544] / [i915#6095]) -> [SKIP][342] ([i915#6095]) +9 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-rkl:          [SKIP][343] ([i915#12313]) -> [SKIP][344] ([i915#12313] / [i915#14544])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_chamelium_edid@dp-mode-timings:
    - shard-rkl:          [SKIP][345] ([i915#11151] / [i915#7828]) -> [SKIP][346] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_chamelium_edid@dp-mode-timings.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-rkl:          [SKIP][347] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][348] ([i915#11151] / [i915#7828]) +2 other tests skip
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@mei-interface:
    - shard-rkl:          [SKIP][349] ([i915#6944] / [i915#9424]) -> [SKIP][350] ([i915#14544] / [i915#6944] / [i915#9424])
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_content_protection@mei-interface.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@uevent:
    - shard-rkl:          [SKIP][351] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][352] ([i915#6944] / [i915#7118] / [i915#9424])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_content_protection@uevent.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-rkl:          [SKIP][353] ([i915#13049]) -> [SKIP][354] ([i915#13049] / [i915#14544])
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-rkl:          [SKIP][355] ([i915#13691]) -> [SKIP][356] ([i915#13691] / [i915#14544])
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-rkl:          [SKIP][357] ([i915#13749] / [i915#14544]) -> [SKIP][358] ([i915#13749])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-rkl:          [SKIP][359] ([i915#13748] / [i915#14544]) -> [SKIP][360] ([i915#13748])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-rkl:          [SKIP][361] ([i915#13707]) -> [SKIP][362] ([i915#13707] / [i915#14544])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-rkl:          [SKIP][363] ([i915#9337]) -> [SKIP][364] ([i915#14544] / [i915#9337])
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-rkl:          [SKIP][365] ([i915#9934]) -> [SKIP][366] ([i915#14544] / [i915#9934]) +1 other test skip
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-flip-vs-panning:
    - shard-rkl:          [SKIP][367] ([i915#14544] / [i915#9934]) -> [SKIP][368] ([i915#9934]) +3 other tests skip
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk:          [INCOMPLETE][369] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][370] ([i915#12745] / [i915#4839] / [i915#6113])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [INCOMPLETE][371] ([i915#12314] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][372] ([i915#4839] / [i915#6113])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-glk:          [INCOMPLETE][373] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][374] ([i915#12745] / [i915#4839])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-glk2/igt@kms_flip@flip-vs-suspend.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk9/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-glk:          [INCOMPLETE][375] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][376] ([i915#12745] / [i915#4839] / [i915#6113])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
    - shard-glk:          [INCOMPLETE][377] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][378] ([i915#12745])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-glk2/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
    - shard-rkl:          [SKIP][379] ([i915#14544] / [i915#15643]) -> [SKIP][380] ([i915#15643])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-rkl:          [SKIP][381] ([i915#15643]) -> [SKIP][382] ([i915#14544] / [i915#15643]) +1 other test skip
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][383] ([i915#15102]) -> [SKIP][384] ([i915#14544] / [i915#15102])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite:
    - shard-rkl:          [SKIP][385] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][386] ([i915#15102] / [i915#3023]) +5 other tests skip
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][387] ([i915#15102] / [i915#3023]) -> [SKIP][388] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][389] ([i915#1825]) -> [SKIP][390] ([i915#14544] / [i915#1825]) +9 other tests skip
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
    - shard-rkl:          [SKIP][391] ([i915#14544] / [i915#1825]) -> [SKIP][392] ([i915#1825]) +15 other tests skip
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
    - shard-dg2:          [SKIP][393] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][394] ([i915#15102] / [i915#3458])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][395] ([i915#14544] / [i915#15102]) -> [SKIP][396] ([i915#15102]) +1 other test skip
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2:          [SKIP][397] ([i915#15102] / [i915#3458]) -> [SKIP][398] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_hdr@invalid-hdr:
    - shard-rkl:          [SKIP][399] ([i915#3555] / [i915#8228]) -> [SKIP][400] ([i915#14544] / [i915#3555] / [i915#8228])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_hdr@invalid-hdr.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-rkl:          [SKIP][401] ([i915#14544] / [i915#15458]) -> [SKIP][402] ([i915#15458])
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-rkl:          [SKIP][403] ([i915#15459]) -> [SKIP][404] ([i915#14544] / [i915#15459])
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
    - shard-rkl:          [SKIP][405] ([i915#14544] / [i915#15709]) -> [SKIP][406] ([i915#15709]) +1 other test skip
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
    - shard-rkl:          [SKIP][407] ([i915#15709]) -> [SKIP][408] ([i915#14544] / [i915#15709]) +1 other test skip
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-rkl:          [SKIP][409] ([i915#3555]) -> [SKIP][410] ([i915#14544] / [i915#3555]) +1 other test skip
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-rkl:          [SKIP][411] ([i915#13958] / [i915#14544]) -> [SKIP][412] ([i915#13958])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
    - shard-rkl:          [SKIP][413] ([i915#14544] / [i915#15329] / [i915#3555]) -> [SKIP][414] ([i915#15329] / [i915#3555])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
    - shard-rkl:          [SKIP][415] ([i915#14544] / [i915#15329]) -> [SKIP][416] ([i915#15329]) +6 other tests skip
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-rkl:          [SKIP][417] ([i915#5354]) -> [SKIP][418] ([i915#14544] / [i915#5354])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-tglu:         [SKIP][419] ([i915#15128]) -> [FAIL][420] ([i915#15752])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg1:          [DMESG-WARN][421] ([i915#4423]) -> [SKIP][422] ([i915#15073])
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
    - shard-rkl:          [SKIP][423] ([i915#11520]) -> [SKIP][424] ([i915#11520] / [i915#14544]) +3 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
    - shard-rkl:          [SKIP][425] ([i915#11520] / [i915#14544]) -> [SKIP][426] ([i915#11520]) +2 other tests skip
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr@psr-cursor-mmap-cpu:
    - shard-rkl:          [SKIP][427] ([i915#1072] / [i915#9732]) -> [SKIP][428] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_psr@psr-cursor-mmap-cpu.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html

  * igt@kms_psr@psr2-primary-mmap-gtt:
    - shard-rkl:          [SKIP][429] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][430] ([i915#1072] / [i915#9732]) +7 other tests skip
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@kms_psr@psr2-primary-mmap-gtt.html

  * igt@kms_scaling_modes@scaling-mode-none:
    - shard-rkl:          [SKIP][431] ([i915#14544] / [i915#3555]) -> [SKIP][432] ([i915#3555]) +1 other test skip
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-2/igt@kms_scaling_modes@scaling-mode-none.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-rkl:          [SKIP][433] ([i915#9906]) -> [SKIP][434] ([i915#14544] / [i915#9906])
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@perf@unprivileged-single-ctx-counters:
    - shard-rkl:          [SKIP][435] ([i915#2433]) -> [SKIP][436] ([i915#14544] / [i915#2433])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html

  * igt@prime_vgem@basic-read:
    - shard-rkl:          [SKIP][437] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][438] ([i915#3291] / [i915#3708])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@prime_vgem@basic-read.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@prime_vgem@basic-read.html

  * igt@prime_vgem@coherency-gtt:
    - shard-rkl:          [SKIP][439] ([i915#14544] / [i915#3708]) -> [SKIP][440] ([i915#3708]) +1 other test skip
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@prime_vgem@coherency-gtt.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-rkl:          [SKIP][441] ([i915#3708]) -> [SKIP][442] ([i915#14544] / [i915#3708])
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-rkl:          [SKIP][443] ([i915#14544] / [i915#9917]) -> [SKIP][444] ([i915#9917])
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each:
    - shard-rkl:          [SKIP][445] ([i915#9917]) -> [SKIP][446] ([i915#14544] / [i915#9917])
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162934v2/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html

  
  [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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
  [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
  [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
  [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
  [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
  [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
  [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
  [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
  [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
  [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
  [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
  [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
  [i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734
  [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15791]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15791
  [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
  [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [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#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
  [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
  [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * Linux: CI_DRM_18125 -> Patchwork_162934v2

  CI-20190529: 20190529
  CI_DRM_18125: e2ad8f051843c953c01f8609c8b392abc2bd5c82 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8792: 8792
  Patchwork_162934v2: e2ad8f051843c953c01f8609c8b392abc2bd5c82 @ 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_162934v2/index.html

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

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

* RE: [PATCH 1/2] drm/i915/dmc: Remove invalid PIPEDMC interrupt bits
  2026-03-11  6:32 ` [PATCH 1/2] drm/i915/dmc: Remove invalid PIPEDMC interrupt bits Dibin Moolakadan Subrahmanian
@ 2026-03-12  3:10   ` Kandpal, Suraj
  2026-03-12 12:24     ` Dibin Moolakadan Subrahmanian
  0 siblings, 1 reply; 17+ messages in thread
From: Kandpal, Suraj @ 2026-03-12  3:10 UTC (permalink / raw)
  To: Dibin Moolakadan Subrahmanian, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Shankar,  Uma, Sharma, Swati2

> Subject: [PATCH 1/2] drm/i915/dmc: Remove invalid PIPEDMC interrupt bits
> 
> On display version 35+ PIPEDMC_ATS_FAULT and PIPEDMC_GTT_FAULT
> interrupt bits are no longer defined.
> 
> Update the interrupt mask to drop these.
> 

Add the Bspec link for register in commit message
so that reviewer can verify this if required in this case.

Bspec: 70296

Otherwise LGTM,
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>

> Signed-off-by: Dibin Moolakadan Subrahmanian
> <dibin.moolakadan.subrahmanian@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dmc.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c
> b/drivers/gpu/drm/i915/display/intel_dmc.c
> index c3b411259a0c..38b284a0db82 100644
> --- a/drivers/gpu/drm/i915/display/intel_dmc.c
> +++ b/drivers/gpu/drm/i915/display/intel_dmc.c
> @@ -509,6 +509,9 @@ static void pipedmc_clock_gating_wa(struct
> intel_display *display, bool enable)
> 
>  static u32 pipedmc_interrupt_mask(struct intel_display *display)  {
> +	if (DISPLAY_VER(display) >= 35)
> +		return PIPEDMC_FLIPQ_PROG_DONE;
> +
>  	/*
>  	 * FIXME PIPEDMC_ERROR not enabled for now due to LNL pipe B
>  	 * triggering it during the first DC state transition. Figure
> --
> 2.43.0


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

* RE: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-11  6:32 ` [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt Dibin Moolakadan Subrahmanian
@ 2026-03-12  3:18   ` Kandpal, Suraj
  2026-03-12 12:28     ` Dibin Moolakadan Subrahmanian
  0 siblings, 1 reply; 17+ messages in thread
From: Kandpal, Suraj @ 2026-03-12  3:18 UTC (permalink / raw)
  To: Dibin Moolakadan Subrahmanian, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Shankar,  Uma, Sharma, Swati2

> Subject: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
> 
> Enable PIPEDMC_ERROR interrupt bit for display version 35+.
> 

Add same Bspec link here too

> Signed-off-by: Dibin Moolakadan Subrahmanian
> <dibin.moolakadan.subrahmanian@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dmc.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c
> b/drivers/gpu/drm/i915/display/intel_dmc.c
> index 38b284a0db82..e60f1f977070 100644
> --- a/drivers/gpu/drm/i915/display/intel_dmc.c
> +++ b/drivers/gpu/drm/i915/display/intel_dmc.c
> @@ -510,7 +510,8 @@ static void pipedmc_clock_gating_wa(struct
> intel_display *display, bool enable)  static u32 pipedmc_interrupt_mask(struct
> intel_display *display)  {
>  	if (DISPLAY_VER(display) >= 35)
> -		return PIPEDMC_FLIPQ_PROG_DONE;
> +		return PIPEDMC_FLIPQ_PROG_DONE |
> +			PIPEDMC_ERROR;
> 

Mostly looks okay but here's my question:
I know LNL pipe B had an issue with PIPEDMC_ERROR being triggered on LNL pipe B,
As I can see from Ville's commit message, but is it still the case for PTL ?
Can we have that tested ?
If that works we can add the PIPEDMC_ERROR from PTL onwards.
Then here we can change code to create a mask and then return it finally like :

mask = PIPEDMC_FLIPQ_PROG_DONE

if display ver >= 30
mask |= PIPEDMC_ERROR

if display ver < 35
mask |= PIPEDMC_GTT_FAULT |
                PIPEDMC_ATS_FAULT;

Return mask;

Obviously that is if PIPEDMC_ERROR works on PTL properly.

Regards,
Suraj Kandpal

>  	/*
>  	 * FIXME PIPEDMC_ERROR not enabled for now due to LNL pipe B
> --
> 2.43.0


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

* Re: [PATCH 1/2] drm/i915/dmc: Remove invalid PIPEDMC interrupt bits
  2026-03-12  3:10   ` Kandpal, Suraj
@ 2026-03-12 12:24     ` Dibin Moolakadan Subrahmanian
  0 siblings, 0 replies; 17+ messages in thread
From: Dibin Moolakadan Subrahmanian @ 2026-03-12 12:24 UTC (permalink / raw)
  To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Shankar,  Uma, Sharma, Swati2

On 12-03-2026 08:40, Kandpal, Suraj wrote:
>> Subject: [PATCH 1/2] drm/i915/dmc: Remove invalid PIPEDMC interrupt bits
>>
>> On display version 35+ PIPEDMC_ATS_FAULT and PIPEDMC_GTT_FAULT
>> interrupt bits are no longer defined.
>>
>> Update the interrupt mask to drop these.
>>
> Add the Bspec link for register in commit message
> so that reviewer can verify this if required in this case.
>
> Bspec: 70296

I will add Bspec number.

Regards,
Dibin

> Otherwise LGTM,
> Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
>
>> Signed-off-by: Dibin Moolakadan Subrahmanian
>> <dibin.moolakadan.subrahmanian@intel.com>
>> ---
>>   drivers/gpu/drm/i915/display/intel_dmc.c | 3 +++
>>   1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c
>> b/drivers/gpu/drm/i915/display/intel_dmc.c
>> index c3b411259a0c..38b284a0db82 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dmc.c
>> +++ b/drivers/gpu/drm/i915/display/intel_dmc.c
>> @@ -509,6 +509,9 @@ static void pipedmc_clock_gating_wa(struct
>> intel_display *display, bool enable)
>>
>>   static u32 pipedmc_interrupt_mask(struct intel_display *display)  {
>> +	if (DISPLAY_VER(display) >= 35)
>> +		return PIPEDMC_FLIPQ_PROG_DONE;
>> +
>>   	/*
>>   	 * FIXME PIPEDMC_ERROR not enabled for now due to LNL pipe B
>>   	 * triggering it during the first DC state transition. Figure
>> --
>> 2.43.0

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

* Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-12  3:18   ` Kandpal, Suraj
@ 2026-03-12 12:28     ` Dibin Moolakadan Subrahmanian
  2026-03-13  3:26       ` Kandpal, Suraj
  0 siblings, 1 reply; 17+ messages in thread
From: Dibin Moolakadan Subrahmanian @ 2026-03-12 12:28 UTC (permalink / raw)
  To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Shankar,  Uma, Sharma, Swati2


On 12-03-2026 08:48, Kandpal, Suraj wrote:
>> Subject: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
>>
>> Enable PIPEDMC_ERROR interrupt bit for display version 35+.
>>
> Add same Bspec link here too
>
>> Signed-off-by: Dibin Moolakadan Subrahmanian
>> <dibin.moolakadan.subrahmanian@intel.com>
>> ---
>>   drivers/gpu/drm/i915/display/intel_dmc.c | 3 ++-
>>   1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c
>> b/drivers/gpu/drm/i915/display/intel_dmc.c
>> index 38b284a0db82..e60f1f977070 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dmc.c
>> +++ b/drivers/gpu/drm/i915/display/intel_dmc.c
>> @@ -510,7 +510,8 @@ static void pipedmc_clock_gating_wa(struct
>> intel_display *display, bool enable)  static u32 pipedmc_interrupt_mask(struct
>> intel_display *display)  {
>>   	if (DISPLAY_VER(display) >= 35)
>> -		return PIPEDMC_FLIPQ_PROG_DONE;
>> +		return PIPEDMC_FLIPQ_PROG_DONE |
>> +			PIPEDMC_ERROR;
>>
> Mostly looks okay but here's my question:
> I know LNL pipe B had an issue with PIPEDMC_ERROR being triggered on LNL pipe B,
> As I can see from Ville's commit message, but is it still the case for PTL ?
> Can we have that tested ?
> If that works we can add the PIPEDMC_ERROR from PTL onwards.
> Then here we can change code to create a mask and then return it finally like :
>
> mask = PIPEDMC_FLIPQ_PROG_DONE
>
> if display ver >= 30
> mask |= PIPEDMC_ERROR
>
> if display ver < 35
> mask |= PIPEDMC_GTT_FAULT |
>                  PIPEDMC_ATS_FAULT;
>
> Return mask;
>
> Obviously that is if PIPEDMC_ERROR works on PTL properly.

Thank you for spotting this, I think its better to add above  logic in new series
rather than combing with 35+ bit mask update.

Regards,
Dibin

>
> Regards,
> Suraj Kandpal
>
>>   	/*
>>   	 * FIXME PIPEDMC_ERROR not enabled for now due to LNL pipe B
>> --
>> 2.43.0

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

* RE: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-12 12:28     ` Dibin Moolakadan Subrahmanian
@ 2026-03-13  3:26       ` Kandpal, Suraj
  2026-03-13  4:25         ` Dibin Moolakadan Subrahmanian
  0 siblings, 1 reply; 17+ messages in thread
From: Kandpal, Suraj @ 2026-03-13  3:26 UTC (permalink / raw)
  To: Dibin Moolakadan Subrahmanian, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Shankar,  Uma, Sharma, Swati2

> On 12-03-2026 08:48, Kandpal, Suraj wrote:
> >> Subject: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
> >>
> >> Enable PIPEDMC_ERROR interrupt bit for display version 35+.
> >>
> > Add same Bspec link here too
> >
> >> Signed-off-by: Dibin Moolakadan Subrahmanian
> >> <dibin.moolakadan.subrahmanian@intel.com>
> >> ---
> >>   drivers/gpu/drm/i915/display/intel_dmc.c | 3 ++-
> >>   1 file changed, 2 insertions(+), 1 deletion(-)
> >>
> >> diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c
> >> b/drivers/gpu/drm/i915/display/intel_dmc.c
> >> index 38b284a0db82..e60f1f977070 100644
> >> --- a/drivers/gpu/drm/i915/display/intel_dmc.c
> >> +++ b/drivers/gpu/drm/i915/display/intel_dmc.c
> >> @@ -510,7 +510,8 @@ static void pipedmc_clock_gating_wa(struct
> >> intel_display *display, bool enable)  static u32
> >> pipedmc_interrupt_mask(struct intel_display *display)  {
> >>   	if (DISPLAY_VER(display) >= 35)
> >> -		return PIPEDMC_FLIPQ_PROG_DONE;
> >> +		return PIPEDMC_FLIPQ_PROG_DONE |
> >> +			PIPEDMC_ERROR;
> >>
> > Mostly looks okay but here's my question:
> > I know LNL pipe B had an issue with PIPEDMC_ERROR being triggered on
> > LNL pipe B, As I can see from Ville's commit message, but is it still the case for
> PTL ?
> > Can we have that tested ?
> > If that works we can add the PIPEDMC_ERROR from PTL onwards.
> > Then here we can change code to create a mask and then return it finally like
> :
> >
> > mask = PIPEDMC_FLIPQ_PROG_DONE
> >
> > if display ver >= 30
> > mask |= PIPEDMC_ERROR
> >
> > if display ver < 35
> > mask |= PIPEDMC_GTT_FAULT |
> >                  PIPEDMC_ATS_FAULT;
> >
> > Return mask;
> >
> > Obviously that is if PIPEDMC_ERROR works on PTL properly.
> 
> Thank you for spotting this, I think its better to add above  logic in new series
> rather than combing with 35+ bit mask update.
> 
> Regards,
> Dibin

If that is the case then I think its better to drop this patch altogether.
We have a justification of why we remove bits in first patch, that was a change in NVL H/w.
But this change was introduced in LNL.
Without a strong reasoning of why you are enabling this is in NVL and not in PTL (which I don’t see in this patch series)
I suggest you add this patch with as a part of the series where you have a use case for it. And if there too you only add it for NVL
You will need to add a comments as to why this is not enabled for PTL.

Regards,
Suraj Kandpal


> 
> >
> > Regards,
> > Suraj Kandpal
> >
> >>   	/*
> >>   	 * FIXME PIPEDMC_ERROR not enabled for now due to LNL pipe B
> >> --
> >> 2.43.0

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

* Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-13  3:26       ` Kandpal, Suraj
@ 2026-03-13  4:25         ` Dibin Moolakadan Subrahmanian
  2026-03-13  5:04           ` Kandpal, Suraj
  0 siblings, 1 reply; 17+ messages in thread
From: Dibin Moolakadan Subrahmanian @ 2026-03-13  4:25 UTC (permalink / raw)
  To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Shankar,  Uma, Sharma, Swati2


On 13-03-2026 08:56, Kandpal, Suraj wrote:
>> On 12-03-2026 08:48, Kandpal, Suraj wrote:
>>>> Subject: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
>>>>
>>>> Enable PIPEDMC_ERROR interrupt bit for display version 35+.
>>>>
>>> Add same Bspec link here too
>>>
>>>> Signed-off-by: Dibin Moolakadan Subrahmanian
>>>> <dibin.moolakadan.subrahmanian@intel.com>
>>>> ---
>>>>    drivers/gpu/drm/i915/display/intel_dmc.c | 3 ++-
>>>>    1 file changed, 2 insertions(+), 1 deletion(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c
>>>> b/drivers/gpu/drm/i915/display/intel_dmc.c
>>>> index 38b284a0db82..e60f1f977070 100644
>>>> --- a/drivers/gpu/drm/i915/display/intel_dmc.c
>>>> +++ b/drivers/gpu/drm/i915/display/intel_dmc.c
>>>> @@ -510,7 +510,8 @@ static void pipedmc_clock_gating_wa(struct
>>>> intel_display *display, bool enable)  static u32
>>>> pipedmc_interrupt_mask(struct intel_display *display)  {
>>>>    	if (DISPLAY_VER(display) >= 35)
>>>> -		return PIPEDMC_FLIPQ_PROG_DONE;
>>>> +		return PIPEDMC_FLIPQ_PROG_DONE |
>>>> +			PIPEDMC_ERROR;
>>>>
>>> Mostly looks okay but here's my question:
>>> I know LNL pipe B had an issue with PIPEDMC_ERROR being triggered on
>>> LNL pipe B, As I can see from Ville's commit message, but is it still the case for
>> PTL ?
>>> Can we have that tested ?
>>> If that works we can add the PIPEDMC_ERROR from PTL onwards.
>>> Then here we can change code to create a mask and then return it finally like
>> :
>>> mask = PIPEDMC_FLIPQ_PROG_DONE
>>>
>>> if display ver >= 30
>>> mask |= PIPEDMC_ERROR
>>>
>>> if display ver < 35
>>> mask |= PIPEDMC_GTT_FAULT |
>>>                   PIPEDMC_ATS_FAULT;
>>>
>>> Return mask;
>>>
>>> Obviously that is if PIPEDMC_ERROR works on PTL properly.
>> Thank you for spotting this, I think its better to add above  logic in new series
>> rather than combing with 35+ bit mask update.
>>
>> Regards,
>> Dibin
> If that is the case then I think its better to drop this patch altogether.
> We have a justification of why we remove bits in first patch, that was a change in NVL H/w.
> But this change was introduced in LNL.
> Without a strong reasoning of why you are enabling this is in NVL and not in PTL (which I don’t see in this patch series)
> I suggest you add this patch with as a part of the series where you have a use case for it. And if there too you only add it for NVL
> You will need to add a comments as to why this is not enabled for PTL.

This patch intent to fix the interrupt mask for 35+.
I dont see any reason to disable this bit as
1) error bit warning is already present in interrupt handler.
2) bit is defined in bsepc.
3) LNL it was mentioned disabled because pipeB triggering it during first DC state transition
which did not see in this case.

Regards,
Dibin

>
> Regards,
> Suraj Kandpal
>
>
>>> Regards,
>>> Suraj Kandpal
>>>
>>>>    	/*
>>>>    	 * FIXME PIPEDMC_ERROR not enabled for now due to LNL pipe B
>>>> --
>>>> 2.43.0

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

* RE: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-13  4:25         ` Dibin Moolakadan Subrahmanian
@ 2026-03-13  5:04           ` Kandpal, Suraj
  2026-03-13 10:03             ` Ville Syrjälä
  0 siblings, 1 reply; 17+ messages in thread
From: Kandpal, Suraj @ 2026-03-13  5:04 UTC (permalink / raw)
  To: Dibin Moolakadan Subrahmanian, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Shankar,  Uma, Sharma, Swati2,
	Nikula, Jani



> -----Original Message-----
> From: Dibin Moolakadan Subrahmanian
> <dibin.moolakadan.subrahmanian@intel.com>
> Sent: Friday, March 13, 2026 9:55 AM
> To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-gfx@lists.freedesktop.org;
> intel-xe@lists.freedesktop.org
> Cc: ville.syrjala@linux.intel.com; Shankar, Uma <uma.shankar@intel.com>;
> Sharma, Swati2 <swati2.sharma@intel.com>
> Subject: Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
> 
> 
> On 13-03-2026 08:56, Kandpal, Suraj wrote:
> >> On 12-03-2026 08:48, Kandpal, Suraj wrote:
> >>>> Subject: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
> >>>>
> >>>> Enable PIPEDMC_ERROR interrupt bit for display version 35+.
> >>>>
> >>> Add same Bspec link here too
> >>>
> >>>> Signed-off-by: Dibin Moolakadan Subrahmanian
> >>>> <dibin.moolakadan.subrahmanian@intel.com>
> >>>> ---
> >>>>    drivers/gpu/drm/i915/display/intel_dmc.c | 3 ++-
> >>>>    1 file changed, 2 insertions(+), 1 deletion(-)
> >>>>
> >>>> diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c
> >>>> b/drivers/gpu/drm/i915/display/intel_dmc.c
> >>>> index 38b284a0db82..e60f1f977070 100644
> >>>> --- a/drivers/gpu/drm/i915/display/intel_dmc.c
> >>>> +++ b/drivers/gpu/drm/i915/display/intel_dmc.c
> >>>> @@ -510,7 +510,8 @@ static void pipedmc_clock_gating_wa(struct
> >>>> intel_display *display, bool enable)  static u32
> >>>> pipedmc_interrupt_mask(struct intel_display *display)  {
> >>>>    	if (DISPLAY_VER(display) >= 35)
> >>>> -		return PIPEDMC_FLIPQ_PROG_DONE;
> >>>> +		return PIPEDMC_FLIPQ_PROG_DONE |
> >>>> +			PIPEDMC_ERROR;
> >>>>
> >>> Mostly looks okay but here's my question:
> >>> I know LNL pipe B had an issue with PIPEDMC_ERROR being triggered on
> >>> LNL pipe B, As I can see from Ville's commit message, but is it
> >>> still the case for
> >> PTL ?
> >>> Can we have that tested ?
> >>> If that works we can add the PIPEDMC_ERROR from PTL onwards.
> >>> Then here we can change code to create a mask and then return it
> >>> finally like
> >> :
> >>> mask = PIPEDMC_FLIPQ_PROG_DONE
> >>>
> >>> if display ver >= 30
> >>> mask |= PIPEDMC_ERROR
> >>>
> >>> if display ver < 35
> >>> mask |= PIPEDMC_GTT_FAULT |
> >>>                   PIPEDMC_ATS_FAULT;
> >>>
> >>> Return mask;
> >>>
> >>> Obviously that is if PIPEDMC_ERROR works on PTL properly.
> >> Thank you for spotting this, I think its better to add above  logic
> >> in new series rather than combing with 35+ bit mask update.
> >>
> >> Regards,
> >> Dibin
> > If that is the case then I think its better to drop this patch altogether.
> > We have a justification of why we remove bits in first patch, that was a change
> in NVL H/w.
> > But this change was introduced in LNL.
> > Without a strong reasoning of why you are enabling this is in NVL and
> > not in PTL (which I don’t see in this patch series) I suggest you add
> > this patch with as a part of the series where you have a use case for it. And if
> there too you only add it for NVL You will need to add a comments as to why
> this is not enabled for PTL.
> 
> This patch intent to fix the interrupt mask for 35+.
> I dont see any reason to disable this bit as
> 1) error bit warning is already present in interrupt handler.
> 2) bit is defined in bsepc.
> 3) LNL it was mentioned disabled because pipeB triggering it during first DC
> state transition which did not see in this case.

In that case the interrupt handler is made to report errors if this bit is unmasked for  >= LNL.
Now this bit is introduced in LNL timeframe for which the reason to not add it is mentioned in comment and documented.
Similarly if you want to skip PTL you will need this to be documented with the reason. Which means the FIXME comment needs to be modified
In the least. If this patch is to go through.
Also Ville can you shed some light, on what the H/w folks had to say regarding this and if they had mentioned any WA for LNL, and if this is fixed
In LNL+.

Regards,
Suraj Kandpal

> 
> Regards,
> Dibin
> 
> >
> > Regards,
> > Suraj Kandpal
> >
> >
> >>> Regards,
> >>> Suraj Kandpal
> >>>
> >>>>    	/*
> >>>>    	 * FIXME PIPEDMC_ERROR not enabled for now due to LNL pipe B
> >>>> --
> >>>> 2.43.0

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

* Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-13  5:04           ` Kandpal, Suraj
@ 2026-03-13 10:03             ` Ville Syrjälä
  2026-03-13 10:08               ` Kandpal, Suraj
  0 siblings, 1 reply; 17+ messages in thread
From: Ville Syrjälä @ 2026-03-13 10:03 UTC (permalink / raw)
  To: Kandpal, Suraj
  Cc: Dibin Moolakadan Subrahmanian, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org, Shankar, Uma, Sharma, Swati2,
	Nikula, Jani

On Fri, Mar 13, 2026 at 05:04:46AM +0000, Kandpal, Suraj wrote:
> 
> 
> > -----Original Message-----
> > From: Dibin Moolakadan Subrahmanian
> > <dibin.moolakadan.subrahmanian@intel.com>
> > Sent: Friday, March 13, 2026 9:55 AM
> > To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-gfx@lists.freedesktop.org;
> > intel-xe@lists.freedesktop.org
> > Cc: ville.syrjala@linux.intel.com; Shankar, Uma <uma.shankar@intel.com>;
> > Sharma, Swati2 <swati2.sharma@intel.com>
> > Subject: Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
> > 
> > 
> > On 13-03-2026 08:56, Kandpal, Suraj wrote:
> > >> On 12-03-2026 08:48, Kandpal, Suraj wrote:
> > >>>> Subject: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
> > >>>>
> > >>>> Enable PIPEDMC_ERROR interrupt bit for display version 35+.
> > >>>>
> > >>> Add same Bspec link here too
> > >>>
> > >>>> Signed-off-by: Dibin Moolakadan Subrahmanian
> > >>>> <dibin.moolakadan.subrahmanian@intel.com>
> > >>>> ---
> > >>>>    drivers/gpu/drm/i915/display/intel_dmc.c | 3 ++-
> > >>>>    1 file changed, 2 insertions(+), 1 deletion(-)
> > >>>>
> > >>>> diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c
> > >>>> b/drivers/gpu/drm/i915/display/intel_dmc.c
> > >>>> index 38b284a0db82..e60f1f977070 100644
> > >>>> --- a/drivers/gpu/drm/i915/display/intel_dmc.c
> > >>>> +++ b/drivers/gpu/drm/i915/display/intel_dmc.c
> > >>>> @@ -510,7 +510,8 @@ static void pipedmc_clock_gating_wa(struct
> > >>>> intel_display *display, bool enable)  static u32
> > >>>> pipedmc_interrupt_mask(struct intel_display *display)  {
> > >>>>    	if (DISPLAY_VER(display) >= 35)
> > >>>> -		return PIPEDMC_FLIPQ_PROG_DONE;
> > >>>> +		return PIPEDMC_FLIPQ_PROG_DONE |
> > >>>> +			PIPEDMC_ERROR;
> > >>>>
> > >>> Mostly looks okay but here's my question:
> > >>> I know LNL pipe B had an issue with PIPEDMC_ERROR being triggered on
> > >>> LNL pipe B, As I can see from Ville's commit message, but is it
> > >>> still the case for
> > >> PTL ?
> > >>> Can we have that tested ?
> > >>> If that works we can add the PIPEDMC_ERROR from PTL onwards.
> > >>> Then here we can change code to create a mask and then return it
> > >>> finally like
> > >> :
> > >>> mask = PIPEDMC_FLIPQ_PROG_DONE
> > >>>
> > >>> if display ver >= 30
> > >>> mask |= PIPEDMC_ERROR
> > >>>
> > >>> if display ver < 35
> > >>> mask |= PIPEDMC_GTT_FAULT |
> > >>>                   PIPEDMC_ATS_FAULT;
> > >>>
> > >>> Return mask;
> > >>>
> > >>> Obviously that is if PIPEDMC_ERROR works on PTL properly.
> > >> Thank you for spotting this, I think its better to add above  logic
> > >> in new series rather than combing with 35+ bit mask update.
> > >>
> > >> Regards,
> > >> Dibin
> > > If that is the case then I think its better to drop this patch altogether.
> > > We have a justification of why we remove bits in first patch, that was a change
> > in NVL H/w.
> > > But this change was introduced in LNL.
> > > Without a strong reasoning of why you are enabling this is in NVL and
> > > not in PTL (which I don’t see in this patch series) I suggest you add
> > > this patch with as a part of the series where you have a use case for it. And if
> > there too you only add it for NVL You will need to add a comments as to why
> > this is not enabled for PTL.
> > 
> > This patch intent to fix the interrupt mask for 35+.
> > I dont see any reason to disable this bit as
> > 1) error bit warning is already present in interrupt handler.
> > 2) bit is defined in bsepc.
> > 3) LNL it was mentioned disabled because pipeB triggering it during first DC
> > state transition which did not see in this case.
> 
> In that case the interrupt handler is made to report errors if this bit is unmasked for  >= LNL.
> Now this bit is introduced in LNL timeframe for which the reason to not add it is mentioned in comment and documented.
> Similarly if you want to skip PTL you will need this to be documented with the reason. Which means the FIXME comment needs to be modified
> In the least. If this patch is to go through.
> Also Ville can you shed some light, on what the H/w folks had to say regarding this and if they had mentioned any WA for LNL, and if this is fixed
> In LNL+.

I suspect it might be some kind of issue in the DMC firmware where
it's accessing unpowered registers. But it was never investigated
properly.

It would be good if someone could take that up and actually figure
out what's going on. The problem is figuring out what exactly is
the register that causes this. I don't think LNL has any kind of
RM_CAPTURE register/etc available for the DMC that would directly
tell us that :(

IIRC the Windows driver did seem to enable the error interrupt on
LNL, but either they just ignore all the reported errors, or somehow
the way they use the hardware/firmware doesn't trigger them.

-- 
Ville Syrjälä
Intel

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

* RE: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-13 10:03             ` Ville Syrjälä
@ 2026-03-13 10:08               ` Kandpal, Suraj
  2026-03-13 11:25                 ` Ville Syrjälä
  0 siblings, 1 reply; 17+ messages in thread
From: Kandpal, Suraj @ 2026-03-13 10:08 UTC (permalink / raw)
  To: Ville Syrjälä
  Cc: Dibin Moolakadan Subrahmanian, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org, Shankar, Uma, Sharma, Swati2,
	Nikula, Jani

> Subject: Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
> 
> On Fri, Mar 13, 2026 at 05:04:46AM +0000, Kandpal, Suraj wrote:
> >
> >
> > > -----Original Message-----
> > > From: Dibin Moolakadan Subrahmanian
> > > <dibin.moolakadan.subrahmanian@intel.com>
> > > Sent: Friday, March 13, 2026 9:55 AM
> > > To: Kandpal, Suraj <suraj.kandpal@intel.com>;
> > > intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> > > Cc: ville.syrjala@linux.intel.com; Shankar, Uma
> > > <uma.shankar@intel.com>; Sharma, Swati2 <swati2.sharma@intel.com>
> > > Subject: Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR
> > > interrupt
> > >
> > >
> > > On 13-03-2026 08:56, Kandpal, Suraj wrote:
> > > >> On 12-03-2026 08:48, Kandpal, Suraj wrote:
> > > >>>> Subject: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR
> > > >>>> interrupt
> > > >>>>
> > > >>>> Enable PIPEDMC_ERROR interrupt bit for display version 35+.
> > > >>>>
> > > >>> Add same Bspec link here too
> > > >>>
> > > >>>> Signed-off-by: Dibin Moolakadan Subrahmanian
> > > >>>> <dibin.moolakadan.subrahmanian@intel.com>
> > > >>>> ---
> > > >>>>    drivers/gpu/drm/i915/display/intel_dmc.c | 3 ++-
> > > >>>>    1 file changed, 2 insertions(+), 1 deletion(-)
> > > >>>>
> > > >>>> diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c
> > > >>>> b/drivers/gpu/drm/i915/display/intel_dmc.c
> > > >>>> index 38b284a0db82..e60f1f977070 100644
> > > >>>> --- a/drivers/gpu/drm/i915/display/intel_dmc.c
> > > >>>> +++ b/drivers/gpu/drm/i915/display/intel_dmc.c
> > > >>>> @@ -510,7 +510,8 @@ static void pipedmc_clock_gating_wa(struct
> > > >>>> intel_display *display, bool enable)  static u32
> > > >>>> pipedmc_interrupt_mask(struct intel_display *display)  {
> > > >>>>    	if (DISPLAY_VER(display) >= 35)
> > > >>>> -		return PIPEDMC_FLIPQ_PROG_DONE;
> > > >>>> +		return PIPEDMC_FLIPQ_PROG_DONE |
> > > >>>> +			PIPEDMC_ERROR;
> > > >>>>
> > > >>> Mostly looks okay but here's my question:
> > > >>> I know LNL pipe B had an issue with PIPEDMC_ERROR being
> > > >>> triggered on LNL pipe B, As I can see from Ville's commit
> > > >>> message, but is it still the case for
> > > >> PTL ?
> > > >>> Can we have that tested ?
> > > >>> If that works we can add the PIPEDMC_ERROR from PTL onwards.
> > > >>> Then here we can change code to create a mask and then return it
> > > >>> finally like
> > > >> :
> > > >>> mask = PIPEDMC_FLIPQ_PROG_DONE
> > > >>>
> > > >>> if display ver >= 30
> > > >>> mask |= PIPEDMC_ERROR
> > > >>>
> > > >>> if display ver < 35
> > > >>> mask |= PIPEDMC_GTT_FAULT |
> > > >>>                   PIPEDMC_ATS_FAULT;
> > > >>>
> > > >>> Return mask;
> > > >>>
> > > >>> Obviously that is if PIPEDMC_ERROR works on PTL properly.
> > > >> Thank you for spotting this, I think its better to add above
> > > >> logic in new series rather than combing with 35+ bit mask update.
> > > >>
> > > >> Regards,
> > > >> Dibin
> > > > If that is the case then I think its better to drop this patch altogether.
> > > > We have a justification of why we remove bits in first patch, that
> > > > was a change
> > > in NVL H/w.
> > > > But this change was introduced in LNL.
> > > > Without a strong reasoning of why you are enabling this is in NVL
> > > > and not in PTL (which I don’t see in this patch series) I suggest
> > > > you add this patch with as a part of the series where you have a
> > > > use case for it. And if
> > > there too you only add it for NVL You will need to add a comments as
> > > to why this is not enabled for PTL.
> > >
> > > This patch intent to fix the interrupt mask for 35+.
> > > I dont see any reason to disable this bit as
> > > 1) error bit warning is already present in interrupt handler.
> > > 2) bit is defined in bsepc.
> > > 3) LNL it was mentioned disabled because pipeB triggering it during
> > > first DC state transition which did not see in this case.
> >
> > In that case the interrupt handler is made to report errors if this bit is
> unmasked for  >= LNL.
> > Now this bit is introduced in LNL timeframe for which the reason to not add it
> is mentioned in comment and documented.
> > Similarly if you want to skip PTL you will need this to be documented
> > with the reason. Which means the FIXME comment needs to be modified In
> the least. If this patch is to go through.
> > Also Ville can you shed some light, on what the H/w folks had to say
> > regarding this and if they had mentioned any WA for LNL, and if this is fixed In
> LNL+.
> 
> I suspect it might be some kind of issue in the DMC firmware where it's
> accessing unpowered registers. But it was never investigated properly.
> 
> It would be good if someone could take that up and actually figure out what's
> going on. The problem is figuring out what exactly is the register that causes
> this. I don't think LNL has any kind of RM_CAPTURE register/etc available for
> the DMC that would directly tell us that :(
> 
> IIRC the Windows driver did seem to enable the error interrupt on LNL, but
> either they just ignore all the reported errors, or somehow the way they use
> the hardware/firmware doesn't trigger them.

Hmm would it be okay if we can move with enabling the bit for NVL+ since Dibin says we don’t see this issue
Anymore, while we add or TODO or FIXME in the comment to investigate this further for PTL and LNL

Regards,
Suraj Kandpal

> 
> --
> Ville Syrjälä
> Intel

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

* Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-13 10:08               ` Kandpal, Suraj
@ 2026-03-13 11:25                 ` Ville Syrjälä
  2026-03-16  2:49                   ` Kandpal, Suraj
  0 siblings, 1 reply; 17+ messages in thread
From: Ville Syrjälä @ 2026-03-13 11:25 UTC (permalink / raw)
  To: Kandpal, Suraj
  Cc: Dibin Moolakadan Subrahmanian, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org, Shankar, Uma, Sharma, Swati2,
	Nikula, Jani

On Fri, Mar 13, 2026 at 10:08:47AM +0000, Kandpal, Suraj wrote:
> > Subject: Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
> > 
> > On Fri, Mar 13, 2026 at 05:04:46AM +0000, Kandpal, Suraj wrote:
> > >
> > >
> > > > -----Original Message-----
> > > > From: Dibin Moolakadan Subrahmanian
> > > > <dibin.moolakadan.subrahmanian@intel.com>
> > > > Sent: Friday, March 13, 2026 9:55 AM
> > > > To: Kandpal, Suraj <suraj.kandpal@intel.com>;
> > > > intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> > > > Cc: ville.syrjala@linux.intel.com; Shankar, Uma
> > > > <uma.shankar@intel.com>; Sharma, Swati2 <swati2.sharma@intel.com>
> > > > Subject: Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR
> > > > interrupt
> > > >
> > > >
> > > > On 13-03-2026 08:56, Kandpal, Suraj wrote:
> > > > >> On 12-03-2026 08:48, Kandpal, Suraj wrote:
> > > > >>>> Subject: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR
> > > > >>>> interrupt
> > > > >>>>
> > > > >>>> Enable PIPEDMC_ERROR interrupt bit for display version 35+.
> > > > >>>>
> > > > >>> Add same Bspec link here too
> > > > >>>
> > > > >>>> Signed-off-by: Dibin Moolakadan Subrahmanian
> > > > >>>> <dibin.moolakadan.subrahmanian@intel.com>
> > > > >>>> ---
> > > > >>>>    drivers/gpu/drm/i915/display/intel_dmc.c | 3 ++-
> > > > >>>>    1 file changed, 2 insertions(+), 1 deletion(-)
> > > > >>>>
> > > > >>>> diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c
> > > > >>>> b/drivers/gpu/drm/i915/display/intel_dmc.c
> > > > >>>> index 38b284a0db82..e60f1f977070 100644
> > > > >>>> --- a/drivers/gpu/drm/i915/display/intel_dmc.c
> > > > >>>> +++ b/drivers/gpu/drm/i915/display/intel_dmc.c
> > > > >>>> @@ -510,7 +510,8 @@ static void pipedmc_clock_gating_wa(struct
> > > > >>>> intel_display *display, bool enable)  static u32
> > > > >>>> pipedmc_interrupt_mask(struct intel_display *display)  {
> > > > >>>>    	if (DISPLAY_VER(display) >= 35)
> > > > >>>> -		return PIPEDMC_FLIPQ_PROG_DONE;
> > > > >>>> +		return PIPEDMC_FLIPQ_PROG_DONE |
> > > > >>>> +			PIPEDMC_ERROR;
> > > > >>>>
> > > > >>> Mostly looks okay but here's my question:
> > > > >>> I know LNL pipe B had an issue with PIPEDMC_ERROR being
> > > > >>> triggered on LNL pipe B, As I can see from Ville's commit
> > > > >>> message, but is it still the case for
> > > > >> PTL ?
> > > > >>> Can we have that tested ?
> > > > >>> If that works we can add the PIPEDMC_ERROR from PTL onwards.
> > > > >>> Then here we can change code to create a mask and then return it
> > > > >>> finally like
> > > > >> :
> > > > >>> mask = PIPEDMC_FLIPQ_PROG_DONE
> > > > >>>
> > > > >>> if display ver >= 30
> > > > >>> mask |= PIPEDMC_ERROR
> > > > >>>
> > > > >>> if display ver < 35
> > > > >>> mask |= PIPEDMC_GTT_FAULT |
> > > > >>>                   PIPEDMC_ATS_FAULT;
> > > > >>>
> > > > >>> Return mask;
> > > > >>>
> > > > >>> Obviously that is if PIPEDMC_ERROR works on PTL properly.
> > > > >> Thank you for spotting this, I think its better to add above
> > > > >> logic in new series rather than combing with 35+ bit mask update.
> > > > >>
> > > > >> Regards,
> > > > >> Dibin
> > > > > If that is the case then I think its better to drop this patch altogether.
> > > > > We have a justification of why we remove bits in first patch, that
> > > > > was a change
> > > > in NVL H/w.
> > > > > But this change was introduced in LNL.
> > > > > Without a strong reasoning of why you are enabling this is in NVL
> > > > > and not in PTL (which I don’t see in this patch series) I suggest
> > > > > you add this patch with as a part of the series where you have a
> > > > > use case for it. And if
> > > > there too you only add it for NVL You will need to add a comments as
> > > > to why this is not enabled for PTL.
> > > >
> > > > This patch intent to fix the interrupt mask for 35+.
> > > > I dont see any reason to disable this bit as
> > > > 1) error bit warning is already present in interrupt handler.
> > > > 2) bit is defined in bsepc.
> > > > 3) LNL it was mentioned disabled because pipeB triggering it during
> > > > first DC state transition which did not see in this case.
> > >
> > > In that case the interrupt handler is made to report errors if this bit is
> > unmasked for  >= LNL.
> > > Now this bit is introduced in LNL timeframe for which the reason to not add it
> > is mentioned in comment and documented.
> > > Similarly if you want to skip PTL you will need this to be documented
> > > with the reason. Which means the FIXME comment needs to be modified In
> > the least. If this patch is to go through.
> > > Also Ville can you shed some light, on what the H/w folks had to say
> > > regarding this and if they had mentioned any WA for LNL, and if this is fixed In
> > LNL+.
> > 
> > I suspect it might be some kind of issue in the DMC firmware where it's
> > accessing unpowered registers. But it was never investigated properly.
> > 
> > It would be good if someone could take that up and actually figure out what's
> > going on. The problem is figuring out what exactly is the register that causes
> > this. I don't think LNL has any kind of RM_CAPTURE register/etc available for
> > the DMC that would directly tell us that :(
> > 
> > IIRC the Windows driver did seem to enable the error interrupt on LNL, but
> > either they just ignore all the reported errors, or somehow the way they use
> > the hardware/firmware doesn't trigger them.
> 
> Hmm would it be okay if we can move with enabling the bit for NVL+ since Dibin says we don’t see this issue
> Anymore, while we add or TODO or FIXME in the comment to investigate this further for PTL and LNL

Yeah, I think the sooner we enable this on NVL the better. We want to
catch the issues early. For PTL someone should just send a patch to
enable it (separately from the NVL changes) and hopefully CI will tell
us whether it's still a problem there or not.

-- 
Ville Syrjälä
Intel

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

* RE: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-13 11:25                 ` Ville Syrjälä
@ 2026-03-16  2:49                   ` Kandpal, Suraj
  2026-03-16 12:13                     ` Dibin Moolakadan Subrahmanian
  0 siblings, 1 reply; 17+ messages in thread
From: Kandpal, Suraj @ 2026-03-16  2:49 UTC (permalink / raw)
  To: Ville Syrjälä
  Cc: Dibin Moolakadan Subrahmanian, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org, Shankar, Uma, Sharma, Swati2,
	Nikula, Jani

> > > > > >>>
> > > > > >>> if display ver < 35
> > > > > >>> mask |= PIPEDMC_GTT_FAULT |
> > > > > >>>                   PIPEDMC_ATS_FAULT;
> > > > > >>>
> > > > > >>> Return mask;
> > > > > >>>
> > > > > >>> Obviously that is if PIPEDMC_ERROR works on PTL properly.
> > > > > >> Thank you for spotting this, I think its better to add above
> > > > > >> logic in new series rather than combing with 35+ bit mask update.
> > > > > >>
> > > > > >> Regards,
> > > > > >> Dibin
> > > > > > If that is the case then I think its better to drop this patch altogether.
> > > > > > We have a justification of why we remove bits in first patch,
> > > > > > that was a change
> > > > > in NVL H/w.
> > > > > > But this change was introduced in LNL.
> > > > > > Without a strong reasoning of why you are enabling this is in
> > > > > > NVL and not in PTL (which I don’t see in this patch series) I
> > > > > > suggest you add this patch with as a part of the series where
> > > > > > you have a use case for it. And if
> > > > > there too you only add it for NVL You will need to add a
> > > > > comments as to why this is not enabled for PTL.
> > > > >
> > > > > This patch intent to fix the interrupt mask for 35+.
> > > > > I dont see any reason to disable this bit as
> > > > > 1) error bit warning is already present in interrupt handler.
> > > > > 2) bit is defined in bsepc.
> > > > > 3) LNL it was mentioned disabled because pipeB triggering it
> > > > > during first DC state transition which did not see in this case.
> > > >
> > > > In that case the interrupt handler is made to report errors if
> > > > this bit is
> > > unmasked for  >= LNL.
> > > > Now this bit is introduced in LNL timeframe for which the reason
> > > > to not add it
> > > is mentioned in comment and documented.
> > > > Similarly if you want to skip PTL you will need this to be
> > > > documented with the reason. Which means the FIXME comment needs to
> > > > be modified In
> > > the least. If this patch is to go through.
> > > > Also Ville can you shed some light, on what the H/w folks had to
> > > > say regarding this and if they had mentioned any WA for LNL, and
> > > > if this is fixed In
> > > LNL+.
> > >
> > > I suspect it might be some kind of issue in the DMC firmware where
> > > it's accessing unpowered registers. But it was never investigated properly.
> > >
> > > It would be good if someone could take that up and actually figure
> > > out what's going on. The problem is figuring out what exactly is the
> > > register that causes this. I don't think LNL has any kind of
> > > RM_CAPTURE register/etc available for the DMC that would directly
> > > tell us that :(
> > >
> > > IIRC the Windows driver did seem to enable the error interrupt on
> > > LNL, but either they just ignore all the reported errors, or somehow
> > > the way they use the hardware/firmware doesn't trigger them.
> >
> > Hmm would it be okay if we can move with enabling the bit for NVL+
> > since Dibin says we don’t see this issue Anymore, while we add or TODO
> > or FIXME in the comment to investigate this further for PTL and LNL
> 
> Yeah, I think the sooner we enable this on NVL the better. We want to catch the
> issues early. For PTL someone should just send a patch to enable it (separately
> from the NVL changes) and hopefully CI will tell us whether it's still a problem
> there or not.
> 

Dibin you can add a comment "TODO: Check for PTL if setting error bit still throws an issue and enable this bit for that gen too if it does not."
Where you add the error bit.
Ill take the AR and send separate patch series first for PTL then LNL. There have been some DMC firmware updates since then high chance this issue is not seen anymore.

Regards,
Suraj Kandpal
> --
> Ville Syrjälä
> Intel

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

* Re: [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt
  2026-03-16  2:49                   ` Kandpal, Suraj
@ 2026-03-16 12:13                     ` Dibin Moolakadan Subrahmanian
  0 siblings, 0 replies; 17+ messages in thread
From: Dibin Moolakadan Subrahmanian @ 2026-03-16 12:13 UTC (permalink / raw)
  To: Kandpal, Suraj, Ville Syrjälä
  Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
	Shankar, Uma, Sharma, Swati2, Nikula, Jani


On 16-03-2026 08:19, Kandpal, Suraj wrote:
>>>>>>>>> if display ver < 35
>>>>>>>>> mask |= PIPEDMC_GTT_FAULT |
>>>>>>>>>                    PIPEDMC_ATS_FAULT;
>>>>>>>>>
>>>>>>>>> Return mask;
>>>>>>>>>
>>>>>>>>> Obviously that is if PIPEDMC_ERROR works on PTL properly.
>>>>>>>> Thank you for spotting this, I think its better to add above
>>>>>>>> logic in new series rather than combing with 35+ bit mask update.
>>>>>>>>
>>>>>>>> Regards,
>>>>>>>> Dibin
>>>>>>> If that is the case then I think its better to drop this patch altogether.
>>>>>>> We have a justification of why we remove bits in first patch,
>>>>>>> that was a change
>>>>>> in NVL H/w.
>>>>>>> But this change was introduced in LNL.
>>>>>>> Without a strong reasoning of why you are enabling this is in
>>>>>>> NVL and not in PTL (which I don’t see in this patch series) I
>>>>>>> suggest you add this patch with as a part of the series where
>>>>>>> you have a use case for it. And if
>>>>>> there too you only add it for NVL You will need to add a
>>>>>> comments as to why this is not enabled for PTL.
>>>>>>
>>>>>> This patch intent to fix the interrupt mask for 35+.
>>>>>> I dont see any reason to disable this bit as
>>>>>> 1) error bit warning is already present in interrupt handler.
>>>>>> 2) bit is defined in bsepc.
>>>>>> 3) LNL it was mentioned disabled because pipeB triggering it
>>>>>> during first DC state transition which did not see in this case.
>>>>> In that case the interrupt handler is made to report errors if
>>>>> this bit is
>>>> unmasked for  >= LNL.
>>>>> Now this bit is introduced in LNL timeframe for which the reason
>>>>> to not add it
>>>> is mentioned in comment and documented.
>>>>> Similarly if you want to skip PTL you will need this to be
>>>>> documented with the reason. Which means the FIXME comment needs to
>>>>> be modified In
>>>> the least. If this patch is to go through.
>>>>> Also Ville can you shed some light, on what the H/w folks had to
>>>>> say regarding this and if they had mentioned any WA for LNL, and
>>>>> if this is fixed In
>>>> LNL+.
>>>>
>>>> I suspect it might be some kind of issue in the DMC firmware where
>>>> it's accessing unpowered registers. But it was never investigated properly.
>>>>
>>>> It would be good if someone could take that up and actually figure
>>>> out what's going on. The problem is figuring out what exactly is the
>>>> register that causes this. I don't think LNL has any kind of
>>>> RM_CAPTURE register/etc available for the DMC that would directly
>>>> tell us that :(
>>>>
>>>> IIRC the Windows driver did seem to enable the error interrupt on
>>>> LNL, but either they just ignore all the reported errors, or somehow
>>>> the way they use the hardware/firmware doesn't trigger them.
>>> Hmm would it be okay if we can move with enabling the bit for NVL+
>>> since Dibin says we don’t see this issue Anymore, while we add or TODO
>>> or FIXME in the comment to investigate this further for PTL and LNL
>> Yeah, I think the sooner we enable this on NVL the better. We want to catch the
>> issues early. For PTL someone should just send a patch to enable it (separately
>> from the NVL changes) and hopefully CI will tell us whether it's still a problem
>> there or not.
>>
> Dibin you can add a comment "TODO: Check for PTL if setting error bit still throws an issue and enable this bit for that gen too if it does not."
> Where you add the error bit.
> Ill take the AR and send separate patch series first for PTL then LNL. There have been some DMC firmware updates since then high chance this issue is not seen anymore.

I will add TODO for PTL in v3.
The actual PTL enablement for ERROR_BIT will be submitted as separate patch.

> Regards,
> Suraj Kandpal
>> --
>> Ville Syrjälä
>> Intel

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

end of thread, other threads:[~2026-03-16 12:13 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-11  6:32 [PATCH 0/2] drm/i915/dmc: Update PIPEDMC interrupt mask Dibin Moolakadan Subrahmanian
2026-03-11  6:32 ` [PATCH 1/2] drm/i915/dmc: Remove invalid PIPEDMC interrupt bits Dibin Moolakadan Subrahmanian
2026-03-12  3:10   ` Kandpal, Suraj
2026-03-12 12:24     ` Dibin Moolakadan Subrahmanian
2026-03-11  6:32 ` [PATCH 2/2] drm/i915/dmc: Enable PIPEDMC_ERROR interrupt Dibin Moolakadan Subrahmanian
2026-03-12  3:18   ` Kandpal, Suraj
2026-03-12 12:28     ` Dibin Moolakadan Subrahmanian
2026-03-13  3:26       ` Kandpal, Suraj
2026-03-13  4:25         ` Dibin Moolakadan Subrahmanian
2026-03-13  5:04           ` Kandpal, Suraj
2026-03-13 10:03             ` Ville Syrjälä
2026-03-13 10:08               ` Kandpal, Suraj
2026-03-13 11:25                 ` Ville Syrjälä
2026-03-16  2:49                   ` Kandpal, Suraj
2026-03-16 12:13                     ` Dibin Moolakadan Subrahmanian
2026-03-11  7:58 ` ✓ i915.CI.BAT: success for drm/i915/dmc: Update PIPEDMC interrupt mask (rev2) Patchwork
2026-03-11 18:42 ` ✓ i915.CI.Full: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox