Message ID | 20230912155923.39494-1-gustavo.sousa@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2] drm/i915/cx0: Add step for programming msgbus timer | expand |
> -----Original Message----- > From: Sousa, Gustavo <gustavo.sousa@intel.com> > Sent: Tuesday, September 12, 2023 6:59 PM > To: intel-gfx@lists.freedesktop.org > Cc: Kahola, Mika <mika.kahola@intel.com>; Taylor, Clinton A <clinton.a.taylor@intel.com> > Subject: [PATCH v2] drm/i915/cx0: Add step for programming msgbus timer > > There was a recent update in the BSpec adding an extra step to the PLL enable sequence, which is for programming the msgbus > timer. Since we also touch PHY registers during hw readout, let's do the programming when starting a transaction rather than only > when doing the PLL enable sequence. > > This might be the missing step that was causing the timeouts that we have recently seen during C20 SRAM register programming > sequences. With this in place, we shouldn't need the logic to bump the timer thresholds, since now we have a documented value > that should be set peform programming the registers. As such, let's also remove intel_cx0_bus_check_and_bump_timer(), but > keep the part that checks if hardware really detected a timeout, which might be useful debugging information. > > v2: > - Use debug level instead of warning for the message notifying that > the hardware did not detect the timeout. (Mika) > - Got a new BSpec update clarifying that we need to program the msgbus > timer of both PHY lanes. Update the changes to reflect that. > (Gustavo) > > BSpec: 64568 > Cc: Mika Kahola <mika.kahola@intel.com> Reviewed-by: Mika Kahola <mika.kahola@intel.com> > Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com> > --- > drivers/gpu/drm/i915/display/intel_cx0_phy.c | 87 +++++++++---------- .../gpu/drm/i915/display/intel_cx0_phy_regs.h | 2 +- > 2 files changed, 41 insertions(+), 48 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > index e6d3027c821d..abd607b564f1 100644 > --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c > +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > @@ -29,8 +29,6 @@ > #define INTEL_CX0_LANE1 BIT(1) > #define INTEL_CX0_BOTH_LANES (INTEL_CX0_LANE1 | INTEL_CX0_LANE0) > > -#define INTEL_CX0_MSGBUS_TIMER_BUMPED_VAL 0x200 > - > bool intel_is_c10phy(struct drm_i915_private *i915, enum phy phy) { > if (DISPLAY_VER_FULL(i915) == IP_VER(14, 0) && phy < PHY_C) @@ -73,19 +71,38 @@ assert_dc_off(struct > drm_i915_private *i915) > drm_WARN_ON(&i915->drm, !enabled); > } > > +static void intel_cx0_program_msgbus_timer(struct intel_encoder > +*encoder) { > + int lane; > + struct drm_i915_private *i915 = to_i915(encoder->base.dev); > + > + for_each_cx0_lane_in_mask(INTEL_CX0_BOTH_LANES, lane) > + intel_de_rmw(i915, > + XELPDP_PORT_MSGBUS_TIMER(encoder->port, lane), > + XELPDP_PORT_MSGBUS_TIMER_VAL_MASK, > + XELPDP_PORT_MSGBUS_TIMER_VAL); > +} > + > /* > * Prepare HW for CX0 phy transactions. > * > * It is required that PSR and DC5/6 are disabled before any CX0 message > * bus transaction is executed. > + * > + * We also do the msgbus timer programming here to ensure that the > + timer > + * is already programmed before any access to the msgbus. > */ > static intel_wakeref_t intel_cx0_phy_transaction_begin(struct intel_encoder *encoder) { > + intel_wakeref_t wakeref; > struct drm_i915_private *i915 = to_i915(encoder->base.dev); > struct intel_dp *intel_dp = enc_to_intel_dp(encoder); > > intel_psr_pause(intel_dp); > - return intel_display_power_get(i915, POWER_DOMAIN_DC_OFF); > + wakeref = intel_display_power_get(i915, POWER_DOMAIN_DC_OFF); > + intel_cx0_program_msgbus_timer(encoder); > + > + return wakeref; > } > > static void intel_cx0_phy_transaction_end(struct intel_encoder *encoder, intel_wakeref_t wakeref) @@ -121,42 +138,6 @@ > static void intel_cx0_bus_reset(struct drm_i915_private *i915, enum port port, i > intel_clear_response_ready_flag(i915, port, lane); } > > -/* > - * Check if there was a timeout detected by the hardware in the message bus > - * and bump the threshold if so. > - */ > -static void intel_cx0_bus_check_and_bump_timer(struct drm_i915_private *i915, > - enum port port, int lane) > -{ > - enum phy phy = intel_port_to_phy(i915, port); > - i915_reg_t reg; > - u32 val; > - u32 timer_val; > - > - reg = XELPDP_PORT_MSGBUS_TIMER(port, lane); > - val = intel_de_read(i915, reg); > - > - if (!(val & XELPDP_PORT_MSGBUS_TIMER_TIMED_OUT)) { > - drm_warn(&i915->drm, > - "PHY %c lane %d: hardware did not detect a timeout\n", > - phy_name(phy), lane); > - return; > - } > - > - timer_val = REG_FIELD_GET(XELPDP_PORT_MSGBUS_TIMER_VAL_MASK, val); > - > - if (timer_val == INTEL_CX0_MSGBUS_TIMER_BUMPED_VAL) > - return; > - > - val &= ~XELPDP_PORT_MSGBUS_TIMER_VAL_MASK; > - val |= XELPDP_PORT_MSGBUS_TIMER_VAL(INTEL_CX0_MSGBUS_TIMER_BUMPED_VAL); > - > - drm_dbg_kms(&i915->drm, > - "PHY %c lane %d: increasing msgbus timer threshold to %#x\n", > - phy_name(phy), lane, INTEL_CX0_MSGBUS_TIMER_BUMPED_VAL); > - intel_de_write(i915, reg, val); > -} > - > static int intel_cx0_wait_for_ack(struct drm_i915_private *i915, enum port port, > int command, int lane, u32 *val) > { > @@ -170,7 +151,13 @@ static int intel_cx0_wait_for_ack(struct drm_i915_private *i915, enum port port, > XELPDP_MSGBUS_TIMEOUT_SLOW, val)) { > drm_dbg_kms(&i915->drm, "PHY %c Timeout waiting for message ACK. Status: 0x%x\n", > phy_name(phy), *val); > - intel_cx0_bus_check_and_bump_timer(i915, port, lane); > + > + if (!(intel_de_read(i915, XELPDP_PORT_MSGBUS_TIMER(port, lane)) & > + XELPDP_PORT_MSGBUS_TIMER_TIMED_OUT)) > + drm_dbg_kms(&i915->drm, > + "PHY %c Hardware did not detect a timeout\n", > + phy_name(phy)); > + > intel_cx0_bus_reset(i915, port, lane); > return -ETIMEDOUT; > } > @@ -2737,39 +2724,45 @@ static void intel_cx0pll_enable(struct intel_encoder *encoder, > intel_cx0_powerdown_change_sequence(i915, encoder->port, INTEL_CX0_BOTH_LANES, > CX0_P2_STATE_READY); > > - /* 4. Program PHY internal PLL internal registers. */ > + /* > + * 4. Program PORT_MSGBUS_TIMER register's Message Bus Timer field to 0xA000. > + * (This is done inside intel_cx0_phy_transaction_begin(), since we would need > + * the right timer thresholds for readouts too.) > + */ > + > + /* 5. Program PHY internal PLL internal registers. */ > if (intel_is_c10phy(i915, phy)) > intel_c10_pll_program(i915, crtc_state, encoder); > else > intel_c20_pll_program(i915, crtc_state, encoder); > > /* > - * 5. Program the enabled and disabled owned PHY lane > + * 6. Program the enabled and disabled owned PHY lane > * transmitters over message bus > */ > intel_cx0_program_phy_lane(i915, encoder, crtc_state->lane_count, lane_reversal); > > /* > - * 6. Follow the Display Voltage Frequency Switching - Sequence > + * 7. Follow the Display Voltage Frequency Switching - Sequence > * Before Frequency Change. We handle this step in bxt_set_cdclk(). > */ > > /* > - * 7. Program DDI_CLK_VALFREQ to match intended DDI > + * 8. Program DDI_CLK_VALFREQ to match intended DDI > * clock frequency. > */ > intel_de_write(i915, DDI_CLK_VALFREQ(encoder->port), > crtc_state->port_clock); > > /* > - * 8. Set PORT_CLOCK_CTL register PCLK PLL Request > + * 9. Set PORT_CLOCK_CTL register PCLK PLL Request > * LN<Lane for maxPCLK> to "1" to enable PLL. > */ > intel_de_rmw(i915, XELPDP_PORT_CLOCK_CTL(encoder->port), > intel_cx0_get_pclk_pll_request(INTEL_CX0_BOTH_LANES), > intel_cx0_get_pclk_pll_request(maxpclk_lane)); > > - /* 9. Poll on PORT_CLOCK_CTL PCLK PLL Ack LN<Lane for maxPCLK> == "1". */ > + /* 10. Poll on PORT_CLOCK_CTL PCLK PLL Ack LN<Lane for maxPCLK> == > +"1". */ > if (__intel_de_wait_for_register(i915, XELPDP_PORT_CLOCK_CTL(encoder->port), > intel_cx0_get_pclk_pll_ack(INTEL_CX0_BOTH_LANES), > intel_cx0_get_pclk_pll_ack(maxpclk_lane), > @@ -2778,7 +2771,7 @@ static void intel_cx0pll_enable(struct intel_encoder *encoder, > phy_name(phy), XELPDP_PCLK_PLL_ENABLE_TIMEOUT_US); > > /* > - * 10. Follow the Display Voltage Frequency Switching Sequence After > + * 11. Follow the Display Voltage Frequency Switching Sequence After > * Frequency Change. We handle this step in bxt_set_cdclk(). > */ > > diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h b/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h > index b2db4cc366d6..adf8f4ce0d49 100644 > --- a/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h > +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h > @@ -121,7 +121,7 @@ > > _XELPDP_PORT_MSGBUS_TIMER_LN0_USBC2) + (lane) * 4) > #define XELPDP_PORT_MSGBUS_TIMER_TIMED_OUT REG_BIT(31) > #define XELPDP_PORT_MSGBUS_TIMER_VAL_MASK REG_GENMASK(23, 0) > -#define XELPDP_PORT_MSGBUS_TIMER_VAL(val) REG_FIELD_PREP(XELPDP_PORT_MSGBUS_TIMER_VAL_MASK, > val) > +#define XELPDP_PORT_MSGBUS_TIMER_VAL REG_FIELD_PREP(XELPDP_PORT_MSGBUS_TIMER_VAL_MASK, > 0xa000) > > #define _XELPDP_PORT_CLOCK_CTL_A 0x640E0 > #define _XELPDP_PORT_CLOCK_CTL_B 0x641E0 > -- > 2.42.0
Quoting Patchwork (2023-09-12 19:24:10-03:00) >== Series Details == > >Series: drm/i915/cx0: Add step for programming msgbus timer (rev2) >URL : https://patchwork.freedesktop.org/series/123551/ >State : failure > >== Summary == > >CI Bug Log - changes from CI_DRM_13623_full -> Patchwork_123551v2_full >==================================================== > >Summary >------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_123551v2_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_123551v2_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them > to document this new failure mode, which will reduce false positives in CI. > > > >Participating hosts (9 -> 9) >------------------------------ > > No changes in participating hosts > >Possible new issues >------------------- > > Here are the unknown changes that may have been introduced in Patchwork_123551v2_full: > >### IGT changes ### > >#### Possible regressions #### > > * igt@gem_eio@in-flight-contexts-10ms: > - shard-snb: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-snb6/igt@gem_eio@in-flight-contexts-10ms.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-snb4/igt@gem_eio@in-flight-contexts-10ms.html > > * igt@gen9_exec_parse@allowed-single: > - shard-apl: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl4/igt@gen9_exec_parse@allowed-single.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl6/igt@gen9_exec_parse@allowed-single.html > > * igt@kms_rotation_crc@primary-rotation-270: > - shard-rkl: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-2/igt@kms_rotation_crc@primary-rotation-270.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-270.html > > * igt@kms_universal_plane@cursor-fb-leak-pipe-a: > - shard-glk: [PASS][7] -> [FAIL][8] > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-glk3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html > > * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: > - shard-dg2: [PASS][9] -> [INCOMPLETE][10] > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-1/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html > None of those should be related to this patch since those machines do not use the C10 or C20 PHYs. Gustavo Sousa > >Known issues >------------ > > Here are the changes found in Patchwork_123551v2_full that come from known issues: > >### IGT changes ### > >#### Issues hit #### > > * igt@api_intel_bb@object-reloc-keep-cache: > - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@api_intel_bb@object-reloc-keep-cache.html > > * igt@api_intel_bb@object-reloc-purge-cache: > - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8411]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html > > * igt@device_reset@cold-reset-bound: > - shard-dg2: NOTRUN -> [SKIP][13] ([i915#7701]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@device_reset@cold-reset-bound.html > > * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: > - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +9 other tests skip > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html > > * igt@feature_discovery@psr1: > - shard-dg2: NOTRUN -> [SKIP][15] ([i915#658]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@feature_discovery@psr1.html > > * igt@gem_close_race@multigpu-basic-process: > - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#7697]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html > > * igt@gem_close_race@multigpu-basic-threads: > - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html > > * igt@gem_create@create-ext-cpu-access-big: > - shard-dg2: NOTRUN -> [ABORT][18] ([i915#7461]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html > > * igt@gem_ctx_param@set-priority-not-supported: > - shard-dg2: NOTRUN -> [SKIP][19] ([fdo#109314]) > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_ctx_param@set-priority-not-supported.html > > * igt@gem_ctx_persistence@heartbeat-hang: > - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html > > * igt@gem_ctx_persistence@processes: > - shard-snb: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1099]) +1 other test skip > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-snb5/igt@gem_ctx_persistence@processes.html > > * igt@gem_eio@unwedge-stress: > - shard-dg1: [PASS][22] -> [FAIL][23] ([i915#5784]) > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-19/igt@gem_eio@unwedge-stress.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-14/igt@gem_eio@unwedge-stress.html > > * igt@gem_exec_balancer@bonded-pair: > - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_exec_balancer@bonded-pair.html > > * igt@gem_exec_fair@basic-pace@vecs0: > - shard-rkl: [PASS][25] -> [FAIL][26] ([i915#2842]) +1 other test fail > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html > > * igt@gem_exec_fair@basic-throttle: > - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539]) > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@gem_exec_fair@basic-throttle.html > > * igt@gem_exec_flush@basic-wb-prw-default: > - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +2 other tests skip > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html > > * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: > - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#3281]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html > > * igt@gem_exec_reloc@basic-write-wc-noreloc: > - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +6 other tests skip > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html > > * igt@gem_exec_schedule@preempt-hang@vcs0: > - shard-mtlp: NOTRUN -> [ABORT][31] ([i915#9262]) +1 other test abort > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@gem_exec_schedule@preempt-hang@vcs0.html > > * igt@gem_exec_schedule@preempt-hang@vecs0: > - shard-mtlp: NOTRUN -> [DMESG-WARN][32] ([i915#9262]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@gem_exec_schedule@preempt-hang@vecs0.html > > * igt@gem_exec_schedule@preempt-queue-contexts: > - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts.html > > * igt@gem_exec_suspend@basic-s3@smem: > - shard-mtlp: [PASS][34] -> [ABORT][35] ([i915#9262]) +2 other tests abort > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-4/igt@gem_exec_suspend@basic-s3@smem.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-8/igt@gem_exec_suspend@basic-s3@smem.html > > * igt@gem_exec_suspend@basic-s4-devices@lmem0: > - shard-dg2: [PASS][36] -> [ABORT][37] ([i915#7975] / [i915#8213]) +1 other test abort > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html > > * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: > - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860]) > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html > > * igt@gem_lmem_swapping@heavy-multi: > - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@gem_lmem_swapping@heavy-multi.html > > * igt@gem_lmem_swapping@smem-oom@lmem0: > - shard-dg1: [PASS][40] -> [TIMEOUT][41] ([i915#5493]) > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html > > * igt@gem_mmap_gtt@fault-concurrent-y: > - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4077]) +6 other tests skip > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_mmap_gtt@fault-concurrent-y.html > > * igt@gem_mmap_wc@close: > - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) +8 other tests skip > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_mmap_wc@close.html > > * igt@gem_partial_pwrite_pread@reads-uncached: > - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3282]) +4 other tests skip > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-uncached.html > > * igt@gem_pwrite@basic-exhaustion: > - shard-snb: NOTRUN -> [WARN][45] ([i915#2658]) > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-snb5/igt@gem_pwrite@basic-exhaustion.html > > * igt@gem_pxp@regular-baseline-src-copy-readible: > - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4270]) +2 other tests skip > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html > > * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: > - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#8428]) > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html > > * igt@gem_set_tiling_vs_blt@untiled-to-tiled: > - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4079]) > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html > > * igt@gem_softpin@evict-snoop-interruptible: > - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4885]) > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html > > * igt@gem_spin_batch@spin-all-new: > - shard-dg2: NOTRUN -> [FAIL][50] ([i915#5889]) > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html > > * igt@gem_userptr_blits@access-control: > - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3297]) > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_userptr_blits@access-control.html > > * igt@gem_userptr_blits@map-fixed-invalidate-busy: > - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3297] / [i915#4880]) +1 other test skip > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html > > * igt@gem_userptr_blits@unsync-unmap: > - shard-tglu: NOTRUN -> [SKIP][53] ([i915#3297]) > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap.html > > * igt@gem_userptr_blits@vma-merge: > - shard-tglu: NOTRUN -> [FAIL][54] ([i915#3318]) > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@gem_userptr_blits@vma-merge.html > > * igt@gen3_render_linear_blits: > - shard-dg2: NOTRUN -> [SKIP][55] ([fdo#109289]) +5 other tests skip > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@gen3_render_linear_blits.html > > * igt@gen9_exec_parse@bb-start-param: > - shard-dg2: NOTRUN -> [SKIP][56] ([i915#2856]) +1 other test skip > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@gen9_exec_parse@bb-start-param.html > > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > - shard-mtlp: [PASS][57] -> [FAIL][58] ([i915#8691]) > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > > * igt@i915_pm_rc6_residency@rc6-idle@rcs0: > - shard-tglu: NOTRUN -> [WARN][59] ([i915#2681]) +3 other tests warn > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html > > * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > - shard-rkl: [PASS][60] -> [SKIP][61] ([i915#1397]) > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > > * igt@i915_pm_rpm@modeset-lpsp: > - shard-dg2: [PASS][62] -> [SKIP][63] ([i915#1397]) > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp.html > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp.html > > * igt@i915_pm_rpm@modeset-lpsp-stress: > - shard-dg2: NOTRUN -> [SKIP][64] ([i915#1397]) > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp-stress.html > > * igt@i915_pm_rpm@modeset-non-lpsp: > - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#1397]) > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-7/igt@i915_pm_rpm@modeset-non-lpsp.html > > * igt@i915_pm_rpm@modeset-non-lpsp-stress: > - shard-dg1: [PASS][66] -> [SKIP][67] ([i915#1397]) +2 other tests skip > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@i915_pm_rpm@modeset-non-lpsp-stress.html > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html > > * igt@i915_pm_rps@thresholds-park@gt0: > - shard-dg2: NOTRUN -> [SKIP][68] ([i915#8925]) > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@i915_pm_rps@thresholds-park@gt0.html > > * igt@i915_query@query-topology-unsupported: > - shard-dg2: NOTRUN -> [SKIP][69] ([fdo#109302]) > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@i915_query@query-topology-unsupported.html > > * igt@kms_addfb_basic@clobberred-modifier: > - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4212]) +1 other test skip > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_addfb_basic@clobberred-modifier.html > > * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3826]) > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html > > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: > - shard-dg1: NOTRUN -> [SKIP][72] ([i915#8502]) +7 other tests skip > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html > > * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: > - shard-dg2: NOTRUN -> [FAIL][73] ([i915#8247]) +3 other tests fail > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html > > * igt@kms_atomic@plane-primary-overlay-mutable-zpos: > - shard-dg2: NOTRUN -> [SKIP][74] ([i915#404]) > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html > > * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: > - shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#1769]) > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html > > * igt@kms_big_fb@x-tiled-16bpp-rotate-90: > - shard-dg2: NOTRUN -> [SKIP][76] ([fdo#111614]) +3 other tests skip > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html > > * igt@kms_big_fb@y-tiled-8bpp-rotate-270: > - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190]) +10 other tests skip > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: > - shard-tglu: [PASS][78] -> [FAIL][79] ([i915#3743]) +1 other test fail > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: > - shard-apl: NOTRUN -> [SKIP][80] ([fdo#109271]) +22 other tests skip > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > > * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: > - shard-mtlp: NOTRUN -> [SKIP][81] ([fdo#111615]) +1 other test skip > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html > > * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: > - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4538] / [i915#5190]) +6 other tests skip > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > - shard-tglu: NOTRUN -> [SKIP][83] ([fdo#111615]) > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html > > * igt@kms_big_joiner@2x-modeset: > - shard-dg2: NOTRUN -> [SKIP][84] ([i915#2705]) > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_big_joiner@2x-modeset.html > > * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: > - shard-tglu: NOTRUN -> [SKIP][85] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: > - shard-tglu: NOTRUN -> [SKIP][86] ([i915#5354] / [i915#6095]) +4 other tests skip > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html > > * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: > - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#6095]) +3 other tests skip > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html > > * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: > - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3689] / [i915#3886] / [i915#5354]) +8 other tests skip > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: > - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3886] / [i915#6095]) > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: > - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3689] / [i915#5354]) +16 other tests skip > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html > > * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > - shard-apl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#3886]) > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs: > - shard-tglu: NOTRUN -> [SKIP][92] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html > > * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4087] / [i915#7213]) +3 other tests skip > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html > > * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: > - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4087]) +3 other tests skip > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html > > * igt@kms_chamelium_color@ctm-0-25: > - shard-tglu: NOTRUN -> [SKIP][95] ([fdo#111827]) > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_chamelium_color@ctm-0-25.html > > * igt@kms_chamelium_color@ctm-red-to-blue: > - shard-dg2: NOTRUN -> [SKIP][96] ([fdo#111827]) +1 other test skip > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_chamelium_color@ctm-red-to-blue.html > > * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: > - shard-dg2: NOTRUN -> [SKIP][97] ([i915#7828]) +7 other tests skip > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html > > * igt@kms_chamelium_frames@dp-crc-fast: > - shard-tglu: NOTRUN -> [SKIP][98] ([i915#7828]) > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_chamelium_frames@dp-crc-fast.html > > * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: > - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#7828]) > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html > > * igt@kms_color@deep-color: > - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3555]) +5 other tests skip > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_color@deep-color.html > > * igt@kms_content_protection@atomic: > - shard-tglu: NOTRUN -> [SKIP][101] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_content_protection@atomic.html > > * igt@kms_content_protection@dp-mst-lic-type-0: > - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3299]) > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-0.html > > * igt@kms_content_protection@srm: > - shard-dg2: NOTRUN -> [SKIP][103] ([i915#7118]) +1 other test skip > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_content_protection@srm.html > > * igt@kms_cursor_crc@cursor-rapid-movement-512x170: > - shard-tglu: NOTRUN -> [SKIP][104] ([i915#3359]) > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html > > * igt@kms_cursor_crc@cursor-sliding-512x170: > - shard-dg2: NOTRUN -> [SKIP][105] ([i915#3359]) > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x170.html > > * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: > - shard-tglu: NOTRUN -> [SKIP][106] ([fdo#109274]) > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html > > * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: > - shard-dg2: NOTRUN -> [SKIP][107] ([fdo#109274] / [i915#5354]) +5 other tests skip > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html > > * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: > - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#109274] / [fdo#111767] / [i915#5354]) > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > - shard-glk: [PASS][109] -> [FAIL][110] ([i915#2346]) > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-apl: [PASS][111] -> [FAIL][112] ([i915#2346]) > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: > - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4103] / [i915#4213]) > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html > > * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: > - shard-dg1: NOTRUN -> [SKIP][114] ([i915#9227]) > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html > > * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: > - shard-dg1: NOTRUN -> [SKIP][115] ([i915#9226] / [i915#9261]) +1 other test skip > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html > > * igt@kms_dsc@dsc-basic: > - shard-dg2: NOTRUN -> [SKIP][116] ([i915#3555] / [i915#3840]) +1 other test skip > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_dsc@dsc-basic.html > - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#3555] / [i915#3840] / [i915#9159]) > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-7/igt@kms_dsc@dsc-basic.html > > * igt@kms_flip@2x-dpms-vs-vblank-race: > - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#109274] / [i915#3637]) > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_flip@2x-dpms-vs-vblank-race.html > > * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: > - shard-dg2: NOTRUN -> [SKIP][119] ([fdo#109274] / [fdo#111767]) > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html > > * igt@kms_flip@2x-flip-vs-fences-interruptible: > - shard-dg2: NOTRUN -> [SKIP][120] ([i915#8381]) > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html > > * igt@kms_flip@2x-plain-flip: > - shard-dg2: NOTRUN -> [SKIP][121] ([fdo#109274]) > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_flip@2x-plain-flip.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: > - shard-dg2: NOTRUN -> [SKIP][122] ([i915#2672]) +1 other test skip > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html > > * igt@kms_force_connector_basic@force-load-detect: > - shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#109285]) > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_force_connector_basic@force-load-detect.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: > - shard-dg2: [PASS][124] -> [FAIL][125] ([i915#6880]) > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html > > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: > - shard-dg2: NOTRUN -> [SKIP][126] ([i915#5354]) +33 other tests skip > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite: > - shard-tglu: NOTRUN -> [SKIP][127] ([fdo#109280]) +4 other tests skip > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: > - shard-snb: NOTRUN -> [SKIP][128] ([fdo#109271]) +101 other tests skip > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html > > * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: > - shard-dg2: NOTRUN -> [FAIL][129] ([i915#6880]) > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html > > * igt@kms_frontbuffer_tracking@fbc-tiling-y: > - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#5460]) > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: > - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3458]) +14 other tests skip > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: > - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#1825]) > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: > - shard-tglu: NOTRUN -> [SKIP][133] ([fdo#110189]) +5 other tests skip > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html > > * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: > - shard-dg2: NOTRUN -> [SKIP][134] ([i915#8708]) +22 other tests skip > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html > > * igt@kms_hdr@invalid-metadata-sizes: > - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#8228]) +1 other test skip > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html > > * igt@kms_plane_multiple@tiling-yf: > - shard-tglu: NOTRUN -> [SKIP][136] ([i915#3555]) +1 other test skip > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_plane_multiple@tiling-yf.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: > - shard-dg2: NOTRUN -> [FAIL][137] ([i915#8292]) > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][138] ([i915#5176]) +11 other tests skip > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][139] ([i915#5176]) +1 other test skip > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-2.html > > * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1: > - shard-dg1: NOTRUN -> [SKIP][140] ([i915#5176]) +15 other tests skip > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: > - shard-dg1: NOTRUN -> [SKIP][141] ([i915#5235]) +23 other tests skip > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][142] ([i915#5235]) +23 other tests skip > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html > > * igt@kms_prime@basic-crc-hybrid: > - shard-dg2: NOTRUN -> [SKIP][143] ([i915#6524] / [i915#6805]) > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_prime@basic-crc-hybrid.html > > * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: > - shard-tglu: NOTRUN -> [SKIP][144] ([i915#658]) > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html > > * igt@kms_psr2_su@page_flip-xrgb8888: > - shard-apl: NOTRUN -> [SKIP][145] ([fdo#109271] / [i915#658]) > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_psr2_su@page_flip-xrgb8888.html > > * igt@kms_psr@primary_page_flip: > - shard-dg2: NOTRUN -> [SKIP][146] ([i915#1072]) +6 other tests skip > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_psr@primary_page_flip.html > > * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: > - shard-dg2: NOTRUN -> [SKIP][147] ([i915#4235]) +1 other test skip > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html > > * igt@kms_selftest@drm_format: > - shard-apl: NOTRUN -> [SKIP][148] ([fdo#109271] / [i915#8661]) > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_selftest@drm_format.html > > * igt@kms_universal_plane@cursor-fb-leak-pipe-d: > - shard-tglu: [PASS][149] -> [FAIL][150] ([i915#9196]) +1 other test fail > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html > - shard-dg2: [PASS][151] -> [FAIL][152] ([i915#9196]) > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-2/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html > > * igt@perf@gen8-unprivileged-single-ctx-counters: > - shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#109289]) > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@perf@gen8-unprivileged-single-ctx-counters.html > > * igt@perf_pmu@event-wait@rcs0: > - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#112283]) > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@perf_pmu@event-wait@rcs0.html > > * igt@perf_pmu@rc6-suspend: > - shard-dg2: [PASS][155] -> [FAIL][156] ([fdo#103375]) > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-10/igt@perf_pmu@rc6-suspend.html > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-5/igt@perf_pmu@rc6-suspend.html > > * igt@prime_vgem@basic-read: > - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3291] / [i915#3708]) > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@prime_vgem@basic-read.html > > * igt@prime_vgem@fence-write-hang: > - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3708]) > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@prime_vgem@fence-write-hang.html > > * igt@runner@aborted: > - shard-mtlp: NOTRUN -> ([FAIL][159], [FAIL][160]) ([i915#7812]) > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-7/igt@runner@aborted.html > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-1/igt@runner@aborted.html > > * igt@sysfs_heartbeat_interval@mixed@ccs0: > - shard-mtlp: [PASS][161] -> [DMESG-WARN][162] ([i915#8552]) > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@ccs0.html > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@ccs0.html > > * igt@v3d/v3d_submit_cl@simple-flush-cache: > - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#109315] / [i915#2575]) +1 other test skip > [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@v3d/v3d_submit_cl@simple-flush-cache.html > > * igt@v3d/v3d_submit_csd@multiple-job-submission: > - shard-dg2: NOTRUN -> [SKIP][164] ([i915#2575]) +11 other tests skip > [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@v3d/v3d_submit_csd@multiple-job-submission.html > > * igt@v3d/v3d_submit_csd@single-in-sync: > - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#2575]) > [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-7/igt@v3d/v3d_submit_csd@single-in-sync.html > > * igt@vc4/vc4_label_bo@set-kernel-name: > - shard-dg2: NOTRUN -> [SKIP][166] ([i915#7711]) +6 other tests skip > [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@vc4/vc4_label_bo@set-kernel-name.html > > * igt@vc4/vc4_purgeable_bo@mark-willneed: > - shard-tglu: NOTRUN -> [SKIP][167] ([i915#2575]) +1 other test skip > [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@vc4/vc4_purgeable_bo@mark-willneed.html > > * igt@vc4/vc4_wait_bo@unused-bo-1ns: > - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#7711]) +2 other tests skip > [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@vc4/vc4_wait_bo@unused-bo-1ns.html > > >#### Possible fixes #### > > * igt@drm_fdinfo@most-busy-check-all@rcs0: > - shard-rkl: [FAIL][169] ([i915#7742]) -> [PASS][170] +1 other test pass > [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html > [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html > > * igt@gem_ctx_exec@basic-nohangcheck: > - shard-rkl: [FAIL][171] ([i915#6268]) -> [PASS][172] > [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html > [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html > > * igt@gem_eio@hibernate: > - shard-tglu: [ABORT][173] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][174] > [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-10/igt@gem_eio@hibernate.html > [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@gem_eio@hibernate.html > > * igt@gem_exec_fair@basic-none-share@rcs0: > - shard-rkl: [FAIL][175] ([i915#2842]) -> [PASS][176] > [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html > [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html > > * igt@gem_exec_fair@basic-pace-share@rcs0: > - shard-glk: [FAIL][177] ([i915#2842]) -> [PASS][178] > [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html > [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html > > * igt@gem_softpin@noreloc-s3: > - shard-dg2: [FAIL][179] ([fdo#103375]) -> [PASS][180] > [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@gem_softpin@noreloc-s3.html > [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-11/igt@gem_softpin@noreloc-s3.html > > * igt@i915_hangman@gt-error-state-capture@vecs0: > - shard-mtlp: [ABORT][181] ([i915#9262]) -> [PASS][182] +4 other tests pass > [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-3/igt@i915_hangman@gt-error-state-capture@vecs0.html > [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-7/igt@i915_hangman@gt-error-state-capture@vecs0.html > > * igt@i915_pm_rc6_residency@rc6-idle@vcs0: > - shard-dg1: [FAIL][183] ([i915#3591]) -> [PASS][184] +1 other test pass > [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html > [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html > > * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > - shard-dg1: [SKIP][185] ([i915#1397]) -> [PASS][186] +2 other tests pass > [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > > * igt@i915_pm_rpm@i2c: > - shard-dg2: [FAIL][187] ([i915#8717]) -> [PASS][188] > [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-2/igt@i915_pm_rpm@i2c.html > [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@i915_pm_rpm@i2c.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > - shard-tglu: [FAIL][189] ([i915#3743]) -> [PASS][190] > [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html > [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html > > * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: > - shard-dg2: [INCOMPLETE][191] ([i915#9203]) -> [PASS][192] > [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html > [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html > > * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: > - shard-dg2: [FAIL][193] ([i915#6880]) -> [PASS][194] > [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html > [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html > > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: > - shard-apl: [INCOMPLETE][195] -> [PASS][196] > [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html > [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html > > * igt@kms_universal_plane@cursor-fb-leak-pipe-c: > - shard-tglu: [FAIL][197] ([i915#9196]) -> [PASS][198] > [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html > [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html > > * igt@perf_pmu@busy-double-start@vecs1: > - shard-dg2: [FAIL][199] ([i915#4349]) -> [PASS][200] +3 other tests pass > [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html > [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html > > * igt@syncobj_wait@invalid-single-wait-unsubmitted: > - shard-dg1: [DMESG-WARN][201] ([i915#1982] / [i915#4423]) -> [PASS][202] > [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@syncobj_wait@invalid-single-wait-unsubmitted.html > [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-18/igt@syncobj_wait@invalid-single-wait-unsubmitted.html > > >#### Warnings #### > > * igt@gem_lmem_swapping@smem-oom@lmem0: > - shard-dg2: [TIMEOUT][203] ([i915#5493]) -> [DMESG-WARN][204] ([i915#4936] / [i915#5493]) > [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html > [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html > > * igt@i915_hangman@engine-error-state-capture@vecs0: > - shard-mtlp: [DMESG-WARN][205] ([i915#9262]) -> [ABORT][206] ([i915#9262]) > [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-1/igt@i915_hangman@engine-error-state-capture@vecs0.html > [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@i915_hangman@engine-error-state-capture@vecs0.html > > * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs: > - shard-dg1: [SKIP][207] ([i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][208] ([i915#5354] / [i915#6095]) > [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs.html > [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-18/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs.html > > * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs: > - shard-dg1: [SKIP][209] ([i915#3689] / [i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][210] ([i915#3689] / [i915#5354] / [i915#6095]) > [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html > [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-18/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html > > * igt@kms_content_protection@type1: > - shard-dg2: [SKIP][211] ([i915#7118] / [i915#7162]) -> [SKIP][212] ([i915#7118]) > [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-11/igt@kms_content_protection@type1.html > [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_content_protection@type1.html > > * igt@kms_fbcon_fbt@psr-suspend: > - shard-rkl: [SKIP][213] ([i915#3955]) -> [SKIP][214] ([fdo#110189] / [i915#3955]) > [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html > [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html > > * igt@kms_force_connector_basic@force-load-detect: > - shard-rkl: [SKIP][215] ([fdo#109285] / [i915#4098]) -> [SKIP][216] ([fdo#109285]) > [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html > [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html > > * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: > - shard-dg1: [SKIP][217] ([i915#3458] / [i915#4423]) -> [SKIP][218] ([i915#3458]) > [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html > [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html > > * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4: > - shard-dg1: [SKIP][219] ([i915#4423] / [i915#5176]) -> [SKIP][220] ([i915#5176]) > [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4.html > [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4.html > > * igt@kms_psr@cursor_plane_move: > - shard-dg1: [SKIP][221] ([i915#1072]) -> [SKIP][222] ([i915#1072] / [i915#4078]) > [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-19/igt@kms_psr@cursor_plane_move.html > [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-12/igt@kms_psr@cursor_plane_move.html > > * igt@kms_psr@sprite_plane_onoff: > - shard-dg1: [SKIP][223] ([i915#1072] / [i915#4078]) -> [SKIP][224] ([i915#1072]) +1 other test skip > [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@kms_psr@sprite_plane_onoff.html > [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-15/igt@kms_psr@sprite_plane_onoff.html > > * igt@sysfs_heartbeat_interval@mixed@vecs0: > - shard-mtlp: [FAIL][225] ([i915#1731]) -> [ABORT][226] ([i915#8552]) > [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html > [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 > [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 > [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 > [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 > [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 > [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 > [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 > [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 > [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 > [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 > [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 > [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 > [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 > [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 > [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 > [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 > [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 > [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 > [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 > [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 > [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 > [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 > [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 > [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 > [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 > [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 > [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 > [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 > [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 > [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 > [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 > [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 > [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 > [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 > [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 > [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 > [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 > [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 > [i915#9203]: https://gitlab.freedesktop.org/drm/intel/issues/9203 > [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 > [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 > [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 > [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 > > >Build changes >------------- > > * Linux: CI_DRM_13623 -> Patchwork_123551v2 > > CI-20190529: 20190529 > CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux > IGT_7480: a8d38db9ac258d7fd71b2cf7607e259a864f95be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > Patchwork_123551v2: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > >== Logs == > >For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/index.html
On Wed, Sep 13, 2023 at 08:59:49AM -0300, Gustavo Sousa wrote: > Quoting Patchwork (2023-09-12 19:24:10-03:00) > >== Series Details == > > > >Series: drm/i915/cx0: Add step for programming msgbus timer (rev2) > >URL : https://patchwork.freedesktop.org/series/123551/ > >State : failure > > > >== Summary == > > > >CI Bug Log - changes from CI_DRM_13623_full -> Patchwork_123551v2_full > >==================================================== > > > >Summary > >------- > > > > **FAILURE** > > > > Serious unknown changes coming with Patchwork_123551v2_full absolutely need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in Patchwork_123551v2_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them > > to document this new failure mode, which will reduce false positives in CI. > > > > > > > >Participating hosts (9 -> 9) > >------------------------------ > > > > No changes in participating hosts > > > >Possible new issues > >------------------- > > > > Here are the unknown changes that may have been introduced in Patchwork_123551v2_full: > > > >### IGT changes ### > > > >#### Possible regressions #### > > > > * igt@gem_eio@in-flight-contexts-10ms: > > - shard-snb: [PASS][1] -> [FAIL][2] > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-snb6/igt@gem_eio@in-flight-contexts-10ms.html > > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-snb4/igt@gem_eio@in-flight-contexts-10ms.html > > > > * igt@gen9_exec_parse@allowed-single: > > - shard-apl: [PASS][3] -> [INCOMPLETE][4] > > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl4/igt@gen9_exec_parse@allowed-single.html > > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl6/igt@gen9_exec_parse@allowed-single.html > > > > * igt@kms_rotation_crc@primary-rotation-270: > > - shard-rkl: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete > > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-2/igt@kms_rotation_crc@primary-rotation-270.html > > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-270.html > > > > * igt@kms_universal_plane@cursor-fb-leak-pipe-a: > > - shard-glk: [PASS][7] -> [FAIL][8] > > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html > > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-glk3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html > > > > * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: > > - shard-dg2: [PASS][9] -> [INCOMPLETE][10] > > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-1/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html > > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html > > > > None of those should be related to this patch since those machines do not use > the C10 or C20 PHYs. Applied to drm-intel-next. Thanks for the patch and review. Matt > > Gustavo Sousa > > > > >Known issues > >------------ > > > > Here are the changes found in Patchwork_123551v2_full that come from known issues: > > > >### IGT changes ### > > > >#### Issues hit #### > > > > * igt@api_intel_bb@object-reloc-keep-cache: > > - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) > > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@api_intel_bb@object-reloc-keep-cache.html > > > > * igt@api_intel_bb@object-reloc-purge-cache: > > - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8411]) > > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html > > > > * igt@device_reset@cold-reset-bound: > > - shard-dg2: NOTRUN -> [SKIP][13] ([i915#7701]) > > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@device_reset@cold-reset-bound.html > > > > * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: > > - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +9 other tests skip > > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html > > > > * igt@feature_discovery@psr1: > > - shard-dg2: NOTRUN -> [SKIP][15] ([i915#658]) > > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@feature_discovery@psr1.html > > > > * igt@gem_close_race@multigpu-basic-process: > > - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#7697]) > > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html > > > > * igt@gem_close_race@multigpu-basic-threads: > > - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) > > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html > > > > * igt@gem_create@create-ext-cpu-access-big: > > - shard-dg2: NOTRUN -> [ABORT][18] ([i915#7461]) > > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html > > > > * igt@gem_ctx_param@set-priority-not-supported: > > - shard-dg2: NOTRUN -> [SKIP][19] ([fdo#109314]) > > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_ctx_param@set-priority-not-supported.html > > > > * igt@gem_ctx_persistence@heartbeat-hang: > > - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) > > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html > > > > * igt@gem_ctx_persistence@processes: > > - shard-snb: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1099]) +1 other test skip > > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-snb5/igt@gem_ctx_persistence@processes.html > > > > * igt@gem_eio@unwedge-stress: > > - shard-dg1: [PASS][22] -> [FAIL][23] ([i915#5784]) > > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-19/igt@gem_eio@unwedge-stress.html > > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-14/igt@gem_eio@unwedge-stress.html > > > > * igt@gem_exec_balancer@bonded-pair: > > - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771]) > > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_exec_balancer@bonded-pair.html > > > > * igt@gem_exec_fair@basic-pace@vecs0: > > - shard-rkl: [PASS][25] -> [FAIL][26] ([i915#2842]) +1 other test fail > > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html > > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html > > > > * igt@gem_exec_fair@basic-throttle: > > - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539]) > > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@gem_exec_fair@basic-throttle.html > > > > * igt@gem_exec_flush@basic-wb-prw-default: > > - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +2 other tests skip > > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html > > > > * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: > > - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#3281]) > > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html > > > > * igt@gem_exec_reloc@basic-write-wc-noreloc: > > - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +6 other tests skip > > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html > > > > * igt@gem_exec_schedule@preempt-hang@vcs0: > > - shard-mtlp: NOTRUN -> [ABORT][31] ([i915#9262]) +1 other test abort > > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@gem_exec_schedule@preempt-hang@vcs0.html > > > > * igt@gem_exec_schedule@preempt-hang@vecs0: > > - shard-mtlp: NOTRUN -> [DMESG-WARN][32] ([i915#9262]) > > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@gem_exec_schedule@preempt-hang@vecs0.html > > > > * igt@gem_exec_schedule@preempt-queue-contexts: > > - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) > > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts.html > > > > * igt@gem_exec_suspend@basic-s3@smem: > > - shard-mtlp: [PASS][34] -> [ABORT][35] ([i915#9262]) +2 other tests abort > > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-4/igt@gem_exec_suspend@basic-s3@smem.html > > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-8/igt@gem_exec_suspend@basic-s3@smem.html > > > > * igt@gem_exec_suspend@basic-s4-devices@lmem0: > > - shard-dg2: [PASS][36] -> [ABORT][37] ([i915#7975] / [i915#8213]) +1 other test abort > > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html > > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html > > > > * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: > > - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860]) > > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html > > > > * igt@gem_lmem_swapping@heavy-multi: > > - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) > > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@gem_lmem_swapping@heavy-multi.html > > > > * igt@gem_lmem_swapping@smem-oom@lmem0: > > - shard-dg1: [PASS][40] -> [TIMEOUT][41] ([i915#5493]) > > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html > > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html > > > > * igt@gem_mmap_gtt@fault-concurrent-y: > > - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4077]) +6 other tests skip > > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_mmap_gtt@fault-concurrent-y.html > > > > * igt@gem_mmap_wc@close: > > - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) +8 other tests skip > > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_mmap_wc@close.html > > > > * igt@gem_partial_pwrite_pread@reads-uncached: > > - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3282]) +4 other tests skip > > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-uncached.html > > > > * igt@gem_pwrite@basic-exhaustion: > > - shard-snb: NOTRUN -> [WARN][45] ([i915#2658]) > > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-snb5/igt@gem_pwrite@basic-exhaustion.html > > > > * igt@gem_pxp@regular-baseline-src-copy-readible: > > - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4270]) +2 other tests skip > > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html > > > > * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: > > - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#8428]) > > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html > > > > * igt@gem_set_tiling_vs_blt@untiled-to-tiled: > > - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4079]) > > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html > > > > * igt@gem_softpin@evict-snoop-interruptible: > > - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4885]) > > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html > > > > * igt@gem_spin_batch@spin-all-new: > > - shard-dg2: NOTRUN -> [FAIL][50] ([i915#5889]) > > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html > > > > * igt@gem_userptr_blits@access-control: > > - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3297]) > > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@gem_userptr_blits@access-control.html > > > > * igt@gem_userptr_blits@map-fixed-invalidate-busy: > > - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3297] / [i915#4880]) +1 other test skip > > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html > > > > * igt@gem_userptr_blits@unsync-unmap: > > - shard-tglu: NOTRUN -> [SKIP][53] ([i915#3297]) > > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap.html > > > > * igt@gem_userptr_blits@vma-merge: > > - shard-tglu: NOTRUN -> [FAIL][54] ([i915#3318]) > > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@gem_userptr_blits@vma-merge.html > > > > * igt@gen3_render_linear_blits: > > - shard-dg2: NOTRUN -> [SKIP][55] ([fdo#109289]) +5 other tests skip > > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@gen3_render_linear_blits.html > > > > * igt@gen9_exec_parse@bb-start-param: > > - shard-dg2: NOTRUN -> [SKIP][56] ([i915#2856]) +1 other test skip > > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@gen9_exec_parse@bb-start-param.html > > > > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > > - shard-mtlp: [PASS][57] -> [FAIL][58] ([i915#8691]) > > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > > > > * igt@i915_pm_rc6_residency@rc6-idle@rcs0: > > - shard-tglu: NOTRUN -> [WARN][59] ([i915#2681]) +3 other tests warn > > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html > > > > * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > > - shard-rkl: [PASS][60] -> [SKIP][61] ([i915#1397]) > > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > > > > * igt@i915_pm_rpm@modeset-lpsp: > > - shard-dg2: [PASS][62] -> [SKIP][63] ([i915#1397]) > > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp.html > > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp.html > > > > * igt@i915_pm_rpm@modeset-lpsp-stress: > > - shard-dg2: NOTRUN -> [SKIP][64] ([i915#1397]) > > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp-stress.html > > > > * igt@i915_pm_rpm@modeset-non-lpsp: > > - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#1397]) > > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-7/igt@i915_pm_rpm@modeset-non-lpsp.html > > > > * igt@i915_pm_rpm@modeset-non-lpsp-stress: > > - shard-dg1: [PASS][66] -> [SKIP][67] ([i915#1397]) +2 other tests skip > > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@i915_pm_rpm@modeset-non-lpsp-stress.html > > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html > > > > * igt@i915_pm_rps@thresholds-park@gt0: > > - shard-dg2: NOTRUN -> [SKIP][68] ([i915#8925]) > > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@i915_pm_rps@thresholds-park@gt0.html > > > > * igt@i915_query@query-topology-unsupported: > > - shard-dg2: NOTRUN -> [SKIP][69] ([fdo#109302]) > > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@i915_query@query-topology-unsupported.html > > > > * igt@kms_addfb_basic@clobberred-modifier: > > - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4212]) +1 other test skip > > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_addfb_basic@clobberred-modifier.html > > > > * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > > - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3826]) > > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html > > > > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: > > - shard-dg1: NOTRUN -> [SKIP][72] ([i915#8502]) +7 other tests skip > > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html > > > > * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: > > - shard-dg2: NOTRUN -> [FAIL][73] ([i915#8247]) +3 other tests fail > > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html > > > > * igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > - shard-dg2: NOTRUN -> [SKIP][74] ([i915#404]) > > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html > > > > * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: > > - shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#1769]) > > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html > > > > * igt@kms_big_fb@x-tiled-16bpp-rotate-90: > > - shard-dg2: NOTRUN -> [SKIP][76] ([fdo#111614]) +3 other tests skip > > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html > > > > * igt@kms_big_fb@y-tiled-8bpp-rotate-270: > > - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190]) +10 other tests skip > > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html > > > > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: > > - shard-tglu: [PASS][78] -> [FAIL][79] ([i915#3743]) +1 other test fail > > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > > > > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: > > - shard-apl: NOTRUN -> [SKIP][80] ([fdo#109271]) +22 other tests skip > > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > > > > * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: > > - shard-mtlp: NOTRUN -> [SKIP][81] ([fdo#111615]) +1 other test skip > > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html > > > > * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: > > - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4538] / [i915#5190]) +6 other tests skip > > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html > > > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > > - shard-tglu: NOTRUN -> [SKIP][83] ([fdo#111615]) > > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html > > > > * igt@kms_big_joiner@2x-modeset: > > - shard-dg2: NOTRUN -> [SKIP][84] ([i915#2705]) > > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_big_joiner@2x-modeset.html > > > > * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: > > - shard-tglu: NOTRUN -> [SKIP][85] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) > > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html > > > > * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: > > - shard-tglu: NOTRUN -> [SKIP][86] ([i915#5354] / [i915#6095]) +4 other tests skip > > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html > > > > * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: > > - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#6095]) +3 other tests skip > > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html > > > > * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: > > - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3689] / [i915#3886] / [i915#5354]) +8 other tests skip > > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html > > > > * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: > > - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3886] / [i915#6095]) > > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > > > > * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: > > - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3689] / [i915#5354]) +16 other tests skip > > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html > > > > * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > > - shard-apl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#3886]) > > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html > > > > * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs: > > - shard-tglu: NOTRUN -> [SKIP][92] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip > > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html > > > > * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > > - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4087] / [i915#7213]) +3 other tests skip > > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html > > > > * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: > > - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4087]) +3 other tests skip > > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html > > > > * igt@kms_chamelium_color@ctm-0-25: > > - shard-tglu: NOTRUN -> [SKIP][95] ([fdo#111827]) > > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_chamelium_color@ctm-0-25.html > > > > * igt@kms_chamelium_color@ctm-red-to-blue: > > - shard-dg2: NOTRUN -> [SKIP][96] ([fdo#111827]) +1 other test skip > > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_chamelium_color@ctm-red-to-blue.html > > > > * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: > > - shard-dg2: NOTRUN -> [SKIP][97] ([i915#7828]) +7 other tests skip > > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html > > > > * igt@kms_chamelium_frames@dp-crc-fast: > > - shard-tglu: NOTRUN -> [SKIP][98] ([i915#7828]) > > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_chamelium_frames@dp-crc-fast.html > > > > * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: > > - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#7828]) > > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html > > > > * igt@kms_color@deep-color: > > - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3555]) +5 other tests skip > > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_color@deep-color.html > > > > * igt@kms_content_protection@atomic: > > - shard-tglu: NOTRUN -> [SKIP][101] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip > > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_content_protection@atomic.html > > > > * igt@kms_content_protection@dp-mst-lic-type-0: > > - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3299]) > > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-0.html > > > > * igt@kms_content_protection@srm: > > - shard-dg2: NOTRUN -> [SKIP][103] ([i915#7118]) +1 other test skip > > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_content_protection@srm.html > > > > * igt@kms_cursor_crc@cursor-rapid-movement-512x170: > > - shard-tglu: NOTRUN -> [SKIP][104] ([i915#3359]) > > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html > > > > * igt@kms_cursor_crc@cursor-sliding-512x170: > > - shard-dg2: NOTRUN -> [SKIP][105] ([i915#3359]) > > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x170.html > > > > * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: > > - shard-tglu: NOTRUN -> [SKIP][106] ([fdo#109274]) > > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html > > > > * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: > > - shard-dg2: NOTRUN -> [SKIP][107] ([fdo#109274] / [i915#5354]) +5 other tests skip > > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html > > > > * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: > > - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#109274] / [fdo#111767] / [i915#5354]) > > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html > > > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > - shard-glk: [PASS][109] -> [FAIL][110] ([i915#2346]) > > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > > > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > - shard-apl: [PASS][111] -> [FAIL][112] ([i915#2346]) > > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > > > * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: > > - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4103] / [i915#4213]) > > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html > > > > * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: > > - shard-dg1: NOTRUN -> [SKIP][114] ([i915#9227]) > > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html > > > > * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: > > - shard-dg1: NOTRUN -> [SKIP][115] ([i915#9226] / [i915#9261]) +1 other test skip > > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html > > > > * igt@kms_dsc@dsc-basic: > > - shard-dg2: NOTRUN -> [SKIP][116] ([i915#3555] / [i915#3840]) +1 other test skip > > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_dsc@dsc-basic.html > > - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#3555] / [i915#3840] / [i915#9159]) > > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-7/igt@kms_dsc@dsc-basic.html > > > > * igt@kms_flip@2x-dpms-vs-vblank-race: > > - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#109274] / [i915#3637]) > > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_flip@2x-dpms-vs-vblank-race.html > > > > * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: > > - shard-dg2: NOTRUN -> [SKIP][119] ([fdo#109274] / [fdo#111767]) > > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html > > > > * igt@kms_flip@2x-flip-vs-fences-interruptible: > > - shard-dg2: NOTRUN -> [SKIP][120] ([i915#8381]) > > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html > > > > * igt@kms_flip@2x-plain-flip: > > - shard-dg2: NOTRUN -> [SKIP][121] ([fdo#109274]) > > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_flip@2x-plain-flip.html > > > > * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: > > - shard-dg2: NOTRUN -> [SKIP][122] ([i915#2672]) +1 other test skip > > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html > > > > * igt@kms_force_connector_basic@force-load-detect: > > - shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#109285]) > > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_force_connector_basic@force-load-detect.html > > > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: > > - shard-dg2: [PASS][124] -> [FAIL][125] ([i915#6880]) > > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html > > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html > > > > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: > > - shard-dg2: NOTRUN -> [SKIP][126] ([i915#5354]) +33 other tests skip > > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html > > > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite: > > - shard-tglu: NOTRUN -> [SKIP][127] ([fdo#109280]) +4 other tests skip > > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite.html > > > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: > > - shard-snb: NOTRUN -> [SKIP][128] ([fdo#109271]) +101 other tests skip > > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html > > > > * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: > > - shard-dg2: NOTRUN -> [FAIL][129] ([i915#6880]) > > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html > > > > * igt@kms_frontbuffer_tracking@fbc-tiling-y: > > - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#5460]) > > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html > > > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: > > - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3458]) +14 other tests skip > > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html > > > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: > > - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#1825]) > > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html > > > > * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: > > - shard-tglu: NOTRUN -> [SKIP][133] ([fdo#110189]) +5 other tests skip > > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html > > > > * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: > > - shard-dg2: NOTRUN -> [SKIP][134] ([i915#8708]) +22 other tests skip > > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html > > > > * igt@kms_hdr@invalid-metadata-sizes: > > - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#8228]) +1 other test skip > > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html > > > > * igt@kms_plane_multiple@tiling-yf: > > - shard-tglu: NOTRUN -> [SKIP][136] ([i915#3555]) +1 other test skip > > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_plane_multiple@tiling-yf.html > > > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: > > - shard-dg2: NOTRUN -> [FAIL][137] ([i915#8292]) > > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html > > > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: > > - shard-dg2: NOTRUN -> [SKIP][138] ([i915#5176]) +11 other tests skip > > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html > > > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-2: > > - shard-rkl: NOTRUN -> [SKIP][139] ([i915#5176]) +1 other test skip > > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-2.html > > > > * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1: > > - shard-dg1: NOTRUN -> [SKIP][140] ([i915#5176]) +15 other tests skip > > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html > > > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: > > - shard-dg1: NOTRUN -> [SKIP][141] ([i915#5235]) +23 other tests skip > > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html > > > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: > > - shard-dg2: NOTRUN -> [SKIP][142] ([i915#5235]) +23 other tests skip > > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html > > > > * igt@kms_prime@basic-crc-hybrid: > > - shard-dg2: NOTRUN -> [SKIP][143] ([i915#6524] / [i915#6805]) > > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_prime@basic-crc-hybrid.html > > > > * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: > > - shard-tglu: NOTRUN -> [SKIP][144] ([i915#658]) > > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html > > > > * igt@kms_psr2_su@page_flip-xrgb8888: > > - shard-apl: NOTRUN -> [SKIP][145] ([fdo#109271] / [i915#658]) > > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_psr2_su@page_flip-xrgb8888.html > > > > * igt@kms_psr@primary_page_flip: > > - shard-dg2: NOTRUN -> [SKIP][146] ([i915#1072]) +6 other tests skip > > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@kms_psr@primary_page_flip.html > > > > * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: > > - shard-dg2: NOTRUN -> [SKIP][147] ([i915#4235]) +1 other test skip > > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html > > > > * igt@kms_selftest@drm_format: > > - shard-apl: NOTRUN -> [SKIP][148] ([fdo#109271] / [i915#8661]) > > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_selftest@drm_format.html > > > > * igt@kms_universal_plane@cursor-fb-leak-pipe-d: > > - shard-tglu: [PASS][149] -> [FAIL][150] ([i915#9196]) +1 other test fail > > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html > > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html > > - shard-dg2: [PASS][151] -> [FAIL][152] ([i915#9196]) > > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html > > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-2/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html > > > > * igt@perf@gen8-unprivileged-single-ctx-counters: > > - shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#109289]) > > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@perf@gen8-unprivileged-single-ctx-counters.html > > > > * igt@perf_pmu@event-wait@rcs0: > > - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#112283]) > > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@perf_pmu@event-wait@rcs0.html > > > > * igt@perf_pmu@rc6-suspend: > > - shard-dg2: [PASS][155] -> [FAIL][156] ([fdo#103375]) > > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-10/igt@perf_pmu@rc6-suspend.html > > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-5/igt@perf_pmu@rc6-suspend.html > > > > * igt@prime_vgem@basic-read: > > - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3291] / [i915#3708]) > > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@prime_vgem@basic-read.html > > > > * igt@prime_vgem@fence-write-hang: > > - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3708]) > > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-10/igt@prime_vgem@fence-write-hang.html > > > > * igt@runner@aborted: > > - shard-mtlp: NOTRUN -> ([FAIL][159], [FAIL][160]) ([i915#7812]) > > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-7/igt@runner@aborted.html > > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-1/igt@runner@aborted.html > > > > * igt@sysfs_heartbeat_interval@mixed@ccs0: > > - shard-mtlp: [PASS][161] -> [DMESG-WARN][162] ([i915#8552]) > > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@ccs0.html > > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@ccs0.html > > > > * igt@v3d/v3d_submit_cl@simple-flush-cache: > > - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#109315] / [i915#2575]) +1 other test skip > > [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@v3d/v3d_submit_cl@simple-flush-cache.html > > > > * igt@v3d/v3d_submit_csd@multiple-job-submission: > > - shard-dg2: NOTRUN -> [SKIP][164] ([i915#2575]) +11 other tests skip > > [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@v3d/v3d_submit_csd@multiple-job-submission.html > > > > * igt@v3d/v3d_submit_csd@single-in-sync: > > - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#2575]) > > [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-7/igt@v3d/v3d_submit_csd@single-in-sync.html > > > > * igt@vc4/vc4_label_bo@set-kernel-name: > > - shard-dg2: NOTRUN -> [SKIP][166] ([i915#7711]) +6 other tests skip > > [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@vc4/vc4_label_bo@set-kernel-name.html > > > > * igt@vc4/vc4_purgeable_bo@mark-willneed: > > - shard-tglu: NOTRUN -> [SKIP][167] ([i915#2575]) +1 other test skip > > [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@vc4/vc4_purgeable_bo@mark-willneed.html > > > > * igt@vc4/vc4_wait_bo@unused-bo-1ns: > > - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#7711]) +2 other tests skip > > [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@vc4/vc4_wait_bo@unused-bo-1ns.html > > > > > >#### Possible fixes #### > > > > * igt@drm_fdinfo@most-busy-check-all@rcs0: > > - shard-rkl: [FAIL][169] ([i915#7742]) -> [PASS][170] +1 other test pass > > [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html > > [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html > > > > * igt@gem_ctx_exec@basic-nohangcheck: > > - shard-rkl: [FAIL][171] ([i915#6268]) -> [PASS][172] > > [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html > > [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html > > > > * igt@gem_eio@hibernate: > > - shard-tglu: [ABORT][173] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][174] > > [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-10/igt@gem_eio@hibernate.html > > [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-9/igt@gem_eio@hibernate.html > > > > * igt@gem_exec_fair@basic-none-share@rcs0: > > - shard-rkl: [FAIL][175] ([i915#2842]) -> [PASS][176] > > [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html > > [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html > > > > * igt@gem_exec_fair@basic-pace-share@rcs0: > > - shard-glk: [FAIL][177] ([i915#2842]) -> [PASS][178] > > [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html > > [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html > > > > * igt@gem_softpin@noreloc-s3: > > - shard-dg2: [FAIL][179] ([fdo#103375]) -> [PASS][180] > > [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@gem_softpin@noreloc-s3.html > > [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-11/igt@gem_softpin@noreloc-s3.html > > > > * igt@i915_hangman@gt-error-state-capture@vecs0: > > - shard-mtlp: [ABORT][181] ([i915#9262]) -> [PASS][182] +4 other tests pass > > [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-3/igt@i915_hangman@gt-error-state-capture@vecs0.html > > [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-7/igt@i915_hangman@gt-error-state-capture@vecs0.html > > > > * igt@i915_pm_rc6_residency@rc6-idle@vcs0: > > - shard-dg1: [FAIL][183] ([i915#3591]) -> [PASS][184] +1 other test pass > > [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html > > [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html > > > > * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > > - shard-dg1: [SKIP][185] ([i915#1397]) -> [PASS][186] +2 other tests pass > > [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > > [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > > > > * igt@i915_pm_rpm@i2c: > > - shard-dg2: [FAIL][187] ([i915#8717]) -> [PASS][188] > > [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-2/igt@i915_pm_rpm@i2c.html > > [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@i915_pm_rpm@i2c.html > > > > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > > - shard-tglu: [FAIL][189] ([i915#3743]) -> [PASS][190] > > [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html > > [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html > > > > * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: > > - shard-dg2: [INCOMPLETE][191] ([i915#9203]) -> [PASS][192] > > [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html > > [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html > > > > * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: > > - shard-dg2: [FAIL][193] ([i915#6880]) -> [PASS][194] > > [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html > > [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html > > > > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: > > - shard-apl: [INCOMPLETE][195] -> [PASS][196] > > [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html > > [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html > > > > * igt@kms_universal_plane@cursor-fb-leak-pipe-c: > > - shard-tglu: [FAIL][197] ([i915#9196]) -> [PASS][198] > > [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html > > [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html > > > > * igt@perf_pmu@busy-double-start@vecs1: > > - shard-dg2: [FAIL][199] ([i915#4349]) -> [PASS][200] +3 other tests pass > > [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html > > [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html > > > > * igt@syncobj_wait@invalid-single-wait-unsubmitted: > > - shard-dg1: [DMESG-WARN][201] ([i915#1982] / [i915#4423]) -> [PASS][202] > > [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@syncobj_wait@invalid-single-wait-unsubmitted.html > > [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-18/igt@syncobj_wait@invalid-single-wait-unsubmitted.html > > > > > >#### Warnings #### > > > > * igt@gem_lmem_swapping@smem-oom@lmem0: > > - shard-dg2: [TIMEOUT][203] ([i915#5493]) -> [DMESG-WARN][204] ([i915#4936] / [i915#5493]) > > [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html > > [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html > > > > * igt@i915_hangman@engine-error-state-capture@vecs0: > > - shard-mtlp: [DMESG-WARN][205] ([i915#9262]) -> [ABORT][206] ([i915#9262]) > > [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-1/igt@i915_hangman@engine-error-state-capture@vecs0.html > > [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-4/igt@i915_hangman@engine-error-state-capture@vecs0.html > > > > * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs: > > - shard-dg1: [SKIP][207] ([i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][208] ([i915#5354] / [i915#6095]) > > [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs.html > > [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-18/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs.html > > > > * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs: > > - shard-dg1: [SKIP][209] ([i915#3689] / [i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][210] ([i915#3689] / [i915#5354] / [i915#6095]) > > [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html > > [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-18/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html > > > > * igt@kms_content_protection@type1: > > - shard-dg2: [SKIP][211] ([i915#7118] / [i915#7162]) -> [SKIP][212] ([i915#7118]) > > [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-11/igt@kms_content_protection@type1.html > > [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg2-6/igt@kms_content_protection@type1.html > > > > * igt@kms_fbcon_fbt@psr-suspend: > > - shard-rkl: [SKIP][213] ([i915#3955]) -> [SKIP][214] ([fdo#110189] / [i915#3955]) > > [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html > > [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html > > > > * igt@kms_force_connector_basic@force-load-detect: > > - shard-rkl: [SKIP][215] ([fdo#109285] / [i915#4098]) -> [SKIP][216] ([fdo#109285]) > > [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html > > [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html > > > > * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: > > - shard-dg1: [SKIP][217] ([i915#3458] / [i915#4423]) -> [SKIP][218] ([i915#3458]) > > [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html > > [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html > > > > * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4: > > - shard-dg1: [SKIP][219] ([i915#4423] / [i915#5176]) -> [SKIP][220] ([i915#5176]) > > [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4.html > > [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4.html > > > > * igt@kms_psr@cursor_plane_move: > > - shard-dg1: [SKIP][221] ([i915#1072]) -> [SKIP][222] ([i915#1072] / [i915#4078]) > > [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-19/igt@kms_psr@cursor_plane_move.html > > [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-12/igt@kms_psr@cursor_plane_move.html > > > > * igt@kms_psr@sprite_plane_onoff: > > - shard-dg1: [SKIP][223] ([i915#1072] / [i915#4078]) -> [SKIP][224] ([i915#1072]) +1 other test skip > > [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@kms_psr@sprite_plane_onoff.html > > [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-dg1-15/igt@kms_psr@sprite_plane_onoff.html > > > > * igt@sysfs_heartbeat_interval@mixed@vecs0: > > - shard-mtlp: [FAIL][225] ([i915#1731]) -> [ABORT][226] ([i915#8552]) > > [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html > > [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html > > > > > > {name}: This element is suppressed. This means it is ignored when computing > > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > > [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > > [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 > > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > > [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 > > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > > [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 > > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > > [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 > > [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 > > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > > [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 > > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > > [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 > > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > > [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 > > [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 > > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > > [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > > [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 > > [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 > > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > > [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 > > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > > [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 > > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > > [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 > > [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 > > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > > [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 > > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > > [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 > > [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 > > [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 > > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > > [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 > > [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 > > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > > [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 > > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > > [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 > > [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 > > [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 > > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > > [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 > > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > > [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 > > [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 > > [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 > > [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 > > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > > [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 > > [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 > > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > > [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 > > [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 > > [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 > > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > > [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 > > [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 > > [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 > > [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 > > [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 > > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > > [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 > > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > > [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 > > [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 > > [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 > > [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 > > [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 > > [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 > > [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 > > [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 > > [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 > > [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 > > [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 > > [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 > > [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 > > [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 > > [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 > > [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 > > [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 > > [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 > > [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 > > [i915#9203]: https://gitlab.freedesktop.org/drm/intel/issues/9203 > > [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 > > [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 > > [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 > > [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 > > > > > >Build changes > >------------- > > > > * Linux: CI_DRM_13623 -> Patchwork_123551v2 > > > > CI-20190529: 20190529 > > CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux > > IGT_7480: a8d38db9ac258d7fd71b2cf7607e259a864f95be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > Patchwork_123551v2: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux > > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > > > >== Logs == > > > >For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123551v2/index.html
diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c index e6d3027c821d..abd607b564f1 100644 --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c @@ -29,8 +29,6 @@ #define INTEL_CX0_LANE1 BIT(1) #define INTEL_CX0_BOTH_LANES (INTEL_CX0_LANE1 | INTEL_CX0_LANE0) -#define INTEL_CX0_MSGBUS_TIMER_BUMPED_VAL 0x200 - bool intel_is_c10phy(struct drm_i915_private *i915, enum phy phy) { if (DISPLAY_VER_FULL(i915) == IP_VER(14, 0) && phy < PHY_C) @@ -73,19 +71,38 @@ assert_dc_off(struct drm_i915_private *i915) drm_WARN_ON(&i915->drm, !enabled); } +static void intel_cx0_program_msgbus_timer(struct intel_encoder *encoder) +{ + int lane; + struct drm_i915_private *i915 = to_i915(encoder->base.dev); + + for_each_cx0_lane_in_mask(INTEL_CX0_BOTH_LANES, lane) + intel_de_rmw(i915, + XELPDP_PORT_MSGBUS_TIMER(encoder->port, lane), + XELPDP_PORT_MSGBUS_TIMER_VAL_MASK, + XELPDP_PORT_MSGBUS_TIMER_VAL); +} + /* * Prepare HW for CX0 phy transactions. * * It is required that PSR and DC5/6 are disabled before any CX0 message * bus transaction is executed. + * + * We also do the msgbus timer programming here to ensure that the timer + * is already programmed before any access to the msgbus. */ static intel_wakeref_t intel_cx0_phy_transaction_begin(struct intel_encoder *encoder) { + intel_wakeref_t wakeref; struct drm_i915_private *i915 = to_i915(encoder->base.dev); struct intel_dp *intel_dp = enc_to_intel_dp(encoder); intel_psr_pause(intel_dp); - return intel_display_power_get(i915, POWER_DOMAIN_DC_OFF); + wakeref = intel_display_power_get(i915, POWER_DOMAIN_DC_OFF); + intel_cx0_program_msgbus_timer(encoder); + + return wakeref; } static void intel_cx0_phy_transaction_end(struct intel_encoder *encoder, intel_wakeref_t wakeref) @@ -121,42 +138,6 @@ static void intel_cx0_bus_reset(struct drm_i915_private *i915, enum port port, i intel_clear_response_ready_flag(i915, port, lane); } -/* - * Check if there was a timeout detected by the hardware in the message bus - * and bump the threshold if so. - */ -static void intel_cx0_bus_check_and_bump_timer(struct drm_i915_private *i915, - enum port port, int lane) -{ - enum phy phy = intel_port_to_phy(i915, port); - i915_reg_t reg; - u32 val; - u32 timer_val; - - reg = XELPDP_PORT_MSGBUS_TIMER(port, lane); - val = intel_de_read(i915, reg); - - if (!(val & XELPDP_PORT_MSGBUS_TIMER_TIMED_OUT)) { - drm_warn(&i915->drm, - "PHY %c lane %d: hardware did not detect a timeout\n", - phy_name(phy), lane); - return; - } - - timer_val = REG_FIELD_GET(XELPDP_PORT_MSGBUS_TIMER_VAL_MASK, val); - - if (timer_val == INTEL_CX0_MSGBUS_TIMER_BUMPED_VAL) - return; - - val &= ~XELPDP_PORT_MSGBUS_TIMER_VAL_MASK; - val |= XELPDP_PORT_MSGBUS_TIMER_VAL(INTEL_CX0_MSGBUS_TIMER_BUMPED_VAL); - - drm_dbg_kms(&i915->drm, - "PHY %c lane %d: increasing msgbus timer threshold to %#x\n", - phy_name(phy), lane, INTEL_CX0_MSGBUS_TIMER_BUMPED_VAL); - intel_de_write(i915, reg, val); -} - static int intel_cx0_wait_for_ack(struct drm_i915_private *i915, enum port port, int command, int lane, u32 *val) { @@ -170,7 +151,13 @@ static int intel_cx0_wait_for_ack(struct drm_i915_private *i915, enum port port, XELPDP_MSGBUS_TIMEOUT_SLOW, val)) { drm_dbg_kms(&i915->drm, "PHY %c Timeout waiting for message ACK. Status: 0x%x\n", phy_name(phy), *val); - intel_cx0_bus_check_and_bump_timer(i915, port, lane); + + if (!(intel_de_read(i915, XELPDP_PORT_MSGBUS_TIMER(port, lane)) & + XELPDP_PORT_MSGBUS_TIMER_TIMED_OUT)) + drm_dbg_kms(&i915->drm, + "PHY %c Hardware did not detect a timeout\n", + phy_name(phy)); + intel_cx0_bus_reset(i915, port, lane); return -ETIMEDOUT; } @@ -2737,39 +2724,45 @@ static void intel_cx0pll_enable(struct intel_encoder *encoder, intel_cx0_powerdown_change_sequence(i915, encoder->port, INTEL_CX0_BOTH_LANES, CX0_P2_STATE_READY); - /* 4. Program PHY internal PLL internal registers. */ + /* + * 4. Program PORT_MSGBUS_TIMER register's Message Bus Timer field to 0xA000. + * (This is done inside intel_cx0_phy_transaction_begin(), since we would need + * the right timer thresholds for readouts too.) + */ + + /* 5. Program PHY internal PLL internal registers. */ if (intel_is_c10phy(i915, phy)) intel_c10_pll_program(i915, crtc_state, encoder); else intel_c20_pll_program(i915, crtc_state, encoder); /* - * 5. Program the enabled and disabled owned PHY lane + * 6. Program the enabled and disabled owned PHY lane * transmitters over message bus */ intel_cx0_program_phy_lane(i915, encoder, crtc_state->lane_count, lane_reversal); /* - * 6. Follow the Display Voltage Frequency Switching - Sequence + * 7. Follow the Display Voltage Frequency Switching - Sequence * Before Frequency Change. We handle this step in bxt_set_cdclk(). */ /* - * 7. Program DDI_CLK_VALFREQ to match intended DDI + * 8. Program DDI_CLK_VALFREQ to match intended DDI * clock frequency. */ intel_de_write(i915, DDI_CLK_VALFREQ(encoder->port), crtc_state->port_clock); /* - * 8. Set PORT_CLOCK_CTL register PCLK PLL Request + * 9. Set PORT_CLOCK_CTL register PCLK PLL Request * LN<Lane for maxPCLK> to "1" to enable PLL. */ intel_de_rmw(i915, XELPDP_PORT_CLOCK_CTL(encoder->port), intel_cx0_get_pclk_pll_request(INTEL_CX0_BOTH_LANES), intel_cx0_get_pclk_pll_request(maxpclk_lane)); - /* 9. Poll on PORT_CLOCK_CTL PCLK PLL Ack LN<Lane for maxPCLK> == "1". */ + /* 10. Poll on PORT_CLOCK_CTL PCLK PLL Ack LN<Lane for maxPCLK> == "1". */ if (__intel_de_wait_for_register(i915, XELPDP_PORT_CLOCK_CTL(encoder->port), intel_cx0_get_pclk_pll_ack(INTEL_CX0_BOTH_LANES), intel_cx0_get_pclk_pll_ack(maxpclk_lane), @@ -2778,7 +2771,7 @@ static void intel_cx0pll_enable(struct intel_encoder *encoder, phy_name(phy), XELPDP_PCLK_PLL_ENABLE_TIMEOUT_US); /* - * 10. Follow the Display Voltage Frequency Switching Sequence After + * 11. Follow the Display Voltage Frequency Switching Sequence After * Frequency Change. We handle this step in bxt_set_cdclk(). */ diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h b/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h index b2db4cc366d6..adf8f4ce0d49 100644 --- a/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h @@ -121,7 +121,7 @@ _XELPDP_PORT_MSGBUS_TIMER_LN0_USBC2) + (lane) * 4) #define XELPDP_PORT_MSGBUS_TIMER_TIMED_OUT REG_BIT(31) #define XELPDP_PORT_MSGBUS_TIMER_VAL_MASK REG_GENMASK(23, 0) -#define XELPDP_PORT_MSGBUS_TIMER_VAL(val) REG_FIELD_PREP(XELPDP_PORT_MSGBUS_TIMER_VAL_MASK, val) +#define XELPDP_PORT_MSGBUS_TIMER_VAL REG_FIELD_PREP(XELPDP_PORT_MSGBUS_TIMER_VAL_MASK, 0xa000) #define _XELPDP_PORT_CLOCK_CTL_A 0x640E0 #define _XELPDP_PORT_CLOCK_CTL_B 0x641E0
There was a recent update in the BSpec adding an extra step to the PLL enable sequence, which is for programming the msgbus timer. Since we also touch PHY registers during hw readout, let's do the programming when starting a transaction rather than only when doing the PLL enable sequence. This might be the missing step that was causing the timeouts that we have recently seen during C20 SRAM register programming sequences. With this in place, we shouldn't need the logic to bump the timer thresholds, since now we have a documented value that should be set peform programming the registers. As such, let's also remove intel_cx0_bus_check_and_bump_timer(), but keep the part that checks if hardware really detected a timeout, which might be useful debugging information. v2: - Use debug level instead of warning for the message notifying that the hardware did not detect the timeout. (Mika) - Got a new BSpec update clarifying that we need to program the msgbus timer of both PHY lanes. Update the changes to reflect that. (Gustavo) BSpec: 64568 Cc: Mika Kahola <mika.kahola@intel.com> Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com> --- drivers/gpu/drm/i915/display/intel_cx0_phy.c | 87 +++++++++---------- .../gpu/drm/i915/display/intel_cx0_phy_regs.h | 2 +- 2 files changed, 41 insertions(+), 48 deletions(-)