* [PATCH v2] drm/i915/cx0: Set power state to ready only on owned PHY lanes
@ 2024-09-16 18:01 Vamsi Krishna Brahmajosyula
2024-09-17 7:59 ` Jani Nikula
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Vamsi Krishna Brahmajosyula @ 2024-09-16 18:01 UTC (permalink / raw)
To: gustavo.sousa, jani.nikula, rodrigo.vivi, joonas.lahtinen,
tursulin, airlied, daniel
Cc: skhan, intel-gfx, intel-xe, dri-devel, linux-kernel
In DP alt mode, when pin assignment is D, only one PHY lane is owned
by the display. intel_cx0pll_enable currently performs a power cycle
ready on both the lanes in all cases.
Address the todo to perfom power state ready on owned lanes.
Tested on Meteor Lake-P [Intel Arc Graphics] with DP alt mode.
v1 -> v2: Address comments from Gustavo Sousa
Signed-off-by: Vamsi Krishna Brahmajosyula <vamsikrishna.brahmajosyula@gmail.com>
---
drivers/gpu/drm/i915/display/intel_cx0_phy.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c
index 4a6c3040ca15..cbed53d3b250 100644
--- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c
+++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c
@@ -2934,6 +2934,7 @@ static void intel_cx0pll_enable(struct intel_encoder *encoder,
enum phy phy = intel_encoder_to_phy(encoder);
struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
bool lane_reversal = dig_port->saved_port_bits & DDI_BUF_PORT_REVERSAL;
+ u8 owned_lane_mask = intel_cx0_get_owned_lane_mask(encoder);
u8 maxpclk_lane = lane_reversal ? INTEL_CX0_LANE1 :
INTEL_CX0_LANE0;
intel_wakeref_t wakeref = intel_cx0_phy_transaction_begin(encoder);
@@ -2948,10 +2949,9 @@ static void intel_cx0pll_enable(struct intel_encoder *encoder,
intel_cx0_phy_lane_reset(encoder, lane_reversal);
/*
- * 3. Change Phy power state to Ready.
- * TODO: For DP alt mode use only one lane.
+ * 3. Change Phy power state to Ready on owned lanes.
*/
- intel_cx0_powerdown_change_sequence(encoder, INTEL_CX0_BOTH_LANES,
+ intel_cx0_powerdown_change_sequence(encoder, owned_lane_mask,
CX0_P2_STATE_READY);
/*
base-commit: ad060dbbcfcfcba624ef1a75e1d71365a98b86d8
--
2.46.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v2] drm/i915/cx0: Set power state to ready only on owned PHY lanes 2024-09-16 18:01 [PATCH v2] drm/i915/cx0: Set power state to ready only on owned PHY lanes Vamsi Krishna Brahmajosyula @ 2024-09-17 7:59 ` Jani Nikula 2024-09-26 12:48 ` ✓ Fi.CI.BAT: success for drm/i915/cx0: Set power state to ready only on owned PHY lanes (rev3) Patchwork 2024-09-26 16:49 ` ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Jani Nikula @ 2024-09-17 7:59 UTC (permalink / raw) To: Vamsi Krishna Brahmajosyula, gustavo.sousa, rodrigo.vivi, joonas.lahtinen, tursulin, airlied, daniel Cc: skhan, intel-gfx, intel-xe, dri-devel, linux-kernel On Mon, 16 Sep 2024, Vamsi Krishna Brahmajosyula <vamsikrishna.brahmajosyula@gmail.com> wrote: > In DP alt mode, when pin assignment is D, only one PHY lane is owned > by the display. intel_cx0pll_enable currently performs a power cycle > ready on both the lanes in all cases. > > Address the todo to perfom power state ready on owned lanes. > > Tested on Meteor Lake-P [Intel Arc Graphics] with DP alt mode. > > v1 -> v2: Address comments from Gustavo Sousa Please briefly describe the actual change. This does not help at all. BR, Jani. > > Signed-off-by: Vamsi Krishna Brahmajosyula <vamsikrishna.brahmajosyula@gmail.com> > --- > drivers/gpu/drm/i915/display/intel_cx0_phy.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > index 4a6c3040ca15..cbed53d3b250 100644 > --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c > +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > @@ -2934,6 +2934,7 @@ static void intel_cx0pll_enable(struct intel_encoder *encoder, > enum phy phy = intel_encoder_to_phy(encoder); > struct intel_digital_port *dig_port = enc_to_dig_port(encoder); > bool lane_reversal = dig_port->saved_port_bits & DDI_BUF_PORT_REVERSAL; > + u8 owned_lane_mask = intel_cx0_get_owned_lane_mask(encoder); > u8 maxpclk_lane = lane_reversal ? INTEL_CX0_LANE1 : > INTEL_CX0_LANE0; > intel_wakeref_t wakeref = intel_cx0_phy_transaction_begin(encoder); > @@ -2948,10 +2949,9 @@ static void intel_cx0pll_enable(struct intel_encoder *encoder, > intel_cx0_phy_lane_reset(encoder, lane_reversal); > > /* > - * 3. Change Phy power state to Ready. > - * TODO: For DP alt mode use only one lane. > + * 3. Change Phy power state to Ready on owned lanes. > */ > - intel_cx0_powerdown_change_sequence(encoder, INTEL_CX0_BOTH_LANES, > + intel_cx0_powerdown_change_sequence(encoder, owned_lane_mask, > CX0_P2_STATE_READY); > > /* > > base-commit: ad060dbbcfcfcba624ef1a75e1d71365a98b86d8 -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 4+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/cx0: Set power state to ready only on owned PHY lanes (rev3) 2024-09-16 18:01 [PATCH v2] drm/i915/cx0: Set power state to ready only on owned PHY lanes Vamsi Krishna Brahmajosyula 2024-09-17 7:59 ` Jani Nikula @ 2024-09-26 12:48 ` Patchwork 2024-09-26 16:49 ` ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2024-09-26 12:48 UTC (permalink / raw) To: Vamsi Krishna Brahmajosyula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 20360 bytes --] == Series Details == Series: drm/i915/cx0: Set power state to ready only on owned PHY lanes (rev3) URL : https://patchwork.freedesktop.org/series/138985/ State : success == Summary == CI Bug Log - changes from CI_DRM_15446 -> Patchwork_138985v3 ==================================================== Summary ------- **WARNING** Minor unknown changes coming with Patchwork_138985v3 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_138985v3, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/index.html Participating hosts (38 -> 36) ------------------------------ Additional (1): bat-dg1-7 Missing (3): bat-arls-2 bat-rpls-4 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_138985v3: ### IGT changes ### #### Warnings #### * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-twl-2: [SKIP][1] ([i915#11731]) -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-twl-1: [SKIP][3] ([i915#11731]) -> [SKIP][4] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-twl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html Known issues ------------ Here are the changes found in Patchwork_138985v3 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - bat-dg1-7: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@gem_mmap@basic.html - bat-dg2-14: NOTRUN -> [SKIP][6] ([i915#4083]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@gem_tiled_fence_blits@basic.html - bat-dg1-7: NOTRUN -> [SKIP][9] ([i915#4077]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-7: NOTRUN -> [SKIP][10] ([i915#4079]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg1-7: NOTRUN -> [SKIP][11] ([i915#6621]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@i915_pm_rps@basic-api.html - bat-dg2-14: NOTRUN -> [SKIP][12] ([i915#6621]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-mtlp-6: [PASS][13] -> [DMESG-WARN][14] ([i915#10341]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-mtlp-6/igt@i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@hangcheck: - bat-mtlp-6: [PASS][15] -> [DMESG-WARN][16] ([i915#11349]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@sanitycheck: - bat-apl-1: [PASS][17] -> [DMESG-WARN][18] ([i915#11621]) +46 other tests dmesg-warn [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@i915_selftest@live@sanitycheck.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-apl-1/igt@i915_selftest@live@sanitycheck.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - bat-dg1-7: NOTRUN -> [SKIP][19] ([i915#4212]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-14: NOTRUN -> [SKIP][20] ([i915#5190]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-dg2-14: NOTRUN -> [SKIP][21] ([i915#4212]) +7 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-7: NOTRUN -> [SKIP][22] ([i915#4215]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg2-14: NOTRUN -> [SKIP][23] ([i915#4215] / [i915#5190]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_busy@basic@flip: - bat-apl-1: [PASS][24] -> [DMESG-WARN][25] ([i915#180] / [i915#1982]) +5 other tests dmesg-warn [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_busy@basic@flip.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-apl-1/igt@kms_busy@basic@flip.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-14: NOTRUN -> [SKIP][26] ([i915#4103] / [i915#4213]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-dg1-7: NOTRUN -> [SKIP][27] ([i915#4103] / [i915#4213]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg2-14: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#3840]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@kms_dsc@dsc-basic.html - bat-dg1-7: NOTRUN -> [SKIP][29] ([i915#3555] / [i915#3840]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-modeset@b-dp1: - bat-apl-1: [PASS][30] -> [DMESG-WARN][31] ([i915#11621] / [i915#180]) +32 other tests dmesg-warn [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1: - bat-apl-1: [PASS][32] -> [DMESG-WARN][33] ([i915#11621] / [i915#180] / [i915#1982]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-14: NOTRUN -> [SKIP][34] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-7: NOTRUN -> [SKIP][35] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-14: NOTRUN -> [SKIP][36] ([i915#5274]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_hdmi_inject@inject-audio: - bat-dg1-7: NOTRUN -> [SKIP][37] ([i915#433]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@nonblocking-crc: - fi-kbl-8809g: [PASS][38] -> [SKIP][39] +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/fi-kbl-8809g/igt@kms_pipe_crc_basic@nonblocking-crc.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/fi-kbl-8809g/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-apl-1: [PASS][40] -> [DMESG-WARN][41] ([i915#180]) +8 other tests dmesg-warn [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_pm_backlight@basic-brightness: - bat-dg1-7: NOTRUN -> [SKIP][42] ([i915#5354]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html - bat-dg2-14: NOTRUN -> [SKIP][43] ([i915#5354]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-dg1-7: NOTRUN -> [SKIP][44] ([i915#1072] / [i915#9732]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-dg2-14: NOTRUN -> [SKIP][45] ([i915#1072] / [i915#9732]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-14: NOTRUN -> [SKIP][46] ([i915#3555]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg1-7: NOTRUN -> [SKIP][47] ([i915#3555]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg1-7: NOTRUN -> [SKIP][48] ([i915#3708]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@prime_vgem@basic-fence-flip.html - bat-dg2-14: NOTRUN -> [SKIP][49] ([i915#3708]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg1-7: NOTRUN -> [SKIP][50] ([i915#3708] / [i915#4077]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html - bat-dg2-14: NOTRUN -> [SKIP][51] ([i915#3708] / [i915#4077]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - bat-dg2-14: NOTRUN -> [SKIP][52] ([i915#3291] / [i915#3708]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-dg2-14/igt@prime_vgem@basic-read.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-kbl-8809g: [DMESG-WARN][53] ([i915#10462]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html * igt@fbdev@info: - fi-kbl-8809g: [SKIP][55] ([i915#1849]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/fi-kbl-8809g/igt@fbdev@info.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/fi-kbl-8809g/igt@fbdev@info.html * igt@i915_selftest@live: - bat-mtlp-8: [ABORT][57] ([i915#12216]) -> [PASS][58] +1 other test pass [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-mtlp-8/igt@i915_selftest@live.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-mtlp-8/igt@i915_selftest@live.html - bat-twl-1: [INCOMPLETE][59] ([i915#9413]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@i915_selftest@live.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-twl-1/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-twl-1: [INCOMPLETE][61] ([i915#10886] / [i915#9413]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@i915_selftest@live@gt_lrc.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-twl-1/igt@i915_selftest@live@gt_lrc.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-kbl-8809g: [SKIP][63] -> [PASS][64] +22 other tests pass [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/fi-kbl-8809g/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/fi-kbl-8809g/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bad-pitch-65536: - fi-kbl-8809g: [FAIL][65] ([i915#12288]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/fi-kbl-8809g/igt@kms_addfb_basic@bad-pitch-65536.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/fi-kbl-8809g/igt@kms_addfb_basic@bad-pitch-65536.html * igt@kms_addfb_basic@bo-too-small: - fi-kbl-8809g: [FAIL][67] ([i915#12290]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/fi-kbl-8809g/igt@kms_addfb_basic@bo-too-small.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/fi-kbl-8809g/igt@kms_addfb_basic@bo-too-small.html * igt@kms_addfb_basic@too-high: - fi-kbl-8809g: [FAIL][69] ([i915#12289]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html * igt@kms_force_connector_basic@force-edid: - fi-kbl-8809g: [DMESG-FAIL][71] ([i915#12287]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html * igt@kms_force_connector_basic@prune-stale-modes: - fi-kbl-8809g: [DMESG-WARN][73] ([i915#12287]) -> [PASS][74] +1 other test pass [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/fi-kbl-8809g/igt@kms_force_connector_basic@prune-stale-modes.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/fi-kbl-8809g/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-8809g: [FAIL][75] ([IGT#3]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/fi-kbl-8809g/igt@kms_hdmi_inject@inject-audio.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/fi-kbl-8809g/igt@kms_hdmi_inject@inject-audio.html #### Warnings #### * igt@gem_mmap@basic: - bat-arls-1: [SKIP][77] ([i915#4083]) -> [SKIP][78] ([i915#11343] / [i915#4083]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-1/igt@gem_mmap@basic.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-arls-1/igt@gem_mmap@basic.html - bat-arls-5: [SKIP][79] ([i915#4083]) -> [SKIP][80] ([i915#11343] / [i915#4083]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-5/igt@gem_mmap@basic.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-arls-5/igt@gem_mmap@basic.html * igt@i915_pm_rpm@module-reload: - bat-apl-1: [DMESG-WARN][81] ([i915#11621]) -> [DMESG-WARN][82] ([i915#11621] / [i915#180]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@i915_pm_rpm@module-reload.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/bat-apl-1/igt@i915_pm_rpm@module-reload.html [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#10462]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10462 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10886 [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343 [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731 [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216 [i915#12287]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12287 [i915#12288]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12288 [i915#12289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12289 [i915#12290]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12290 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * Linux: CI_DRM_15446 -> Patchwork_138985v3 CI-20190529: 20190529 CI_DRM_15446: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8032: 8032 Patchwork_138985v3: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/index.html [-- Attachment #2: Type: text/html, Size: 25035 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/cx0: Set power state to ready only on owned PHY lanes (rev3) 2024-09-16 18:01 [PATCH v2] drm/i915/cx0: Set power state to ready only on owned PHY lanes Vamsi Krishna Brahmajosyula 2024-09-17 7:59 ` Jani Nikula 2024-09-26 12:48 ` ✓ Fi.CI.BAT: success for drm/i915/cx0: Set power state to ready only on owned PHY lanes (rev3) Patchwork @ 2024-09-26 16:49 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2024-09-26 16:49 UTC (permalink / raw) To: Vamsi Krishna Brahmajosyula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100296 bytes --] == Series Details == Series: drm/i915/cx0: Set power state to ready only on owned PHY lanes (rev3) URL : https://patchwork.freedesktop.org/series/138985/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15446_full -> Patchwork_138985v3_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_138985v3_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_138985v3_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_138985v3_full: ### IGT changes ### #### Possible regressions #### * igt@gem_busy@close-race: - shard-tglu: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@gem_busy@close-race.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing: - shard-tglu: [PASS][4] -> [SKIP][5] +13 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][6] +27 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-mtlp: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][8] +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][9] +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][10] +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-13/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html * igt@kms_psr@psr2-primary-render: - shard-mtlp: [PASS][11] -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-6/igt@kms_psr@psr2-primary-render.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-2/igt@kms_psr@psr2-primary-render.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][13] +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Warnings #### * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: [SKIP][14] ([i915#1769] / [i915#3555]) -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu: [SKIP][16] ([i915#5286]) -> [SKIP][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-tglu: [SKIP][18] ([i915#6095]) -> [SKIP][19] +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: [SKIP][20] ([i915#3116] / [i915#3299]) -> [SKIP][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0: - shard-tglu: [SKIP][22] ([i915#6944] / [i915#9424]) -> [SKIP][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_content_protection@lic-type-0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu: [SKIP][24] ([i915#3555]) -> [SKIP][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x10.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: [SKIP][26] ([i915#5354]) -> [SKIP][27] +10 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_vrr@lobf: - shard-tglu: [SKIP][28] ([i915#11920]) -> [SKIP][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_vrr@lobf.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_vrr@lobf.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_schedule@pi-common@vcs0: - {shard-tglu-1}: NOTRUN -> [FAIL][30] +7 other tests fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-1/igt@gem_exec_schedule@pi-common@vcs0.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - {shard-tglu-1}: NOTRUN -> [SKIP][31] +169 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html New tests --------- New tests have been introduced between CI_DRM_15446_full and Patchwork_138985v3_full: ### New IGT tests (3) ### * igt@gem_exec_fence: - Statuses : - Exec time: [None] s * igt@kms_color@ctm-max@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.63] s * igt@kms_color@ctm-max@pipe-b-dp-3: - Statuses : 1 pass(s) - Exec time: [0.54] s Known issues ------------ Here are the changes found in Patchwork_138985v3_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#8411]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html * igt@drm_fdinfo@most-busy-check-all: - shard-rkl: NOTRUN -> [FAIL][33] ([i915#12179]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][34] ([i915#7742]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#8414]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-13/igt@drm_fdinfo@virtual-busy-hang.html * igt@drm_fdinfo@virtual-busy-idle: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#8414]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@drm_fdinfo@virtual-busy-idle.html * igt@fbdev@info: - shard-tglu: [PASS][37] -> [SKIP][38] ([i915#1849] / [i915#2582]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@fbdev@info.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@fbdev@info.html * igt@fbdev@read: - shard-tglu: [PASS][39] -> [SKIP][40] ([i915#2582]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@fbdev@read.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@fbdev@read.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#9323]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ctx_engines@invalid-engines: - shard-glk: [PASS][42] -> [FAIL][43] ([i915#12027]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-glk4/igt@gem_ctx_engines@invalid-engines.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-glk2/igt@gem_ctx_engines@invalid-engines.html - shard-mtlp: [PASS][44] -> [FAIL][45] ([i915#12027]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-2/igt@gem_ctx_engines@invalid-engines.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-many: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#8555]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#280]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-1/igt@gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#280]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_fair@basic-deadline: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-13/igt@gem_exec_fair@basic-deadline.html - shard-glk: NOTRUN -> [FAIL][50] ([i915#2846]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-glk5/igt@gem_exec_fair@basic-deadline.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4473] / [i915#4771]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-3/igt@gem_exec_fair@basic-none-rrul.html - shard-tglu: NOTRUN -> [FAIL][53] ([i915#2842]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-7/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-solo: - shard-rkl: NOTRUN -> [FAIL][54] ([i915#2842]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-pace-share: - shard-tglu: [PASS][55] -> [FAIL][56] ([i915#2842]) +1 other test fail [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@gem_exec_fair@basic-pace-share.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-3/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-rkl: [PASS][57] -> [FAIL][58] ([i915#2842]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-3/igt@gem_exec_fair@basic-pace@vcs0.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-4/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3281]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3281]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3281]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-read-active.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3281]) +8 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4537] / [i915#4812]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4812]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-12/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][65] -> [INCOMPLETE][66] ([i915#11441]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4860]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4613]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4613]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4613]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@gem_lmem_swapping@verify.html * igt@gem_madvise@dontneed-before-exec: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-13/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap@big-bo: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@bad-object: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4077]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@big-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@gem_mmap_gtt@big-copy-odd.html * igt@gem_mmap_gtt@hang-user: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4077]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@bad-object: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4083]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-17/igt@gem_mmap_wc@bad-object.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-3/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-8/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@display-protected-crc: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-glk: NOTRUN -> [INCOMPLETE][83] ([i915#2295]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-glk6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3282]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8428]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-8/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_render_tiled_blits@basic: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@gem_render_tiled_blits@basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3282] / [i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-14/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#6227]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][96] -> [ABORT][97] ([i915#9820]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][98] -> [ABORT][99] ([i915#9820]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-glk6/igt@i915_module_load@reload-with-fault-injection.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][100] -> [ABORT][101] ([i915#9820]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#8399]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#6590]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6590]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [PASS][105] -> [FAIL][106] ([i915#3591]) +1 other test fail [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#4387]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@i915_pm_sseu@full-enable.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#7707]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@intel_hwmon@hwmon-read.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#3555]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#9531]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [PASS][111] -> [FAIL][112] ([i915#5956]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [FAIL][114] ([i915#5956]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][116] +7 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#9197]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#5286]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3638]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#5190] / [i915#9197]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][126] +48 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-glk5/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6095]) +19 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#12042]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#6095]) +114 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#12042]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#12042]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#6095]) +156 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#6095]) +66 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#6095]) +86 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#3742]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4087]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#7828]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-12/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#7828]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#7828]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#7828]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#7828]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@ctm-green-to-red: - shard-dg2: [PASS][142] -> [SKIP][143] ([i915#5354]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_color@ctm-green-to-red.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_color@ctm-green-to-red.html * igt@kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7118] / [i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3116]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-1/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3299]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#9424]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm@pipe-a-dp-3: - shard-dg2: NOTRUN -> [TIMEOUT][148] ([i915#7173]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-3.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#7116] / [i915#9424]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-14/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#3555]) +5 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#8814]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#11453]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#11453]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-7/igt@kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#3359]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3555]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3555]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-dg2: [PASS][157] -> [SKIP][158] ([i915#9197]) +25 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-64x21.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#9809]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#4103] / [i915#4213]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#9723]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#3804]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#8812]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#3840]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#3840]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#1839]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#3637]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][169] +20 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3637]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-glk: [PASS][171] -> [FAIL][172] ([i915#2122]) +1 other test fail [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-glk1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-glk8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-mtlp: NOTRUN -> [FAIL][173] ([i915#2122]) +2 other tests fail [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-tglu: [PASS][174] -> [SKIP][175] ([i915#3637]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_flip@plain-flip-ts-check-interruptible.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#2672]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#2672]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#2672] / [i915#3555] / [i915#5190]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#2672] / [i915#3555]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#2672]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#2672] / [i915#3555]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#2587] / [i915#2672]) +6 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8813]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8810]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling: - shard-tglu: [PASS][185] -> [SKIP][186] ([i915#3555]) +3 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling: - shard-dg2: [PASS][187] -> [SKIP][188] ([i915#3555]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [FAIL][191] ([i915#6880]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-tglu: [PASS][192] -> [SKIP][193] ([i915#1849]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [PASS][194] -> [FAIL][195] ([i915#6880]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#5354]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#1849]) +16 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][198] +5 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#1825]) +24 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#1825]) +8 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#3458]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][202] +30 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3023]) +14 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3458]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-swap: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_hdr@static-toggle.html * igt@kms_panel_fitting@legacy: - shard-snb: NOTRUN -> [SKIP][208] +9 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-snb4/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#6301]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][210] +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane@pixel-format-source-clamping: - shard-tglu: [PASS][211] -> [SKIP][212] ([i915#8825]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_plane@pixel-format-source-clamping.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@plane-position-hole: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#8825]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_plane@plane-position-hole.html * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#7294]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [PASS][215] -> [SKIP][216] ([i915#6953] / [i915#9423]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-8/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#12247] / [i915#9423]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#12247]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#8152]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-dg2: [PASS][220] -> [SKIP][221] ([i915#12247] / [i915#8152] / [i915#9423]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-dg2: [PASS][222] -> [SKIP][223] ([i915#12247]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d: - shard-dg2: [PASS][224] -> [SKIP][225] ([i915#12247] / [i915#8152]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#12247]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#12247]) +8 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#12247]) +10 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#12247] / [i915#6953]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#12247]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#5354]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-17/igt@kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][233] ([i915#9812]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-7/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][234] ([i915#9301]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-5/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#9519]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#9519]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#9519]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#6524]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#9808]) +5 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-8/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#9732]) +11 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#1072] / [i915#9732]) +6 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-13/igt@kms_psr@fbc-psr-sprite-mmap-cpu.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#9688]) +7 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#1072] / [i915#9732]) +14 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#1072] / [i915#9732]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr2-primary-render@edp-1: - shard-mtlp: [PASS][246] -> [FAIL][247] ([i915#10105]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-6/igt@kms_psr@psr2-primary-render@edp-1.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-2/igt@kms_psr@psr2-primary-render@edp-1.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#9685]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-17/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#4235]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#11131]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#5289]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#5289]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#5289]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#9906]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8808]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#11920]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@kms_vrr@lobf.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#7387]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@perf@global-sseu-config.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#3708] / [i915#4077]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#3708] / [i915#4077]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-12/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#3291] / [i915#3708]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@prime_vgem@basic-fence-read.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][261] ([i915#9781]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-7/igt@syncobj_timeline@invalid-wait-zero-handles.html #### Possible fixes #### * igt@fbdev@info: - shard-dg2: [SKIP][262] ([i915#1849] / [i915#2582]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@fbdev@info.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-3/igt@fbdev@info.html * igt@fbdev@unaligned-read: - shard-tglu: [SKIP][264] ([i915#2582]) -> [PASS][265] +1 other test pass [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@fbdev@unaligned-read.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-3/igt@fbdev@unaligned-read.html * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][266] ([i915#7297]) -> [PASS][267] +1 other test pass [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-4/igt@gem_ccs@suspend-resume.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-5/igt@gem_ccs@suspend-resume.html * igt@gem_eio@hibernate: - shard-dg1: [ABORT][268] ([i915#7975] / [i915#8213]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-14/igt@gem_eio@hibernate.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][270] ([i915#2842]) -> [PASS][271] +1 other test pass [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][272] ([i915#2842]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_params@no-blt: - shard-dg2: [INCOMPLETE][274] ([i915#2295]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@gem_exec_params@no-blt.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@gem_exec_params@no-blt.html * igt@gem_exec_reloc@basic-scanout@vcs0: - shard-tglu: [SKIP][276] ([i915#3639]) -> [PASS][277] +5 other tests pass [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@gem_exec_reloc@basic-scanout@vcs0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-5/igt@gem_exec_reloc@basic-scanout@vcs0.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [ABORT][278] ([i915#5566]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-glk1/igt@gen9_exec_parse@allowed-all.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-glk8/igt@gen9_exec_parse@allowed-all.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][280] ([i915#9820]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][282] ([i915#10131] / [i915#9697]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][284] ([i915#3591]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [DMESG-WARN][286] ([i915#4423]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-14/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][288] ([i915#7984]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-1/igt@i915_power@sanity.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-4/igt@i915_power@sanity.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][290] ([i915#12216]) -> [PASS][291] +1 other test pass [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-3/igt@i915_selftest@live@workarounds.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@i915_selftest@live@workarounds.html * igt@kms_atomic_interruptible@legacy-pageflip: - shard-tglu: [SKIP][292] -> [PASS][293] +78 other tests pass [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_atomic_interruptible@legacy-pageflip.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-9/igt@kms_atomic_interruptible@legacy-pageflip.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg2: [FAIL][294] ([i915#5956]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [FAIL][296] ([i915#11808] / [i915#5956]) -> [PASS][297] +1 other test pass [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_joiner@invalid-modeset-force-joiner: - shard-dg2: [SKIP][298] -> [PASS][299] +1 other test pass [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_big_joiner@invalid-modeset-force-joiner.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_big_joiner@invalid-modeset-force-joiner.html * igt@kms_color@ctm-max: - shard-dg2: [SKIP][300] ([i915#5354]) -> [PASS][301] +13 other tests pass [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_color@ctm-max.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_color@ctm-max.html * igt@kms_cursor_crc@cursor-suspend: - shard-mtlp: [INCOMPLETE][302] -> [PASS][303] +1 other test pass [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-8/igt@kms_cursor_crc@cursor-suspend.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-mtlp-3/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_edge_walk@256x256-top-edge: - shard-dg2: [SKIP][304] ([i915#9197]) -> [PASS][305] +29 other tests pass [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_cursor_edge_walk@256x256-top-edge.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_cursor_edge_walk@256x256-top-edge.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][306] ([i915#2122]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-glk2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-glk3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [FAIL][308] ([i915#2122]) -> [PASS][309] +1 other test pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb1/igt@kms_flip@2x-plain-flip-fb-recreate.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-modeset-vs-hang: - shard-tglu: [SKIP][310] ([i915#3637]) -> [PASS][311] +8 other tests pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_flip@flip-vs-modeset-vs-hang.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-3/igt@kms_flip@flip-vs-modeset-vs-hang.html * igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1: - shard-tglu: [FAIL][312] ([i915#2122]) -> [PASS][313] +1 other test pass [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling: - shard-dg2: [SKIP][314] ([i915#3555]) -> [PASS][315] +5 other tests pass [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-tglu: [SKIP][316] ([i915#3555]) -> [PASS][317] +4 other tests pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-tglu: [SKIP][318] ([i915#1849]) -> [PASS][319] +14 other tests pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][320] ([i915#3555] / [i915#8228]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane@pixel-format: - shard-tglu: [ABORT][322] -> [PASS][323] +1 other test pass [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_plane@pixel-format.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-7/igt@kms_plane@pixel-format.html * igt@kms_plane@planar-pixel-format-settings: - shard-dg2: [SKIP][324] ([i915#9581]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane@planar-pixel-format-settings.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-tglu: [SKIP][326] ([i915#7294]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_plane_alpha_blend@alpha-7efc.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-2/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-dg2: [SKIP][328] ([i915#7294]) -> [PASS][329] +1 other test pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-opaque-fb.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: - shard-dg2: [SKIP][330] ([i915#8152] / [i915#9423]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d: - shard-dg2: [SKIP][332] ([i915#8152]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-tglu: [SKIP][334] ([i915#8152]) -> [PASS][335] +3 other tests pass [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-3/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-tglu: [SKIP][336] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-tglu: [SKIP][338] ([i915#12247] / [i915#3558] / [i915#8152]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c: - shard-tglu: [SKIP][340] ([i915#12247]) -> [PASS][341] +11 other tests pass [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d: - shard-tglu: [SKIP][342] ([i915#12247] / [i915#8152]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-dg2: [SKIP][344] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a: - shard-dg2: [SKIP][346] ([i915#12247]) -> [PASS][347] +11 other tests pass [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-dg2: [SKIP][348] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d: - shard-dg2: [SKIP][350] ([i915#12247] / [i915#8152]) -> [PASS][351] +2 other tests pass [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-tglu: [SKIP][352] ([i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2: [SKIP][354] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][355] [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: [SKIP][356] ([i915#1849]) -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][358] ([i915#9519]) -> [PASS][359] +1 other test pass [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-tglu: [SKIP][360] ([i915#9519]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][362] ([i915#9519]) -> [PASS][363] +2 other tests pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-tglu: [SKIP][364] ([i915#3547] / [i915#9519]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_pm_rpm@system-suspend-modeset.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-5/igt@kms_pm_rpm@system-suspend-modeset.html #### Warnings #### * igt@kms_async_flips@invalid-async-flip: - shard-dg2: [SKIP][366] ([i915#6228]) -> [SKIP][367] ([i915#9197]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_async_flips@invalid-async-flip.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: [SKIP][368] -> [SKIP][369] ([i915#5286]) +7 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-dg2: [SKIP][370] -> [SKIP][371] ([i915#9197]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][372] ([i915#9197]) -> [SKIP][373] +2 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-dg1: [SKIP][374] ([i915#3638] / [i915#4423]) -> [SKIP][375] ([i915#3638]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-19/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg1-13/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: [SKIP][376] ([i915#4538] / [i915#5190]) -> [SKIP][377] ([i915#5190] / [i915#9197]) +3 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2: [SKIP][378] ([i915#5190] / [i915#9197]) -> [SKIP][379] ([i915#4538] / [i915#5190]) +6 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg2: [SKIP][380] ([i915#10307] / [i915#6095]) -> [SKIP][381] ([i915#9197]) +5 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: [SKIP][382] -> [SKIP][383] ([i915#12042]) +3 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-tglu: [SKIP][384] -> [SKIP][385] ([i915#6095]) +12 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-9/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-dg2: [SKIP][386] ([i915#9197]) -> [SKIP][387] ([i915#10307] / [i915#6095]) +7 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2: [SKIP][388] ([i915#12042]) -> [SKIP][389] ([i915#9197]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: [SKIP][390] ([i915#9197]) -> [SKIP][391] ([i915#12042]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_content_protection@atomic: - shard-tglu: [SKIP][392] -> [SKIP][393] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_content_protection@atomic.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@lic-type-1: - shard-tglu: [SKIP][394] -> [SKIP][395] ([i915#6944] / [i915#9424]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_content_protection@lic-type-1.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: [SKIP][396] ([i915#9197]) -> [TIMEOUT][397] ([i915#7173]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_content_protection@srm.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: [SKIP][398] ([i915#11453] / [i915#3359]) -> [SKIP][399] ([i915#11453]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: [SKIP][400] ([i915#9197]) -> [SKIP][401] ([i915#11453] / [i915#3359]) +2 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: [SKIP][402] -> [SKIP][403] ([i915#11453]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: [SKIP][404] ([i915#11453]) -> [SKIP][405] ([i915#9197]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: [SKIP][406] ([i915#9197]) -> [SKIP][407] ([i915#3555]) +2 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2: [SKIP][408] ([i915#9197]) -> [SKIP][409] ([i915#5354]) +2 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-dg2: [SKIP][410] ([i915#5354]) -> [SKIP][411] ([i915#9197]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: [SKIP][412] -> [SKIP][413] ([i915#9067]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: [SKIP][414] -> [SKIP][415] ([i915#9723]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: [SKIP][416] -> [SKIP][417] ([i915#1769] / [i915#3555] / [i915#3804]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2: [SKIP][418] ([i915#2672] / [i915#3555]) -> [SKIP][419] ([i915#3555]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: [SKIP][420] ([i915#3555]) -> [SKIP][421] ([i915#2672] / [i915#3555]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: [SKIP][422] ([i915#3555]) -> [SKIP][423] ([i915#2672] / [i915#3555]) +5 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: [SKIP][424] -> [SKIP][425] ([i915#5354]) +4 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-tglu: [SKIP][426] -> [SKIP][427] ([i915#1849]) +11 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: [SKIP][428] ([i915#5354]) -> [SKIP][429] ([i915#3458]) +10 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: [SKIP][430] ([i915#3458]) -> [SKIP][431] ([i915#10433] / [i915#3458]) +1 other test skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][432] ([i915#3458]) -> [SKIP][433] ([i915#5354]) +9 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: [SKIP][434] ([i915#1849]) -> [SKIP][435] +69 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: [SKIP][436] -> [SKIP][437] ([i915#3555] / [i915#8228]) +1 other test skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_hdr@bpc-switch-dpms.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][438] ([i915#4816]) -> [SKIP][439] ([i915#4070] / [i915#4816]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: [SKIP][440] -> [SKIP][441] ([i915#6301]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_panel_fitting@atomic-fastset.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-tglu-9/igt@kms_panel_fitting@atomic-fastset.html - shard-dg2: [SKIP][442] ([i915#6301]) -> [SKIP][443] ([i915#9197]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: [SKIP][444] -> [SKIP][445] ([i915#3555]) +4 other tests skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_plane_lowres@tiling-4.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/Pat == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138985v3/index.html [-- Attachment #2: Type: text/html, Size: 108731 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-09-26 16:49 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-09-16 18:01 [PATCH v2] drm/i915/cx0: Set power state to ready only on owned PHY lanes Vamsi Krishna Brahmajosyula 2024-09-17 7:59 ` Jani Nikula 2024-09-26 12:48 ` ✓ Fi.CI.BAT: success for drm/i915/cx0: Set power state to ready only on owned PHY lanes (rev3) Patchwork 2024-09-26 16:49 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox