* [Intel-gfx] [PATCH] drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms
@ 2022-03-01 5:29 Matt Roper
2022-03-01 6:42 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Matt Roper @ 2022-03-01 5:29 UTC (permalink / raw)
To: intel-gfx; +Cc: dri-devel
Platforms with FlatCCS do not use auxiliary planes for compression
control data and thus do not need traditional aux table invalidation
(and the registers no longer even exist).
Original-author: CQ Tang
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/i915/gt/gen8_engine_cs.c | 28 ++++++++++++++++--------
1 file changed, 19 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
index 1f8cf4f790b2..13bbbf5d9737 100644
--- a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
+++ b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
@@ -231,7 +231,7 @@ int gen12_emit_flush_rcs(struct i915_request *rq, u32 mode)
if (mode & EMIT_INVALIDATE) {
u32 flags = 0;
- u32 *cs;
+ u32 *cs, count;
flags |= PIPE_CONTROL_COMMAND_CACHE_INVALIDATE;
flags |= PIPE_CONTROL_TLB_INVALIDATE;
@@ -246,7 +246,12 @@ int gen12_emit_flush_rcs(struct i915_request *rq, u32 mode)
flags |= PIPE_CONTROL_CS_STALL;
- cs = intel_ring_begin(rq, 8 + 4);
+ if (!HAS_FLAT_CCS(rq->engine->i915))
+ count = 8 + 4;
+ else
+ count = 8;
+
+ cs = intel_ring_begin(rq, count);
if (IS_ERR(cs))
return PTR_ERR(cs);
@@ -259,8 +264,10 @@ int gen12_emit_flush_rcs(struct i915_request *rq, u32 mode)
cs = gen8_emit_pipe_control(cs, flags, LRC_PPHWSP_SCRATCH_ADDR);
- /* hsdes: 1809175790 */
- cs = gen12_emit_aux_table_inv(GEN12_GFX_CCS_AUX_NV, cs);
+ if (!HAS_FLAT_CCS(rq->engine->i915)) {
+ /* hsdes: 1809175790 */
+ cs = gen12_emit_aux_table_inv(GEN12_GFX_CCS_AUX_NV, cs);
+ }
*cs++ = preparser_disable(false);
intel_ring_advance(rq, cs);
@@ -275,12 +282,15 @@ int gen12_emit_flush_xcs(struct i915_request *rq, u32 mode)
u32 cmd, *cs;
cmd = 4;
- if (mode & EMIT_INVALIDATE)
+ if (mode & EMIT_INVALIDATE) {
cmd += 2;
- if (mode & EMIT_INVALIDATE)
- aux_inv = rq->engine->mask & ~BIT(BCS0);
- if (aux_inv)
- cmd += 2 * hweight32(aux_inv) + 2;
+
+ if (!HAS_FLAT_CCS(rq->engine->i915)) {
+ aux_inv = rq->engine->mask & ~BIT(BCS0);
+ if (aux_inv)
+ cmd += 2 * hweight32(aux_inv) + 2;
+ }
+ }
cs = intel_ring_begin(rq, cmd);
if (IS_ERR(cs))
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms
2022-03-01 5:29 [Intel-gfx] [PATCH] drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms Matt Roper
@ 2022-03-01 6:42 ` Patchwork
2022-03-01 14:01 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2022-03-08 18:39 ` [Intel-gfx] [PATCH] " Lucas De Marchi
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2022-03-01 6:42 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5774 bytes --]
== Series Details ==
Series: drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms
URL : https://patchwork.freedesktop.org/series/100867/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11300 -> Patchwork_22445
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/index.html
Participating hosts (46 -> 40)
------------------------------
Additional (1): bat-jsl-2
Missing (7): fi-kbl-soraka shard-tglu fi-bsw-cyan fi-pnv-d510 shard-rkl shard-dg1 fi-bdw-samus
Known issues
------------
Here are the changes found in Patchwork_22445 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rps@basic-api:
- bat-dg1-5: [PASS][1] -> [FAIL][2] ([i915#4032])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/bat-dg1-5/igt@i915_pm_rps@basic-api.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/bat-dg1-5/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- fi-tgl-1115g4: [PASS][3] -> [DMESG-FAIL][4] ([i915#3987])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/fi-tgl-1115g4/igt@i915_selftest@live@gt_pm.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/fi-tgl-1115g4/igt@i915_selftest@live@gt_pm.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-glk-dsi: [DMESG-FAIL][5] ([i915#541]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/fi-glk-dsi/igt@i915_selftest@live@gt_heartbeat.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/fi-glk-dsi/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_busy@basic@flip:
- bat-adlp-4: [DMESG-WARN][7] ([i915#3576]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/bat-adlp-4/igt@kms_busy@basic@flip.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/bat-adlp-4/igt@kms_busy@basic@flip.html
* igt@kms_force_connector_basic@force-connector-state:
- fi-cfl-8109u: [DMESG-WARN][9] ([i915#165]) -> [PASS][10] +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/fi-cfl-8109u/igt@kms_force_connector_basic@force-connector-state.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/fi-cfl-8109u/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_pipe_crc_basic@read-crc-pipe-b:
- fi-cfl-8109u: [DMESG-WARN][11] ([i915#165] / [i915#295]) -> [PASS][12] +13 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc-pipe-b.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc-pipe-b.html
#### Warnings ####
* igt@i915_selftest@live@hangcheck:
- bat-dg1-6: [DMESG-FAIL][13] ([i915#4494] / [i915#4957]) -> [DMESG-FAIL][14] ([i915#4957])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@requests:
- fi-blb-e6850: [DMESG-FAIL][15] ([i915#5026]) -> [DMESG-FAIL][16] ([i915#4528] / [i915#5026])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/fi-blb-e6850/igt@i915_selftest@live@requests.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/fi-blb-e6850/igt@i915_selftest@live@requests.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
[i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
[i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4898]: https://gitlab.freedesktop.org/drm/intel/issues/4898
[i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
[i915#5026]: https://gitlab.freedesktop.org/drm/intel/issues/5026
[i915#5127]: https://gitlab.freedesktop.org/drm/intel/issues/5127
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541
Build changes
-------------
* Linux: CI_DRM_11300 -> Patchwork_22445
CI-20190529: 20190529
CI_DRM_11300: 10eb9bc8729d3da3fe8f53c8e5b70b8a9a52b6e0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6361: 2372a4beb6a33c5f0799a4a8ccbb93794f52dbca @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_22445: 4e7575ca10e37bcf2f5c4faae68464c04f009ed0 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
4e7575ca10e3 drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/index.html
[-- Attachment #2: Type: text/html, Size: 6107 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms
2022-03-01 5:29 [Intel-gfx] [PATCH] drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms Matt Roper
2022-03-01 6:42 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
@ 2022-03-01 14:01 ` Patchwork
2022-03-08 19:30 ` Matt Roper
2022-03-08 18:39 ` [Intel-gfx] [PATCH] " Lucas De Marchi
2 siblings, 1 reply; 5+ messages in thread
From: Patchwork @ 2022-03-01 14:01 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 30287 bytes --]
== Series Details ==
Series: drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms
URL : https://patchwork.freedesktop.org/series/100867/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11300_full -> Patchwork_22445_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_22445_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale}:
- shard-iclb: [PASS][1] -> [SKIP][2] +2 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-iclb8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html
* {igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5}:
- {shard-rkl}: NOTRUN -> [SKIP][3] +8 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* {igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping}:
- shard-iclb: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-iclb4/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
* {igt@kms_plane_scaling@upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1-upscale-with-rotation}:
- {shard-dg1}: NOTRUN -> [SKIP][6] +8 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-dg1-12/igt@kms_plane_scaling@upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1-upscale-with-rotation.html
New tests
---------
New tests have been introduced between CI_DRM_11300_full and Patchwork_22445_full:
### New IGT tests (1) ###
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in Patchwork_22445_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglb: NOTRUN -> [DMESG-WARN][7] ([i915#5076])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-kbl: NOTRUN -> [DMESG-WARN][8] ([i915#5076])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@pi@rcs0:
- shard-skl: NOTRUN -> [INCOMPLETE][9] ([i915#4547])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl1/igt@gem_exec_capture@pi@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-glk: [PASS][10] -> [FAIL][11] ([i915#2842]) +1 similar issue
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-glk7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-sync@rcs0:
- shard-tglb: [PASS][12] -> [SKIP][13] ([i915#2848])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglb1/igt@gem_exec_fair@basic-sync@rcs0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb6/igt@gem_exec_fair@basic-sync@rcs0.html
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-glk: [PASS][14] -> [DMESG-WARN][15] ([i915#118])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-glk1/igt@gem_exec_whisper@basic-contexts-forked-all.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-glk1/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@gem_huc_copy@huc-copy:
- shard-skl: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#2190])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglb: NOTRUN -> [SKIP][17] ([i915#4613])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4613])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl7/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_pxp@create-regular-context-2:
- shard-tglb: NOTRUN -> [SKIP][19] ([i915#4270]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@gem_pxp@create-regular-context-2.html
* igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
- shard-iclb: NOTRUN -> [SKIP][20] ([i915#768])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglb: NOTRUN -> [SKIP][21] ([fdo#110542])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglb: NOTRUN -> [SKIP][22] ([i915#3297])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-kbl: [PASS][23] -> [DMESG-WARN][24] ([i915#180])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-kbl3/igt@gem_workarounds@suspend-resume-fd.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglb: NOTRUN -> [SKIP][25] ([i915#2527] / [i915#2856]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-skl: [PASS][26] -> [DMESG-WARN][27] ([i915#1436] / [i915#716])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-skl6/igt@gen9_exec_parse@allowed-single.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl4/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_dc@dc6-psr:
- shard-tglb: NOTRUN -> [FAIL][28] ([i915#454])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
- shard-kbl: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#1937])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglb: [PASS][30] -> [WARN][31] ([i915#2681] / [i915#2684])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglb2/igt@i915_pm_rc6_residency@rc6-fence.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb7/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-iclb: NOTRUN -> [WARN][32] ([i915#2684])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271]) +89 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_selftest@live@hangcheck:
- shard-snb: [PASS][34] -> [INCOMPLETE][35] ([i915#3921])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-snb6/igt@i915_selftest@live@hangcheck.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-snb5/igt@i915_selftest@live@hangcheck.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-iclb: NOTRUN -> [SKIP][36] ([fdo#110725] / [fdo#111614]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3777]) +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-tglb: NOTRUN -> [SKIP][38] ([fdo#111614])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][39] ([fdo#111615]) +2 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-iclb: NOTRUN -> [SKIP][40] ([fdo#110723])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109278] / [i915#3886]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
- shard-skl: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#3886])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) +2 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl3/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][44] ([i915#3689]) +2 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
- shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#3886]) +1 similar issue
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl1/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][46] ([fdo#111615] / [i915#3689]) +2 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_ccs@pipe-c-missing-ccs-buffer-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
- shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109278]) +4 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-tglb: NOTRUN -> [SKIP][48] ([i915#3742])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb7/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium@hdmi-crc-multiple:
- shard-skl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +4 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_chamelium@hdmi-crc-multiple.html
* igt@kms_chamelium@hdmi-mode-timings:
- shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) +2 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_chamelium@hdmi-mode-timings.html
* igt@kms_chamelium@vga-hpd-enable-disable-mode:
- shard-kbl: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl4/igt@kms_chamelium@vga-hpd-enable-disable-mode.html
* igt@kms_color_chamelium@pipe-b-ctm-0-5:
- shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +8 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl3/igt@kms_color_chamelium@pipe-b-ctm-0-5.html
* igt@kms_color_chamelium@pipe-d-ctm-max:
- shard-tglb: NOTRUN -> [SKIP][53] ([fdo#109284] / [fdo#111827]) +2 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_color_chamelium@pipe-d-ctm-max.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglb: NOTRUN -> [SKIP][54] ([i915#3116] / [i915#3299])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic:
- shard-apl: NOTRUN -> [TIMEOUT][55] ([i915#1319])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl6/igt@kms_content_protection@lic.html
* igt@kms_cursor_crc@pipe-a-cursor-512x170-random:
- shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109278] / [fdo#109279])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x170-random.html
* igt@kms_cursor_crc@pipe-b-cursor-max-size-sliding:
- shard-tglb: NOTRUN -> [SKIP][57] ([i915#3359])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-max-size-sliding.html
* igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen:
- shard-tglb: NOTRUN -> [SKIP][58] ([i915#3319])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement:
- shard-kbl: NOTRUN -> [SKIP][59] ([fdo#109271]) +23 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl4/igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement.html
* igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen:
- shard-tglb: NOTRUN -> [SKIP][60] ([fdo#109279] / [i915#3359]) +3 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-tglb: NOTRUN -> [SKIP][61] ([fdo#109274] / [fdo#111825]) +4 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-tglb: [PASS][62] -> [FAIL][63] ([i915#2346] / [i915#533])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglb3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@pipe-d-single-bo:
- shard-kbl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#533])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl4/igt@kms_cursor_legacy@pipe-d-single-bo.html
* igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglb: NOTRUN -> [SKIP][65] ([i915#3528])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-kbl: [PASS][66] -> [INCOMPLETE][67] ([i915#180] / [i915#636])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-plain-flip:
- shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109274])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend@a-dp1:
- shard-apl: [PASS][69] -> [DMESG-WARN][70] ([i915#180]) +3 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-apl7/igt@kms_flip@flip-vs-suspend@a-dp1.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl1/igt@kms_flip@flip-vs-suspend@a-dp1.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
- shard-tglb: NOTRUN -> [SKIP][71] ([fdo#109280] / [fdo#111825]) +7 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
- shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109280]) +8 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
- shard-skl: NOTRUN -> [SKIP][73] ([fdo#109271]) +37 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-skl: [PASS][74] -> [FAIL][75] ([i915#1188])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-skl7/igt@kms_hdr@bpc-switch-dpms.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl9/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_invalid_mode@clock-too-high:
- shard-tglb: NOTRUN -> [SKIP][76] ([i915#4278])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglb: NOTRUN -> [SKIP][77] ([i915#1839])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-tglb: NOTRUN -> [SKIP][78] ([fdo#109289]) +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
- shard-apl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl3/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
- shard-skl: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#533])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
- shard-apl: NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265]) +1 similar issue
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html
* igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
- shard-skl: [PASS][82] -> [FAIL][83] ([fdo#108145] / [i915#265])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl4/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
* igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
- shard-skl: NOTRUN -> [FAIL][84] ([fdo#108145] / [i915#265])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html
* igt@kms_plane_lowres@pipe-b-tiling-yf:
- shard-tglb: NOTRUN -> [SKIP][85] ([fdo#111615] / [fdo#112054])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_plane_lowres@pipe-b-tiling-yf.html
* igt@kms_plane_lowres@pipe-c-tiling-none:
- shard-tglb: NOTRUN -> [SKIP][86] ([i915#3536]) +1 similar issue
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_plane_lowres@pipe-c-tiling-none.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-iclb: NOTRUN -> [SKIP][87] ([fdo#111068] / [i915#658])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
- shard-skl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5 (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][89] ([i915#658])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-rkl-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
* igt@kms_psr@psr2_primary_blt:
- shard-iclb: NOTRUN -> [SKIP][90] ([fdo#109441])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@kms_psr@psr2_primary_blt.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-tglb: NOTRUN -> [FAIL][91] ([i915#132] / [i915#3467])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [PASS][92] -> [SKIP][93] ([fdo#109441]) +2 similar issues
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-skl: [PASS][94] -> [DMESG-WARN][95] ([i915#1982])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-skl10/igt@kms_rotation_crc@multiplane-rotation.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl6/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2437])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl6/igt@kms_writeback@writeback-invalid-parameters.html
* igt@nouveau_crc@pipe-a-source-outp-complete:
- shard-iclb: NOTRUN -> [SKIP][97] ([i915#2530])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@nouveau_crc@pipe-a-source-outp-complete.html
* igt@nouveau_crc@pipe-b-source-outp-complete:
- shard-tglb: NOTRUN -> [SKIP][98] ([i915#2530]) +1 similar issue
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@nouveau_crc@pipe-b-source-outp-complete.html
* igt@nouveau_crc@pipe-d-source-rg:
- shard-iclb: NOTRUN -> [SKIP][99] ([fdo#109278] / [i915#2530])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@nouveau_crc@pipe-d-source-rg.html
* igt@prime_nv_api@i915_nv_double_import:
- shard-tglb: NOTRUN -> [SKIP][100] ([fdo#109291]) +1 similar issue
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@prime_nv_api@i915_nv_double_import.html
* igt@prime_nv_api@i915_self_import_to_different_fd:
- shard-iclb: NOTRUN -> [SKIP][101] ([fdo#109291]) +1 similar issue
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@prime_nv_api@i915_self_import_to_different_fd.html
* igt@prime_vgem@fence-write-hang:
- shard-iclb: NOTRUN -> [SKIP][102] ([fdo#109295])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@prime_vgem@fence-write-hang.html
* igt@sysfs_clients@recycle:
- shard-iclb: NOTRUN -> [SKIP][103] ([i915#2994])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@sysfs_clients@recycle.html
- shard-skl: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2994])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@sysfs_clients@recycle.html
#### Possible fixes ####
* igt@gem_ctx_persistence@smoketest:
- {shard-dg1}: [DMESG-WARN][105] ([i915#4892]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-dg1-13/igt@gem_ctx_persistence@smoketest.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-dg1-19/igt@gem_ctx_persistence@smoketest.html
* igt@gem_eio@unwedge-stress:
- shard-iclb: [TIMEOUT][107] ([i915#2481] / [i915#3070]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-iclb6/igt@gem_eio@unwedge-stress.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@gem_eio@unwedge-stress.html
- {shard-tglu}: [TIMEOUT][109] ([i915#3063] / [i915#3648]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglu-8/igt@gem_eio@unwedge-stress.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglu-3/igt@gem_eio@unwedge-stress.html
- {shard-rkl}: [TIMEOUT][111] ([i915#3063]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-rkl-5/igt@gem_eio@unwedge-stress.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-rkl-2/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_capture@pi@rcs0:
- {shard-rkl}: [INCOMPLETE][113] ([i915#3371]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-rkl-1/igt@gem_exec_capture@pi@rcs0.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-rkl-6/igt@gem_exec_capture@pi@rcs0.html
* igt@gem_exec_endless@dispatch@vecs0:
- {shard-tglu}: [INCOMPLETE][115] ([i915#3778]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglu-5/igt@gem_exec_endless@dispatch@vecs0.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglu-4/igt@gem_exec_endless@dispatch@vecs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-apl: [FAIL][117] ([i915#2842]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl8/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglb: [FAIL][119] ([i915#2842]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-iclb: [FAIL][121] ([i915#2842]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-iclb6/igt@gem_exec_fair@basic-pace@vcs0.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-kbl: [FAIL][123] ([i915#2842]) -> [PASS][124] +1 similar issue
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@i915_pm_rpm@modeset-lpsp:
- {shard-rkl}: [SKIP][125] ([i915#1397]) -> [PASS][126] +1 similar issue
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rps@reset:
- {shard-dg1}: [FAIL][127] ([i915#3719]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-dg1-16/igt@i915_pm_rps@reset.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-dg1-15/igt@i915_pm_rps@reset.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-snb: [FAIL][129] ([i915#2521]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-snb5/igt@kms_async_flips@alternate-sync-async-flip.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-snb4/igt@kms_async_flips@alternate-sync-async-flip.html
- shard-tglb: [FAIL][131] ([i915#2521]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglb2/igt@kms_async_flips@alternate-sync-async-flip.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_atomic@atomic_plane_dama
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/index.html
[-- Attachment #2: Type: text/html, Size: 33699 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms
2022-03-01 5:29 [Intel-gfx] [PATCH] drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms Matt Roper
2022-03-01 6:42 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2022-03-01 14:01 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
@ 2022-03-08 18:39 ` Lucas De Marchi
2 siblings, 0 replies; 5+ messages in thread
From: Lucas De Marchi @ 2022-03-08 18:39 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-gfx, dri-devel
On Mon, Feb 28, 2022 at 09:29:52PM -0800, Matt Roper wrote:
>Platforms with FlatCCS do not use auxiliary planes for compression
>control data and thus do not need traditional aux table invalidation
>(and the registers no longer even exist).
>
>Original-author: CQ Tang
>Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
>---
> drivers/gpu/drm/i915/gt/gen8_engine_cs.c | 28 ++++++++++++++++--------
> 1 file changed, 19 insertions(+), 9 deletions(-)
>
>diff --git a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
>index 1f8cf4f790b2..13bbbf5d9737 100644
>--- a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
>+++ b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
>@@ -231,7 +231,7 @@ int gen12_emit_flush_rcs(struct i915_request *rq, u32 mode)
>
> if (mode & EMIT_INVALIDATE) {
> u32 flags = 0;
>- u32 *cs;
>+ u32 *cs, count;
>
> flags |= PIPE_CONTROL_COMMAND_CACHE_INVALIDATE;
> flags |= PIPE_CONTROL_TLB_INVALIDATE;
>@@ -246,7 +246,12 @@ int gen12_emit_flush_rcs(struct i915_request *rq, u32 mode)
>
> flags |= PIPE_CONTROL_CS_STALL;
>
>- cs = intel_ring_begin(rq, 8 + 4);
>+ if (!HAS_FLAT_CCS(rq->engine->i915))
>+ count = 8 + 4;
>+ else
>+ count = 8;
u32 count = 8;
...
if (!HAS_FLAT_CCS(rq->engine->i915))
count += 4;
would probably be shorter, or even
cs = intel_ring_begin(rq, HAS_FLAT_CCS(...) ? 12 : 8)
but doesn't really matter
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Lucas De Marchi
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms
2022-03-01 14:01 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
@ 2022-03-08 19:30 ` Matt Roper
0 siblings, 0 replies; 5+ messages in thread
From: Matt Roper @ 2022-03-08 19:30 UTC (permalink / raw)
To: intel-gfx
On Tue, Mar 01, 2022 at 02:01:44PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms
> URL : https://patchwork.freedesktop.org/series/100867/
> State : success
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_11300_full -> Patchwork_22445_full
> ====================================================
>
> Summary
> -------
>
> **SUCCESS**
>
> No regressions found.
Applied to drm-intel-gt-next. Thanks Lucas for the review.
Matt
>
>
>
> Participating hosts (13 -> 13)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in Patchwork_22445_full:
>
> ### IGT changes ###
>
> #### Suppressed ####
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * {igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale}:
> - shard-iclb: [PASS][1] -> [SKIP][2] +2 similar issues
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-iclb8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html
>
> * {igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5}:
> - {shard-rkl}: NOTRUN -> [SKIP][3] +8 similar issues
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
>
> * {igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping}:
> - shard-iclb: [PASS][4] -> [INCOMPLETE][5]
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-iclb4/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
>
> * {igt@kms_plane_scaling@upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1-upscale-with-rotation}:
> - {shard-dg1}: NOTRUN -> [SKIP][6] +8 similar issues
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-dg1-12/igt@kms_plane_scaling@upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1-upscale-with-rotation.html
>
>
> New tests
> ---------
>
> New tests have been introduced between CI_DRM_11300_full and Patchwork_22445_full:
>
> ### New IGT tests (1) ###
>
> * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
> - Statuses : 1 skip(s)
> - Exec time: [0.0] s
>
>
>
> Known issues
> ------------
>
> Here are the changes found in Patchwork_22445_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@gem_exec_balancer@parallel-bb-first:
> - shard-tglb: NOTRUN -> [DMESG-WARN][7] ([i915#5076])
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@gem_exec_balancer@parallel-bb-first.html
>
> * igt@gem_exec_balancer@parallel-keep-submit-fence:
> - shard-kbl: NOTRUN -> [DMESG-WARN][8] ([i915#5076])
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
>
> * igt@gem_exec_capture@pi@rcs0:
> - shard-skl: NOTRUN -> [INCOMPLETE][9] ([i915#4547])
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl1/igt@gem_exec_capture@pi@rcs0.html
>
> * igt@gem_exec_fair@basic-pace-solo@rcs0:
> - shard-glk: [PASS][10] -> [FAIL][11] ([i915#2842]) +1 similar issue
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-glk7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
>
> * igt@gem_exec_fair@basic-sync@rcs0:
> - shard-tglb: [PASS][12] -> [SKIP][13] ([i915#2848])
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglb1/igt@gem_exec_fair@basic-sync@rcs0.html
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb6/igt@gem_exec_fair@basic-sync@rcs0.html
>
> * igt@gem_exec_whisper@basic-contexts-forked-all:
> - shard-glk: [PASS][14] -> [DMESG-WARN][15] ([i915#118])
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-glk1/igt@gem_exec_whisper@basic-contexts-forked-all.html
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-glk1/igt@gem_exec_whisper@basic-contexts-forked-all.html
>
> * igt@gem_huc_copy@huc-copy:
> - shard-skl: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#2190])
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@gem_huc_copy@huc-copy.html
>
> * igt@gem_lmem_swapping@parallel-random-verify:
> - shard-tglb: NOTRUN -> [SKIP][17] ([i915#4613])
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@gem_lmem_swapping@parallel-random-verify.html
> - shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4613])
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl7/igt@gem_lmem_swapping@parallel-random-verify.html
>
> * igt@gem_pxp@create-regular-context-2:
> - shard-tglb: NOTRUN -> [SKIP][19] ([i915#4270]) +1 similar issue
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@gem_pxp@create-regular-context-2.html
>
> * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
> - shard-iclb: NOTRUN -> [SKIP][20] ([i915#768])
> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html
>
> * igt@gem_userptr_blits@coherency-sync:
> - shard-tglb: NOTRUN -> [SKIP][21] ([fdo#110542])
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@gem_userptr_blits@coherency-sync.html
>
> * igt@gem_userptr_blits@unsync-unmap-after-close:
> - shard-tglb: NOTRUN -> [SKIP][22] ([i915#3297])
> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@gem_userptr_blits@unsync-unmap-after-close.html
>
> * igt@gem_workarounds@suspend-resume-fd:
> - shard-kbl: [PASS][23] -> [DMESG-WARN][24] ([i915#180])
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-kbl3/igt@gem_workarounds@suspend-resume-fd.html
> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html
>
> * igt@gen9_exec_parse@allowed-all:
> - shard-tglb: NOTRUN -> [SKIP][25] ([i915#2527] / [i915#2856]) +1 similar issue
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@gen9_exec_parse@allowed-all.html
>
> * igt@gen9_exec_parse@allowed-single:
> - shard-skl: [PASS][26] -> [DMESG-WARN][27] ([i915#1436] / [i915#716])
> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-skl6/igt@gen9_exec_parse@allowed-single.html
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl4/igt@gen9_exec_parse@allowed-single.html
>
> * igt@i915_pm_dc@dc6-psr:
> - shard-tglb: NOTRUN -> [FAIL][28] ([i915#454])
> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@i915_pm_dc@dc6-psr.html
>
> * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
> - shard-kbl: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#1937])
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
>
> * igt@i915_pm_rc6_residency@rc6-fence:
> - shard-tglb: [PASS][30] -> [WARN][31] ([i915#2681] / [i915#2684])
> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglb2/igt@i915_pm_rc6_residency@rc6-fence.html
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb7/igt@i915_pm_rc6_residency@rc6-fence.html
>
> * igt@i915_pm_rc6_residency@rc6-idle:
> - shard-iclb: NOTRUN -> [WARN][32] ([i915#2684])
> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html
>
> * igt@i915_pm_rpm@modeset-pc8-residency-stress:
> - shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271]) +89 similar issues
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
>
> * igt@i915_selftest@live@hangcheck:
> - shard-snb: [PASS][34] -> [INCOMPLETE][35] ([i915#3921])
> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-snb6/igt@i915_selftest@live@hangcheck.html
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-snb5/igt@i915_selftest@live@hangcheck.html
>
> * igt@kms_big_fb@linear-32bpp-rotate-90:
> - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#110725] / [fdo#111614]) +1 similar issue
> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_big_fb@linear-32bpp-rotate-90.html
>
> * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
> - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3777]) +2 similar issues
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
>
> * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
> - shard-tglb: NOTRUN -> [SKIP][38] ([fdo#111614])
> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
>
> * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
> - shard-tglb: NOTRUN -> [SKIP][39] ([fdo#111615]) +2 similar issues
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#110723])
> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>
> * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
> - shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109278] / [i915#3886]) +1 similar issue
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
> - shard-skl: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#3886])
> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
>
> * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
> - shard-apl: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) +2 similar issues
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl3/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
>
> * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs:
> - shard-tglb: NOTRUN -> [SKIP][44] ([i915#3689]) +2 similar issues
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs.html
>
> * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
> - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#3886]) +1 similar issue
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl1/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html
>
> * igt@kms_ccs@pipe-c-missing-ccs-buffer-yf_tiled_ccs:
> - shard-tglb: NOTRUN -> [SKIP][46] ([fdo#111615] / [i915#3689]) +2 similar issues
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_ccs@pipe-c-missing-ccs-buffer-yf_tiled_ccs.html
>
> * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
> - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109278]) +4 similar issues
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html
>
> * igt@kms_cdclk@plane-scaling:
> - shard-tglb: NOTRUN -> [SKIP][48] ([i915#3742])
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb7/igt@kms_cdclk@plane-scaling.html
>
> * igt@kms_chamelium@hdmi-crc-multiple:
> - shard-skl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +4 similar issues
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_chamelium@hdmi-crc-multiple.html
>
> * igt@kms_chamelium@hdmi-mode-timings:
> - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) +2 similar issues
> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_chamelium@hdmi-mode-timings.html
>
> * igt@kms_chamelium@vga-hpd-enable-disable-mode:
> - shard-kbl: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +1 similar issue
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl4/igt@kms_chamelium@vga-hpd-enable-disable-mode.html
>
> * igt@kms_color_chamelium@pipe-b-ctm-0-5:
> - shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +8 similar issues
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl3/igt@kms_color_chamelium@pipe-b-ctm-0-5.html
>
> * igt@kms_color_chamelium@pipe-d-ctm-max:
> - shard-tglb: NOTRUN -> [SKIP][53] ([fdo#109284] / [fdo#111827]) +2 similar issues
> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_color_chamelium@pipe-d-ctm-max.html
>
> * igt@kms_content_protection@dp-mst-lic-type-0:
> - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3116] / [i915#3299])
> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-0.html
>
> * igt@kms_content_protection@lic:
> - shard-apl: NOTRUN -> [TIMEOUT][55] ([i915#1319])
> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl6/igt@kms_content_protection@lic.html
>
> * igt@kms_cursor_crc@pipe-a-cursor-512x170-random:
> - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109278] / [fdo#109279])
> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x170-random.html
>
> * igt@kms_cursor_crc@pipe-b-cursor-max-size-sliding:
> - shard-tglb: NOTRUN -> [SKIP][57] ([i915#3359])
> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-max-size-sliding.html
>
> * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen:
> - shard-tglb: NOTRUN -> [SKIP][58] ([i915#3319])
> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen.html
>
> * igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement:
> - shard-kbl: NOTRUN -> [SKIP][59] ([fdo#109271]) +23 similar issues
> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl4/igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement.html
>
> * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen:
> - shard-tglb: NOTRUN -> [SKIP][60] ([fdo#109279] / [i915#3359]) +3 similar issues
> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html
>
> * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
> - shard-tglb: NOTRUN -> [SKIP][61] ([fdo#109274] / [fdo#111825]) +4 similar issues
> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> - shard-tglb: [PASS][62] -> [FAIL][63] ([i915#2346] / [i915#533])
> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglb3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_cursor_legacy@pipe-d-single-bo:
> - shard-kbl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#533])
> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl4/igt@kms_cursor_legacy@pipe-d-single-bo.html
>
> * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
> - shard-tglb: NOTRUN -> [SKIP][65] ([i915#3528])
> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
>
> * igt@kms_fbcon_fbt@fbc-suspend:
> - shard-kbl: [PASS][66] -> [INCOMPLETE][67] ([i915#180] / [i915#636])
> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html
> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html
>
> * igt@kms_flip@2x-plain-flip:
> - shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109274])
> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@kms_flip@2x-plain-flip.html
>
> * igt@kms_flip@flip-vs-suspend@a-dp1:
> - shard-apl: [PASS][69] -> [DMESG-WARN][70] ([i915#180]) +3 similar issues
> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-apl7/igt@kms_flip@flip-vs-suspend@a-dp1.html
> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl1/igt@kms_flip@flip-vs-suspend@a-dp1.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
> - shard-tglb: NOTRUN -> [SKIP][71] ([fdo#109280] / [fdo#111825]) +7 similar issues
> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
> - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109280]) +8 similar issues
> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
> - shard-skl: NOTRUN -> [SKIP][73] ([fdo#109271]) +37 similar issues
> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
>
> * igt@kms_hdr@bpc-switch-dpms:
> - shard-skl: [PASS][74] -> [FAIL][75] ([i915#1188])
> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-skl7/igt@kms_hdr@bpc-switch-dpms.html
> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl9/igt@kms_hdr@bpc-switch-dpms.html
>
> * igt@kms_invalid_mode@clock-too-high:
> - shard-tglb: NOTRUN -> [SKIP][76] ([i915#4278])
> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_invalid_mode@clock-too-high.html
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> - shard-tglb: NOTRUN -> [SKIP][77] ([i915#1839])
> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>
> * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
> - shard-tglb: NOTRUN -> [SKIP][78] ([fdo#109289]) +1 similar issue
> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
>
> * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
> - shard-apl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533])
> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl3/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html
>
> * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
> - shard-skl: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#533])
> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
>
> * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
> - shard-apl: NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265]) +1 similar issue
> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html
>
> * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
> - shard-skl: [PASS][82] -> [FAIL][83] ([fdo#108145] / [i915#265])
> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl4/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
>
> * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
> - shard-skl: NOTRUN -> [FAIL][84] ([fdo#108145] / [i915#265])
> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html
>
> * igt@kms_plane_lowres@pipe-b-tiling-yf:
> - shard-tglb: NOTRUN -> [SKIP][85] ([fdo#111615] / [fdo#112054])
> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_plane_lowres@pipe-b-tiling-yf.html
>
> * igt@kms_plane_lowres@pipe-c-tiling-none:
> - shard-tglb: NOTRUN -> [SKIP][86] ([i915#3536]) +1 similar issue
> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_plane_lowres@pipe-c-tiling-none.html
>
> * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
> - shard-iclb: NOTRUN -> [SKIP][87] ([fdo#111068] / [i915#658])
> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
> - shard-skl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658])
> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
>
> * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5 (NEW):
> - {shard-rkl}: NOTRUN -> [SKIP][89] ([i915#658])
> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-rkl-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
>
> * igt@kms_psr@psr2_primary_blt:
> - shard-iclb: NOTRUN -> [SKIP][90] ([fdo#109441])
> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@kms_psr@psr2_primary_blt.html
>
> * igt@kms_psr@psr2_sprite_mmap_gtt:
> - shard-tglb: NOTRUN -> [FAIL][91] ([i915#132] / [i915#3467])
> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_psr@psr2_sprite_mmap_gtt.html
>
> * igt@kms_psr@psr2_sprite_plane_move:
> - shard-iclb: [PASS][92] -> [SKIP][93] ([fdo#109441]) +2 similar issues
> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html
>
> * igt@kms_rotation_crc@multiplane-rotation:
> - shard-skl: [PASS][94] -> [DMESG-WARN][95] ([i915#1982])
> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-skl10/igt@kms_rotation_crc@multiplane-rotation.html
> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl6/igt@kms_rotation_crc@multiplane-rotation.html
>
> * igt@kms_writeback@writeback-invalid-parameters:
> - shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2437])
> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl6/igt@kms_writeback@writeback-invalid-parameters.html
>
> * igt@nouveau_crc@pipe-a-source-outp-complete:
> - shard-iclb: NOTRUN -> [SKIP][97] ([i915#2530])
> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@nouveau_crc@pipe-a-source-outp-complete.html
>
> * igt@nouveau_crc@pipe-b-source-outp-complete:
> - shard-tglb: NOTRUN -> [SKIP][98] ([i915#2530]) +1 similar issue
> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@nouveau_crc@pipe-b-source-outp-complete.html
>
> * igt@nouveau_crc@pipe-d-source-rg:
> - shard-iclb: NOTRUN -> [SKIP][99] ([fdo#109278] / [i915#2530])
> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@nouveau_crc@pipe-d-source-rg.html
>
> * igt@prime_nv_api@i915_nv_double_import:
> - shard-tglb: NOTRUN -> [SKIP][100] ([fdo#109291]) +1 similar issue
> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@prime_nv_api@i915_nv_double_import.html
>
> * igt@prime_nv_api@i915_self_import_to_different_fd:
> - shard-iclb: NOTRUN -> [SKIP][101] ([fdo#109291]) +1 similar issue
> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@prime_nv_api@i915_self_import_to_different_fd.html
>
> * igt@prime_vgem@fence-write-hang:
> - shard-iclb: NOTRUN -> [SKIP][102] ([fdo#109295])
> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb8/igt@prime_vgem@fence-write-hang.html
>
> * igt@sysfs_clients@recycle:
> - shard-iclb: NOTRUN -> [SKIP][103] ([i915#2994])
> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@sysfs_clients@recycle.html
> - shard-skl: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2994])
> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-skl5/igt@sysfs_clients@recycle.html
>
>
> #### Possible fixes ####
>
> * igt@gem_ctx_persistence@smoketest:
> - {shard-dg1}: [DMESG-WARN][105] ([i915#4892]) -> [PASS][106]
> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-dg1-13/igt@gem_ctx_persistence@smoketest.html
> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-dg1-19/igt@gem_ctx_persistence@smoketest.html
>
> * igt@gem_eio@unwedge-stress:
> - shard-iclb: [TIMEOUT][107] ([i915#2481] / [i915#3070]) -> [PASS][108]
> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-iclb6/igt@gem_eio@unwedge-stress.html
> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@gem_eio@unwedge-stress.html
> - {shard-tglu}: [TIMEOUT][109] ([i915#3063] / [i915#3648]) -> [PASS][110]
> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglu-8/igt@gem_eio@unwedge-stress.html
> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglu-3/igt@gem_eio@unwedge-stress.html
> - {shard-rkl}: [TIMEOUT][111] ([i915#3063]) -> [PASS][112]
> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-rkl-5/igt@gem_eio@unwedge-stress.html
> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-rkl-2/igt@gem_eio@unwedge-stress.html
>
> * igt@gem_exec_capture@pi@rcs0:
> - {shard-rkl}: [INCOMPLETE][113] ([i915#3371]) -> [PASS][114]
> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-rkl-1/igt@gem_exec_capture@pi@rcs0.html
> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-rkl-6/igt@gem_exec_capture@pi@rcs0.html
>
> * igt@gem_exec_endless@dispatch@vecs0:
> - {shard-tglu}: [INCOMPLETE][115] ([i915#3778]) -> [PASS][116]
> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglu-5/igt@gem_exec_endless@dispatch@vecs0.html
> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglu-4/igt@gem_exec_endless@dispatch@vecs0.html
>
> * igt@gem_exec_fair@basic-none@vcs0:
> - shard-apl: [FAIL][117] ([i915#2842]) -> [PASS][118]
> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html
> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-apl8/igt@gem_exec_fair@basic-none@vcs0.html
>
> * igt@gem_exec_fair@basic-pace-share@rcs0:
> - shard-tglb: [FAIL][119] ([i915#2842]) -> [PASS][120]
> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html
> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html
>
> * igt@gem_exec_fair@basic-pace@vcs0:
> - shard-iclb: [FAIL][121] ([i915#2842]) -> [PASS][122]
> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-iclb6/igt@gem_exec_fair@basic-pace@vcs0.html
> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-iclb3/igt@gem_exec_fair@basic-pace@vcs0.html
>
> * igt@gem_exec_fair@basic-pace@vcs1:
> - shard-kbl: [FAIL][123] ([i915#2842]) -> [PASS][124] +1 similar issue
> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html
>
> * igt@i915_pm_rpm@modeset-lpsp:
> - {shard-rkl}: [SKIP][125] ([i915#1397]) -> [PASS][126] +1 similar issue
> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp.html
> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html
>
> * igt@i915_pm_rps@reset:
> - {shard-dg1}: [FAIL][127] ([i915#3719]) -> [PASS][128]
> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-dg1-16/igt@i915_pm_rps@reset.html
> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-dg1-15/igt@i915_pm_rps@reset.html
>
> * igt@kms_async_flips@alternate-sync-async-flip:
> - shard-snb: [FAIL][129] ([i915#2521]) -> [PASS][130]
> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-snb5/igt@kms_async_flips@alternate-sync-async-flip.html
> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-snb4/igt@kms_async_flips@alternate-sync-async-flip.html
> - shard-tglb: [FAIL][131] ([i915#2521]) -> [PASS][132]
> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/shard-tglb2/igt@kms_async_flips@alternate-sync-async-flip.html
> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/shard-tglb5/igt@kms_async_flips@alternate-sync-async-flip.html
>
> * igt@kms_atomic@atomic_plane_dama
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22445/index.html
--
Matt Roper
Graphics Software Engineer
VTT-OSGC Platform Enablement
Intel Corporation
(916) 356-2795
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-03-08 19:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-01 5:29 [Intel-gfx] [PATCH] drm/i915/xehp: Drop aux table invalidation on FlatCCS platforms Matt Roper
2022-03-01 6:42 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2022-03-01 14:01 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2022-03-08 19:30 ` Matt Roper
2022-03-08 18:39 ` [Intel-gfx] [PATCH] " Lucas De Marchi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox