* [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time
@ 2025-01-21 5:06 Arun R Murthy
2025-01-21 6:32 ` ✗ Fi.CI.BUILD: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev9) Patchwork
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Arun R Murthy @ 2025-01-21 5:06 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Arun R Murthy, Suraj Kandpal
Mandate a minimum Hblank symbol cycle count between BlankingStart and
BlankingEnd in 8b/10b MST and 128b/132b mode.
v2: Affine calculation/updation of min HBlank to dp_mst (Jani)
v3: moved min_hblank from struct intel_dp to intel_crtc_state (Jani)
v4: use max/min functions, change intel_xx *intel_xx to intel_xx *xx
(Jani)
Limit hblank to 511 and accommodate BS/BE in calculated value
(Srikanth)
v5: Some spelling corrections (Suraj)
v6: Removed DP2.1 in comment as this is applicable for both DP2.1 and
DP1.4 (Suraj)
v7: crtc_state holds the logical values and the register value
computation is moved to mst_enable() (Jani)
Bspec: 74379
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
.../gpu/drm/i915/display/intel_crtc_state_dump.c | 1 +
drivers/gpu/drm/i915/display/intel_display_types.h | 1 +
drivers/gpu/drm/i915/display/intel_dp_mst.c | 53 +++++++++++++++++++++-
drivers/gpu/drm/i915/i915_reg.h | 4 ++
4 files changed, 58 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
index 1fbaa67e2fea77279f120bfb9755a2642550046c..07c671741513f7f263b7b233ffec71998745fd0f 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
@@ -249,6 +249,7 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
str_enabled_disabled(pipe_config->has_sel_update),
str_enabled_disabled(pipe_config->has_panel_replay),
str_enabled_disabled(pipe_config->enable_psr2_sel_fetch));
+ drm_printf(&p, "minimum HBlank: %d\n", pipe_config->min_hblank);
}
drm_printf(&p, "audio: %i, infoframes: %i, infoframes enabled: 0x%x\n",
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 8271e50e36447a6c97a93ca0d0b83327ff6ee461..f525e266c0232e8c29ba3f84d2c81612f78e894b 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1095,6 +1095,7 @@ struct intel_crtc_state {
int max_link_bpp_x16; /* in 1/16 bpp units */
int pipe_bpp; /* in 1 bpp units */
+ int min_hblank;
struct intel_link_m_n dp_m_n;
/* m2_n2 for eDP downclock */
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index 227bd2783e64105dc8dd521b99e7d04ce2e577cc..833167dc0e147dc5e793c0aeda1280453b38f385 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -209,6 +209,28 @@ static int intel_dp_mst_dsc_get_slice_count(const struct intel_connector *connec
num_joined_pipes);
}
+static void intel_dp_mst_compute_min_hblank(struct intel_crtc_state *crtc_state,
+ struct intel_connector *connector,
+ int bpp_x16)
+{
+ struct intel_encoder *encoder = connector->encoder;
+ struct intel_display *display = to_intel_display(encoder);
+ const struct drm_display_mode *adjusted_mode =
+ &crtc_state->hw.adjusted_mode;
+ int symbol_size = intel_dp_is_uhbr(crtc_state) ? 32 : 8;
+ int hblank;
+
+ if (DISPLAY_VER(display) < 20)
+ return;
+
+ /* Calculate min Hblank Link Layer Symbol Cycle Count for 8b/10b MST & 128b/132b */
+ hblank = DIV_ROUND_UP((DIV_ROUND_UP
+ (adjusted_mode->htotal - adjusted_mode->hdisplay, 4) * bpp_x16),
+ symbol_size);
+
+ crtc_state->min_hblank = hblank;
+}
+
int intel_dp_mtp_tu_compute_config(struct intel_dp *intel_dp,
struct intel_crtc_state *crtc_state,
int max_bpp, int min_bpp,
@@ -266,6 +288,9 @@ int intel_dp_mtp_tu_compute_config(struct intel_dp *intel_dp,
local_bw_overhead = intel_dp_mst_bw_overhead(crtc_state,
false, dsc_slice_count, link_bpp_x16);
+
+ intel_dp_mst_compute_min_hblank(crtc_state, connector, link_bpp_x16);
+
intel_dp_mst_compute_m_n(crtc_state,
local_bw_overhead,
link_bpp_x16,
@@ -1265,7 +1290,7 @@ static void mst_stream_enable(struct intel_atomic_state *state,
enum transcoder trans = pipe_config->cpu_transcoder;
bool first_mst_stream = intel_dp->active_mst_links == 1;
struct intel_crtc *pipe_crtc;
- int ret, i;
+ int ret, i, min_hblank;
drm_WARN_ON(display->drm, pipe_config->has_pch_encoder);
@@ -1280,6 +1305,32 @@ static void mst_stream_enable(struct intel_atomic_state *state,
TRANS_DP2_VFREQ_PIXEL_CLOCK(crtc_clock_hz & 0xffffff));
}
+ if (DISPLAY_VER(display) >= 20) {
+ /*
+ * bit 8:0 minimum hblank symbol cylce count, i.e maximum value
+ * would be 511
+ */
+ min_hblank = min(511, pipe_config->min_hblank);
+
+ /*
+ * adjust the BlankingStart/BlankingEnd framing control from
+ * the calculated value
+ */
+ min_hblank = min_hblank - 2;
+
+ /*
+ * Minimum hblank accepted for 128b/132b would be 5 and for
+ * 8b/10b would be 3 symbol count
+ */
+ if (intel_dp_is_uhbr(pipe_config))
+ min_hblank = max(min_hblank, 5);
+ else
+ min_hblank = max(min_hblank, 3);
+
+ intel_de_write(display, DP_MIN_HBLANK_CTL(trans),
+ min_hblank);
+ }
+
enable_bs_jitter_was(pipe_config);
intel_ddi_enable_transcoder_func(encoder, pipe_config);
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 765e6c0528fb0b5a894395b77a5edbf0b0c80009..7bd783931199e2e5c7e15358bb4d2c904f28176a 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -3197,6 +3197,10 @@
#define _TRANS_DP2_VFREQLOW_D 0x630a8
#define TRANS_DP2_VFREQLOW(trans) _MMIO_TRANS(trans, _TRANS_DP2_VFREQLOW_A, _TRANS_DP2_VFREQLOW_B)
+#define _DP_MIN_HBLANK_CTL_A 0x600ac
+#define _DP_MIN_HBLANK_CTL_B 0x610ac
+#define DP_MIN_HBLANK_CTL(trans) _MMIO_TRANS(trans, _DP_MIN_HBLANK_CTL_A, _DP_MIN_HBLANK_CTL_B)
+
/* SNB eDP training params */
/* SNB A-stepping */
#define EDP_LINK_TRAIN_400MV_0DB_SNB_A (0x38 << 22)
---
base-commit: a15d2a84505eed8dbb58911147e44752734f3a88
change-id: 20250121-hblank-ad8ce892eb3a
Best regards,
--
Arun R Murthy <arun.r.murthy@intel.com>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✗ Fi.CI.BUILD: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev9)
2025-01-21 5:06 [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy
@ 2025-01-21 6:32 ` Patchwork
2025-01-21 6:32 ` ✗ Fi.CI.CHECKPATCH: " Patchwork
` (5 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-21 6:32 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/dp: Guarantee a minimum HBlank time (rev9)
URL : https://patchwork.freedesktop.org/series/139267/
State : warning
== Summary ==
Error: patch https://patchwork.freedesktop.org/api/1.0/series/139267/revisions/9/mbox/ not found
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev9)
2025-01-21 5:06 [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy
2025-01-21 6:32 ` ✗ Fi.CI.BUILD: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev9) Patchwork
@ 2025-01-21 6:32 ` Patchwork
2025-01-21 6:32 ` ✗ Fi.CI.SPARSE: " Patchwork
` (4 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-21 6:32 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/dp: Guarantee a minimum HBlank time (rev9)
URL : https://patchwork.freedesktop.org/series/139267/
State : warning
== Summary ==
Error: dim checkpatch failed
7c897945731a drm/i915/dp: Guarantee a minimum HBlank time
-:144: WARNING:LONG_LINE: line length of 110 exceeds 100 columns
#144: FILE: drivers/gpu/drm/i915/i915_reg.h:3202:
+#define DP_MIN_HBLANK_CTL(trans) _MMIO_TRANS(trans, _DP_MIN_HBLANK_CTL_A, _DP_MIN_HBLANK_CTL_B)
total: 0 errors, 1 warnings, 0 checks, 101 lines checked
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev9)
2025-01-21 5:06 [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy
2025-01-21 6:32 ` ✗ Fi.CI.BUILD: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev9) Patchwork
2025-01-21 6:32 ` ✗ Fi.CI.CHECKPATCH: " Patchwork
@ 2025-01-21 6:32 ` Patchwork
2025-01-21 7:25 ` ✗ i915.CI.BAT: failure " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-21 6:32 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/dp: Guarantee a minimum HBlank time (rev9)
URL : https://patchwork.freedesktop.org/series/139267/
State : warning
== Summary ==
Error: patch https://patchwork.freedesktop.org/api/1.0/series/139267/revisions/9/mbox/ not found
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.BAT: failure for drm/i915/dp: Guarantee a minimum HBlank time (rev9)
2025-01-21 5:06 [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy
` (2 preceding siblings ...)
2025-01-21 6:32 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2025-01-21 7:25 ` Patchwork
2025-01-21 9:44 ` ✓ i915.CI.BAT: success " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-21 7:25 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 6264 bytes --]
== Series Details ==
Series: drm/i915/dp: Guarantee a minimum HBlank time (rev9)
URL : https://patchwork.freedesktop.org/series/139267/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15986 -> Patchwork_139267v9
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_139267v9 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_139267v9, 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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/index.html
Participating hosts (38 -> 40)
------------------------------
Additional (2): fi-bsw-nick fi-pnv-d510
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_139267v9:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gtt:
- bat-jsl-3: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-jsl-3/igt@i915_selftest@live@gtt.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-jsl-3/igt@i915_selftest@live@gtt.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_module_load@load:
- {bat-mtlp-9}: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-mtlp-9/igt@i915_module_load@load.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-mtlp-9/igt@i915_module_load@load.html
Known issues
------------
Here are the changes found in Patchwork_139267v9 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- fi-bsw-nick: NOTRUN -> [SKIP][5] ([i915#1849])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/fi-bsw-nick/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-bsw-nick: NOTRUN -> [SKIP][6] +43 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/fi-bsw-nick/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_module_load@load:
- fi-pnv-d510: NOTRUN -> [ABORT][7] ([i915#13203])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/fi-pnv-d510/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [PASS][8] -> [FAIL][9] ([i915#13401])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][10] ([i915#12919] / [i915#13503])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-twl-1/igt@i915_selftest@live.html
- bat-jsl-3: [PASS][11] -> [INCOMPLETE][12] ([i915#12445] / [i915#13241])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-jsl-3/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-jsl-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-1: [PASS][13] -> [ABORT][14] ([i915#12919])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-twl-1/igt@i915_selftest@live@gt_mocs.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-twl-1/igt@i915_selftest@live@gt_mocs.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][15] -> [SKIP][16] ([i915#9197]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- {bat-arls-6}: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-arls-6/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-arls-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203
[i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241
[i915#13401]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13401
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* Linux: CI_DRM_15986 -> Patchwork_139267v9
CI-20190529: 20190529
CI_DRM_15986: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8200: 5352b187076e89a9ff146cc1ecbd809aa20e4f91 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_139267v9: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/index.html
[-- Attachment #2: Type: text/html, Size: 7277 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915/dp: Guarantee a minimum HBlank time (rev9)
2025-01-21 5:06 [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy
` (3 preceding siblings ...)
2025-01-21 7:25 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-01-21 9:44 ` Patchwork
2025-01-21 12:30 ` [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Jani Nikula
2025-01-21 17:58 ` ✗ i915.CI.Full: failure for drm/i915/dp: Guarantee a minimum HBlank time (rev9) Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-21 9:44 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5899 bytes --]
== Series Details ==
Series: drm/i915/dp: Guarantee a minimum HBlank time (rev9)
URL : https://patchwork.freedesktop.org/series/139267/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15986 -> Patchwork_139267v9
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/index.html
Participating hosts (38 -> 40)
------------------------------
Additional (2): fi-bsw-nick fi-pnv-d510
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_139267v9:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_module_load@load:
- {bat-mtlp-9}: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-mtlp-9/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-mtlp-9/igt@i915_module_load@load.html
Known issues
------------
Here are the changes found in Patchwork_139267v9 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- fi-bsw-nick: NOTRUN -> [SKIP][3] ([i915#1849])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/fi-bsw-nick/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-bsw-nick: NOTRUN -> [SKIP][4] +43 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/fi-bsw-nick/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_module_load@load:
- fi-pnv-d510: NOTRUN -> [ABORT][5] ([i915#13203])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/fi-pnv-d510/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [PASS][6] -> [FAIL][7] ([i915#13401])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][8] ([i915#12919] / [i915#13503])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-twl-1/igt@i915_selftest@live.html
- bat-jsl-3: [PASS][9] -> [INCOMPLETE][10] ([i915#12445] / [i915#13241])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-jsl-3/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-jsl-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-1: [PASS][11] -> [ABORT][12] ([i915#12919])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-twl-1/igt@i915_selftest@live@gt_mocs.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-twl-1/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@gtt:
- bat-jsl-3: [PASS][13] -> [INCOMPLETE][14] ([i915#12445])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-jsl-3/igt@i915_selftest@live@gtt.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-jsl-3/igt@i915_selftest@live@gtt.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][15] -> [SKIP][16] ([i915#9197]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- {bat-arls-6}: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/bat-arls-6/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/bat-arls-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203
[i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241
[i915#13401]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13401
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* Linux: CI_DRM_15986 -> Patchwork_139267v9
CI-20190529: 20190529
CI_DRM_15986: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8200: 5352b187076e89a9ff146cc1ecbd809aa20e4f91 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_139267v9: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/index.html
[-- Attachment #2: Type: text/html, Size: 6969 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time
2025-01-21 5:06 [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy
` (4 preceding siblings ...)
2025-01-21 9:44 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-01-21 12:30 ` Jani Nikula
2025-01-22 5:49 ` Murthy, Arun R
2025-01-21 17:58 ` ✗ i915.CI.Full: failure for drm/i915/dp: Guarantee a minimum HBlank time (rev9) Patchwork
6 siblings, 1 reply; 9+ messages in thread
From: Jani Nikula @ 2025-01-21 12:30 UTC (permalink / raw)
To: Arun R Murthy, intel-gfx, intel-xe; +Cc: Arun R Murthy, Suraj Kandpal
On Tue, 21 Jan 2025, Arun R Murthy <arun.r.murthy@intel.com> wrote:
> Mandate a minimum Hblank symbol cycle count between BlankingStart and
> BlankingEnd in 8b/10b MST and 128b/132b mode.
>
> v2: Affine calculation/updation of min HBlank to dp_mst (Jani)
> v3: moved min_hblank from struct intel_dp to intel_crtc_state (Jani)
> v4: use max/min functions, change intel_xx *intel_xx to intel_xx *xx
> (Jani)
> Limit hblank to 511 and accommodate BS/BE in calculated value
> (Srikanth)
> v5: Some spelling corrections (Suraj)
> v6: Removed DP2.1 in comment as this is applicable for both DP2.1 and
> DP1.4 (Suraj)
> v7: crtc_state holds the logical values and the register value
> computation is moved to mst_enable() (Jani)
>
> Bspec: 74379
> Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
> .../gpu/drm/i915/display/intel_crtc_state_dump.c | 1 +
> drivers/gpu/drm/i915/display/intel_display_types.h | 1 +
> drivers/gpu/drm/i915/display/intel_dp_mst.c | 53 +++++++++++++++++++++-
> drivers/gpu/drm/i915/i915_reg.h | 4 ++
> 4 files changed, 58 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> index 1fbaa67e2fea77279f120bfb9755a2642550046c..07c671741513f7f263b7b233ffec71998745fd0f 100644
> --- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> +++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> @@ -249,6 +249,7 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
> str_enabled_disabled(pipe_config->has_sel_update),
> str_enabled_disabled(pipe_config->has_panel_replay),
> str_enabled_disabled(pipe_config->enable_psr2_sel_fetch));
> + drm_printf(&p, "minimum HBlank: %d\n", pipe_config->min_hblank);
> }
>
> drm_printf(&p, "audio: %i, infoframes: %i, infoframes enabled: 0x%x\n",
> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
> index 8271e50e36447a6c97a93ca0d0b83327ff6ee461..f525e266c0232e8c29ba3f84d2c81612f78e894b 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> @@ -1095,6 +1095,7 @@ struct intel_crtc_state {
>
> int max_link_bpp_x16; /* in 1/16 bpp units */
> int pipe_bpp; /* in 1 bpp units */
> + int min_hblank;
> struct intel_link_m_n dp_m_n;
>
> /* m2_n2 for eDP downclock */
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index 227bd2783e64105dc8dd521b99e7d04ce2e577cc..833167dc0e147dc5e793c0aeda1280453b38f385 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -209,6 +209,28 @@ static int intel_dp_mst_dsc_get_slice_count(const struct intel_connector *connec
> num_joined_pipes);
> }
>
> +static void intel_dp_mst_compute_min_hblank(struct intel_crtc_state *crtc_state,
> + struct intel_connector *connector,
> + int bpp_x16)
> +{
> + struct intel_encoder *encoder = connector->encoder;
> + struct intel_display *display = to_intel_display(encoder);
> + const struct drm_display_mode *adjusted_mode =
> + &crtc_state->hw.adjusted_mode;
> + int symbol_size = intel_dp_is_uhbr(crtc_state) ? 32 : 8;
> + int hblank;
> +
> + if (DISPLAY_VER(display) < 20)
> + return;
> +
> + /* Calculate min Hblank Link Layer Symbol Cycle Count for 8b/10b MST & 128b/132b */
> + hblank = DIV_ROUND_UP((DIV_ROUND_UP
> + (adjusted_mode->htotal - adjusted_mode->hdisplay, 4) * bpp_x16),
> + symbol_size);
> +
> + crtc_state->min_hblank = hblank;
> +}
> +
> int intel_dp_mtp_tu_compute_config(struct intel_dp *intel_dp,
> struct intel_crtc_state *crtc_state,
> int max_bpp, int min_bpp,
> @@ -266,6 +288,9 @@ int intel_dp_mtp_tu_compute_config(struct intel_dp *intel_dp,
>
> local_bw_overhead = intel_dp_mst_bw_overhead(crtc_state,
> false, dsc_slice_count, link_bpp_x16);
> +
> + intel_dp_mst_compute_min_hblank(crtc_state, connector, link_bpp_x16);
> +
> intel_dp_mst_compute_m_n(crtc_state,
> local_bw_overhead,
> link_bpp_x16,
> @@ -1265,7 +1290,7 @@ static void mst_stream_enable(struct intel_atomic_state *state,
> enum transcoder trans = pipe_config->cpu_transcoder;
> bool first_mst_stream = intel_dp->active_mst_links == 1;
> struct intel_crtc *pipe_crtc;
> - int ret, i;
> + int ret, i, min_hblank;
>
> drm_WARN_ON(display->drm, pipe_config->has_pch_encoder);
>
> @@ -1280,6 +1305,32 @@ static void mst_stream_enable(struct intel_atomic_state *state,
> TRANS_DP2_VFREQ_PIXEL_CLOCK(crtc_clock_hz & 0xffffff));
> }
>
> + if (DISPLAY_VER(display) >= 20) {
> + /*
> + * bit 8:0 minimum hblank symbol cylce count, i.e maximum value
> + * would be 511
> + */
If you defined the register field with REG_GENMASK(), you'd get the max
from there, the code would document itself, and the comment would be
unnecessary.
> + min_hblank = min(511, pipe_config->min_hblank);
> +
> + /*
> + * adjust the BlankingStart/BlankingEnd framing control from
> + * the calculated value
> + */
> + min_hblank = min_hblank - 2;
This means you'll never write values 511 or 510 to the register. Should
the order be changed?
But then... bspec says, "The maximum value programmed in this field
(MIN_HBLNK_LL_SYM_CYC_CNT_MAX) should be a value of 10."
Please double check the discrepancy.
> +
> + /*
> + * Minimum hblank accepted for 128b/132b would be 5 and for
> + * 8b/10b would be 3 symbol count
> + */
> + if (intel_dp_is_uhbr(pipe_config))
> + min_hblank = max(min_hblank, 5);
> + else
> + min_hblank = max(min_hblank, 3);
> +
> + intel_de_write(display, DP_MIN_HBLANK_CTL(trans),
> + min_hblank);
This is left in place, never cleared, and who knows what'll happen if
you unplug an MST hub and plug in an SST display. Bspec says "This
register should only be programmed to a non-zero value when in 8b/10b
MST or 128b/132b operation."
That's bound to be hard to debug, and never going to happen in CI,
because we won't be switching between SST/MST there.
BR,
Jani.
> + }
> +
> enable_bs_jitter_was(pipe_config);
>
> intel_ddi_enable_transcoder_func(encoder, pipe_config);
> diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
> index 765e6c0528fb0b5a894395b77a5edbf0b0c80009..7bd783931199e2e5c7e15358bb4d2c904f28176a 100644
> --- a/drivers/gpu/drm/i915/i915_reg.h
> +++ b/drivers/gpu/drm/i915/i915_reg.h
> @@ -3197,6 +3197,10 @@
> #define _TRANS_DP2_VFREQLOW_D 0x630a8
> #define TRANS_DP2_VFREQLOW(trans) _MMIO_TRANS(trans, _TRANS_DP2_VFREQLOW_A, _TRANS_DP2_VFREQLOW_B)
>
> +#define _DP_MIN_HBLANK_CTL_A 0x600ac
> +#define _DP_MIN_HBLANK_CTL_B 0x610ac
> +#define DP_MIN_HBLANK_CTL(trans) _MMIO_TRANS(trans, _DP_MIN_HBLANK_CTL_A, _DP_MIN_HBLANK_CTL_B)
> +
> /* SNB eDP training params */
> /* SNB A-stepping */
> #define EDP_LINK_TRAIN_400MV_0DB_SNB_A (0x38 << 22)
>
> ---
> base-commit: a15d2a84505eed8dbb58911147e44752734f3a88
> change-id: 20250121-hblank-ad8ce892eb3a
>
> Best regards,
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915/dp: Guarantee a minimum HBlank time (rev9)
2025-01-21 5:06 [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy
` (5 preceding siblings ...)
2025-01-21 12:30 ` [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Jani Nikula
@ 2025-01-21 17:58 ` Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-21 17:58 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100111 bytes --]
== Series Details ==
Series: drm/i915/dp: Guarantee a minimum HBlank time (rev9)
URL : https://patchwork.freedesktop.org/series/139267/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15986_full -> Patchwork_139267v9_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_139267v9_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_139267v9_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 (12 -> 12)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_139267v9_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@execbuf:
- shard-mtlp: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-mtlp-2/igt@gem_eio@execbuf.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-4/igt@gem_eio@execbuf.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-18/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [INCOMPLETE][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-3.html
#### Warnings ####
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][5] ([i915#11713]) -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-tglu-10/igt@gem_exec_big@single.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-8/igt@gem_exec_big@single.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: [INCOMPLETE][7] ([i915#4817]) -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-glk7/igt@i915_suspend@fence-restore-tiled2untiled.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-glk1/igt@i915_suspend@fence-restore-tiled2untiled.html
Known issues
------------
Here are the changes found in Patchwork_139267v9_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@unbind-reset-rebind:
- shard-tglu: [PASS][11] -> [ABORT][12] ([i915#12817] / [i915#5507])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-tglu-6/igt@device_reset@unbind-reset-rebind.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +16 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#3936])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][20] ([i915#12392] / [i915#7297])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#8562])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-snb5/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-hostile.html
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][27] ([i915#10030] / [i915#7975] / [i915#8213])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@gem_eio@hibernate.html
- shard-rkl: NOTRUN -> [ABORT][28] ([i915#7975] / [i915#8213])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-immediate:
- shard-dg1: [PASS][29] -> [DMESG-WARN][30] ([i915#4423]) +5 other tests dmesg-warn
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-17/igt@gem_eio@in-flight-immediate.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@gem_eio@in-flight-immediate.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][31] ([i915#8898])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-snb7/igt@gem_eio@reset-stress.html
- shard-dg1: [PASS][32] -> [FAIL][33] ([i915#12543] / [i915#5784])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-14/igt@gem_eio@reset-stress.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#4771])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][37] ([i915#11965]) +4 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +8 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +17 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613] / [i915#7582])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#12193])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-9/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4565])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_mmap_gtt@basic-copy:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +10 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@gem_mmap_gtt@basic-copy.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +5 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_pread@snoop:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][61] ([i915#12964])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-rkl: NOTRUN -> [TIMEOUT][64] ([i915#12917] / [i915#12964]) +2 other tests timeout
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_readwrite@read-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4079])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4079]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#8411])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: NOTRUN -> [DMESG-FAIL][71] ([i915#12964]) +1 other test dmesg-fail
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: NOTRUN -> [FAIL][72] ([i915#13557])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#3323])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][79] +414 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-snb2/igt@gem_vm_create@invalid-create.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][80] +8 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@gen9_exec_parse@bb-secure.html
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-9/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4881]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@i915_fb_tiling.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#6412])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@i915_module_load@resize-bar.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#7178])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#8399])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#6590]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#6590]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-9/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rpm@gem-evict-pwrite:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#13328])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@i915_pm_rpm@gem-evict-pwrite.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#11681]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#4387])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4387])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#5723])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4215] / [i915#5190])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4212]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-dg1: [PASS][99] -> [FAIL][100] ([i915#12518] / [i915#12766])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-18/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#8709]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#12967])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][103] ([i915#12964]) +12 other tests dmesg-warn
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#5286]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5286]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#5286]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#5286])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][108] +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][109] +20 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_big_fb@linear-32bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#3638]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][111] +8 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#3638]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +11 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#5190]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#6095]) +230 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#10307] / [i915#6095]) +127 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#6095]) +69 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#6095]) +49 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-dg2: [PASS][121] -> [INCOMPLETE][122] ([i915#12796])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#6095]) +14 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#6095]) +12 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#12313]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#11616] / [i915#7213])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#3742])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#3742])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_cdclk@plane-scaling.html
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3742])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4087]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#11151] / [i915#7828]) +10 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_chamelium_frames@dp-crc-fast.html
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#7828]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3299])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#3299])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#3299])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#3116] / [i915#3299])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_content_protection@lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#9424])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [TIMEOUT][143] ([i915#7173]) +1 other test timeout
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7118] / [i915#9424])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#7118] / [i915#9424])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#7116] / [i915#9424])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#13049])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#13049])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#13049]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#13049])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#3555])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#3555]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-256x85@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][154] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-b-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#3555]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#13049]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8814])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8814])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#13046] / [i915#5354]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#4103] / [i915#4213])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#4103])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#4103] / [i915#4213])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#4103])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#9723])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#1257])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_dp_aux_dev.html
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#1257])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#12402])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#8812])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#3840] / [i915#9053])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3840] / [i915#9053])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#3469])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#3469])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#4854])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#1839])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#1839])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_feature_discovery@display-4x.html
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#1839])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#9337])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#9337])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_feature_discovery@dp-mst.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#4881])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3637]) +7 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#9934]) +4 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3637])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#3637]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#9934])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#9934]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-snb: [PASS][189] -> [FAIL][190] ([i915#11989]) +1 other test fail
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-snb1/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#8381]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555] / [i915#8813])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#8813])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#2672]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#2587] / [i915#2672] / [i915#3555])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#2672])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#2587] / [i915#2672]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#3555]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-rkl: [PASS][206] -> [DMESG-WARN][207] ([i915#12964]) +3 other tests dmesg-warn
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#5439])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#3458]) +18 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3023]) +15 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][211] +29 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#5354]) +33 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#8708]) +10 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#8708]) +19 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][215] +55 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#9766])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#9766])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#4423] / [i915#8708])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#3458]) +10 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#1825]) +23 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#4423])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8708])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#12388])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#12388])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#12339]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#12339])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#10656])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#12388])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#12339])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#13522])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#13522])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#4816])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#4816])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][238] ([i915#13409] / [i915#13476])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane_lowres@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#3555]) +5 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#8806])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [PASS][241] -> [SKIP][242] ([i915#6953] / [i915#9423])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#12247]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#12247]) +14 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#12247]) +8 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#9423])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#12247] / [i915#3555] / [i915#9423])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#12247] / [i915#3555])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/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-rkl: NOTRUN -> [SKIP][249] ([i915#12247]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#12247]) +7 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#5354])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#9685])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#5978])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_pm_dc@dc6-dpms.html
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#3361])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][255] -> [FAIL][256] ([i915#9295])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#3828])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#9519]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [PASS][259] -> [SKIP][260] ([i915#9519]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#9519])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][262] -> [SKIP][263] ([i915#9519]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#9519])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#6524] / [i915#6805])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_prime@basic-crc-hybrid.html
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#6524])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#6524])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#11520]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#11520]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#11520]) +5 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#11520]) +8 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#11520]) +5 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][273] ([i915#11520]) +12 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-snb5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#9683])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#9683]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#9732]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#1072] / [i915#9732]) +24 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#9732]) +15 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-9/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#9688]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#9732]) +15 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#9732]) +15 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-12/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#9685])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#9685])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#4235])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#12755]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#5289])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#12755] / [i915#5190]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-snb: NOTRUN -> [ABORT][288] ([i915#13179]) +1 other test abort
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-snb5/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3555]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#8623])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#11920])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@kms_vrr@lobf.html
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#11920])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#9906]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#9906])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#9906])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#2437])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@kms_writeback@writeback-check-output.html
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#2437])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#2437] / [i915#9412])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#7387])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@perf@global-sseu-config.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][300] ([i915#4349]) +4 other tests fail
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][301] ([i915#11823])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [PASS][302] -> [FAIL][303] ([i915#4349]) +1 other test fail
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-rkl-7/igt@perf_pmu@most-busy-check-all.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-5/igt@perf_pmu@most-busy-check-all.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][304] ([i915#4349]) +1 other test fail
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#3708] / [i915#4077])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#3708])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-7/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#3708])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#9917]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#9917])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][310] ([i915#12910])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][311] ([i915#12392] / [i915#7297]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-mtlp: [ABORT][313] -> [PASS][314] +1 other test pass
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-mtlp-4/igt@gem_ctx_persistence@engines-mixed-process.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-6/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][315] ([i915#5493]) -> [PASS][316] +1 other test pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-dg1: [FAIL][317] ([i915#3591]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][319] ([i915#12739] / [i915#3591]) -> [PASS][320] +1 other test pass
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][321] ([i915#5138]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-4:
- shard-dg1: [DMESG-WARN][323] ([i915#4423]) -> [PASS][324] +1 other test pass
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-4.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-4.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: [FAIL][325] -> [PASS][326] +7 other tests pass
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- shard-rkl: [DMESG-WARN][327] ([i915#12964]) -> [PASS][328] +3 other tests pass
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:
- shard-tglu: [FAIL][329] ([i915#11989]) -> [PASS][330] +4 other tests pass
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-tglu-7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-snb: [SKIP][331] -> [PASS][332] +4 other tests pass
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][333] ([i915#12756]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][335] ([i915#9519]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@perf_pmu@busy-start:
- shard-mtlp: [FAIL][337] ([i915#4349]) -> [PASS][338] +2 other tests pass
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-mtlp-7/igt@perf_pmu@busy-start.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-5/igt@perf_pmu@busy-start.html
* igt@perf_pmu@busy-start@vecs0:
- shard-mtlp: [FAIL][339] -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-mtlp-7/igt@perf_pmu@busy-start@vecs0.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-5/igt@perf_pmu@busy-start@vecs0.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [DMESG-WARN][341] ([i915#13475]) -> [ABORT][342] ([i915#13493] / [i915#9820])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [DMESG-WARN][343] ([i915#13475]) -> [ABORT][344] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-dg1: [SKIP][345] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][346] ([i915#11151] / [i915#7828])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic:
- shard-snb: [SKIP][347] -> [INCOMPLETE][348] ([i915#8816])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-snb5/igt@kms_content_protection@atomic.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-snb1/igt@kms_content_protection@atomic.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][349] ([i915#12745] / [i915#1982] / [i915#4839]) -> [INCOMPLETE][350] ([i915#12745] / [i915#4839])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][351] ([i915#1982] / [i915#4839]) -> [INCOMPLETE][352] ([i915#4839])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move:
- shard-dg1: [SKIP][353] -> [SKIP][354] ([i915#4423])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][355] ([i915#1187] / [i915#12713]) -> [SKIP][356] ([i915#12713])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: [SKIP][357] ([i915#2437]) -> [SKIP][358] ([i915#2437] / [i915#4423])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15986/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11823
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
[i915#12518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12518
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12739
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12766
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13475]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13475
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13493
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13557]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13557
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_15986 -> Patchwork_139267v9
CI-20190529: 20190529
CI_DRM_15986: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8200: 5352b187076e89a9ff146cc1ecbd809aa20e4f91 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_139267v9: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v9/index.html
[-- Attachment #2: Type: text/html, Size: 125037 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time
2025-01-21 12:30 ` [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Jani Nikula
@ 2025-01-22 5:49 ` Murthy, Arun R
0 siblings, 0 replies; 9+ messages in thread
From: Murthy, Arun R @ 2025-01-22 5:49 UTC (permalink / raw)
To: Jani Nikula, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org
Cc: Kandpal, Suraj
> On Tue, 21 Jan 2025, Arun R Murthy <arun.r.murthy@intel.com> wrote:
> > Mandate a minimum Hblank symbol cycle count between BlankingStart and
> > BlankingEnd in 8b/10b MST and 128b/132b mode.
> >
> > v2: Affine calculation/updation of min HBlank to dp_mst (Jani)
> > v3: moved min_hblank from struct intel_dp to intel_crtc_state (Jani)
> > v4: use max/min functions, change intel_xx *intel_xx to intel_xx *xx
> > (Jani)
> > Limit hblank to 511 and accommodate BS/BE in calculated value
> > (Srikanth)
> > v5: Some spelling corrections (Suraj)
> > v6: Removed DP2.1 in comment as this is applicable for both DP2.1 and
> > DP1.4 (Suraj)
> > v7: crtc_state holds the logical values and the register value
> > computation is moved to mst_enable() (Jani)
> >
> > Bspec: 74379
> > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> > Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
> > ---
> > .../gpu/drm/i915/display/intel_crtc_state_dump.c | 1 +
> > drivers/gpu/drm/i915/display/intel_display_types.h | 1 +
> > drivers/gpu/drm/i915/display/intel_dp_mst.c | 53
> +++++++++++++++++++++-
> > drivers/gpu/drm/i915/i915_reg.h | 4 ++
> > 4 files changed, 58 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> > b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> > index
> >
> 1fbaa67e2fea77279f120bfb9755a2642550046c..07c671741513f7f263b7b233
> ffec
> > 71998745fd0f 100644
> > --- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> > +++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> > @@ -249,6 +249,7 @@ void intel_crtc_state_dump(const struct
> intel_crtc_state *pipe_config,
> > str_enabled_disabled(pipe_config->has_sel_update),
> > str_enabled_disabled(pipe_config-
> >has_panel_replay),
> > str_enabled_disabled(pipe_config-
> >enable_psr2_sel_fetch));
> > + drm_printf(&p, "minimum HBlank: %d\n", pipe_config-
> >min_hblank);
> > }
> >
> > drm_printf(&p, "audio: %i, infoframes: %i, infoframes enabled:
> > 0x%x\n", diff --git
> > a/drivers/gpu/drm/i915/display/intel_display_types.h
> > b/drivers/gpu/drm/i915/display/intel_display_types.h
> > index
> >
> 8271e50e36447a6c97a93ca0d0b83327ff6ee461..f525e266c0232e8c29ba3f84
> d2c8
> > 1612f78e894b 100644
> > --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> > @@ -1095,6 +1095,7 @@ struct intel_crtc_state {
> >
> > int max_link_bpp_x16; /* in 1/16 bpp units */
> > int pipe_bpp; /* in 1 bpp units */
> > + int min_hblank;
> > struct intel_link_m_n dp_m_n;
> >
> > /* m2_n2 for eDP downclock */
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > index
> >
> 227bd2783e64105dc8dd521b99e7d04ce2e577cc..833167dc0e147dc5e793c0a
> eda12
> > 80453b38f385 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > @@ -209,6 +209,28 @@ static int intel_dp_mst_dsc_get_slice_count(const
> struct intel_connector *connec
> > num_joined_pipes);
> > }
> >
> > +static void intel_dp_mst_compute_min_hblank(struct intel_crtc_state
> *crtc_state,
> > + struct intel_connector *connector,
> > + int bpp_x16)
> > +{
> > + struct intel_encoder *encoder = connector->encoder;
> > + struct intel_display *display = to_intel_display(encoder);
> > + const struct drm_display_mode *adjusted_mode =
> > + &crtc_state->hw.adjusted_mode;
> > + int symbol_size = intel_dp_is_uhbr(crtc_state) ? 32 : 8;
> > + int hblank;
> > +
> > + if (DISPLAY_VER(display) < 20)
> > + return;
> > +
> > + /* Calculate min Hblank Link Layer Symbol Cycle Count for 8b/10b MST
> & 128b/132b */
> > + hblank = DIV_ROUND_UP((DIV_ROUND_UP
> > + (adjusted_mode->htotal - adjusted_mode-
> >hdisplay, 4) * bpp_x16),
> > + symbol_size);
> > +
> > + crtc_state->min_hblank = hblank;
> > +}
> > +
> > int intel_dp_mtp_tu_compute_config(struct intel_dp *intel_dp,
> > struct intel_crtc_state *crtc_state,
> > int max_bpp, int min_bpp,
> > @@ -266,6 +288,9 @@ int intel_dp_mtp_tu_compute_config(struct intel_dp
> > *intel_dp,
> >
> > local_bw_overhead = intel_dp_mst_bw_overhead(crtc_state,
> > false,
> dsc_slice_count, link_bpp_x16);
> > +
> > + intel_dp_mst_compute_min_hblank(crtc_state, connector,
> > +link_bpp_x16);
> > +
> > intel_dp_mst_compute_m_n(crtc_state,
> > local_bw_overhead,
> > link_bpp_x16,
> > @@ -1265,7 +1290,7 @@ static void mst_stream_enable(struct
> intel_atomic_state *state,
> > enum transcoder trans = pipe_config->cpu_transcoder;
> > bool first_mst_stream = intel_dp->active_mst_links == 1;
> > struct intel_crtc *pipe_crtc;
> > - int ret, i;
> > + int ret, i, min_hblank;
> >
> > drm_WARN_ON(display->drm, pipe_config->has_pch_encoder);
> >
> > @@ -1280,6 +1305,32 @@ static void mst_stream_enable(struct
> intel_atomic_state *state,
> > TRANS_DP2_VFREQ_PIXEL_CLOCK(crtc_clock_hz &
> 0xffffff));
> > }
> >
> > + if (DISPLAY_VER(display) >= 20) {
> > + /*
> > + * bit 8:0 minimum hblank symbol cylce count, i.e maximum
> value
> > + * would be 511
> > + */
>
> If you defined the register field with REG_GENMASK(), you'd get the max from
> there, the code would document itself, and the comment would be
> unnecessary.
>
Done!
> > + min_hblank = min(511, pipe_config->min_hblank);
> > +
> > + /*
> > + * adjust the BlankingStart/BlankingEnd framing control from
> > + * the calculated value
> > + */
> > + min_hblank = min_hblank - 2;
>
> This means you'll never write values 511 or 510 to the register. Should the order
> be changed?
>
> But then... bspec says, "The maximum value programmed in this field
> (MIN_HBLNK_LL_SYM_CYC_CNT_MAX) should be a value of 10."
>
> Please double check the discrepancy.
>
Yes the spec says maximum value is 0x10. Will change it accordingly.
> > +
> > + /*
> > + * Minimum hblank accepted for 128b/132b would be 5 and for
> > + * 8b/10b would be 3 symbol count
> > + */
> > + if (intel_dp_is_uhbr(pipe_config))
> > + min_hblank = max(min_hblank, 5);
> > + else
> > + min_hblank = max(min_hblank, 3);
> > +
> > + intel_de_write(display, DP_MIN_HBLANK_CTL(trans),
> > + min_hblank);
>
> This is left in place, never cleared, and who knows what'll happen if you unplug
> an MST hub and plug in an SST display. Bspec says "This register should only be
> programmed to a non-zero value when in 8b/10b MST or 128b/132b
> operation."
>
> That's bound to be hard to debug, and never going to happen in CI, because we
> won't be switching between SST/MST there.
>
Resetting the value to 0x00 on mst_disable.
Thanks and Regards,
Arun R Murthy
--------------------
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-01-22 5:50 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-21 5:06 [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy
2025-01-21 6:32 ` ✗ Fi.CI.BUILD: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev9) Patchwork
2025-01-21 6:32 ` ✗ Fi.CI.CHECKPATCH: " Patchwork
2025-01-21 6:32 ` ✗ Fi.CI.SPARSE: " Patchwork
2025-01-21 7:25 ` ✗ i915.CI.BAT: failure " Patchwork
2025-01-21 9:44 ` ✓ i915.CI.BAT: success " Patchwork
2025-01-21 12:30 ` [PATCH v8] drm/i915/dp: Guarantee a minimum HBlank time Jani Nikula
2025-01-22 5:49 ` Murthy, Arun R
2025-01-21 17:58 ` ✗ i915.CI.Full: failure for drm/i915/dp: Guarantee a minimum HBlank time (rev9) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox