* [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled
@ 2024-10-29 12:24 Jouni Högander
2024-10-29 21:06 ` ✓ Fi.CI.BAT: success for drm/i915/psr: WA for panels stating bad link status after PSR is enabled (rev2) Patchwork
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Jouni Högander @ 2024-10-29 12:24 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, imre.deak, Jouni Högander
We are currently seeing unexpected link trainings with several different
eDP panels. These are caused by these panels stating bad link status in
their dpcd registers. This can be observed by doing following test:
1. Boot up without Xe module loaded
2. Load Xe module with PSR disabled:
$ modprobe xe enable_psr=0
3. Read panel link status register
$ dpcd_reg read --offset 0x200e --count=1
0x200e: 00
4. Enable PSR, sleep for 2 seconds and disable PSR again:
$ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug
$ echo "-1" > /sys/kernel/debug/dri/0000:00:02.0/xe_params/enable_psr
$ echo 0x0 > /sys/kernel/debug/dri/0/i915_edp_psr_debug
$ sleep 2
$ cat /sys/kernel/debug/dri/0/i915_edp_psr_status | grep status
$ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug
Source PSR/PanelReplay status: DEEP_SLEEP [0x80310030]
5. Now read panel link status registers again:
$ dpcd_reg read --offset 0x200e --count=1
0x200e: 80
Workaround this by not trusting link status registers after PSR is enabled
until first short pulse interrupt is received.
v2:
- clear link_ok flag on pipe disable
- remove useless comment
- modify intel_dp_needs_link_retrain return statement
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
.../drm/i915/display/intel_display_types.h | 2 +
drivers/gpu/drm/i915/display/intel_dp.c | 3 +-
drivers/gpu/drm/i915/display/intel_psr.c | 40 +++++++++++++++++++
drivers/gpu/drm/i915/display/intel_psr.h | 1 +
4 files changed, 45 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 2bb1fa64da2f..f0b7d7262961 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1618,6 +1618,8 @@ struct intel_psr {
u32 dc3co_exit_delay;
struct delayed_work dc3co_work;
u8 entry_setup_frames;
+
+ bool link_ok;
};
struct intel_dp {
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 9dd4610c749a..2212a9d97121 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -5011,7 +5011,8 @@ intel_dp_needs_link_retrain(struct intel_dp *intel_dp)
return true;
/* Retrain if link not ok */
- return !intel_dp_link_ok(intel_dp, link_status);
+ return !intel_dp_link_ok(intel_dp, link_status) &&
+ !intel_psr_link_ok(intel_dp);
}
bool intel_dp_has_connector(struct intel_dp *intel_dp,
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 880ea845207f..7695225b3745 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2013,6 +2013,15 @@ static void intel_psr_enable_locked(struct intel_dp *intel_dp,
intel_dp->psr.enabled = true;
intel_dp->psr.paused = false;
+ /*
+ * Link_ok is sticky and set here on PSR enable. We can assume link
+ * training is complete as we never continue to PSR enable with
+ * untrained link. Link_ok is kept as set until first short pulse
+ * interrupt. This is targeted to workaround panels stating bad link
+ * after PSR is enabled.
+ */
+ intel_dp->psr.link_ok = true;
+
intel_psr_activate(intel_dp);
}
@@ -2172,6 +2181,8 @@ void intel_psr_disable(struct intel_dp *intel_dp,
intel_psr_disable_locked(intel_dp);
+ intel_dp->psr.link_ok = false;
+
mutex_unlock(&intel_dp->psr.lock);
cancel_work_sync(&intel_dp->psr.work);
cancel_delayed_work_sync(&intel_dp->psr.dc3co_work);
@@ -3462,6 +3473,8 @@ void intel_psr_short_pulse(struct intel_dp *intel_dp)
mutex_lock(&psr->lock);
+ psr->link_ok = false;
+
if (!psr->enabled)
goto exit;
@@ -3521,6 +3534,33 @@ bool intel_psr_enabled(struct intel_dp *intel_dp)
return ret;
}
+/**
+ * intel_psr_link_ok - return psr->link_ok
+ * @intel_dp: struct intel_dp
+ *
+ * We are seeing unexpected link re-trainings with some panels. This is caused
+ * by panel stating bad link status after PSR is enabled. Code checking link
+ * status can call this to ensure it can ignore bad link status stated by the
+ * panel I.e. if panel is stating bad link and intel_psr_link_ok is stating link
+ * is ok caller should rely on latter.
+ *
+ * Return value of link_ok
+ */
+bool intel_psr_link_ok(struct intel_dp *intel_dp)
+{
+ bool ret;
+
+ if ((!CAN_PSR(intel_dp) && !CAN_PANEL_REPLAY(intel_dp)) ||
+ !intel_dp_is_edp(intel_dp))
+ return false;
+
+ mutex_lock(&intel_dp->psr.lock);
+ ret = intel_dp->psr.link_ok;
+ mutex_unlock(&intel_dp->psr.lock);
+
+ return ret;
+}
+
/**
* intel_psr_lock - grab PSR lock
* @crtc_state: the crtc state
diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h
index 5f26f61f82aa..956be263c09e 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.h
+++ b/drivers/gpu/drm/i915/display/intel_psr.h
@@ -59,6 +59,7 @@ void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_st
void intel_psr_pause(struct intel_dp *intel_dp);
void intel_psr_resume(struct intel_dp *intel_dp);
bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state *crtc_state);
+bool intel_psr_link_ok(struct intel_dp *intel_dp);
void intel_psr_lock(const struct intel_crtc_state *crtc_state);
void intel_psr_unlock(const struct intel_crtc_state *crtc_state);
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ Fi.CI.BAT: success for drm/i915/psr: WA for panels stating bad link status after PSR is enabled (rev2) 2024-10-29 12:24 [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Jouni Högander @ 2024-10-29 21:06 ` Patchwork 2024-10-30 16:51 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-11-01 15:12 ` [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Imre Deak 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-10-29 21:06 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 2401 bytes --] == Series Details == Series: drm/i915/psr: WA for panels stating bad link status after PSR is enabled (rev2) URL : https://patchwork.freedesktop.org/series/140570/ State : success == Summary == CI Bug Log - changes from CI_DRM_15606 -> Patchwork_140570v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/index.html Participating hosts (47 -> 46) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_140570v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - fi-hsw-4770: [PASS][1] -> [DMESG-WARN][2] ([i915#12133]) +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/fi-hsw-4770/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/fi-hsw-4770/igt@i915_selftest@live.html #### Possible fixes #### * igt@i915_selftest@live: - bat-adlm-1: [INCOMPLETE][3] ([i915#12133]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/bat-adlm-1/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/bat-adlm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-adlm-1: [INCOMPLETE][5] ([i915#9413]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/bat-adlm-1/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/bat-adlm-1/igt@i915_selftest@live@workarounds.html [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * Linux: CI_DRM_15606 -> Patchwork_140570v2 CI-20190529: 20190529 CI_DRM_15606: 91b5d7af697c6765039b8700127c1740da858065 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8087: 7abd9c49a49a9ff1f3300d7c51a92a5af8a789f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_140570v2: 91b5d7af697c6765039b8700127c1740da858065 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/index.html [-- Attachment #2: Type: text/html, Size: 3127 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/psr: WA for panels stating bad link status after PSR is enabled (rev2) 2024-10-29 12:24 [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Jouni Högander 2024-10-29 21:06 ` ✓ Fi.CI.BAT: success for drm/i915/psr: WA for panels stating bad link status after PSR is enabled (rev2) Patchwork @ 2024-10-30 16:51 ` Patchwork 2024-11-04 7:31 ` Hogander, Jouni 2024-11-01 15:12 ` [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Imre Deak 2 siblings, 1 reply; 6+ messages in thread From: Patchwork @ 2024-10-30 16:51 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100306 bytes --] == Series Details == Series: drm/i915/psr: WA for panels stating bad link status after PSR is enabled (rev2) URL : https://patchwork.freedesktop.org/series/140570/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15606_full -> Patchwork_140570v2_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_140570v2_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_140570v2_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 (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_140570v2_full: ### IGT changes ### #### Possible regressions #### * igt@kms_hdr@brightness-with-hdr: - shard-tglu: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_hdr@brightness-with-hdr.html * igt@sysfs_heartbeat_interval@mixed: - shard-mtlp: [PASS][2] -> [FAIL][3] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-3/igt@sysfs_heartbeat_interval@mixed.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_workarounds@suspend-resume-fd: - {shard-dg2-9}: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-9/igt@gem_workarounds@suspend-resume-fd.html Known issues ------------ Here are the changes found in Patchwork_140570v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@virtual-busy: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@drm_fdinfo@virtual-busy.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@drm_fdinfo@virtual-busy-all.html * igt@fbdev@eof: - shard-dg2: [PASS][11] -> [SKIP][12] ([i915#2582]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@fbdev@eof.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@fbdev@eof.html * igt@fbdev@write: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#2582]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@fbdev@write.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#4771]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_fair@basic-deadline: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-vip: - shard-tglu: NOTRUN -> [FAIL][24] ([i915#2842]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4473] / [i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu-1: NOTRUN -> [FAIL][26] ([i915#2842]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-1/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@gem_exec_fence@submit3.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-17/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@pi-ringfull@rcs0: - shard-dg1: NOTRUN -> [FAIL][35] ([i915#12296]) +5 other tests fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_exec_schedule@pi-ringfull@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s3-devices: - shard-dg1: [PASS][38] -> [DMESG-WARN][39] ([i915#4423]) +1 other test dmesg-warn [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-18/igt@gem_exec_suspend@basic-s3-devices.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-16/igt@gem_exec_suspend@basic-s3-devices.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4860]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_gtt_cpu_tlb: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4077]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_gtt_cpu_tlb.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@massive-random: - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#12193]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4565]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +11 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4077]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-14/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@close: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4083]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@gem_mmap_wc@close.html * igt@gem_pread@display: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3282]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_pread@display.html * igt@gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][52] ([i915#2658]) +1 other test warn [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_pread@snoop.html * igt@gem_pread@uncached: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@gem_pread@uncached.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4270]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4270]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8428]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#5190] / [i915#8428]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4079]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@gem_render_tiled_blits@basic.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4885]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-14/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3297] / [i915#4880]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3281] / [i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_userptr_blits@relocations.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-17/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#2856]) +6 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@gen9_exec_parse@shadow-peek.html - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#2527]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][77] -> [ABORT][78] ([i915#9820]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [PASS][79] -> [ABORT][80] ([i915#9820]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#6590]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][82] ([i915#2681]) +1 other test warn [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][83] -> [INCOMPLETE][84] ([i915#7790]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb6/igt@i915_pm_rps@reset.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb2/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#11681]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8437]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#6245]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#6188]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-tglu-1: NOTRUN -> [DMESG-WARN][89] ([i915#9311]) +1 other test dmesg-warn [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][90] ([i915#7443]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4212]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_addfb_basic@clobberred-modifier.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4212]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-17/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#12454]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#8709]) +11 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#1769] / [i915#3555]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][96] ([i915#1769] / [i915#3555]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg1: [PASS][97] -> [FAIL][98] ([i915#5956]) +1 other test fail [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-18/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][99] ([i915#5956]) +1 other test fail [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5286]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#5286]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#5286]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#5286]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#9197]) +16 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5190]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#3638]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6187]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#5190]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#5190] / [i915#9197]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][110] +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][112] +54 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#12313]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#6095]) +108 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#6095]) +29 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#6095]) +80 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#10307] / [i915#6095]) +142 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#6095]) +34 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#12313]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6095]) +19 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#12313]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][123] +19 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk3/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#3742]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#7828]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#7828]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#7828]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#7828]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#7828]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#7828]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_color@ctm-0-25: - shard-dg2: [PASS][131] -> [SKIP][132] ([i915#12655]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_color@ctm-0-25.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_color@ctm-0-25.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7118] / [i915#9424]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#8814]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - shard-dg1: NOTRUN -> [DMESG-WARN][136] ([i915#4423]) +1 other test dmesg-warn [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#3555]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3555] / [i915#8814]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#11453] / [i915#3359]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#11453] / [i915#3359]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#11453] / [i915#3359]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1: - shard-glk: [PASS][142] -> [DMESG-FAIL][143] ([i915#118]) +1 other test dmesg-fail [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk6/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk8/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#9809]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#4103]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#4213]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#9723]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#9723]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#1769] / [i915#3555] / [i915#3804]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#3804]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3804]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#1257]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#12402]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#3840]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_dsc@dsc-basic.html - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#3840]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#3840]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#3840] / [i915#9053]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#3469]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#1839]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#9337]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-rkl: NOTRUN -> [SKIP][164] +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#9934]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#3637] / [i915#3966]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3637]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#3637] / [i915#3966]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3637]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][170] -> [FAIL][171] ([i915#2122]) +1 other test fail [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-9/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1: - shard-mtlp: [PASS][172] -> [FAIL][173] ([i915#2122]) +2 other tests fail [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-3/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][174] ([i915#11961]) +1 other test fail [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#2672] / [i915#8813]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#2587] / [i915#2672] / [i915#3555]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#2587] / [i915#2672]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#2587] / [i915#2672] / [i915#3555]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling: - shard-dg2: [PASS][180] -> [SKIP][181] ([i915#3555]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#2587] / [i915#2672]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#2672] / [i915#3555]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#2587] / [i915#2672]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#5190]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: [PASS][187] -> [SKIP][188] ([i915#5354]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#1825]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#1825]) +10 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-snb: [PASS][191] -> [SKIP][192] +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3458]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-snb: NOTRUN -> [SKIP][194] +12 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#8708]) +12 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#10433] / [i915#3458]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#8708]) +5 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][198] +55 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][199] +17 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#5439]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#3458]) +9 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#5354]) +46 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8708]) +4 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3023]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch: - shard-dg2: [PASS][205] -> [SKIP][206] ([i915#3555] / [i915#8228]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_hdr@bpc-switch.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-6/igt@kms_hdr@bpc-switch.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_hdr@invalid-hdr.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#10656]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#10656]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_joiner@basic-force-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#12394]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#12388]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#12339]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#6301]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][217] +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane@pixel-format: - shard-glk: [PASS][218] -> [INCOMPLETE][219] ([i915#10056] / [i915#118]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk8/igt@kms_plane@pixel-format.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk2/igt@kms_plane@pixel-format.html * igt@kms_plane@pixel-format@pipe-b-plane-1: - shard-glk: [PASS][220] -> [DMESG-WARN][221] ([i915#118]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk8/igt@kms_plane@pixel-format@pipe-b-plane-1.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk2/igt@kms_plane@pixel-format@pipe-b-plane-1.html * igt@kms_plane@plane-panning-top-left: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8825]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane@plane-panning-top-left.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-dg2: [PASS][223] -> [SKIP][224] ([i915#7294]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_alpha_blend@constant-alpha-mid.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8821]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555]) +4 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [PASS][227] -> [FAIL][228] ([i915#8292]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][229] ([i915#8292]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#12247]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#8152] / [i915#9423]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8152]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#12247]) +8 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2: [PASS][234] -> [SKIP][235] ([i915#3555] / [i915#8152] / [i915#9423]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#12247]) +13 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-dg2: [PASS][238] -> [SKIP][239] ([i915#6953] / [i915#8152] / [i915#9423]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d: - shard-dg2: [PASS][240] -> [SKIP][241] ([i915#12247] / [i915#8152]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#12247] / [i915#12504] / [i915#3555]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#12247] / [i915#12504]) +6 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2: [PASS][244] -> [SKIP][245] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#12247] / [i915#8152]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#12247] / [i915#3555] / [i915#6953]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#12247]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b: - shard-dg2: [PASS][250] -> [SKIP][251] ([i915#12247]) +8 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d: - shard-dg2: [PASS][252] -> [SKIP][253] ([i915#8152]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#5354]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#12343]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#9812]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-dg2: [PASS][257] -> [SKIP][258] ([i915#9293]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_pm_dc@dc5-dpms-negative.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#3361]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#8430]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#9519]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@drm-resources-equal: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#3547]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#9519]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][264] -> [SKIP][265] ([i915#9519]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][266] -> [SKIP][267] ([i915#9519]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#6524]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][269] ([i915#6524]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_properties@crtc-properties-legacy: - shard-dg2: [PASS][270] -> [SKIP][271] ([i915#11521]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_properties@crtc-properties-legacy.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#11520]) +7 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#9808]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#12316]) +3 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#11520]) +6 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#11520]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#11520]) +6 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#9683]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#9683]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#9683]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#9688]) +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#9732]) +12 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@pr-sprite-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#9732]) +14 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_psr@pr-sprite-mmap-cpu.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#1072] / [i915#9732]) +11 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#1072] / [i915#9732]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#9732]) +14 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#4077] / [i915#9688]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#4235]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#5289]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#5289]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#11131] / [i915#4235]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#5289]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#3555]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#3555]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_scaling_modes@scaling-mode-none: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#5030] / [i915#9041]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#5030]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#5030] / [i915#9041]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_selftest@drm_framebuffer: - shard-dg1: NOTRUN -> [ABORT][298] ([i915#12231]) +1 other test abort [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#8623]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@wait-idle-hang: - shard-dg2: [PASS][300] -> [SKIP][301] ([i915#9197]) +20 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_vblank@wait-idle-hang.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_vblank@wait-idle-hang.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#9906]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_vrr@negative-basic.html - shard-mtlp: [PASS][303] -> [FAIL][304] ([i915#10393]) +1 other test fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-1/igt@kms_vrr@negative-basic.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#9906]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][306] ([i915#9906]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][307] ([i915#9100]) +1 other test fail [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@most-busy-idle-check-all: - shard-mtlp: NOTRUN -> [FAIL][308] ([i915#11943] / [i915#12515]) +1 other test fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#8516]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap_kms@buffer-sharing: - shard-dg2: [PASS][310] -> [SKIP][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@prime_mmap_kms@buffer-sharing.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@prime_mmap_kms@buffer-sharing.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#3291] / [i915#3708]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#3708]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#9917]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#9917]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][316] ([i915#12564] / [i915#9781]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][317] ([i915#2846]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk8/igt@gem_exec_fair@basic-deadline.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][319] ([i915#2842]) -> [PASS][320] +4 other tests pass [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg1: [ABORT][321] ([i915#7975] / [i915#8213]) -> [PASS][322] +1 other test pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [INCOMPLETE][323] -> [PASS][324] +1 other test pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_offset@clear: - shard-mtlp: [ABORT][325] ([i915#10729]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-2/igt@gem_mmap_offset@clear.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_mmap_offset@clear.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [ABORT][327] ([i915#10029] / [i915#10729]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-2/igt@gem_mmap_offset@clear@smem0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_mmap_offset@clear@smem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][329] ([i915#9820]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][331] ([i915#9697]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-glk: [FAIL][333] ([i915#10991]) -> [PASS][334] +1 other test pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [FAIL][335] ([i915#5956]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-rkl: [ABORT][337] ([i915#10354]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-0.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][339] ([i915#2346]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][341] ([i915#2122]) -> [PASS][342] +5 other tests pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1: - shard-tglu: [FAIL][343] ([i915#2122]) -> [PASS][344] +2 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: - shard-mtlp: [FAIL][345] ([i915#11989]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][347] ([i915#5354]) -> [PASS][348] +6 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [FAIL][349] ([i915#6880]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_invalid_mode@uint-max-clock: - shard-dg2: [SKIP][351] ([i915#3555]) -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_invalid_mode@uint-max-clock.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_invalid_mode@uint-max-clock.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2: [SKIP][353] ([i915#9197]) -> [PASS][354] +19 other tests pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read-crc.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-dg2: [SKIP][355] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-dg2: [SKIP][357] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: - shard-dg2: [SKIP][359] ([i915#12247]) -> [PASS][360] +5 other tests pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d: - shard-dg2: [SKIP][361] ([i915#12247] / [i915#8152]) -> [PASS][362] +1 other test pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][363] ([i915#4281]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][365] ([i915#9519]) -> [PASS][366] +2 other tests pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2: [SKIP][367] ([i915#3547]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_pm_rpm@system-suspend-modeset.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][369] ([i915#10131] / [i915#9820]) -> [ABORT][370] ([i915#10131] / [i915#10887] / [i915#9820]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: [SKIP][371] ([i915#7091]) -> [SKIP][372] ([i915#9197]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: [SKIP][373] ([i915#6228]) -> [SKIP][374] ([i915#9197]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_async_flips@invalid-async-flip.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: [SKIP][375] ([i915#9531]) -> [SKIP][376] ([i915#9197]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: [SKIP][377] ([i915#9197]) -> [SKIP][378] ([i915#1769] / [i915#3555]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: [SKIP][379] ([i915#9197]) -> [SKIP][380] +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: [SKIP][381] -> [SKIP][382] ([i915#9197]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: [SKIP][383] ([i915#4538] / [i915#5190]) -> [SKIP][384] ([i915#5190] / [i915#9197]) +5 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: [SKIP][385] ([i915#5190] / [i915#9197]) -> [SKIP][386] ([i915#4538] / [i915#5190]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][387] ([i915#9197]) -> [SKIP][388] ([i915#10307] / [i915#6095]) +5 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2: [SKIP][389] ([i915#10307] / [i915#6095]) -> [SKIP][390] ([i915#9197]) +8 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [TIMEOUT][391] ([i915#7173]) -> [SKIP][392] ([i915#9197]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_content_protection@lic-type-0.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][393] ([i915#9433]) -> [SKIP][394] ([i915#9424]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-12/igt@kms_content_protection@mei-interface.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2: [SKIP][395] ([i915#3555]) -> [SKIP][396] ([i915#9197]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-max-size.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: [SKIP][397] ([i915#9197]) -> [SKIP][398] ([i915#5354]) +4 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-dg2: [SKIP][399] ([i915#5354]) -> [SKIP][400] ([i915#9197]) +1 other test skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: [SKIP][401] ([i915#3840] / [i915#9688]) -> [SKIP][402] ([i915#9197]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: [SKIP][403] ([i915#2672] / [i915#3555]) -> [SKIP][404] ([i915#3555]) +2 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: [SKIP][405] ([i915#5354]) -> [SKIP][406] ([i915#8708]) +7 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: [SKIP][407] ([i915#8708]) -> [SKIP][408] ([i915#5354]) +5 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][409] ([i915#10433] / [i915#3458]) -> [SKIP][410] ([i915#3458]) +3 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][411] ([i915#3458]) -> [SKIP][412] ([i915#5354]) +10 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: [SKIP][413] ([i915#5354]) -> [SKIP][414] ([i915#3458]) +4 other tests skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: - shard-dg2: [SKIP][415] ([i915#3458]) -> [SKIP][416] ([i915#10433] / [i915#3458]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: [SKIP][417] ([i915#9197]) -> [SKIP][418] ([i915#8821]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [SKIP][419] ([i915#6953] / [i915#9423]) -> [SKIP][420] ([i915#6953] / [i915#8152] / [i915#9423]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: [SKIP][421] ([i915#12247] / [i915#8152] / [i915#9423]) -> [SKIP][422] ([i915#12247] / [i915#9423]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg2: [SKIP][423] ([i915#12247] / [i915#8152]) -> [SKIP][424] ([i915#12247]) [423]: https:/ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/index.html [-- Attachment #2: Type: text/html, Size: 109503 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for drm/i915/psr: WA for panels stating bad link status after PSR is enabled (rev2) 2024-10-30 16:51 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-11-04 7:31 ` Hogander, Jouni 0 siblings, 0 replies; 6+ messages in thread From: Hogander, Jouni @ 2024-11-04 7:31 UTC (permalink / raw) To: intel-gfx@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 93724 bytes --] Hello All, Checked possible regressions found by CI here. They are not regressions or not related to my patch. Please check details inline below. On Wed, 2024-10-30 at 16:51 +0000, Patchwork wrote: Patch Details Series: drm/i915/psr: WA for panels stating bad link status after PSR is enabled (rev2) URL: https://patchwork.freedesktop.org/series/140570/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/index.html CI Bug Log - changes from CI_DRM_15606_full -> Patchwork_140570v2_full Summary FAILURE Serious unknown changes coming with Patchwork_140570v2_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_140570v2_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 (9 -> 9) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in Patchwork_140570v2_full: IGT changes Possible regressions * igt@kms_hdr@brightness-with-hdr: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_hdr@brightness-with-hdr.html> Expected skip. * igt@sysfs_heartbeat_interval@mixed: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-3/igt@sysfs_heartbeat_interval@mixed.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed.html> +1 other test fail Similar failure seen earlier: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15210/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@rcs0.html BR, Jouni Högander Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_workarounds@suspend-resume-fd: * {shard-dg2-9}: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-9/igt@gem_workarounds@suspend-resume-fd.html> Known issues Here are the changes found in Patchwork_140570v2_full that come from known issues: IGT changes Issues hit * igt@api_intel_bb@crc32: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@api_intel_bb@crc32.html> ([i915#6230]) * igt@api_intel_bb@object-reloc-keep-cache: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html> ([i915#8411]) * igt@device_reset@unbind-cold-reset-rebind: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html> ([i915#11078]) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html> ([i915#11078]) * igt@drm_fdinfo@virtual-busy: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@drm_fdinfo@virtual-busy.html> ([i915#8414]) +1 other test skip * igt@drm_fdinfo@virtual-busy-all: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@drm_fdinfo@virtual-busy-all.html> ([i915#8414]) * igt@fbdev@eof: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@fbdev@eof.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@fbdev@eof.html> ([i915#2582]) +1 other test skip * igt@fbdev@write: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@fbdev@write.html> ([i915#2582]) * igt@gem_ccs@ctrl-surf-copy: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html> ([i915#3555] / [i915#9323]) * igt@gem_ccs@suspend-resume: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_ccs@suspend-resume.html> ([i915#9323]) * igt@gem_close_race@multigpu-basic-threads: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@gem_close_race@multigpu-basic-threads.html> ([i915#7697]) * igt@gem_ctx_persistence@heartbeat-hostile: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html> ([i915#8555]) * igt@gem_ctx_sseu@engines: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_ctx_sseu@engines.html> ([i915#280]) * igt@gem_ctx_sseu@invalid-sseu: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html> ([i915#280]) * igt@gem_ctx_sseu@mmap-args: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_ctx_sseu@mmap-args.html> ([i915#280]) * igt@gem_exec_balancer@bonded-dual: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html> ([i915#4771]) * igt@gem_exec_balancer@noheartbeat: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@gem_exec_balancer@noheartbeat.html> ([i915#8555]) * igt@gem_exec_fair@basic-deadline: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_exec_fair@basic-deadline.html> ([i915#3539] / [i915#4852]) +1 other test skip * igt@gem_exec_fair@basic-none-vip: * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@gem_exec_fair@basic-none-vip.html> ([i915#2842]) +1 other test fail * igt@gem_exec_fair@basic-pace: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_exec_fair@basic-pace.html> ([i915#4473] / [i915#4771]) * igt@gem_exec_fair@basic-pace-solo@rcs0: * shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842]) +1 other test fail * igt@gem_exec_fair@basic-throttle: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_exec_fair@basic-throttle.html> ([i915#3539]) * igt@gem_exec_fence@submit: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-1/igt@gem_exec_fence@submit.html> ([i915#4812]) * igt@gem_exec_fence@submit3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@gem_exec_fence@submit3.html> ([i915#4812]) +1 other test skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-17/igt@gem_exec_fence@submit3.html> ([i915#4812]) * igt@gem_exec_flush@basic-wb-pro-default: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_exec_flush@basic-wb-pro-default.html> ([i915#3539] / [i915#4852]) +1 other test skip * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html> ([i915#3281]) +4 other tests skip * igt@gem_exec_reloc@basic-cpu-read-noreloc: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-read-noreloc.html> ([i915#3281]) +3 other tests skip * igt@gem_exec_reloc@basic-write-read-active: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_exec_reloc@basic-write-read-active.html> ([i915#3281]) +3 other tests skip * igt@gem_exec_schedule@pi-ringfull@rcs0: * shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_exec_schedule@pi-ringfull@rcs0.html> ([i915#12296]) +5 other tests fail * igt@gem_exec_schedule@preempt-queue-contexts: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-contexts.html> ([i915#4537] / [i915#4812]) * igt@gem_exec_schedule@reorder-wide: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_exec_schedule@reorder-wide.html> ([i915#4537] / [i915#4812]) * igt@gem_exec_suspend@basic-s3-devices: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-18/igt@gem_exec_suspend@basic-s3-devices.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-16/igt@gem_exec_suspend@basic-s3-devices.html> ([i915#4423]) +1 other test dmesg-warn * igt@gem_fenced_exec_thrash@no-spare-fences-busy: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html> ([i915#4860]) * igt@gem_fenced_exec_thrash@too-many-fences: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@gem_fenced_exec_thrash@too-many-fences.html> ([i915#4860]) * igt@gem_gtt_cpu_tlb: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_gtt_cpu_tlb.html> ([i915#4077]) +4 other tests skip * igt@gem_lmem_swapping@heavy-verify-multi: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi.html> ([i915#4613]) +1 other test skip * igt@gem_lmem_swapping@massive-random: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html> ([i915#4613]) +1 other test skip * igt@gem_lmem_swapping@verify-ccs: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_lmem_swapping@verify-ccs.html> ([i915#12193]) * igt@gem_lmem_swapping@verify-ccs@lmem0: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_lmem_swapping@verify-ccs@lmem0.html> ([i915#4565]) * igt@gem_lmem_swapping@verify-random-ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@gem_lmem_swapping@verify-random-ccs.html> ([i915#4613]) +5 other tests skip * igt@gem_mmap_gtt@cpuset-big-copy-odd: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html> ([i915#4077]) +11 other tests skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-14/igt@gem_mmap_gtt@cpuset-big-copy-odd.html> ([i915#4077]) +7 other tests skip * igt@gem_mmap_wc@close: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@gem_mmap_wc@close.html> ([i915#4083]) +1 other test skip * igt@gem_pread@display: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_pread@display.html> ([i915#3282]) +2 other tests skip * igt@gem_pread@exhaustion: * shard-tglu-1: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_pread@exhaustion.html> ([i915#2658]) +1 other test warn * igt@gem_pread@snoop: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_pread@snoop.html> ([i915#3282]) +3 other tests skip * igt@gem_pread@uncached: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@gem_pread@uncached.html> ([i915#3282]) * igt@gem_pxp@create-regular-buffer: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@gem_pxp@create-regular-buffer.html> ([i915#4270]) * igt@gem_pxp@protected-encrypted-src-copy-not-readible: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html> ([i915#4270]) * igt@gem_pxp@regular-baseline-src-copy-readible: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_pxp@regular-baseline-src-copy-readible.html> ([i915#4270]) +3 other tests skip * igt@gem_pxp@reject-modify-context-protection-off-2: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@gem_pxp@reject-modify-context-protection-off-2.html> ([i915#4270]) +1 other test skip * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html> ([i915#4270]) +1 other test skip * igt@gem_pxp@verify-pxp-stale-ctx-execution: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@gem_pxp@verify-pxp-stale-ctx-execution.html> ([i915#4270]) +1 other test skip * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html> ([i915#8428]) +1 other test skip * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html> ([i915#5190] / [i915#8428]) +5 other tests skip * igt@gem_render_tiled_blits@basic: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@gem_render_tiled_blits@basic.html> ([i915#4079]) +1 other test skip * igt@gem_softpin@evict-snoop: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@gem_softpin@evict-snoop.html> ([i915#4885]) * igt@gem_userptr_blits@coherency-sync: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html> ([i915#3297]) +2 other tests skip * igt@gem_userptr_blits@coherency-unsync: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-14/igt@gem_userptr_blits@coherency-unsync.html> ([i915#3297]) +1 other test skip * igt@gem_userptr_blits@create-destroy-unsync: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html> ([i915#3297]) +1 other test skip * igt@gem_userptr_blits@dmabuf-unsync: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@gem_userptr_blits@dmabuf-unsync.html> ([i915#3297]) * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> ([i915#3297] / [i915#4880]) +1 other test skip * igt@gem_userptr_blits@relocations: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@gem_userptr_blits@relocations.html> ([i915#3281] / [i915#3297]) * igt@gen9_exec_parse@basic-rejected: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gen9_exec_parse@basic-rejected.html> ([i915#2856]) +1 other test skip * igt@gen9_exec_parse@bb-start-cmd: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@gen9_exec_parse@bb-start-cmd.html> ([i915#2527] / [i915#2856]) * igt@gen9_exec_parse@cmd-crossing-page: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-17/igt@gen9_exec_parse@cmd-crossing-page.html> ([i915#2527]) * igt@gen9_exec_parse@shadow-peek: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@gen9_exec_parse@shadow-peek.html> ([i915#2856]) +6 other tests skip * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html> ([i915#2527] / [i915#2856]) +3 other tests skip * igt@gen9_exec_parse@unaligned-access: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@gen9_exec_parse@unaligned-access.html> ([i915#2527]) * igt@i915_module_load@reload-with-fault-injection: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-10/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_15606/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) * igt@i915_pm_freq_mult@media-freq@gt0: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html> ([i915#6590]) +1 other test skip * igt@i915_pm_rc6_residency@rc6-fence: * shard-tglu-1: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#2681]) +1 other test warn * igt@i915_pm_rps@reset: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb6/igt@i915_pm_rps@reset.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb2/igt@i915_pm_rps@reset.html> ([i915#7790]) * igt@i915_pm_rps@thresholds-park: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@i915_pm_rps@thresholds-park.html> ([i915#11681]) * igt@i915_pm_sseu@full-enable: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html> ([i915#8437]) * igt@i915_query@hwconfig_table: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@i915_query@hwconfig_table.html> ([i915#6245]) * igt@i915_query@query-topology-coherent-slice-mask: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html> ([i915#6188]) * igt@i915_selftest@mock@memory_region: * shard-tglu-1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@i915_selftest@mock@memory_region.html> ([i915#9311]) +1 other test dmesg-warn * igt@i915_suspend@basic-s3-without-i915: * shard-tglu: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@i915_suspend@basic-s3-without-i915.html> ([i915#7443]) * igt@kms_addfb_basic@clobberred-modifier: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_addfb_basic@clobberred-modifier.html> ([i915#4212]) +1 other test skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-17/igt@kms_addfb_basic@clobberred-modifier.html> ([i915#4212]) * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> ([i915#12454]) * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html> ([i915#8709]) +11 other tests skip * 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_140570v2/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> ([i915#1769] / [i915#3555]) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> ([i915#1769] / [i915#3555]) * igt@kms_atomic_transition@plane-toggle-modeset-transition: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-18/igt@kms_atomic_transition@plane-toggle-modeset-transition.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_atomic_transition@plane-toggle-modeset-transition.html> ([i915#5956]) +1 other test fail * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: * shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html> ([i915#5956]) +1 other test fail * igt@kms_big_fb@4-tiled-16bpp-rotate-0: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> ([i915#4538] / [i915#5286]) +3 other tests skip * igt@kms_big_fb@4-tiled-8bpp-rotate-180: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html> ([i915#5286]) +4 other tests skip * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html> ([i915#5286]) * 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_140570v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> ([i915#5286]) +2 other tests skip * igt@kms_big_fb@x-tiled-64bpp-rotate-180: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> ([i915#9197]) +16 other tests skip * igt@kms_big_fb@y-tiled-64bpp-rotate-0: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html> ([i915#4538] / [i915#5190]) +3 other tests skip * igt@kms_big_fb@y-tiled-64bpp-rotate-90: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> ([i915#3638]) * igt@kms_big_fb@y-tiled-addfb: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb.html> ([i915#6187]) * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> ([i915#5190]) * igt@kms_big_fb@y-tiled-addfb-size-overflow: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> ([i915#5190] / [i915#9197]) +2 other tests skip * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html> +3 other tests skip * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> ([i915#4538]) +2 other tests skip * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html> +54 other tests skip * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> ([i915#12313]) +2 other tests skip * 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_140570v2/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html> ([i915#6095]) +108 other tests skip * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html> ([i915#6095]) +29 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html> ([i915#6095]) +80 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html> ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html> ([i915#10307] / [i915#6095]) +142 other tests skip * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html> ([i915#6095]) +34 other tests skip * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> ([i915#12313]) * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html> ([i915#6095]) +19 other tests skip * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html> ([i915#12313]) +2 other tests skip * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-1: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk3/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-1.html> +19 other tests skip * igt@kms_cdclk@mode-transition: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_cdclk@mode-transition.html> ([i915#3742]) * igt@kms_chamelium_frames@hdmi-aspect-ratio: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> ([i915#7828]) +6 other tests skip * igt@kms_chamelium_hpd@dp-hpd: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html> ([i915#7828]) * igt@kms_chamelium_hpd@dp-hpd-storm-disable: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> ([i915#7828]) +4 other tests skip * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html> ([i915#7828]) +7 other tests skip * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html> ([i915#7828]) +5 other tests skip * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html> ([i915#7828]) +1 other test skip * igt@kms_color@ctm-0-25: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_color@ctm-0-25.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_color@ctm-0-25.html> ([i915#12655]) * igt@kms_content_protection@atomic-dpms: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html> ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) * igt@kms_content_protection@legacy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_content_protection@legacy.html> ([i915#7118] / [i915#9424]) * igt@kms_cursor_crc@cursor-onscreen-128x42: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html> ([i915#8814]) * igt@kms_cursor_crc@cursor-onscreen-256x256: * shard-dg1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-256x256.html> ([i915#4423]) +1 other test dmesg-warn * igt@kms_cursor_crc@cursor-onscreen-32x32: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html> ([i915#3555]) +4 other tests skip * igt@kms_cursor_crc@cursor-sliding-32x32: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x32.html> ([i915#3555] / [i915#8814]) * igt@kms_cursor_crc@cursor-sliding-512x170: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-512x170.html> ([i915#11453] / [i915#3359]) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html> ([i915#11453] / [i915#3359]) * igt@kms_cursor_crc@cursor-sliding-512x512: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-512x512.html> ([i915#11453] / [i915#3359]) +1 other test skip * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk6/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk8/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1.html> ([i915#118]) +1 other test dmesg-fail * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> ([i915#9809]) +1 other test 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_140570v2/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> ([i915#4103]) * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> ([i915#4103] / [i915#4213]) * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> ([i915#4213]) * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> ([i915#9723]) * igt@kms_dirtyfb@psr-dirtyfb-ioctl: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> ([i915#9723]) * igt@kms_dither@fb-8bpc-vs-panel-6bpc: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> ([i915#1769] / [i915#3555] / [i915#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_140570v2/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html> ([i915#3804]) * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> ([i915#3804]) * igt@kms_dp_aux_dev: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_dp_aux_dev.html> ([i915#1257]) * igt@kms_dp_linktrain_fallback@dp-fallback: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_dp_linktrain_fallback@dp-fallback.html> ([i915#12402]) * igt@kms_dsc@dsc-basic: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_dsc@dsc-basic.html> ([i915#3555] / [i915#3840]) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_dsc@dsc-basic.html> ([i915#3555] / [i915#3840]) +1 other test skip * igt@kms_dsc@dsc-with-bpc: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_dsc@dsc-with-bpc.html> ([i915#3555] / [i915#3840]) * igt@kms_dsc@dsc-with-bpc-formats: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html> ([i915#3555] / [i915#3840]) * igt@kms_dsc@dsc-with-output-formats: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html> ([i915#3555] / [i915#3840]) * igt@kms_dsc@dsc-with-output-formats-with-bpc: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> ([i915#3840] / [i915#9053]) * igt@kms_fbcon_fbt@psr-suspend: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_fbcon_fbt@psr-suspend.html> ([i915#3469]) * igt@kms_feature_discovery@display-4x: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_feature_discovery@display-4x.html> ([i915#1839]) * igt@kms_feature_discovery@dp-mst: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-1/igt@kms_feature_discovery@dp-mst.html> ([i915#9337]) * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html> +1 other test skip * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> ([i915#9934]) * igt@kms_flip@2x-flip-vs-modeset: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_flip@2x-flip-vs-modeset.html> ([i915#3637] / [i915#3966]) * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html> ([i915#3637]) +3 other tests skip * igt@kms_flip@2x-plain-flip-ts-check: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_flip@2x-plain-flip-ts-check.html> ([i915#3637] / [i915#3966]) +1 other test skip * igt@kms_flip@2x-wf_vblank-ts-check: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html> ([i915#3637]) +3 other tests skip * igt@kms_flip@plain-flip-fb-recreate-interruptible: * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-9/igt@kms_flip@plain-flip-fb-recreate-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html> ([i915#2122]) +1 other test fail * igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-3/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html> ([i915#2122]) +2 other tests fail * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2.html> ([i915#11961]) +1 other test fail * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html> ([i915#2672] / [i915#8813]) * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html> ([i915#2672] / [i915#3555]) +3 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> ([i915#2587] / [i915#2672] / [i915#3555]) * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> ([i915#2587] / [i915#2672] / [i915#3555]) * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html> ([i915#3555]) +3 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +3 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> ([i915#2672] / [i915#3555]) +3 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +4 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html> ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html> ([i915#3555] / [i915#5190]) +1 other test skip * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html> ([i915#5354]) +5 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html> ([i915#1825]) +5 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html> ([i915#1825]) +10 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html> +1 other test skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> ([i915#3458]) +2 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html> +12 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html> ([i915#8708]) +12 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html> ([i915#10433] / [i915#3458]) * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html> ([i915#8708]) +5 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html> +55 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html> +17 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html> ([i915#5439]) * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html> ([i915#3458]) +9 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html> ([i915#5354]) +46 other tests skip * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html> ([i915#8708]) +4 other tests skip * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html> ([i915#3023]) +3 other tests skip * igt@kms_hdr@bpc-switch: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_hdr@bpc-switch.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-6/igt@kms_hdr@bpc-switch.html> ([i915#3555] / [i915#8228]) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_hdr@bpc-switch.html> ([i915#3555] / [i915#8228]) * igt@kms_hdr@invalid-hdr: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_hdr@invalid-hdr.html> ([i915#3555] / [i915#8228]) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_hdr@invalid-hdr.html> ([i915#3555] / [i915#8228]) +1 other test skip * igt@kms_hdr@static-swap: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_hdr@static-swap.html> ([i915#3555] / [i915#8228]) +1 other test skip * igt@kms_joiner@basic-big-joiner: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_joiner@basic-big-joiner.html> ([i915#10656]) * igt@kms_joiner@basic-force-ultra-joiner: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_joiner@basic-force-ultra-joiner.html> ([i915#10656]) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html> ([i915#12394]) * igt@kms_joiner@invalid-modeset-force-big-joiner: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html> ([i915#12388]) +1 other test skip * igt@kms_joiner@invalid-modeset-ultra-joiner: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html> ([i915#12339]) * igt@kms_panel_fitting@legacy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_panel_fitting@legacy.html> ([i915#6301]) * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html> +7 other tests skip * igt@kms_plane@pixel-format: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk8/igt@kms_plane@pixel-format.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk2/igt@kms_plane@pixel-format.html> ([i915#10056] / [i915#118]) * igt@kms_plane@pixel-format@pipe-b-plane-1: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk8/igt@kms_plane@pixel-format@pipe-b-plane-1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk2/igt@kms_plane@pixel-format@pipe-b-plane-1.html> ([i915#118]) * igt@kms_plane@plane-panning-top-left: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane@plane-panning-top-left.html> ([i915#8825]) * igt@kms_plane_alpha_blend@constant-alpha-mid: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_alpha_blend@constant-alpha-mid.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-mid.html> ([i915#7294]) * igt@kms_plane_lowres@tiling-y: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_plane_lowres@tiling-y.html> ([i915#3555] / [i915#8821]) * igt@kms_plane_multiple@tiling-yf: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html> ([i915#3555]) +4 other tests skip * igt@kms_plane_scaling@intel-max-src-size: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html> ([i915#8292]) * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html> ([i915#8292]) * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html> ([i915#12247]) +1 other test skip * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html> ([i915#8152] / [i915#9423]) * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html> ([i915#8152]) * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html> ([i915#12247]) +8 other tests skip * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html> ([i915#3555] / [i915#8152] / [i915#9423]) * igt@kms_plane_scaling@planes-downscale-factor-0-25: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html> ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html> ([i915#12247]) +13 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> ([i915#6953] / [i915#8152] / [i915#9423]) * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html> ([i915#12247] / [i915#8152]) * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html> ([i915#12247] / [i915#12504] / [i915#3555]) * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html> ([i915#12247] / [i915#12504]) +6 other tests skip * igt@kms_plane_scaling@planes-upscale-factor-0-25: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html> ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html> ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html> ([i915#12247] / [i915#8152]) * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html> ([i915#12247] / [i915#3555] / [i915#6953]) * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html> ([i915#12247]) +3 other tests skip * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html> ([i915#12247]) +8 other tests skip * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html> ([i915#8152]) +1 other test skip * igt@kms_pm_backlight@bad-brightness: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-13/igt@kms_pm_backlight@bad-brightness.html> ([i915#5354]) * igt@kms_pm_backlight@brightness-with-dpms: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html> ([i915#12343]) * igt@kms_pm_backlight@fade: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_pm_backlight@fade.html> ([i915#9812]) * igt@kms_pm_dc@dc5-dpms-negative: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_pm_dc@dc5-dpms-negative.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html> ([i915#9293]) * igt@kms_pm_dc@dc6-dpms: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_pm_dc@dc6-dpms.html> ([i915#3361]) * igt@kms_pm_lpsp@screens-disabled: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_pm_lpsp@screens-disabled.html> ([i915#8430]) * igt@kms_pm_rpm@dpms-non-lpsp: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html> ([i915#9519]) * igt@kms_pm_rpm@drm-resources-equal: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_pm_rpm@drm-resources-equal.html> ([i915#3547]) * igt@kms_pm_rpm@modeset-lpsp-stress: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress.html> ([i915#9519]) * igt@kms_pm_rpm@modeset-non-lpsp: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html> ([i915#9519]) +2 other tests skip * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> ([i915#9519]) +2 other tests skip * igt@kms_prime@basic-crc-hybrid: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_prime@basic-crc-hybrid.html> ([i915#6524]) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_prime@basic-crc-hybrid.html> ([i915#6524]) * igt@kms_properties@crtc-properties-legacy: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_properties@crtc-properties-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html> ([i915#11521]) +1 other test skip * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html> ([i915#11520]) +7 other tests skip * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html> ([i915#9808]) +1 other test skip * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1.html> ([i915#12316]) +3 other tests skip * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html> ([i915#11520]) +6 other tests skip * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html> ([i915#11520]) +4 other tests skip * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html> ([i915#11520]) +6 other tests skip * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html> ([i915#9683]) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html> ([i915#9683]) * igt@kms_psr2_su@page_flip-nv12: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_psr2_su@page_flip-nv12.html> ([i915#9683]) * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html> ([i915#9688]) +3 other tests skip * igt@kms_psr@fbc-psr2-cursor-blt: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_psr@fbc-psr2-cursor-blt.html> ([i915#1072] / [i915#9732]) +12 other tests skip * igt@kms_psr@pr-sprite-mmap-cpu: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_psr@pr-sprite-mmap-cpu.html> ([i915#9732]) +14 other tests skip * igt@kms_psr@psr-cursor-mmap-cpu: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_psr@psr-cursor-mmap-cpu.html> ([i915#1072] / [i915#9732]) +11 other tests skip * igt@kms_psr@psr-cursor-plane-move: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_psr@psr-cursor-plane-move.html> ([i915#1072] / [i915#9732]) +1 other test skip * igt@kms_psr@psr-sprite-mmap-cpu: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html> ([i915#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_140570v2/shard-mtlp-3/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html> ([i915#4077] / [i915#9688]) +1 other test skip * igt@kms_rotation_crc@exhaust-fences: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_rotation_crc@exhaust-fences.html> ([i915#4235]) * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> ([i915#5289]) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> ([i915#5289]) * igt@kms_rotation_crc@primary-rotation-270: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html> ([i915#11131] / [i915#4235]) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> ([i915#5289]) +1 other test skip * igt@kms_scaling_modes@scaling-mode-center: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_scaling_modes@scaling-mode-center.html> ([i915#3555]) +1 other test skip * igt@kms_scaling_modes@scaling-mode-full: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full.html> ([i915#3555]) +1 other test skip * igt@kms_scaling_modes@scaling-mode-none: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none.html> ([i915#3555] / [i915#5030] / [i915#9041]) * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html> ([i915#5030]) +2 other tests skip * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html> ([i915#5030] / [i915#9041]) * igt@kms_selftest@drm_framebuffer: * shard-dg1: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@kms_selftest@drm_framebuffer.html> ([i915#12231]) +1 other test abort * igt@kms_tiled_display@basic-test-pattern: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern.html> ([i915#8623]) * igt@kms_vblank@wait-idle-hang: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_vblank@wait-idle-hang.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_vblank@wait-idle-hang.html> ([i915#9197]) +20 other tests skip * igt@kms_vrr@negative-basic: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_vrr@negative-basic.html> ([i915#3555] / [i915#9906]) * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-1/igt@kms_vrr@negative-basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-8/igt@kms_vrr@negative-basic.html> ([i915#10393]) +1 other test fail * igt@kms_vrr@seamless-rr-switch-drrs: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-drrs.html> ([i915#9906]) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-drrs.html> ([i915#9906]) * igt@perf@non-zero-reason@0-rcs0: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@perf@non-zero-reason@0-rcs0.html> ([i915#9100]) +1 other test fail * igt@perf_pmu@most-busy-idle-check-all: * shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all.html> ([i915#11943] / [i915#12515]) +1 other test fail * igt@perf_pmu@rc6-all-gts: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html> ([i915#8516]) * igt@prime_mmap_kms@buffer-sharing: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@prime_mmap_kms@buffer-sharing.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@prime_mmap_kms@buffer-sharing.html> * igt@prime_vgem@basic-read: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@prime_vgem@basic-read.html> ([i915#3291] / [i915#3708]) * igt@prime_vgem@fence-flip-hang: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@prime_vgem@fence-flip-hang.html> ([i915#3708]) * igt@sriov_basic@enable-vfs-autoprobe-off: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@sriov_basic@enable-vfs-autoprobe-off.html> ([i915#9917]) * igt@sriov_basic@enable-vfs-bind-unbind-each: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@sriov_basic@enable-vfs-bind-unbind-each.html> ([i915#9917]) +1 other test skip * igt@syncobj_wait@invalid-wait-zero-handles: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@syncobj_wait@invalid-wait-zero-handles.html> ([i915#12564] / [i915#9781]) Possible fixes * igt@gem_exec_fair@basic-deadline: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk8/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk2/igt@gem_exec_fair@basic-deadline.html> * igt@gem_exec_fair@basic-pace-solo@rcs0: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html> +4 other tests pass * igt@gem_exec_suspend@basic-s4-devices: * shard-dg1: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices.html> ([i915#7975] / [i915#8213]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_exec_suspend@basic-s4-devices.html> +1 other test pass * igt@gem_lmem_swapping@smem-oom@lmem0: * shard-dg1: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html> +1 other test pass * igt@gem_mmap_offset@clear: * shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-2/igt@gem_mmap_offset@clear.html> ([i915#10729]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_mmap_offset@clear.html> * igt@gem_mmap_offset@clear@smem0: * shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-2/igt@gem_mmap_offset@clear@smem0.html> ([i915#10029] / [i915#10729]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@gem_mmap_offset@clear@smem0.html> * igt@i915_module_load@reload-with-fault-injection: * shard-dg1: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html> * shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9697]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html> * igt@kms_async_flips@alternate-sync-async-flip: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip.html> ([i915#10991]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip.html> +1 other test pass * igt@kms_atomic_transition@plane-toggle-modeset-transition: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition.html> ([i915#5956]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html> * igt@kms_big_fb@linear-8bpp-rotate-0: * shard-rkl: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-0.html> ([i915#10354]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-0.html> * igt@kms_cursor_legacy@flip-vs-cursor-toggle: * shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> ([i915#2346]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1: * shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html> +5 other tests pass * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1: * shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html> +2 other tests pass * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html> ([i915#11989]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html> ([i915#5354]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html> +6 other tests pass * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html> ([i915#6880]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html> * igt@kms_invalid_mode@uint-max-clock: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_invalid_mode@uint-max-clock.html> ([i915#3555]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_invalid_mode@uint-max-clock.html> +1 other test pass * igt@kms_pipe_crc_basic@suspend-read-crc: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read-crc.html> ([i915#9197]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html> +19 other tests pass * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html> ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html> ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html> ([i915#12247]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html> +5 other tests pass * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html> ([i915#12247] / [i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html> +1 other test pass * igt@kms_pm_dc@dc9-dpms: * shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html> ([i915#4281]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html> * igt@kms_pm_rpm@modeset-non-lpsp: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html> ([i915#9519]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html> +2 other tests pass * igt@kms_pm_rpm@system-suspend-modeset: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html> ([i915#3547]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_pm_rpm@system-suspend-modeset.html> Warnings * igt@i915_module_load@reload-with-fault-injection: * shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html> ([i915#10131] / [i915#9820]) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html> ([i915#10131] / [i915#10887] / [i915#9820]) * igt@i915_pipe_stress@stress-xrgb8888-ytiled: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> ([i915#7091]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> ([i915#9197]) * igt@kms_async_flips@invalid-async-flip: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_async_flips@invalid-async-flip.html> ([i915#6228]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html> ([i915#9197]) * igt@kms_atomic@plane-primary-overlay-mutable-zpos: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> ([i915#9531]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> ([i915#9197]) * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> ([i915#1769] / [i915#3555]) * igt@kms_big_fb@4-tiled-16bpp-rotate-90: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> +1 other test skip * igt@kms_big_fb@4-tiled-64bpp-rotate-270: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html> ([i915#9197]) +1 other test skip * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> ([i915#4538] / [i915#5190]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> ([i915#5190] / [i915#9197]) +5 other tests skip * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> ([i915#5190] / [i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> ([i915#4538] / [i915#5190]) +1 other test skip * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html> ([i915#10307] / [i915#6095]) +5 other tests skip * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html> ([i915#10307] / [i915#6095]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html> ([i915#9197]) +8 other tests skip * igt@kms_content_protection@lic-type-0: * shard-dg2: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_content_protection@lic-type-0.html> ([i915#7173]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_content_protection@lic-type-0.html> ([i915#9197]) * igt@kms_content_protection@mei-interface: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-12/igt@kms_content_protection@mei-interface.html> ([i915#9433]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg1-18/igt@kms_content_protection@mei-interface.html> ([i915#9424]) * igt@kms_cursor_crc@cursor-sliding-max-size: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-max-size.html> ([i915#3555]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-max-size.html> ([i915#9197]) +1 other test skip * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> ([i915#5354]) +4 other tests skip * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html> ([i915#5354]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html> ([i915#9197]) +1 other test skip * igt@kms_dsc@dsc-fractional-bpp: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html> ([i915#3840] / [i915#9688]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html> ([i915#9197]) * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> ([i915#2672] / [i915#3555]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> ([i915#3555]) +2 other tests skip * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html> ([i915#5354]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html> ([i915#8708]) +7 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html> ([i915#8708]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html> ([i915#5354]) +5 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html> ([i915#10433] / [i915#3458]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html> ([i915#3458]) +3 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> ([i915#3458]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> ([i915#5354]) +10 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html> ([i915#5354]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html> ([i915#3458]) +4 other tests skip * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html> ([i915#3458]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html> ([i915#10433] / [i915#3458]) * igt@kms_plane_lowres@tiling-y: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html> ([i915#8821]) * igt@kms_plane_scaling@intel-max-src-size: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html> ([i915#6953] / [i915#9423]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html> ([i915#6953] / [i915#8152] / [i915#9423]) * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html> ([i915#12247] / [i915#8152] / [i915#9423]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v2/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html> ([i915#12247] / [i915#9423]) * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: * shard-dg2: SKIP<https:/> ([i915#12247] / [i915#8152]) -> [SKIP][424] ([i915#12247]) [-- Attachment #2: Type: text/html, Size: 109317 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled 2024-10-29 12:24 [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Jouni Högander 2024-10-29 21:06 ` ✓ Fi.CI.BAT: success for drm/i915/psr: WA for panels stating bad link status after PSR is enabled (rev2) Patchwork 2024-10-30 16:51 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-11-01 15:12 ` Imre Deak 2024-11-04 8:43 ` Hogander, Jouni 2 siblings, 1 reply; 6+ messages in thread From: Imre Deak @ 2024-11-01 15:12 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx, intel-xe, jani.nikula On Tue, Oct 29, 2024 at 02:24:15PM +0200, Jouni Högander wrote: > We are currently seeing unexpected link trainings with several different > eDP panels. These are caused by these panels stating bad link status in > their dpcd registers. This can be observed by doing following test: > > 1. Boot up without Xe module loaded > > 2. Load Xe module with PSR disabled: > $ modprobe xe enable_psr=0 > > 3. Read panel link status register > $ dpcd_reg read --offset 0x200e --count=1 > 0x200e: 00 > > 4. Enable PSR, sleep for 2 seconds and disable PSR again: > > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > $ echo "-1" > /sys/kernel/debug/dri/0000:00:02.0/xe_params/enable_psr > $ echo 0x0 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > $ sleep 2 > $ cat /sys/kernel/debug/dri/0/i915_edp_psr_status | grep status > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > Source PSR/PanelReplay status: DEEP_SLEEP [0x80310030] > > 5. Now read panel link status registers again: > $ dpcd_reg read --offset 0x200e --count=1 > 0x200e: 80 > > Workaround this by not trusting link status registers after PSR is enabled > until first short pulse interrupt is received. > > v2: > - clear link_ok flag on pipe disable > - remove useless comment > - modify intel_dp_needs_link_retrain return statement > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> Reviewed-by: Imre Deak <imre.deak@intel.com> I have some nits below, but the patch looks ok regardless so the Rb applies with or without those addressed. > --- > .../drm/i915/display/intel_display_types.h | 2 + > drivers/gpu/drm/i915/display/intel_dp.c | 3 +- > drivers/gpu/drm/i915/display/intel_psr.c | 40 +++++++++++++++++++ > drivers/gpu/drm/i915/display/intel_psr.h | 1 + > 4 files changed, 45 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h > index 2bb1fa64da2f..f0b7d7262961 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_types.h > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h > @@ -1618,6 +1618,8 @@ struct intel_psr { > u32 dc3co_exit_delay; > struct delayed_work dc3co_work; > u8 entry_setup_frames; > + > + bool link_ok; > }; > > struct intel_dp { > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c > index 9dd4610c749a..2212a9d97121 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp.c > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > @@ -5011,7 +5011,8 @@ intel_dp_needs_link_retrain(struct intel_dp *intel_dp) > return true; > > /* Retrain if link not ok */ > - return !intel_dp_link_ok(intel_dp, link_status); > + return !intel_dp_link_ok(intel_dp, link_status) && > + !intel_psr_link_ok(intel_dp); > } > > bool intel_dp_has_connector(struct intel_dp *intel_dp, > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c > index 880ea845207f..7695225b3745 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.c > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > @@ -2013,6 +2013,15 @@ static void intel_psr_enable_locked(struct intel_dp *intel_dp, > intel_dp->psr.enabled = true; > intel_dp->psr.paused = false; > > + /* > + * Link_ok is sticky and set here on PSR enable. We can assume link > + * training is complete as we never continue to PSR enable with > + * untrained link. Link_ok is kept as set until first short pulse > + * interrupt. This is targeted to workaround panels stating bad link > + * after PSR is enabled. > + */ > + intel_dp->psr.link_ok = true; > + > intel_psr_activate(intel_dp); > } > > @@ -2172,6 +2181,8 @@ void intel_psr_disable(struct intel_dp *intel_dp, > > intel_psr_disable_locked(intel_dp); > > + intel_dp->psr.link_ok = false; > + > mutex_unlock(&intel_dp->psr.lock); > cancel_work_sync(&intel_dp->psr.work); > cancel_delayed_work_sync(&intel_dp->psr.dc3co_work); > @@ -3462,6 +3473,8 @@ void intel_psr_short_pulse(struct intel_dp *intel_dp) > > mutex_lock(&psr->lock); > > + psr->link_ok = false; > + > if (!psr->enabled) > goto exit; > > @@ -3521,6 +3534,33 @@ bool intel_psr_enabled(struct intel_dp *intel_dp) > return ret; > } > > +/** > + * intel_psr_link_ok - return psr->link_ok The above could explain a bit more. > + * @intel_dp: struct intel_dp > + * > + * We are seeing unexpected link re-trainings with some panels. This is caused > + * by panel stating bad link status after PSR is enabled. Code checking link > + * status can call this to ensure it can ignore bad link status stated by the > + * panel I.e. if panel is stating bad link and intel_psr_link_ok is stating link > + * is ok caller should rely on latter. > + * > + * Return value of link_ok And the above one-liner too. > + */ > +bool intel_psr_link_ok(struct intel_dp *intel_dp) > +{ > + bool ret; > + > + if ((!CAN_PSR(intel_dp) && !CAN_PANEL_REPLAY(intel_dp)) || > + !intel_dp_is_edp(intel_dp)) IIUC psr.link_ok would never get set if !CAN_PSR() && !CAN_PANEL_REPLAY(), so could just rely on psr.link_ok being always valid if intel_dp_is_edp()? > + return false; > + > + mutex_lock(&intel_dp->psr.lock); > + ret = intel_dp->psr.link_ok; > + mutex_unlock(&intel_dp->psr.lock); > + > + return ret; > +} > + > /** > * intel_psr_lock - grab PSR lock > * @crtc_state: the crtc state > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h > index 5f26f61f82aa..956be263c09e 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.h > +++ b/drivers/gpu/drm/i915/display/intel_psr.h > @@ -59,6 +59,7 @@ void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_st > void intel_psr_pause(struct intel_dp *intel_dp); > void intel_psr_resume(struct intel_dp *intel_dp); > bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state *crtc_state); > +bool intel_psr_link_ok(struct intel_dp *intel_dp); > > void intel_psr_lock(const struct intel_crtc_state *crtc_state); > void intel_psr_unlock(const struct intel_crtc_state *crtc_state); > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled 2024-11-01 15:12 ` [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Imre Deak @ 2024-11-04 8:43 ` Hogander, Jouni 0 siblings, 0 replies; 6+ messages in thread From: Hogander, Jouni @ 2024-11-04 8:43 UTC (permalink / raw) To: Deak, Imre Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, jani.nikula@linux.intel.com On Fri, 2024-11-01 at 17:12 +0200, Imre Deak wrote: > On Tue, Oct 29, 2024 at 02:24:15PM +0200, Jouni Högander wrote: > > We are currently seeing unexpected link trainings with several > > different > > eDP panels. These are caused by these panels stating bad link > > status in > > their dpcd registers. This can be observed by doing following test: > > > > 1. Boot up without Xe module loaded > > > > 2. Load Xe module with PSR disabled: > > $ modprobe xe enable_psr=0 > > > > 3. Read panel link status register > > $ dpcd_reg read --offset 0x200e --count=1 > > 0x200e: 00 > > > > 4. Enable PSR, sleep for 2 seconds and disable PSR again: > > > > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > > $ echo "-1" > > > /sys/kernel/debug/dri/0000:00:02.0/xe_params/enable_psr > > $ echo 0x0 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > > $ sleep 2 > > $ cat /sys/kernel/debug/dri/0/i915_edp_psr_status | grep status > > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > > Source PSR/PanelReplay status: DEEP_SLEEP [0x80310030] > > > > 5. Now read panel link status registers again: > > $ dpcd_reg read --offset 0x200e --count=1 > > 0x200e: 80 > > > > Workaround this by not trusting link status registers after PSR is > > enabled > > until first short pulse interrupt is received. > > > > v2: > > - clear link_ok flag on pipe disable > > - remove useless comment > > - modify intel_dp_needs_link_retrain return statement > > > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > > Reviewed-by: Imre Deak <imre.deak@intel.com> Thank you Imre for checking my patch. This is now pushed to drm-intel- next. > > I have some nits below, but the patch looks ok regardless so the Rb > applies with or without those addressed. > > > --- > > .../drm/i915/display/intel_display_types.h | 2 + > > drivers/gpu/drm/i915/display/intel_dp.c | 3 +- > > drivers/gpu/drm/i915/display/intel_psr.c | 40 > > +++++++++++++++++++ > > drivers/gpu/drm/i915/display/intel_psr.h | 1 + > > 4 files changed, 45 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h > > b/drivers/gpu/drm/i915/display/intel_display_types.h > > index 2bb1fa64da2f..f0b7d7262961 100644 > > --- a/drivers/gpu/drm/i915/display/intel_display_types.h > > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h > > @@ -1618,6 +1618,8 @@ struct intel_psr { > > u32 dc3co_exit_delay; > > struct delayed_work dc3co_work; > > u8 entry_setup_frames; > > + > > + bool link_ok; > > }; > > > > struct intel_dp { > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c > > b/drivers/gpu/drm/i915/display/intel_dp.c > > index 9dd4610c749a..2212a9d97121 100644 > > --- a/drivers/gpu/drm/i915/display/intel_dp.c > > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > > @@ -5011,7 +5011,8 @@ intel_dp_needs_link_retrain(struct intel_dp > > *intel_dp) > > return true; > > > > /* Retrain if link not ok */ > > - return !intel_dp_link_ok(intel_dp, link_status); > > + return !intel_dp_link_ok(intel_dp, link_status) && > > + !intel_psr_link_ok(intel_dp); > > } > > > > bool intel_dp_has_connector(struct intel_dp *intel_dp, > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c > > b/drivers/gpu/drm/i915/display/intel_psr.c > > index 880ea845207f..7695225b3745 100644 > > --- a/drivers/gpu/drm/i915/display/intel_psr.c > > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > > @@ -2013,6 +2013,15 @@ static void intel_psr_enable_locked(struct > > intel_dp *intel_dp, > > intel_dp->psr.enabled = true; > > intel_dp->psr.paused = false; > > > > + /* > > + * Link_ok is sticky and set here on PSR enable. We can > > assume link > > + * training is complete as we never continue to PSR enable > > with > > + * untrained link. Link_ok is kept as set until first short > > pulse > > + * interrupt. This is targeted to workaround panels stating > > bad link > > + * after PSR is enabled. > > + */ > > + intel_dp->psr.link_ok = true; > > + > > intel_psr_activate(intel_dp); > > } > > > > @@ -2172,6 +2181,8 @@ void intel_psr_disable(struct intel_dp > > *intel_dp, > > > > intel_psr_disable_locked(intel_dp); > > > > + intel_dp->psr.link_ok = false; > > + > > mutex_unlock(&intel_dp->psr.lock); > > cancel_work_sync(&intel_dp->psr.work); > > cancel_delayed_work_sync(&intel_dp->psr.dc3co_work); > > @@ -3462,6 +3473,8 @@ void intel_psr_short_pulse(struct intel_dp > > *intel_dp) > > > > mutex_lock(&psr->lock); > > > > + psr->link_ok = false; > > + > > if (!psr->enabled) > > goto exit; > > > > @@ -3521,6 +3534,33 @@ bool intel_psr_enabled(struct intel_dp > > *intel_dp) > > return ret; > > } > > > > +/** > > + * intel_psr_link_ok - return psr->link_ok > > The above could explain a bit more. > > > + * @intel_dp: struct intel_dp > > + * > > + * We are seeing unexpected link re-trainings with some panels. > > This is caused > > + * by panel stating bad link status after PSR is enabled. Code > > checking link > > + * status can call this to ensure it can ignore bad link status > > stated by the > > + * panel I.e. if panel is stating bad link and intel_psr_link_ok > > is stating link > > + * is ok caller should rely on latter. > > + * > > + * Return value of link_ok > > And the above one-liner too. > > > + */ > > +bool intel_psr_link_ok(struct intel_dp *intel_dp) > > +{ > > + bool ret; > > + > > + if ((!CAN_PSR(intel_dp) && !CAN_PANEL_REPLAY(intel_dp)) || > > + !intel_dp_is_edp(intel_dp)) > > IIUC psr.link_ok would never get set if !CAN_PSR() && > !CAN_PANEL_REPLAY(), so could just rely on psr.link_ok being always > valid if intel_dp_is_edp()? Yes, you are right. This way we don't have to take the mutex. Not sure if it's any benefit though. I kept as it is. BR, Jouni Högander > > > + return false; > > + > > + mutex_lock(&intel_dp->psr.lock); > > + ret = intel_dp->psr.link_ok; > > + mutex_unlock(&intel_dp->psr.lock); > > + > > + return ret; > > +} > > + > > /** > > * intel_psr_lock - grab PSR lock > > * @crtc_state: the crtc state > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h > > b/drivers/gpu/drm/i915/display/intel_psr.h > > index 5f26f61f82aa..956be263c09e 100644 > > --- a/drivers/gpu/drm/i915/display/intel_psr.h > > +++ b/drivers/gpu/drm/i915/display/intel_psr.h > > @@ -59,6 +59,7 @@ void intel_psr2_program_trans_man_trk_ctl(const > > struct intel_crtc_state *crtc_st > > void intel_psr_pause(struct intel_dp *intel_dp); > > void intel_psr_resume(struct intel_dp *intel_dp); > > bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state > > *crtc_state); > > +bool intel_psr_link_ok(struct intel_dp *intel_dp); > > > > void intel_psr_lock(const struct intel_crtc_state *crtc_state); > > void intel_psr_unlock(const struct intel_crtc_state *crtc_state); > > -- > > 2.34.1 > > ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-11-04 8:44 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-29 12:24 [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Jouni Högander 2024-10-29 21:06 ` ✓ Fi.CI.BAT: success for drm/i915/psr: WA for panels stating bad link status after PSR is enabled (rev2) Patchwork 2024-10-30 16:51 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-11-04 7:31 ` Hogander, Jouni 2024-11-01 15:12 ` [PATCH v2] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Imre Deak 2024-11-04 8:43 ` Hogander, Jouni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox