Message ID | 20250213111628.2183753-1-jouni.hogander@intel.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | drm/i915/psr: Fix drm_WARN_ON in intel_psr_disable | expand |
> -----Original Message----- > From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Jouni > Högander > Sent: Thursday, February 13, 2025 4:46 PM > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org > Cc: Hogander, Jouni <jouni.hogander@intel.com> > Subject: [PATCH] drm/i915/psr: Fix drm_WARN_ON in intel_psr_disable > > Currently intel_psr_disable is dumping out warning if PSR is not supported. On > monitor supporting only Panel Replay we are seeing this warning. Fix this by > checking Panel Replay support as well. LGTM, Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com> Note: Should we be looking into separating the code for panel replay and psr with functions being Shared between the two files ? Will make going through the code much easier. Just wondering if that Makes sense in the future > > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > --- > drivers/gpu/drm/i915/display/intel_psr.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c > b/drivers/gpu/drm/i915/display/intel_psr.c > index 861e50ceef85..c77eb1ba3db3 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.c > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > @@ -2186,7 +2186,8 @@ void intel_psr_disable(struct intel_dp *intel_dp, > if (!old_crtc_state->has_psr) > return; > > - if (drm_WARN_ON(display->drm, !CAN_PSR(intel_dp))) > + if (drm_WARN_ON(display->drm, !CAN_PSR(intel_dp) && > + !CAN_PANEL_REPLAY(intel_dp)) ) > return; > > mutex_lock(&intel_dp->psr.lock); > -- > 2.43.0
On Fri, 2025-02-14 at 04:27 +0000, Kandpal, Suraj wrote: > > > > -----Original Message----- > > From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf > > Of Jouni > > Högander > > Sent: Thursday, February 13, 2025 4:46 PM > > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org > > Cc: Hogander, Jouni <jouni.hogander@intel.com> > > Subject: [PATCH] drm/i915/psr: Fix drm_WARN_ON in intel_psr_disable > > > > Currently intel_psr_disable is dumping out warning if PSR is not > > supported. On > > monitor supporting only Panel Replay we are seeing this warning. > > Fix this by > > checking Panel Replay support as well. > > LGTM, > Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com> Thank you very much Suraj. > > Note: Should we be looking into separating the code for panel replay > and psr with functions being > Shared between the two files ? Will make going through the code much > easier. Just wondering if that > Makes sense in the future > I'm not yet buying this idea as they share so much. I have been thinking adding helpers for the purpose related to problem fixed in this patch: has_psr() // psr1, psr2, panel replay has_psr1() has_psr2() has_panel_replay() that would ease readability. What do you think? BR, Jouni Högander > > > > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > > --- > > drivers/gpu/drm/i915/display/intel_psr.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c > > b/drivers/gpu/drm/i915/display/intel_psr.c > > index 861e50ceef85..c77eb1ba3db3 100644 > > --- a/drivers/gpu/drm/i915/display/intel_psr.c > > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > > @@ -2186,7 +2186,8 @@ void intel_psr_disable(struct intel_dp > > *intel_dp, > > if (!old_crtc_state->has_psr) > > return; > > > > - if (drm_WARN_ON(display->drm, !CAN_PSR(intel_dp))) > > + if (drm_WARN_ON(display->drm, !CAN_PSR(intel_dp) && > > + !CAN_PANEL_REPLAY(intel_dp)) > ) > > return; > > > > mutex_lock(&intel_dp->psr.lock); > > -- > > 2.43.0 >
> -----Original Message----- > From: Hogander, Jouni <jouni.hogander@intel.com> > Sent: Friday, February 14, 2025 1:01 PM > To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-xe@lists.freedesktop.org; > intel-gfx@lists.freedesktop.org > Subject: Re: [PATCH] drm/i915/psr: Fix drm_WARN_ON in intel_psr_disable > > On Fri, 2025-02-14 at 04:27 +0000, Kandpal, Suraj wrote: > > > > > > > -----Original Message----- > > > From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of > > > Jouni Högander > > > Sent: Thursday, February 13, 2025 4:46 PM > > > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org > > > Cc: Hogander, Jouni <jouni.hogander@intel.com> > > > Subject: [PATCH] drm/i915/psr: Fix drm_WARN_ON in intel_psr_disable > > > > > > Currently intel_psr_disable is dumping out warning if PSR is not > > > supported. On monitor supporting only Panel Replay we are seeing > > > this warning. > > > Fix this by > > > checking Panel Replay support as well. > > > > LGTM, > > Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com> > > Thank you very much Suraj. > > > > > Note: Should we be looking into separating the code for panel replay > > and psr with functions being Shared between the two files ? Will make > > going through the code much easier. Just wondering if that Makes sense > > in the future > > > I'm not yet buying this idea as they share so much. I have been thinking adding > helpers for the purpose related to problem fixed in this patch: > > has_psr() // psr1, psr2, panel replay > has_psr1() > has_psr2() > has_panel_replay() > > that would ease readability. What do you think? That sounds better specially keeping in mind that psr checks happen all over the code and this Should reduce some confusion when it comes to checking psr versions without having to really have a Deeper look as to how those variables work Regards, Suraj Kandpal > > BR, > > Jouni Högander > > > > > > > > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > > > --- > > > drivers/gpu/drm/i915/display/intel_psr.c | 3 ++- > > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c > > > b/drivers/gpu/drm/i915/display/intel_psr.c > > > index 861e50ceef85..c77eb1ba3db3 100644 > > > --- a/drivers/gpu/drm/i915/display/intel_psr.c > > > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > > > @@ -2186,7 +2186,8 @@ void intel_psr_disable(struct intel_dp > > > *intel_dp, > > > if (!old_crtc_state->has_psr) > > > return; > > > > > > - if (drm_WARN_ON(display->drm, !CAN_PSR(intel_dp))) > > > + if (drm_WARN_ON(display->drm, !CAN_PSR(intel_dp) && > > > + !CAN_PANEL_REPLAY(intel_dp)) > > ) > > > return; > > > > > > mutex_lock(&intel_dp->psr.lock); > > > -- > > > 2.43.0 > >
Hello All, My patch have nothing to do with possible regression reported by CI. Regressed setups do not support PSR. BR, Jouni Högander On Thu, 2025-02-13 at 19:31 +0000, Patchwork wrote: Patch Details Series: drm/i915/psr: Fix drm_WARN_ON in intel_psr_disable URL: https://patchwork.freedesktop.org/series/144788/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/index.html CI Bug Log - changes from CI_DRM_16126_full -> Patchwork_144788v1_full Summary FAILURE Serious unknown changes coming with Patchwork_144788v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_144788v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (11 -> 11) Additional (1): shard-dg2-set2 Missing (1): shard-snb-0 Possible new issues Here are the unknown changes that may have been introduced in Patchwork_144788v1_full: IGT changes Possible regressions * igt@gem_userptr_blits@input-checking: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-17/igt@gem_userptr_blits@input-checking.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@gem_userptr_blits@input-checking.html> * igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-glk8/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html> +3 other tests fail New tests New tests have been introduced between CI_DRM_16126_full and Patchwork_144788v1_full: New IGT tests (1) * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-d-hdmi-a-2: * Statuses : 1 pass(s) * Exec time: [3.23] s Known issues Here are the changes found in Patchwork_144788v1_full that come from known issues: IGT changes Issues hit * igt@api_intel_bb@blit-reloc-keep-cache: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@api_intel_bb@blit-reloc-keep-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) * igt@device_reset@cold-reset-bound: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-8/igt@device_reset@cold-reset-bound.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) * igt@drm_fdinfo@isolation: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@drm_fdinfo@isolation.html> (i915#8414<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) +16 other tests skip * igt@gem_bad_reloc@negative-reloc-bltcopy: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@gem_bad_reloc@negative-reloc-bltcopy.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +5 other tests skip * igt@gem_basic@multigpu-create-close: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@gem_basic@multigpu-create-close.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@gem_basic@multigpu-create-close.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) +1 other test skip * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_basic@multigpu-create-close.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) * igt@gem_ccs@block-multicopy-compressed: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * igt@gem_ccs@suspend-resume: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@gem_ccs@suspend-resume.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * igt@gem_close_race@multigpu-basic-process: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) * igt@gem_compute@compute-square: * shard-dg2-9: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_compute@compute-square.html> (i915#13665<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665>) * igt@gem_create@create-ext-cpu-access-big: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html> (i915#6335<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) * igt@gem_ctx_isolation@preservation-s3@rcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-glk2/igt@gem_ctx_isolation@preservation-s3@rcs0.html> (i915#12353<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353>) * igt@gem_ctx_sseu@invalid-sseu: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) * igt@gem_eio@reset-stress: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-17/igt@gem_eio@reset-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@gem_eio@reset-stress.html> (i915#12543<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543> / i915#5784<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>) * igt@gem_eio@unwedge-stress: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-snb6/igt@gem_eio@unwedge-stress.html> (i915#8898<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898>) * igt@gem_exec_balancer@bonded-false-hang: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_exec_balancer@bonded-false-hang.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) +2 other tests skip * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-7/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) * igt@gem_exec_balancer@parallel-keep-submit-fence: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +2 other tests skip * igt@gem_exec_big@single: * shard-tglu-1: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@gem_exec_big@single.html> (i915#11713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713>) * igt@gem_exec_capture@capture-invisible: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_exec_capture@capture-invisible.html> (i915#6334<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) +2 other tests skip * igt@gem_exec_capture@capture@vecs0-lmem0: * shard-dg2-9: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_exec_capture@capture@vecs0-lmem0.html> (i915#11965<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965>) +4 other tests fail * igt@gem_exec_fence@concurrent: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@gem_exec_fence@concurrent.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) * igt@gem_exec_fence@submit67: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@gem_exec_fence@submit67.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) * igt@gem_exec_flush@basic-wb-rw-before-default: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_exec_flush@basic-wb-rw-before-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) * igt@gem_exec_reloc@basic-gtt-cpu: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-cpu.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +2 other tests skip * igt@gem_exec_reloc@basic-gtt-cpu-active: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-cpu-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +4 other tests skip * igt@gem_exec_reloc@basic-gtt-read-noreloc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +8 other tests skip * igt@gem_exec_reloc@basic-wc-noreloc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@gem_exec_reloc@basic-wc-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +1 other test skip * igt@gem_fenced_exec_thrash@too-many-fences: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_fenced_exec_thrash@too-many-fences.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) +1 other test skip * igt@gem_lmem_swapping@heavy-verify-random-ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip * igt@gem_lmem_swapping@parallel-random-verify-ccs: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +6 other tests skip * igt@gem_lmem_swapping@verify-random-ccs: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip * igt@gem_madvise@dontneed-before-exec: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-4/igt@gem_madvise@dontneed-before-exec.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) * igt@gem_madvise@dontneed-before-pwrite: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_madvise@dontneed-before-pwrite.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +3 other tests skip * igt@gem_mmap_gtt@basic-read: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_mmap_gtt@basic-read.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +9 other tests skip * igt@gem_mmap_gtt@basic-small-copy: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +3 other tests skip * igt@gem_mmap_gtt@cpuset-medium-copy-odd: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +3 other tests skip * igt@gem_mmap_gtt@medium-copy-odd: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@gem_mmap_gtt@medium-copy-odd.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) * igt@gem_mmap_wc@fault-concurrent: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@gem_mmap_wc@fault-concurrent.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) * igt@gem_mmap_wc@read-write: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_mmap_wc@read-write.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) * igt@gem_mmap_wc@write-prefaulted: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-6/igt@gem_mmap_wc@write-prefaulted.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +1 other test skip * igt@gem_partial_pwrite_pread@write-display: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@gem_partial_pwrite_pread@write-display.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) * igt@gem_pread@uncached: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@gem_pread@uncached.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) * igt@gem_pwrite@basic-exhaustion: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@gem_pwrite@basic-exhaustion.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +8 other tests skip * igt@gem_pxp@create-regular-buffer: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@gem_pxp@create-regular-buffer.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) * igt@gem_pxp@regular-baseline-src-copy-readible: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@gem_pxp@regular-baseline-src-copy-readible.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) * igt@gem_pxp@reject-modify-context-protection-off-2: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-2.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +2 other tests skip * shard-rkl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-2.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +1 other test timeout * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +4 other tests skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html> (i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +1 other test skip * igt@gem_render_copy@yf-tiled-to-vebox-linear: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-linear.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) * igt@gem_set_tiling_vs_blt@tiled-to-untiled: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) * igt@gem_softpin@noreloc-s3: * shard-rkl: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@gem_softpin@noreloc-s3.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@gem_userptr_blits@coherency-unsync: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@gem_userptr_blits@coherency-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip * igt@gem_userptr_blits@dmabuf-sync: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#3323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>) * igt@gem_userptr_blits@dmabuf-unsync: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip * igt@gem_userptr_blits@forbidden-operations: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_userptr_blits@unsync-unmap: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gen3_render_tiledy_blits: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@gen3_render_tiledy_blits.html> * igt@gen9_exec_parse@batch-without-end: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-6/igt@gen9_exec_parse@batch-without-end.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +1 other test skip * igt@gen9_exec_parse@bb-oversize: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +3 other tests skip * igt@gen9_exec_parse@bb-secure: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +2 other tests skip * igt@gen9_exec_parse@bb-start-cmd: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@gen9_exec_parse@bb-start-cmd.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) * igt@gen9_exec_parse@cmd-crossing-page: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +2 other tests skip * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@gen9_exec_parse@cmd-crossing-page.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +1 other test skip * igt@i915_fb_tiling: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@i915_fb_tiling.html> (i915#4881<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881>) * igt@i915_module_load@reload-with-fault-injection: * shard-rkl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) * shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html> (i915#10887<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887> / [i915#9820]) * igt@i915_pm_freq_api@freq-reset: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@i915_pm_freq_api@freq-reset.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) +1 other test skip * igt@i915_pm_freq_api@freq-suspend: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@i915_pm_freq_api@freq-suspend.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) * igt@i915_pm_freq_api@freq-suspend@gt0: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html> (i915#12455<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455>) +1 other test incomplete * igt@i915_pm_freq_mult@media-freq@gt0: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>) +1 other test skip * igt@i915_query@test-query-geometry-subslices: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html> (i915#5723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>) * igt@i915_selftest@mock@memory_region: * shard-dg1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@i915_selftest@mock@memory_region.html> (i915#9311<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311>) +1 other test dmesg-warn * igt@intel_hwmon@hwmon-write: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-8/igt@intel_hwmon@hwmon-write.html> (i915#7707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) +1 other test skip * igt@kms_addfb_basic@basic-y-tiled-legacy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html> (i915#4215<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>) * igt@kms_addfb_basic@tile-pitch-mismatch: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-y-rc-ccs-cc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-y-rc-ccs-cc.html> (i915#8709<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_big_fb@4-tiled-addfb: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +8 other tests skip * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +6 other tests skip * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +3 other tests skip * igt@kms_big_fb@x-tiled-32bpp-rotate-270: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html> +8 other tests skip * igt@kms_big_fb@x-tiled-64bpp-rotate-90: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-glk8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> +11 other tests skip * igt@kms_big_fb@y-tiled-32bpp-rotate-90: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +6 other tests skip * igt@kms_big_fb@y-tiled-64bpp-rotate-90: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) * igt@kms_big_fb@y-tiled-addfb: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +1 other test skip * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> +4 other tests skip * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-13/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-14/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> +19 other tests skip * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +1 other test skip * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) +1 other test skip * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +44 other tests skip * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +133 other tests skip * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +4 other tests skip * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +123 other tests skip * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +87 other tests skip * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +34 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> (i915#12805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>) * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +44 other tests skip * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html> (i915#12796<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796>) +1 other test incomplete * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-3.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +11 other tests skip * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +9 other tests skip * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +1 other test dmesg-fail * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#10434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +5 other tests skip * igt@kms_cdclk@plane-scaling: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_cdclk@plane-scaling.html> (i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087>) +3 other tests skip * igt@kms_chamelium_audio@dp-audio: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-7/igt@kms_chamelium_audio@dp-audio.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +7 other tests skip * igt@kms_chamelium_audio@hdmi-audio-edid: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip * igt@kms_chamelium_edid@dp-edid-resolution-list: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip * igt@kms_chamelium_edid@dp-mode-timings: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_chamelium_edid@dp-mode-timings.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +1 other test skip * igt@kms_chamelium_frames@dp-crc-multiple: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-multiple.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +1 other test skip * igt@kms_chamelium_frames@dp-frame-dump: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_chamelium_frames@dp-frame-dump.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +5 other tests skip * igt@kms_chamelium_hpd@dp-hpd: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +9 other tests skip * igt@kms_color@deep-color: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_color@deep-color.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / [i915#9979]) * igt@kms_content_protection@atomic: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_content_protection@atomic.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#7116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> / i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@atomic-dpms: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#7116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> / i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@content-type-change: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_content_protection@content-type-change.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@dp-mst-lic-type-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-6/igt@kms_content_protection@dp-mst-lic-type-1.html> (i915#3299<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) * igt@kms_content_protection@dp-mst-type-1: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html> (i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) * igt@kms_content_protection@type1: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_content_protection@type1.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@uevent: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-8/igt@kms_content_protection@uevent.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@uevent@pipe-a-dp-4: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html> (i915#1339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339> / i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) * igt@kms_cursor_crc@cursor-offscreen-32x10: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip * igt@kms_cursor_crc@cursor-offscreen-512x512: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) * igt@kms_cursor_crc@cursor-offscreen-max-size: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_cursor_crc@cursor-onscreen-512x512: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +2 other tests skip * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) * igt@kms_cursor_crc@cursor-rapid-movement-max-size: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +8 other tests skip * igt@kms_cursor_crc@cursor-sliding-512x170: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (i915#13046<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +2 other tests skip * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) +2 other tests skip * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html> (i915#9809<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809>) +1 other test skip * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> (i915#9067<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>) * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> ([i915#9833]) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) * igt@kms_dither@fb-8bpc-vs-panel-6bpc: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3804<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html> (i915#3804<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) * igt@kms_dither@fb-8bpc-vs-panel-8bpc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_dp_aux_dev: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-11/igt@kms_dp_aux_dev.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-3/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) * igt@kms_draw_crc@draw-method-mmap-gtt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_draw_crc@draw-method-mmap-gtt.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-gtt.html> (i915#8812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812>) * igt@kms_dsc@dsc-fractional-bpp: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_dsc@dsc-fractional-bpp.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> / i915#9688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) * igt@kms_dsc@dsc-fractional-bpp-with-bpc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_dsc@dsc-with-bpc: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-7/igt@kms_dsc@dsc-with-bpc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) +1 other test skip * igt@kms_dsc@dsc-with-bpc-formats: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_dsc@dsc-with-formats: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_fbcon_fbt@psr-suspend: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>) +1 other test skip * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3469<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469>) * igt@kms_feature_discovery@display-3x: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_feature_discovery@display-3x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) * igt@kms_feature_discovery@psr2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) * igt@kms_fence_pin_leak: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_fence_pin_leak.html> (i915#4881<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881>) * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html> ([i915#9934]) +1 other test skip * igt@kms_flip@2x-flip-vs-fences: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +3 other tests skip * igt@kms_flip@2x-flip-vs-fences-interruptible: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +6 other tests skip * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html> ([i915#9934]) +4 other tests skip * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> ([i915#9934]) +7 other tests skip * igt@kms_flip@flip-vs-absolute-wf_vblank: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html> (i915#11989<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989>) +1 other test fail * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1: * shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +2 other tests dmesg-warn * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +3 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8813<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) +1 other test skip * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#8813<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) +1 other test skip * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +3 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> (i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +23 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +53 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +1 other test skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +11 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +1 other test skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> +53 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +4 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +9 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +13 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +5 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +7 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html> +5 other tests skip * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +38 other tests skip * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html> +61 other tests skip * igt@kms_getfb@getfb-reject-ccs: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_getfb@getfb-reject-ccs.html> (i915#6118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118>) * igt@kms_hdr@static-swap: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-4/igt@kms_hdr@static-swap.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) +1 other test skip * igt@kms_hdr@static-toggle: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-11/igt@kms_hdr@static-toggle.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) +1 other test skip * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) +1 other test skip * igt@kms_hdr@static-toggle-dpms: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_hdr@static-toggle-dpms.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-3/igt@kms_hdr@static-toggle-dpms.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * igt@kms_joiner@basic-force-big-joiner: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@kms_joiner@basic-force-big-joiner.html> (i915#12388<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_joiner@basic-force-big-joiner.html> (i915#12388<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) * igt@kms_joiner@basic-force-ultra-joiner: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html> (i915#12394<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394>) * igt@kms_joiner@basic-ultra-joiner: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_joiner@basic-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339>) * igt@kms_joiner@invalid-modeset-force-big-joiner: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (i915#12388<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (i915#12388<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> (i915#13522<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522>) * igt@kms_panel_fitting@legacy: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_panel_fitting@legacy.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_panel_fitting@legacy.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) * igt@kms_plane_multiple@tiling-y: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-6/igt@kms_plane_multiple@tiling-y.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8806<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806>) * igt@kms_plane_scaling@intel-max-src-size: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html> (i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +15 other tests skip * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +4 other tests skip * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +4 other tests skip * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +3 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +13 other tests skip * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) * igt@kms_pm_backlight@basic-brightness: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_pm_backlight@basic-brightness.html> (i915#9812<https://gitlab.freedesktop.or>) * igt@kms_pm_backlight@brightness-with-dpms: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@kms_pm_backlight@brightness-with-dpms.html> (i915#12343<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_pm_backlight@brightness-with-dpms.html> (i915#12343<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343>) * igt@kms_pm_backlight@fade-with-suspend: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_pm_backlight@fade-with-suspend.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) * igt@kms_pm_dc@dc3co-vpb-simulation: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_pm_dc@dc3co-vpb-simulation.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * igt@kms_pm_dc@dc5-psr: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * igt@kms_pm_dc@dc5-retention-flops: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) * igt@kms_pm_lpsp@kms-lpsp: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) * igt@kms_pm_lpsp@screens-disabled: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-8/igt@kms_pm_lpsp@screens-disabled.html> (i915#8430<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>) * igt@kms_pm_rpm@dpms-lpsp: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_pm_rpm@dpms-mode-unset-lpsp: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_pm_rpm@modeset-lpsp-stress: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_pm_rpm@modeset-non-lpsp: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +1 other test skip * igt@kms_pm_rpm@modeset-non-lpsp-stress: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +1 other test skip * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_prime@d3hot: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_prime@d3hot.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-snb6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +8 other tests skip * igt@kms_psr2_sf@pr-cursor-plane-update-sf: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-7/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +6 other tests skip * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-glk8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr2_su@page_flip-xrgb8888: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) +1 other test skip * igt@kms_psr@fbc-psr-sprite-plane-move: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_psr@fbc-psr-sprite-plane-move.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +16 other tests skip * igt@kms_psr@pr-cursor-blt: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_psr@pr-cursor-blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +4 other tests skip * igt@kms_psr@pr-primary-render: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-6/igt@kms_psr@pr-primary-render.html> (i915#9688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) +3 other tests skip * igt@kms_psr@psr-cursor-plane-onoff: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +13 other tests skip * igt@kms_psr@psr-cursor-render: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_psr@psr-cursor-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +3 other tests skip * igt@kms_psr@psr2-cursor-mmap-gtt: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +27 other tests skip * igt@kms_psr@psr2-primary-mmap-gtt: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_psr@psr2-primary-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +14 other tests skip * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077> / i915#9688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) +1 other test skip * igt@kms_rotation_crc@bad-tiling: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_rotation_crc@bad-tiling.html> (i915#12755<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> (i915#12755<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) +1 other test skip * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_scaling_modes@scaling-mode-full-aspect: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +5 other tests skip * igt@kms_selftest@drm_framebuffer: * shard-tglu-1: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html> (i915#13179<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>) +1 other test abort * igt@kms_setmode@basic: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-snb6/igt@kms_setmode@basic.html> (i915#5465<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) +2 other tests fail * igt@kms_tv_load_detect@load-detect: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-snb6/igt@kms_tv_load_detect@load-detect.html> +75 other tests skip * igt@kms_vrr@flip-basic-fastset: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@kms_vrr@flip-basic-fastset.html> ([i915#9906]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@kms_vrr@flip-basic-fastset.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> / [i915#9906]) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_vrr@flip-basic-fastset.html> ([i915#9906]) * igt@kms_vrr@seamless-rr-switch-drrs: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-drrs.html> ([i915#9906]) * igt@kms_vrr@seamless-rr-switch-virtual: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html> ([i915#9906]) * igt@kms_writeback@writeback-check-output-xrgb2101010: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_writeback@writeback-check-output-xrgb2101010.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) * igt@kms_writeback@writeback-fb-id: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * igt@kms_writeback@writeback-invalid-parameters: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-9/igt@kms_writeback@writeback-invalid-parameters.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * igt@kms_writeback@writeback-pixel-formats: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) * igt@perf@global-sseu-config-invalid: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@perf@global-sseu-config-invalid.html> (i915#7387<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@perf@global-sseu-config-invalid.html> (i915#7387<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387>) +1 other test skip * igt@perf@mi-rpc: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-6/igt@perf@mi-rpc.html> (i915#2434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>) * igt@perf_pmu@busy-double-start@vecs0: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-mtlp-7/igt@perf_pmu@busy-double-start@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-7/igt@perf_pmu@busy-double-start@vecs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) * igt@perf_pmu@busy-idle-check-all@vecs0: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-1/igt@perf_pmu@busy-idle-check-all@vecs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-5/igt@perf_pmu@busy-idle-check-all@vecs0.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@perf_pmu@invalid-init: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-glk8/igt@perf_pmu@invalid-init.html> (i915#13663<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663>) * igt@perf_pmu@rc6-all-gts: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html> (i915#8516<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) * igt@prime_vgem@basic-fence-flip: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-1/igt@prime_vgem@basic-fence-flip.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@prime_vgem@basic-gtt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@prime_vgem@basic-gtt.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708> / i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@prime_vgem@basic-gtt.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708> / i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) * igt@prime_vgem@basic-read: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@prime_vgem@basic-read.html> (i915#3291<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@prime_vgem@fence-read-hang: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@prime_vgem@fence-read-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) +1 other test skip * igt@sriov_basic@enable-vfs-autoprobe-on: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-on.html> ([i915#9917]) * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (i915#12910<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>) +10 other tests fail * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> ([i915#9917]) Possible fixes * igt@gem_create@create-ext-cpu-access-big: * shard-dg2: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html> (i915#13427<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html> * igt@gem_eio@in-flight-external: * shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-mtlp-7/igt@gem_eio@in-flight-external.html> (i915#13193<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@gem_eio@in-flight-external.html> +1 other test pass * igt@gem_tiled_swapping@non-threaded: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-7/igt@gem_tiled_swapping@non-threaded.html> (i915#12941<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html> * igt@i915_module_load@reload-with-fault-injection: * shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html> (i915#12817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817> / [i915#9820]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html> * igt@i915_selftest@live@workarounds: * shard-mtlp: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-mtlp-1/igt@i915_selftest@live@workarounds.html> (i915#12061<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@i915_selftest@live@workarounds.html> +1 other test pass * igt@kms_async_flips@async-flip-with-page-flip-events: * shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events.html> +2 other tests pass * igt@kms_cursor_crc@cursor-onscreen-256x85: * shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html> +3 other tests pass * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html> +1 other test pass * igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1: * shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-snb5/igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1.html> (i915#11989<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-snb1/igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1.html> +1 other test pass * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1: * shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-tglu-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html> (i915#11989<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-tglu-6/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html> +1 other test pass * igt@perf_pmu@busy-double-start@vcs0: * shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-15/igt@perf_pmu@busy-double-start@vcs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs0.html> +1 other test pass * igt@perf_pmu@busy-idle-check-all@vcs0: * shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-1/igt@perf_pmu@busy-idle-check-all@vcs0.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-5/igt@perf_pmu@busy-idle-check-all@vcs0.html> +1 other test pass Warnings * igt@i915_module_load@reload-with-fault-injection: * shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html> (i915#10131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131>) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html> (i915#10131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131> / i915#10887<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887> / [i915#9820]) * igt@kms_content_protection@mei-interface: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-12/igt@kms_content_protection@mei-interface.html> (i915#9433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-17/igt@kms_content_protection@mei-interface.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-17/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-15/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / [i915#9934]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-18/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> ([i915#9934]) * igt@kms_flip@2x-plain-flip-ts-check: * shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check.html> (i915#10826<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check.html> (i915#11989<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989>) +1 other test fail * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +3 other tests skip * igt@kms_hdr@brightness-with-hdr: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html> (i915#1187<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187> / i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html> (i915#1187<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187> / i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-17/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) * igt@kms_psr@psr2-suspend: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-18/igt@kms_psr@psr2-suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144788v1/shard-dg1-17/igt@kms_psr@psr2-suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
On Fri, 2025-02-14 at 04:27 +0000, Kandpal, Suraj wrote: > > > > -----Original Message----- > > From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf > > Of Jouni > > Högander > > Sent: Thursday, February 13, 2025 4:46 PM > > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org > > Cc: Hogander, Jouni <jouni.hogander@intel.com> > > Subject: [PATCH] drm/i915/psr: Fix drm_WARN_ON in intel_psr_disable > > > > Currently intel_psr_disable is dumping out warning if PSR is not > > supported. On > > monitor supporting only Panel Replay we are seeing this warning. > > Fix this by > > checking Panel Replay support as well. > > LGTM, > Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com> This is now pushed to drm-intel-next. Thank you Suraj for checking my patch. BR, Jouni Högander > > Note: Should we be looking into separating the code for panel replay > and psr with functions being > Shared between the two files ? Will make going through the code much > easier. Just wondering if that > Makes sense in the future > > > > > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > > --- > > drivers/gpu/drm/i915/display/intel_psr.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c > > b/drivers/gpu/drm/i915/display/intel_psr.c > > index 861e50ceef85..c77eb1ba3db3 100644 > > --- a/drivers/gpu/drm/i915/display/intel_psr.c > > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > > @@ -2186,7 +2186,8 @@ void intel_psr_disable(struct intel_dp > > *intel_dp, > > if (!old_crtc_state->has_psr) > > return; > > > > - if (drm_WARN_ON(display->drm, !CAN_PSR(intel_dp))) > > + if (drm_WARN_ON(display->drm, !CAN_PSR(intel_dp) && > > + !CAN_PANEL_REPLAY(intel_dp)) > ) > > return; > > > > mutex_lock(&intel_dp->psr.lock); > > -- > > 2.43.0 >
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c index 861e50ceef85..c77eb1ba3db3 100644 --- a/drivers/gpu/drm/i915/display/intel_psr.c +++ b/drivers/gpu/drm/i915/display/intel_psr.c @@ -2186,7 +2186,8 @@ void intel_psr_disable(struct intel_dp *intel_dp, if (!old_crtc_state->has_psr) return; - if (drm_WARN_ON(display->drm, !CAN_PSR(intel_dp))) + if (drm_WARN_ON(display->drm, !CAN_PSR(intel_dp) && + !CAN_PANEL_REPLAY(intel_dp))) return; mutex_lock(&intel_dp->psr.lock);
Currently intel_psr_disable is dumping out warning if PSR is not supported. On monitor supporting only Panel Replay we are seeing this warning. Fix this by checking Panel Replay support as well. Signed-off-by: Jouni Högander <jouni.hogander@intel.com> --- drivers/gpu/drm/i915/display/intel_psr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)