* [PATCH] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads
@ 2026-02-06 20:30 Samasth Norway Ananda
2026-02-09 18:26 ` ✓ i915.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Samasth Norway Ananda @ 2026-02-06 20:30 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, samasth.norway.ananda
When reading exactly 512 bytes with burst read enabled, the
extra_byte_added path breaks out of the inner do-while without
decrementing len. The outer while(len) then re-enters and gmbus_wait()
times out since all data has been delivered. Decrement len before the
break so the outer loop terminates correctly.
Also fix a typo in a nearby comment ("generata" -> "generate").
Fixes: d5dc0f43f268 ("drm/i915/gmbus: Enable burst read")
Signed-off-by: Samasth Norway Ananda <samasth.norway.ananda@oracle.com>
---
drivers/gpu/drm/i915/display/intel_gmbus.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index 2caff677600c..5fb3fee34af4 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -496,8 +496,10 @@ gmbus_xfer_read_chunk(struct intel_display *display,
val = intel_de_read_fw(display, GMBUS3(display));
do {
- if (extra_byte_added && len == 1)
+ if (extra_byte_added && len == 1) {
+ len--;
break;
+ }
*buf++ = val & 0xff;
val >>= 8;
@@ -693,7 +695,7 @@ do_gmbus_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num,
goto clear_err;
}
- /* Generate a STOP condition on the bus. Note that gmbus can't generata
+ /* Generate a STOP condition on the bus. Note that gmbus can't generate
* a STOP on the very first cycle. To simplify the code we
* unconditionally generate the STOP condition with an additional gmbus
* cycle. */
--
2.50.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ i915.CI.BAT: success for drm/i915/gmbus: fix spurious timeout on 512-byte burst reads 2026-02-06 20:30 [PATCH] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads Samasth Norway Ananda @ 2026-02-09 18:26 ` Patchwork 2026-02-10 1:26 ` ✗ i915.CI.Full: failure " Patchwork 2026-02-10 9:23 ` [PATCH] " Jani Nikula 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-02-09 18:26 UTC (permalink / raw) To: Samasth Norway Ananda; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 1582 bytes --] == Series Details == Series: drm/i915/gmbus: fix spurious timeout on 512-byte burst reads URL : https://patchwork.freedesktop.org/series/161371/ State : success == Summary == CI Bug Log - changes from CI_DRM_17961 -> Patchwork_161371v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_161371v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-arls-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/bat-arls-6/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * Linux: CI_DRM_17961 -> Patchwork_161371v1 CI-20190529: 20190529 CI_DRM_17961: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8745: 8745 Patchwork_161371v1: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/index.html [-- Attachment #2: Type: text/html, Size: 2167 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915/gmbus: fix spurious timeout on 512-byte burst reads 2026-02-06 20:30 [PATCH] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads Samasth Norway Ananda 2026-02-09 18:26 ` ✓ i915.CI.BAT: success for " Patchwork @ 2026-02-10 1:26 ` Patchwork 2026-02-10 9:23 ` [PATCH] " Jani Nikula 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-02-10 1:26 UTC (permalink / raw) To: Samasth Norway Ananda; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 97593 bytes --] == Series Details == Series: drm/i915/gmbus: fix spurious timeout on 512-byte burst reads URL : https://patchwork.freedesktop.org/series/161371/ State : failure == Summary == CI Bug Log - changes from CI_DRM_17961_full -> Patchwork_161371v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_161371v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_161371v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_161371v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html New tests --------- New tests have been introduced between CI_DRM_17961_full and Patchwork_161371v1_full: ### New IGT tests (1) ### * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.71] s Known issues ------------ Here are the changes found in Patchwork_161371v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][2] ([i915#8411]) +2 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#11078] / [i915#14544]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][4] ([i915#9323]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#9323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@gem_ccs@suspend-resume.html * igt@gem_ctx_persistence@hostile: - shard-snb: NOTRUN -> [SKIP][6] ([i915#1099]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-snb4/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#280]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#4525]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_params@secure-non-master: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#14544]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#3281]) +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-wc-gtt-active: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#14544] / [i915#3281]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt-active.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#2190]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#14544] / [i915#4613] / [i915#7582]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@verify: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#4613]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][15] ([i915#4613]) +5 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@coherency: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#4077]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#4083]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@gem_mmap_wc@bad-object.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#3282]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][19] ([i915#2658]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk9/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#3282]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu-1: NOTRUN -> [WARN][21] ([i915#2658]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#13398]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#13717]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_userptr_blits@access-control: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#3297]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#3297]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#3281] / [i915#3297]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@gem_userptr_blits@relocations.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#2527]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#2527] / [i915#2856]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#2527] / [i915#2856]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][30] ([i915#13029] / [i915#14545]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#8399]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#6590]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#14498]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#4387]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][35] +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@i915_query@query-topology-unsupported.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#7707]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#12454] / [i915#12712]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1: - shard-glk: [PASS][38] -> [INCOMPLETE][39] ([i915#12761]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-glk9/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][40] ([i915#1769]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#5286]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#5286]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#5286]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#5286]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3828]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#14544] / [i915#3638]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][47] +11 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4538] / [i915#5190]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-tglu-1: NOTRUN -> [SKIP][49] +13 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#10307] / [i915#6095]) +136 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-11/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#12313]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][52] +239 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk9/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#12313]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][54] ([i915#6095]) +9 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#12313]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#6095]) +56 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#6095]) +83 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#12805]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#6095]) +39 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#14098] / [i915#6095]) +49 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#14544] / [i915#6095]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#6095]) +203 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3742]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#13783]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-c-dp-3.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#11151] / [i915#7828]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-glk10: NOTRUN -> [SKIP][68] +154 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk10/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#11151] / [i915#7828]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#11151] / [i915#7828]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#11151] / [i915#7828]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#6944]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#15330] / [i915#3116]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][75] ([i915#7173]) +1 other test fail [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-3.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#6944]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#13049] / [i915#14544]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][79] ([i915#13566]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3555]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#13049]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-rkl: [PASS][82] -> [FAIL][83] ([i915#13566]) +1 other test fail [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-5/igt@kms_cursor_crc@cursor-random-64x21.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#13049]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#14544] / [i915#3555]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#3555]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3555]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#4103]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#13046] / [i915#5354]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][90] -> [FAIL][91] ([i915#15588] / [i915#2346]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#9067]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3804]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#13749] / [i915#14544]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [PASS][95] -> [SKIP][96] ([i915#13707]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#3555] / [i915#3840]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#3555] / [i915#3840]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#3840] / [i915#9053]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][100] ([i915#9878]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#3469]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4854]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#1839]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#9934]) +6 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#14544] / [i915#9934]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][106] ([i915#12745] / [i915#4839]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk10/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-snb: [PASS][107] -> [TIMEOUT][108] ([i915#14033] / [i915#14350]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][109] -> [TIMEOUT][110] ([i915#14033]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk10: NOTRUN -> [INCOMPLETE][111] ([i915#4839]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk10/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#3637] / [i915#9934]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#3637] / [i915#9934]) +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-dg1: [PASS][114] -> [FAIL][115] ([i915#13027]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg1-16/igt@kms_flip@flip-vs-expired-vblank.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg1-13/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3: - shard-dg1: NOTRUN -> [FAIL][116] ([i915#13027]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg1-13/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg1: [PASS][117] -> [DMESG-WARN][118] ([i915#4423]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#15643]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#15643]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#15643]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#15643]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#15104]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#14544] / [i915#1825]) +6 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#15102]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#15102] / [i915#3458]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#1825]) +26 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5354]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#15102]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#5439]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#9766]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#15102]) +12 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#15102] / [i915#3023]) +10 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#8708]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][136] +21 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#15458]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][138] -> [INCOMPLETE][139] ([i915#12756] / [i915#13476]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html - shard-glk: NOTRUN -> [INCOMPLETE][140] ([i915#12756] / [i915#13409] / [i915#13476]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][141] ([i915#13476]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html - shard-glk: NOTRUN -> [INCOMPLETE][142] ([i915#13409] / [i915#13476]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#14712]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#15608] / [i915#15609] / [i915#8825]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-3: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#15608]) +16 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-3.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#15609] / [i915#8825]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#15608] / [i915#8825]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-0: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#15608]) +18 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-0.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-0: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#14544] / [i915#15608]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-0.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#15609]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#14544] / [i915#15609] / [i915#8825]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-0: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#15608]) +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-0.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#15608] / [i915#8825]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#15609] / [i915#8825]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#15608] / [i915#15609] / [i915#8825]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-3: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#15608]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-3.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#15609]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#15609] / [i915#8825]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#15609]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#15608] / [i915#8825]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][163] ([i915#13026]) +1 other test incomplete [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk10: NOTRUN -> [FAIL][164] ([i915#10647] / [i915#12169]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][165] ([i915#10647]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-y: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#13958]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#13958]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#14259]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-snb: NOTRUN -> [SKIP][169] +123 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-snb4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#15329]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#15329]) +7 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#9685]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#4281]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][174] -> [SKIP][175] ([i915#15073]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-glk10: NOTRUN -> [FAIL][176] ([i915#8717]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk10/igt@kms_pm_rpm@i2c.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][177] ([i915#11520]) +6 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#11520]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][179] ([i915#11520]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk10/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#11520]) +5 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#11520]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#11520] / [i915#14544]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html - shard-snb: NOTRUN -> [SKIP][183] ([i915#11520]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-snb4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#11520]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#9683]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-render: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-render.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#9732]) +9 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-basic: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#9732]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#1072] / [i915#9732]) +11 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@pr-suspend: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#1072] / [i915#9732]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_psr@pr-suspend.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#5289]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#12755]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#5289]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][194] ([i915#13179]) +1 other test abort [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][195] ([i915#10959]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#15243] / [i915#3555]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_vrr@flipline.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#9906]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#14544] / [i915#2436]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#7387]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-8/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#8516]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#3291] / [i915#3708]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#3708]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#14544] / [i915#9917]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [FAIL][204] ([i915#12910]) +8 other tests fail [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html #### Possible fixes #### * igt@gem_eio@in-flight-contexts-immediate: - shard-snb: [INCOMPLETE][205] -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-snb7/igt@gem_eio@in-flight-contexts-immediate.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-snb4/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_eio@suspend: - shard-rkl: [ABORT][207] ([i915#15131]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@gem_eio@suspend.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_eio@suspend.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [FAIL][209] ([i915#13566]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [INCOMPLETE][211] ([i915#6113]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-dg2: [FAIL][213] ([i915#15389] / [i915#6880]) -> [PASS][214] +1 other test pass [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [INCOMPLETE][215] ([i915#14412]) -> [PASS][216] +1 other test pass [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][217] ([i915#15073]) -> [PASS][218] +1 other test pass [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][219] ([i915#15073]) -> [PASS][220] +1 other test pass [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp-stress.html #### Warnings #### * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][221] ([i915#9323]) -> [SKIP][222] ([i915#14544] / [i915#9323]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@gem_ccs@block-multicopy-compressed.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: [SKIP][223] ([i915#6335]) -> [SKIP][224] ([i915#14544] / [i915#6335]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: [SKIP][225] ([i915#4525]) -> [SKIP][226] ([i915#14544] / [i915#4525]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@gem_exec_balancer@parallel-keep-in-fence.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: [SKIP][227] ([i915#3281]) -> [SKIP][228] ([i915#14544] / [i915#3281]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-cpu-active.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: [SKIP][229] ([i915#14544] / [i915#3281]) -> [SKIP][230] ([i915#3281]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_media_vme: - shard-rkl: [SKIP][231] ([i915#284]) -> [SKIP][232] ([i915#14544] / [i915#284]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@gem_media_vme.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_media_vme.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: [SKIP][233] ([i915#14544] / [i915#3282]) -> [SKIP][234] ([i915#3282]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][235] ([i915#3282]) -> [SKIP][236] ([i915#14544] / [i915#3282]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][237] ([i915#8411]) -> [SKIP][238] ([i915#14544] / [i915#8411]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: [SKIP][239] ([i915#15656]) -> [SKIP][240] ([i915#14544] / [i915#15656]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@gem_tiled_pread_basic@basic.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: [SKIP][241] ([i915#2527]) -> [SKIP][242] ([i915#14544] / [i915#2527]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@gen9_exec_parse@allowed-single.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][243] ([i915#14544] / [i915#2527]) -> [SKIP][244] ([i915#2527]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][245] ([i915#14544] / [i915#6412]) -> [SKIP][246] ([i915#6412]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@i915_module_load@resize-bar.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@i915_module_load@resize-bar.html * igt@i915_pm_rpm@system-suspend: - shard-rkl: [ABORT][247] ([i915#15060]) -> [INCOMPLETE][248] ([i915#13356]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@i915_pm_rpm@system-suspend.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-3/igt@i915_pm_rpm@system-suspend.html * igt@i915_power@sanity: - shard-rkl: [SKIP][249] ([i915#7984]) -> [SKIP][250] ([i915#14544] / [i915#7984]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@i915_power@sanity.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@i915_power@sanity.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][251] ([i915#5286]) -> [SKIP][252] ([i915#14544] / [i915#5286]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-rkl: [SKIP][253] ([i915#3638]) -> [SKIP][254] ([i915#14544] / [i915#3638]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_big_fb@linear-16bpp-rotate-90.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][255] ([i915#6095]) -> [SKIP][256] ([i915#14544] / [i915#6095]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][257] ([i915#14098] / [i915#6095]) -> [SKIP][258] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][259] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][260] ([i915#14098] / [i915#6095]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@plane-scaling: - shard-rkl: [SKIP][261] ([i915#3742]) -> [SKIP][262] ([i915#14544] / [i915#3742]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_cdclk@plane-scaling.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-rkl: [SKIP][263] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][264] ([i915#11151] / [i915#7828]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-rkl: [SKIP][265] ([i915#11151] / [i915#7828]) -> [SKIP][266] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [FAIL][267] ([i915#7173]) -> [SKIP][268] ([i915#6944] / [i915#7118] / [i915#9424]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-3/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][269] ([i915#15330] / [i915#3116]) -> [SKIP][270] ([i915#14544] / [i915#15330] / [i915#3116]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][271] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][272] ([i915#7173]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-7/igt@kms_content_protection@legacy.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-11/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: [SKIP][273] ([i915#6944]) -> [FAIL][274] ([i915#7173]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-4/igt@kms_content_protection@legacy-hdcp14.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-11/igt@kms_content_protection@legacy-hdcp14.html - shard-rkl: [SKIP][275] ([i915#6944]) -> [SKIP][276] ([i915#14544] / [i915#6944]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_content_protection@legacy-hdcp14.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][277] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][278] ([i915#6944] / [i915#7118] / [i915#7162] / [i915#9424]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-3/igt@kms_content_protection@type1.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent-hdcp14: - shard-dg2: [FAIL][279] ([i915#7173]) -> [SKIP][280] ([i915#6944]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-11/igt@kms_content_protection@uevent-hdcp14.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg1: [SKIP][281] ([i915#3555]) -> [SKIP][282] ([i915#3555] / [i915#4423]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-32x32.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-rkl: [SKIP][283] ([i915#3555]) -> [SKIP][284] ([i915#14544] / [i915#3555]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_cursor_crc@cursor-random-max-size.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: [SKIP][285] -> [SKIP][286] ([i915#14544]) +6 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-rkl: [SKIP][287] ([i915#14544]) -> [SKIP][288] +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: [SKIP][289] ([i915#14544] / [i915#9723]) -> [SKIP][290] ([i915#9723]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: [SKIP][291] ([i915#13748]) -> [SKIP][292] ([i915#13748] / [i915#14544]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_dp_link_training@uhbr-mst.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][293] ([i915#9934]) -> [SKIP][294] ([i915#14544] / [i915#9934]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: [SKIP][295] ([i915#14544] / [i915#9934]) -> [SKIP][296] ([i915#9934]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: [SKIP][297] ([i915#15643]) -> [SKIP][298] ([i915#14544] / [i915#15643]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-dg1: [SKIP][299] ([i915#4423]) -> [SKIP][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render: - shard-rkl: [SKIP][301] ([i915#15102]) -> [SKIP][302] ([i915#14544] / [i915#15102]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: [SKIP][303] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][304] ([i915#15102] / [i915#3023]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][305] ([i915#14544] / [i915#1825]) -> [SKIP][306] ([i915#1825]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: [SKIP][307] ([i915#1825]) -> [SKIP][308] ([i915#14544] / [i915#1825]) +13 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-dg2: [SKIP][309] ([i915#15102] / [i915#3458]) -> [SKIP][310] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][311] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][312] ([i915#15102] / [i915#3458]) +4 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][313] ([i915#15102] / [i915#3023]) -> [SKIP][314] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][315] ([i915#12713]) -> [SKIP][316] ([i915#13331]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-dg2-4/igt@kms_hdr@brightness-with-hdr.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: [SKIP][317] ([i915#12713]) -> [SKIP][318] ([i915#13331] / [i915#14544]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [INCOMPLETE][319] ([i915#15436]) -> [SKIP][320] ([i915#3555] / [i915#8228]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-a-plane-0: - shard-rkl: [SKIP][321] ([i915#15608]) -> [SKIP][322] ([i915#14544] / [i915#15608]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-a-plane-0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-a-plane-0.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: [SKIP][323] ([i915#15608] / [i915#8825]) -> [SKIP][324] ([i915#14544] / [i915#15608] / [i915#8825]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-rkl: [SKIP][325] ([i915#14544] / [i915#15608] / [i915#8825]) -> [SKIP][326] ([i915#15608] / [i915#8825]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-0: - shard-rkl: [SKIP][327] ([i915#14544] / [i915#15608]) -> [SKIP][328] ([i915#15608]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-0.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: [SKIP][329] ([i915#5354]) -> [SKIP][330] ([i915#14544] / [i915#5354]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_pm_backlight@basic-brightness.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [SKIP][331] ([i915#15128]) -> [FAIL][332] ([i915#9295]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][333] ([i915#3828]) -> [SKIP][334] ([i915#9340]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][335] ([i915#11520]) -> [SKIP][336] ([i915#11520] / [i915#14544]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-rkl: [SKIP][337] ([i915#11520] / [i915#14544]) -> [SKIP][338] ([i915#11520]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-rkl: [SKIP][339] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][340] ([i915#1072] / [i915#9732]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-6/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-5/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-rkl: [SKIP][341] ([i915#1072] / [i915#9732]) -> [SKIP][342] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_psr@psr-cursor-mmap-cpu.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: [SKIP][343] ([i915#5289]) -> [SKIP][344] ([i915#14544] / [i915#5289]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2: - shard-rkl: [INCOMPLETE][345] ([i915#12276]) -> [ABORT][346] ([i915#15132]) +1 other test abort [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: [SKIP][347] ([i915#9906]) -> [SKIP][348] ([i915#14544] / [i915#9906]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_vrr@flip-basic-fastset.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][349] ([i915#11920]) -> [SKIP][350] ([i915#11920] / [i915#14544]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@kms_vrr@lobf.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@kms_vrr@lobf.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][351] ([i915#2433]) -> [SKIP][352] ([i915#14544] / [i915#2433]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-1/igt@perf@unprivileged-single-ctx-counters.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][353] ([i915#8516]) -> [SKIP][354] ([i915#14544] / [i915#8516]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17961/shard-rkl-8/igt@perf_pmu@rc6-all-gts.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161371v1/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [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#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15588 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [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#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [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#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8717 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [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#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [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_17961 -> Patchwork_161371v1 CI-20190529: 20190529 CI_DRM_17961: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8745: 8745 Patchwork_161371v1: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2 @ 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_161371v1/index.html [-- Attachment #2: Type: text/html, Size: 130007 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads 2026-02-06 20:30 [PATCH] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads Samasth Norway Ananda 2026-02-09 18:26 ` ✓ i915.CI.BAT: success for " Patchwork 2026-02-10 1:26 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-02-10 9:23 ` Jani Nikula 2026-02-10 16:39 ` Ville Syrjälä 2026-02-19 23:25 ` [External] : " samasth.norway.ananda 2 siblings, 2 replies; 6+ messages in thread From: Jani Nikula @ 2026-02-10 9:23 UTC (permalink / raw) To: Samasth Norway Ananda, intel-gfx, intel-xe Cc: rodrigo.vivi, samasth.norway.ananda, ville.syrjala On Fri, 06 Feb 2026, Samasth Norway Ananda <samasth.norway.ananda@oracle.com> wrote: > When reading exactly 512 bytes with burst read enabled, the > extra_byte_added path breaks out of the inner do-while without > decrementing len. The outer while(len) then re-enters and gmbus_wait() > times out since all data has been delivered. Decrement len before the > break so the outer loop terminates correctly. Nice find, and the fix looks correct. How did you figure this out? Did you hit the issue? I wonder if the whole extra byte thing is a workaround for some old hardware that shouldn't be needed on modern hardware... Ville, thoughts? > Also fix a typo in a nearby comment ("generata" -> "generate"). "Also" is a good hint that it should be a separate patch. ;) BR, Jani > Fixes: d5dc0f43f268 ("drm/i915/gmbus: Enable burst read") > Signed-off-by: Samasth Norway Ananda <samasth.norway.ananda@oracle.com> > --- > drivers/gpu/drm/i915/display/intel_gmbus.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c > index 2caff677600c..5fb3fee34af4 100644 > --- a/drivers/gpu/drm/i915/display/intel_gmbus.c > +++ b/drivers/gpu/drm/i915/display/intel_gmbus.c > @@ -496,8 +496,10 @@ gmbus_xfer_read_chunk(struct intel_display *display, > > val = intel_de_read_fw(display, GMBUS3(display)); > do { > - if (extra_byte_added && len == 1) > + if (extra_byte_added && len == 1) { > + len--; > break; > + } > > *buf++ = val & 0xff; > val >>= 8; > @@ -693,7 +695,7 @@ do_gmbus_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num, > goto clear_err; > } > > - /* Generate a STOP condition on the bus. Note that gmbus can't generata > + /* Generate a STOP condition on the bus. Note that gmbus can't generate > * a STOP on the very first cycle. To simplify the code we > * unconditionally generate the STOP condition with an additional gmbus > * cycle. */ -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads 2026-02-10 9:23 ` [PATCH] " Jani Nikula @ 2026-02-10 16:39 ` Ville Syrjälä 2026-02-19 23:25 ` [External] : " samasth.norway.ananda 1 sibling, 0 replies; 6+ messages in thread From: Ville Syrjälä @ 2026-02-10 16:39 UTC (permalink / raw) To: Jani Nikula; +Cc: Samasth Norway Ananda, intel-gfx, intel-xe, rodrigo.vivi On Tue, Feb 10, 2026 at 11:23:02AM +0200, Jani Nikula wrote: > On Fri, 06 Feb 2026, Samasth Norway Ananda <samasth.norway.ananda@oracle.com> wrote: > > When reading exactly 512 bytes with burst read enabled, the > > extra_byte_added path breaks out of the inner do-while without > > decrementing len. The outer while(len) then re-enters and gmbus_wait() > > times out since all data has been delivered. Decrement len before the > > break so the outer loop terminates correctly. > > Nice find, and the fix looks correct. How did you figure this out? Did > you hit the issue? > > I wonder if the whole extra byte thing is a workaround for some old > hardware that shouldn't be needed on modern hardware... Ville, thoughts? I think it's still needed due to the weird way this is implemented in the hardware. The byte counter rolls over at 256->1, so for that to happen the programmed byte count must be >256 or else we'd reach the target byte count before the rollover happens, in which case the entire transfer would terminate already during the first 256 byte chunk. > > > Also fix a typo in a nearby comment ("generata" -> "generate"). > > "Also" is a good hint that it should be a separate patch. ;) > > BR, > Jani > > > Fixes: d5dc0f43f268 ("drm/i915/gmbus: Enable burst read") > > Signed-off-by: Samasth Norway Ananda <samasth.norway.ananda@oracle.com> > > --- > > drivers/gpu/drm/i915/display/intel_gmbus.c | 6 ++++-- > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c > > index 2caff677600c..5fb3fee34af4 100644 > > --- a/drivers/gpu/drm/i915/display/intel_gmbus.c > > +++ b/drivers/gpu/drm/i915/display/intel_gmbus.c > > @@ -496,8 +496,10 @@ gmbus_xfer_read_chunk(struct intel_display *display, > > > > val = intel_de_read_fw(display, GMBUS3(display)); > > do { > > - if (extra_byte_added && len == 1) > > + if (extra_byte_added && len == 1) { > > + len--; > > break; > > + } > > > > *buf++ = val & 0xff; > > val >>= 8; > > @@ -693,7 +695,7 @@ do_gmbus_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num, > > goto clear_err; > > } > > > > - /* Generate a STOP condition on the bus. Note that gmbus can't generata > > + /* Generate a STOP condition on the bus. Note that gmbus can't generate > > * a STOP on the very first cycle. To simplify the code we > > * unconditionally generate the STOP condition with an additional gmbus > > * cycle. */ > > -- > Jani Nikula, Intel -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [External] : Re: [PATCH] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads 2026-02-10 9:23 ` [PATCH] " Jani Nikula 2026-02-10 16:39 ` Ville Syrjälä @ 2026-02-19 23:25 ` samasth.norway.ananda 1 sibling, 0 replies; 6+ messages in thread From: samasth.norway.ananda @ 2026-02-19 23:25 UTC (permalink / raw) To: Jani Nikula, intel-gfx, intel-xe; +Cc: rodrigo.vivi, ville.syrjala On 2/10/26 1:23 AM, Jani Nikula wrote: > On Fri, 06 Feb 2026, Samasth Norway Ananda <samasth.norway.ananda@oracle.com> wrote: >> When reading exactly 512 bytes with burst read enabled, the >> extra_byte_added path breaks out of the inner do-while without >> decrementing len. The outer while(len) then re-enters and gmbus_wait() >> times out since all data has been delivered. Decrement len before the >> break so the outer loop terminates correctly. > > Nice find, and the fix looks correct. How did you figure this out? Did > you hit the issue? I came across it while working on a different issue and was reading the code. > > I wonder if the whole extra byte thing is a workaround for some old > hardware that shouldn't be needed on modern hardware... Ville, thoughts? > >> Also fix a typo in a nearby comment ("generata" -> "generate"). > > "Also" is a good hint that it should be a separate patch. ;) Thanks. I will send out a v2 with separate patches :) Samasth. > > BR, > Jani > >> Fixes: d5dc0f43f268 ("drm/i915/gmbus: Enable burst read") >> Signed-off-by: Samasth Norway Ananda <samasth.norway.ananda@oracle.com> >> --- >> drivers/gpu/drm/i915/display/intel_gmbus.c | 6 ++++-- >> 1 file changed, 4 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c >> index 2caff677600c..5fb3fee34af4 100644 >> --- a/drivers/gpu/drm/i915/display/intel_gmbus.c >> +++ b/drivers/gpu/drm/i915/display/intel_gmbus.c >> @@ -496,8 +496,10 @@ gmbus_xfer_read_chunk(struct intel_display *display, >> >> val = intel_de_read_fw(display, GMBUS3(display)); >> do { >> - if (extra_byte_added && len == 1) >> + if (extra_byte_added && len == 1) { >> + len--; >> break; >> + } >> >> *buf++ = val & 0xff; >> val >>= 8; >> @@ -693,7 +695,7 @@ do_gmbus_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num, >> goto clear_err; >> } >> >> - /* Generate a STOP condition on the bus. Note that gmbus can't generata >> + /* Generate a STOP condition on the bus. Note that gmbus can't generate >> * a STOP on the very first cycle. To simplify the code we >> * unconditionally generate the STOP condition with an additional gmbus >> * cycle. */ > ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-02-19 23:25 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-06 20:30 [PATCH] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads Samasth Norway Ananda 2026-02-09 18:26 ` ✓ i915.CI.BAT: success for " Patchwork 2026-02-10 1:26 ` ✗ i915.CI.Full: failure " Patchwork 2026-02-10 9:23 ` [PATCH] " Jani Nikula 2026-02-10 16:39 ` Ville Syrjälä 2026-02-19 23:25 ` [External] : " samasth.norway.ananda
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox