diff mbox series

drm/i915/psr: Add psr sink error status into sink status debugfs

Message ID 20230828083107.1520501-1-jouni.hogander@intel.com (mailing list archive)
State New, archived
Headers show
Series drm/i915/psr: Add psr sink error status into sink status debugfs | expand

Commit Message

Hogander, Jouni Aug. 28, 2023, 8:31 a.m. UTC
Normally PSR errors detected by the panel are triggering HPD interrupt and
seen as error in dmesg. Some panels are not triggering the interrupt even
it is requested and they are detecting error. Due to this it would be good
to have possibility to check panel detected errors. Add PSR error status
into PSR sink status debugfs interface.

Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
 drivers/gpu/drm/i915/display/intel_psr.c | 34 +++++++++++++++++-------
 1 file changed, 25 insertions(+), 9 deletions(-)

Comments

Manna, Animesh Sept. 5, 2023, 8:52 a.m. UTC | #1
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Jouni
> Högander
> Sent: Monday, August 28, 2023 2:01 PM
> To: intel-gfx@lists.freedesktop.org
> Subject: [Intel-gfx] [PATCH] drm/i915/psr: Add psr sink error status into sink
> status debugfs
> 
> Normally PSR errors detected by the panel are triggering HPD interrupt and
> seen as error in dmesg. Some panels are not triggering the interrupt even it is
> requested and they are detecting error. Due to this it would be good to have
> possibility to check panel detected errors. Add PSR error status into PSR sink
> status debugfs interface.
> 
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>

LGTM.
Reviewed-by: Animesh Manna <animesh.manna@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_psr.c | 34 +++++++++++++++++-------
>  1 file changed, 25 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> b/drivers/gpu/drm/i915/display/intel_psr.c
> index 72887c29fb51..a008918b4d71 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -23,6 +23,7 @@
> 
>  #include <drm/drm_atomic_helper.h>
>  #include <drm/drm_damage_helper.h>
> +#include <drm/drm_debugfs.h>
> 
>  #include "i915_drv.h"
>  #include "i915_reg.h"
> @@ -3153,7 +3154,7 @@ static int i915_psr_sink_status_show(struct seq_file
> *m, void *data)
>  	};
>  	const char *str;
>  	int ret;
> -	u8 val;
> +	u8 status, error_status;
> 
>  	if (!CAN_PSR(intel_dp)) {
>  		seq_puts(m, "PSR Unsupported\n");
> @@ -3163,19 +3164,34 @@ static int i915_psr_sink_status_show(struct
> seq_file *m, void *data)
>  	if (connector->base.status != connector_status_connected)
>  		return -ENODEV;
> 
> -	ret = drm_dp_dpcd_readb(&intel_dp->aux, DP_PSR_STATUS, &val);
> -	if (ret != 1)
> -		return ret < 0 ? ret : -EIO;
> +	ret = psr_get_status_and_error_status(intel_dp, &status,
> &error_status);
> +	if (ret)
> +		return ret;
> 
> -	val &= DP_PSR_SINK_STATE_MASK;
> -	if (val < ARRAY_SIZE(sink_status))
> -		str = sink_status[val];
> +	status &= DP_PSR_SINK_STATE_MASK;
> +	if (status < ARRAY_SIZE(sink_status))
> +		str = sink_status[status];
>  	else
>  		str = "unknown";
> 
> -	seq_printf(m, "Sink PSR status: 0x%x [%s]\n", val, str);
> +	seq_printf(m, "Sink PSR status: 0x%x [%s]\n", status, str);
> 
> -	return 0;
> +	seq_printf(m, "Sink PSR error status: 0x%x", error_status);
> +
> +	if (error_status & (DP_PSR_RFB_STORAGE_ERROR |
> +			    DP_PSR_VSC_SDP_UNCORRECTABLE_ERROR |
> +			    DP_PSR_LINK_CRC_ERROR))
> +		seq_puts(m, ":\n");
> +	else
> +		seq_puts(m, "\n");
> +	if (error_status & DP_PSR_RFB_STORAGE_ERROR)
> +		seq_puts(m, "\tPSR RFB storage error\n");
> +	if (error_status & DP_PSR_VSC_SDP_UNCORRECTABLE_ERROR)
> +		seq_puts(m, "\tPSR VSC SDP uncorrectable error\n");
> +	if (error_status & DP_PSR_LINK_CRC_ERROR)
> +		seq_puts(m, "\tPSR Link CRC error\n");
> +
> +	return ret;
>  }
>  DEFINE_SHOW_ATTRIBUTE(i915_psr_sink_status);
> 
> --
> 2.34.1
Hogander, Jouni Sept. 6, 2023, 5:56 a.m. UTC | #2
This patch is not touching code paths related to possible regression identified by CI here -> it can't be related.

BR,

Jouni Högander

On Mon, 2023-08-28 at 12:51 +0000, Patchwork wrote:
Patch Details
Series: drm/i915/psr: Add psr sink error status into sink status debugfs
URL:    https://patchwork.freedesktop.org/series/122965/
State:  failure
Details:        https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/index.html
CI Bug Log - changes from CI_DRM_13571_full -> Patchwork_122965v1_full
Summary

FAILURE

Serious unknown changes coming with Patchwork_122965v1_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in Patchwork_122965v1_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.

Participating hosts (9 -> 9)

No changes in participating hosts

Possible new issues

Here are the unknown changes that may have been introduced in Patchwork_122965v1_full:

IGT changes
Possible regressions

  *   igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
     *   shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html>

Known issues

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

IGT changes
Issues hit

  *   igt@api_intel_bb@object-reloc-purge-cache:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/intel/issues/8411>)
  *   igt@api_intel_bb@render-ccs:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@api_intel_bb@render-ccs.html> (i915#6122<https://gitlab.freedesktop.org/drm/intel/issues/6122>)
  *   igt@drm_fdinfo@busy-idle@bcs0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@drm_fdinfo@busy-idle@bcs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>) +19 similar issues
  *   igt@feature_discovery@chamelium:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-4/igt@feature_discovery@chamelium.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
  *   igt@gem_ctx_exec@basic-nohangcheck:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>)
  *   igt@gem_ctx_persistence@engines-hostile:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-snb6/igt@gem_ctx_persistence@engines-hostile.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1 similar issue
  *   igt@gem_ctx_persistence@hang:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@gem_ctx_persistence@hang.html> (i915#8555<https://gitlab.freedesktop.org/drm/intel/issues/8555>)
  *   igt@gem_ctx_sseu@mmap-args:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@gem_ctx_sseu@mmap-args.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>)
  *   igt@gem_eio@reset-stress:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-13/igt@gem_eio@reset-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-16/igt@gem_eio@reset-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) +1 similar issue
  *   igt@gem_exec_balancer@bonded-sync:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@gem_exec_balancer@bonded-sync.html> (i915#4771<https://gitlab.freedesktop.org/drm/intel/issues/4771>)
  *   igt@gem_exec_fair@basic-flow@rcs0:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-7/igt@gem_exec_fair@basic-flow@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-7/igt@gem_exec_fair@basic-flow@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
  *   igt@gem_exec_fair@basic-none-solo@rcs0:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
  *   igt@gem_exec_fence@submit3:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@gem_exec_fence@submit3.html> (i915#4812<https://gitlab.freedesktop.org/drm/intel/issues/4812>)
  *   igt@gem_exec_flush@basic-batch-kernel-default-uc:

     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-uc.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html> (i915#8962<https://gitlab.freedesktop.org/drm/intel/issues/8962> / i915#9121<https://gitlab.freedesktop.org/drm/intel/issues/9121>)
  *   igt@gem_exec_flush@basic-batch-kernel-default-wb:

     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-wb.html> (i915#9121<https://gitlab.freedesktop.org/drm/intel/issues/9121>)
  *   igt@gem_exec_flush@basic-wb-rw-default:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@gem_exec_flush@basic-wb-rw-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/intel/issues/4852>) +2 similar issues
  *   igt@gem_exec_reloc@basic-gtt-wc:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-wc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +10 similar issues
  *   igt@gem_exec_schedule@preempt-queue-contexts-chain:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html> (i915#4537<https://gitlab.freedesktop.org/drm/intel/issues/4537> / i915#4812<https://gitlab.freedesktop.org/drm/intel/issues/4812>)
  *   igt@gem_fence_thrash@bo-write-verify-none:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-none.html> (i915#4860<https://gitlab.freedesktop.org/drm/intel/issues/4860>)
  *   igt@gem_gtt_cpu_tlb:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@gem_gtt_cpu_tlb.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +1 similar issue
  *   igt@gem_lmem_swapping@parallel-random:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@gem_lmem_swapping@parallel-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
  *   igt@gem_lmem_swapping@random-engines:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-4/igt@gem_lmem_swapping@random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
  *   igt@gem_lmem_swapping@verify-random:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-apl2/igt@gem_lmem_swapping@verify-random.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
  *   igt@gem_mmap_gtt@medium-copy-odd:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@gem_mmap_gtt@medium-copy-odd.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +5 similar issues
  *   igt@gem_mmap_wc@read:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@gem_mmap_wc@read.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>)
  *   igt@gem_mmap_wc@write-wc-read-gtt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@gem_mmap_wc@write-wc-read-gtt.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>) +3 similar issues
  *   igt@gem_partial_pwrite_pread@reads:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@gem_partial_pwrite_pread@reads.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) +1 similar issue
  *   igt@gem_partial_pwrite_pread@write-uncached:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-uncached.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>)
  *   igt@gem_pxp@create-regular-context-2:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-apl2/igt@gem_pxp@create-regular-context-2.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +51 similar issues
  *   igt@gem_pxp@regular-baseline-src-copy-readible:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +2 similar issues
  *   igt@gem_pxp@verify-pxp-stale-ctx-execution:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-ctx-execution.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>)
  *   igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html> (i915#8428<https://gitlab.freedesktop.org/drm/intel/issues/8428>)
  *   igt@gem_set_tiling_vs_gtt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@gem_set_tiling_vs_gtt.html> (i915#4079<https://gitlab.freedesktop.org/drm/intel/issues/4079>) +1 similar issue
  *   igt@gem_spin_batch@spin-all-new:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@gem_spin_batch@spin-all-new.html> (i915#5889<https://gitlab.freedesktop.org/drm/intel/issues/5889>)
  *   igt@gem_unfence_active_buffers:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@gem_unfence_active_buffers.html> (i915#4879<https://gitlab.freedesktop.org/drm/intel/issues/4879>)
  *   igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>)
  *   igt@gem_userptr_blits@unsync-overlap:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@gem_userptr_blits@unsync-overlap.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>)
  *   igt@gen9_exec_parse@bb-secure:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@gen9_exec_parse@bb-secure.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +2 similar issues
  *   igt@gen9_exec_parse@unaligned-jump:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@gen9_exec_parse@unaligned-jump.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>)
  *   igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html> (i915#1937<https://gitlab.freedesktop.org/drm/intel/issues/1937>)
  *   igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-16/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html> (i915#1937<https://gitlab.freedesktop.org/drm/intel/issues/1937>)
  *   igt@i915_pm_rc6_residency@rc6-idle@bcs0:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>)
  *   igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-17/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) +1 similar issue
  *   igt@i915_pm_rpm@modeset-lpsp-stress:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-8/igt@i915_pm_rpm@modeset-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>)

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>)

  *   igt@i915_pm_rpm@system-suspend:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-10/igt@i915_pm_rpm@system-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-12/igt@i915_pm_rpm@system-suspend.html> (i915#9142<https://gitlab.freedesktop.org/drm/intel/issues/9142>)
  *   igt@i915_pm_rpm@system-suspend-devices:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-18/igt@i915_pm_rpm@system-suspend-devices.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-17/igt@i915_pm_rpm@system-suspend-devices.html> (i915#6121<https://gitlab.freedesktop.org/drm/intel/issues/6121> / i915#7052<https://gitlab.freedesktop.org/drm/intel/issues/7052>)
  *   igt@i915_query@query-topology-coherent-slice-mask:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html> (i915#6188<https://gitlab.freedesktop.org/drm/intel/issues/6188>)
  *   igt@i915_suspend@sysfs-reader:

     *   shard-snb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-snb6/igt@i915_suspend@sysfs-reader.html> (i915#8841<https://gitlab.freedesktop.org/drm/intel/issues/8841>) +4 similar issues
  *   igt@kms_addfb_basic@clobberred-modifier:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html> (i915#4212<https://gitlab.freedesktop.org/drm/intel/issues/4212>) +1 similar issue
  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html> (i915#8502<https://gitlab.freedesktop.org/drm/intel/issues/8502> / i915#8709<https://gitlab.freedesktop.org/drm/intel/issues/8709>) +11 similar issues
  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs.html> (i915#8502<https://gitlab.freedesktop.org/drm/intel/issues/8502>) +7 similar issues
  *   igt@kms_async_flips@crc@pipe-b-hdmi-a-3:

     *   shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 similar issues
  *   igt@kms_async_flips@invalid-async-flip:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_async_flips@invalid-async-flip.html> (i915#6228<https://gitlab.freedesktop.org/drm/intel/issues/6228>)
  *   igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>)
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:

     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) +2 similar issues
  *   igt@kms_big_fb@x-tiled-16bpp-rotate-90:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
  *   igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) +12 similar issues
  *   igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html> (i915#4538<https://gitlab.freedesktop.org/drm/intel/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) +5 similar issues
  *   igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_rc_ccs_cc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-4/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_rc_ccs_cc.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue
  *   igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +6 similar issues
  *   igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +11 similar issues
  *   igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +9 similar issues
  *   igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-apl2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1 similar issue
  *   igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +30 similar issues
  *   igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +3 similar issues
  *   igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087> / i915#7213<https://gitlab.freedesktop.org/drm/intel/issues/7213>) +3 similar issues
  *   igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087>) +3 similar issues
  *   igt@kms_chamelium_color@ctm-limited-range:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_chamelium_color@ctm-limited-range.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
  *   igt@kms_chamelium_frames@hdmi-crc-multiple:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +5 similar issues
  *   igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues
  *   igt@kms_content_protection@dp-mst-lic-type-0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html> (i915#3299<https://gitlab.freedesktop.org/drm/intel/issues/3299>)
  *   igt@kms_content_protection@srm:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-8/igt@kms_content_protection@srm.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) +3 similar issues
  *   igt@kms_cursor_crc@cursor-rapid-movement-512x512:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue
  *   igt@kms_cursor_crc@cursor-sliding-512x170:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>)
  *   igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-apl2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767>)
  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (i915#4103<https://gitlab.freedesktop.org/drm/intel/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/intel/issues/4213>)
  *   igt@kms_cursor_legacy@cursor-vs-flip-toggle:

     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html> (i915#8248<https://gitlab.freedesktop.org/drm/intel/issues/8248>)
  *   igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>)
  *   igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html> (i915#3546<https://gitlab.freedesktop.org/drm/intel/issues/3546>)
  *   igt@kms_display_modes@extended-mode-basic:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html> (i915#8827<https://gitlab.freedesktop.org/drm/intel/issues/8827>)
  *   igt@kms_draw_crc@draw-method-mmap-wc:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html> (i915#8812<https://gitlab.freedesktop.org/drm/intel/issues/8812>)
  *   igt@kms_dsc@dsc-basic:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840>)
  *   igt@kms_flip@2x-flip-vs-blocking-wf-vblank:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-snb2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767>)
  *   igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>)
  *   igt@kms_flip@2x-flip-vs-fences-interruptible:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html> (i915#8381<https://gitlab.freedesktop.org/drm/intel/issues/8381>)
  *   igt@kms_flip@2x-plain-flip-interruptible:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_flip@2x-plain-flip-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>)
  *   igt@kms_flip@2x-wf_vblank-ts-check-interruptible:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +4 similar issues
  *   igt@kms_flip@flip-vs-suspend@a-hdmi-a3:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) +4 similar issues
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues
  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>)
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +14 similar issues
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>)
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html> (i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +4 similar issues
  *   igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/intel/issues/3458>) +11 similar issues
  *   igt@kms_frontbuffer_tracking@psr-suspend:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-suspend.html> (i915#3023<https://gitlab.freedesktop.org/drm/intel/issues/3023>) +3 similar issues
  *   igt@kms_hdr@invalid-metadata-sizes:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>) +2 similar issues

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>)

  *   igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue
  *   igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3 similar issues
  *   igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-3:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-3.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +15 similar issues
  *   igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +5 similar issues
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +19 similar issues
  *   igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-snb6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +190 similar issues
  *   igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +19 similar issues
  *   igt@kms_prime@d3hot:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@kms_prime@d3hot.html> (i915#6524<https://gitlab.freedesktop.org/drm/intel/issues/6524> / i915#6805<https://gitlab.freedesktop.org/drm/intel/issues/6805>)
  *   igt@kms_psr2_su@page_flip-xrgb8888:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-apl2/igt@kms_psr2_su@page_flip-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
  *   igt@kms_psr@psr2_primary_blt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@kms_psr@psr2_primary_blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) +5 similar issues
  *   igt@kms_psr@psr2_suspend:

     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-4/igt@kms_psr@psr2_suspend.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-3/igt@kms_psr@psr2_suspend.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>)
  *   igt@kms_rotation_crc@primary-rotation-90:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html> (i915#4235<https://gitlab.freedesktop.org/drm/intel/issues/4235>)
  *   igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (i915#4235<https://gitlab.freedesktop.org/drm/intel/issues/4235>)
  *   igt@kms_scaling_modes@scaling-mode-none:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@kms_scaling_modes@scaling-mode-none.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +3 similar issues
  *   igt@kms_selftest@drm_damage:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@kms_selftest@drm_damage.html> (i915#8661<https://gitlab.freedesktop.org/drm/intel/issues/8661>)
  *   igt@kms_tiled_display@basic-test-pattern:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/intel/issues/8623>)
  *   igt@kms_tv_load_detect@load-detect:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@kms_tv_load_detect@load-detect.html> (fdo#109309<https://bugs.freedesktop.org/show_bug.cgi?id=109309>)
  *   igt@kms_vblank@pipe-d-ts-continuation-modeset:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-4/igt@kms_vblank@pipe-d-ts-continuation-modeset.html> (i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533> / i915#6768<https://gitlab.freedesktop.org/drm/intel/issues/6768>)
  *   igt@kms_writeback@writeback-fb-id:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/intel/issues/2437>)
  *   igt@perf_pmu@rc6@other-idle-gt0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html> (i915#8516<https://gitlab.freedesktop.org/drm/intel/issues/8516>)
  *   igt@perf_pmu@render-node-busy-idle@vcs1:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@perf_pmu@render-node-busy-idle@vcs1.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) +6 similar issues
  *   igt@prime_vgem@basic-fence-flip:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-10/igt@prime_vgem@basic-fence-flip.html> (i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>)
  *   igt@v3d/v3d_submit_cl@bad-perfmon:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-perfmon.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +8 similar issues
  *   igt@v3d/v3d_submit_cl@simple-flush-cache:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@v3d/v3d_submit_cl@simple-flush-cache.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +2 similar issues
  *   igt@vc4/vc4_perfmon@create-single-perfmon:

     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@vc4/vc4_perfmon@create-single-perfmon.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>)
  *   igt@vc4/vc4_wait_bo@unused-bo-0ns:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@vc4/vc4_wait_bo@unused-bo-0ns.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +4 similar issues

Possible fixes

  *   igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:

     *   shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> (i915#6311<https://gitlab.freedesktop.org/drm/intel/issues/6311> / i915#7297<https://gitlab.freedesktop.org/drm/intel/issues/7297>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html>
  *   igt@gem_ctx_isolation@preservation-s3@bcs0:

     *   shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3@bcs0.html>
  *   igt@gem_ctx_isolation@preservation-s3@rcs0:

     *   shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@rcs0.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3@rcs0.html>
  *   igt@gem_eio@in-flight-contexts-immediate:

     *   shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html> (i915#8503<https://gitlab.freedesktop.org/drm/intel/issues/8503>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-4/igt@gem_eio@in-flight-contexts-immediate.html>
  *   igt@gem_exec_capture@pi@vcs0:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-8/igt@gem_exec_capture@pi@vcs0.html> (i915#4475<https://gitlab.freedesktop.org/drm/intel/issues/4475>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-6/igt@gem_exec_capture@pi@vcs0.html>
  *   igt@gem_exec_capture@pi@vcs1:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-8/igt@gem_exec_capture@pi@vcs1.html> (i915#4475<https://gitlab.freedesktop.org/drm/intel/issues/4475> / i915#7765<https://gitlab.freedesktop.org/drm/intel/issues/7765>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-6/igt@gem_exec_capture@pi@vcs1.html>
  *   igt@gem_exec_fair@basic-none@vecs0:

     *   shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-6/igt@gem_exec_fair@basic-none@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-2/igt@gem_exec_fair@basic-none@vecs0.html>
  *   igt@gem_exec_fair@basic-pace-share@rcs0:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html> +1 similar issue
  *   igt@gem_lmem_swapping@smem-oom@lmem0:

     *   shard-dg1: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/intel/issues/5493>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html>
  *   igt@gem_mmap_offset@clear@smem0:

     *   shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html> (i915#7962<https://gitlab.freedesktop.org/drm/intel/issues/7962>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-18/igt@gem_mmap_offset@clear@smem0.html>
  *   igt@i915_pipe_stress@stress-xrgb8888-untiled:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html> (i915#8691<https://gitlab.freedesktop.org/drm/intel/issues/8691>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html>
  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-tglu-8/igt@i915_pm_dc@dc6-dpms.html> (i915#3989<https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html>
  *   igt@i915_pm_dc@dc9-dpms:

     *   shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html> (i915#4281<https://gitlab.freedesktop.org/drm/intel/issues/4281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-tglu-9/igt@i915_pm_dc@dc9-dpms.html>
  *   igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> +1 similar issue

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> +1 similar issue

  *   igt@i915_pm_rpm@modeset-non-lpsp-stress:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp-stress.html>
  *   igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html> (i915#2521<https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html>
  *   igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> +1 similar issue
  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:

     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html>
  *   igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:

     *   shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html> (i915#6880<https://gitlab.freedesktop.org/drm/intel/issues/6880>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html>
  *   igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html> (i915#1623<https://gitlab.freedesktop.org/drm/intel/issues/1623>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-5/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html> +1 similar issue
  *   igt@kms_properties@connector-properties-legacy:

     *   shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-11/igt@kms_properties@connector-properties-legacy.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-8/igt@kms_properties@connector-properties-legacy.html>

Warnings

  *   igt@gem_lmem_swapping@smem-oom@lmem0:

     *   shard-dg2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#4936<https://gitlab.freedesktop.org/drm/intel/issues/4936> / i915#5493<https://gitlab.freedesktop.org/drm/intel/issues/5493>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-dg2-12/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/intel/issues/5493>)
  *   igt@i915_suspend@basic-s3-without-i915:

     *   shard-rkl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html> (i915#4817<https://gitlab.freedesktop.org/drm/intel/issues/4817>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>)
  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982> / i915#2017<https://gitlab.freedesktop.org/drm/intel/issues/2017> / i915#5954<https://gitlab.freedesktop.org/drm/intel/issues/5954>)
  *   igt@kms_fbcon_fbt@psr-suspend:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3955<https://gitlab.freedesktop.org/drm/intel/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122965v1/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html> (fdo#110189<https://bugs.freedesktop.org/show_bug.cgi?id=110189> / i915#3955<https://gitlab.freedesktop.org/drm/intel/issues/3955>)

Build changes

  *   Linux: CI_DRM_13571 -> Patchwork_122965v1

CI-20190529: 20190529
CI_DRM_13571: d3f0e020609215d9097f1b1fad5a13ea0b37548e @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7454: 7454
Patchwork_122965v1: d3f0e020609215d9097f1b1fad5a13ea0b37548e @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
Hogander, Jouni Sept. 6, 2023, 6:15 a.m. UTC | #3
On Tue, 2023-09-05 at 08:52 +0000, Manna, Animesh wrote:
> 
> 
> > -----Original Message-----
> > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf
> > Of Jouni
> > Högander
> > Sent: Monday, August 28, 2023 2:01 PM
> > To: intel-gfx@lists.freedesktop.org
> > Subject: [Intel-gfx] [PATCH] drm/i915/psr: Add psr sink error
> > status into sink
> > status debugfs
> > 
> > Normally PSR errors detected by the panel are triggering HPD
> > interrupt and
> > seen as error in dmesg. Some panels are not triggering the
> > interrupt even it is
> > requested and they are detecting error. Due to this it would be
> > good to have
> > possibility to check panel detected errors. Add PSR error status
> > into PSR sink
> > status debugfs interface.
> > 
> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> 
> LGTM.
> Reviewed-by: Animesh Manna <animesh.manna@intel.com>

Thank you Animesh for the review. This is now merged.

BR,

Jouni Högander

> 
> > ---
> >  drivers/gpu/drm/i915/display/intel_psr.c | 34 +++++++++++++++++---
> > ----
> >  1 file changed, 25 insertions(+), 9 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> > b/drivers/gpu/drm/i915/display/intel_psr.c
> > index 72887c29fb51..a008918b4d71 100644
> > --- a/drivers/gpu/drm/i915/display/intel_psr.c
> > +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> > @@ -23,6 +23,7 @@
> > 
> >  #include <drm/drm_atomic_helper.h>
> >  #include <drm/drm_damage_helper.h>
> > +#include <drm/drm_debugfs.h>
> > 
> >  #include "i915_drv.h"
> >  #include "i915_reg.h"
> > @@ -3153,7 +3154,7 @@ static int i915_psr_sink_status_show(struct
> > seq_file
> > *m, void *data)
> >         };
> >         const char *str;
> >         int ret;
> > -       u8 val;
> > +       u8 status, error_status;
> > 
> >         if (!CAN_PSR(intel_dp)) {
> >                 seq_puts(m, "PSR Unsupported\n");
> > @@ -3163,19 +3164,34 @@ static int i915_psr_sink_status_show(struct
> > seq_file *m, void *data)
> >         if (connector->base.status != connector_status_connected)
> >                 return -ENODEV;
> > 
> > -       ret = drm_dp_dpcd_readb(&intel_dp->aux, DP_PSR_STATUS,
> > &val);
> > -       if (ret != 1)
> > -               return ret < 0 ? ret : -EIO;
> > +       ret = psr_get_status_and_error_status(intel_dp, &status,
> > &error_status);
> > +       if (ret)
> > +               return ret;
> > 
> > -       val &= DP_PSR_SINK_STATE_MASK;
> > -       if (val < ARRAY_SIZE(sink_status))
> > -               str = sink_status[val];
> > +       status &= DP_PSR_SINK_STATE_MASK;
> > +       if (status < ARRAY_SIZE(sink_status))
> > +               str = sink_status[status];
> >         else
> >                 str = "unknown";
> > 
> > -       seq_printf(m, "Sink PSR status: 0x%x [%s]\n", val, str);
> > +       seq_printf(m, "Sink PSR status: 0x%x [%s]\n", status, str);
> > 
> > -       return 0;
> > +       seq_printf(m, "Sink PSR error status: 0x%x", error_status);
> > +
> > +       if (error_status & (DP_PSR_RFB_STORAGE_ERROR |
> > +                           DP_PSR_VSC_SDP_UNCORRECTABLE_ERROR |
> > +                           DP_PSR_LINK_CRC_ERROR))
> > +               seq_puts(m, ":\n");
> > +       else
> > +               seq_puts(m, "\n");
> > +       if (error_status & DP_PSR_RFB_STORAGE_ERROR)
> > +               seq_puts(m, "\tPSR RFB storage error\n");
> > +       if (error_status & DP_PSR_VSC_SDP_UNCORRECTABLE_ERROR)
> > +               seq_puts(m, "\tPSR VSC SDP uncorrectable error\n");
> > +       if (error_status & DP_PSR_LINK_CRC_ERROR)
> > +               seq_puts(m, "\tPSR Link CRC error\n");
> > +
> > +       return ret;
> >  }
> >  DEFINE_SHOW_ATTRIBUTE(i915_psr_sink_status);
> > 
> > --
> > 2.34.1
>
diff mbox series

Patch

diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 72887c29fb51..a008918b4d71 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -23,6 +23,7 @@ 
 
 #include <drm/drm_atomic_helper.h>
 #include <drm/drm_damage_helper.h>
+#include <drm/drm_debugfs.h>
 
 #include "i915_drv.h"
 #include "i915_reg.h"
@@ -3153,7 +3154,7 @@  static int i915_psr_sink_status_show(struct seq_file *m, void *data)
 	};
 	const char *str;
 	int ret;
-	u8 val;
+	u8 status, error_status;
 
 	if (!CAN_PSR(intel_dp)) {
 		seq_puts(m, "PSR Unsupported\n");
@@ -3163,19 +3164,34 @@  static int i915_psr_sink_status_show(struct seq_file *m, void *data)
 	if (connector->base.status != connector_status_connected)
 		return -ENODEV;
 
-	ret = drm_dp_dpcd_readb(&intel_dp->aux, DP_PSR_STATUS, &val);
-	if (ret != 1)
-		return ret < 0 ? ret : -EIO;
+	ret = psr_get_status_and_error_status(intel_dp, &status, &error_status);
+	if (ret)
+		return ret;
 
-	val &= DP_PSR_SINK_STATE_MASK;
-	if (val < ARRAY_SIZE(sink_status))
-		str = sink_status[val];
+	status &= DP_PSR_SINK_STATE_MASK;
+	if (status < ARRAY_SIZE(sink_status))
+		str = sink_status[status];
 	else
 		str = "unknown";
 
-	seq_printf(m, "Sink PSR status: 0x%x [%s]\n", val, str);
+	seq_printf(m, "Sink PSR status: 0x%x [%s]\n", status, str);
 
-	return 0;
+	seq_printf(m, "Sink PSR error status: 0x%x", error_status);
+
+	if (error_status & (DP_PSR_RFB_STORAGE_ERROR |
+			    DP_PSR_VSC_SDP_UNCORRECTABLE_ERROR |
+			    DP_PSR_LINK_CRC_ERROR))
+		seq_puts(m, ":\n");
+	else
+		seq_puts(m, "\n");
+	if (error_status & DP_PSR_RFB_STORAGE_ERROR)
+		seq_puts(m, "\tPSR RFB storage error\n");
+	if (error_status & DP_PSR_VSC_SDP_UNCORRECTABLE_ERROR)
+		seq_puts(m, "\tPSR VSC SDP uncorrectable error\n");
+	if (error_status & DP_PSR_LINK_CRC_ERROR)
+		seq_puts(m, "\tPSR Link CRC error\n");
+
+	return ret;
 }
 DEFINE_SHOW_ATTRIBUTE(i915_psr_sink_status);