* [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2
@ 2024-09-27 14:35 Ville Syrjala
2024-09-27 14:35 ` [PATCH 1/4] drm/i915: Introduce i915_has_legacy_blc_interrupt() Ville Syrjala
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Ville Syrjala @ 2024-09-27 14:35 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Eliminate the special gen2 irq code by simply reusing the
gen3+ code on gen2. Works just fine on actual hardware.
I generated the last patch with -U20 to help with review.
Unfortunately it still didn't pick up i915_irq_handler()
I don't suppose there's a magic knob to tell git diff
to include a specific function wholesale in the context?
Ville Syrjälä (4):
drm/i915: Introduce i915_has_legacy_blc_interrupt()
drm/i915: Clean up gen3 hotplug irq setup
drm/i915: Clean up some comments in gmch irq code
drm/i915: Switch over to gen3 irq code on gen2
.../gpu/drm/i915/display/intel_display_irq.c | 38 ++--
.../gpu/drm/i915/display/intel_display_irq.h | 1 -
drivers/gpu/drm/i915/i915_irq.c | 202 ++----------------
3 files changed, 28 insertions(+), 213 deletions(-)
--
2.45.2
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH 1/4] drm/i915: Introduce i915_has_legacy_blc_interrupt() 2024-09-27 14:35 [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 Ville Syrjala @ 2024-09-27 14:35 ` Ville Syrjala 2024-09-27 14:35 ` [PATCH 2/4] drm/i915: Clean up gen3 hotplug irq setup Ville Syrjala ` (6 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Ville Syrjala @ 2024-09-27 14:35 UTC (permalink / raw) To: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> i915_has_asle() is a bit of a mess. It does some kind of partial check whether the platform has the legacy BLC interrupt or not, and then it checks whether OpRegion ASLE is present. Let's split the legacy BLC interrupt check into its own thing, and while at it let's make it accurate. Currently it misses i85x (not a problem since gen2 never has OpRegion, nor do we currently call i915_enable_asle_pipestat() on gen2), and it doesn't reject ILK-M (not that anyone should call this on ILK). The exlusion of VLV/CHV (where one might even consider calling this, being gmch platforms) only happens due to .is_mobile==false. List the platforms that actually do have the legacy BLC interrupt in a bit more explicit fashion. i915gm/i945gm/i956gm/gm45 we can cover with a display_ver+is_mobile check, pnv needs an exception due to having a variant with is_mobile==false, and i85x is the only relevant gen2 platform so easier to handle on its own. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- .../gpu/drm/i915/display/intel_display_irq.c | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.c b/drivers/gpu/drm/i915/display/intel_display_irq.c index 6878dde85031..ba82830c464e 100644 --- a/drivers/gpu/drm/i915/display/intel_display_irq.c +++ b/drivers/gpu/drm/i915/display/intel_display_irq.c @@ -272,14 +272,17 @@ void i915_disable_pipestat(struct drm_i915_private *dev_priv, intel_uncore_posting_read(&dev_priv->uncore, reg); } -static bool i915_has_asle(struct drm_i915_private *i915) +static bool i915_has_legacy_blc_interrupt(struct intel_display *display) { - struct intel_display *display = &i915->display; + struct drm_i915_private *i915 = to_i915(display->drm); - if (!IS_PINEVIEW(i915) && !IS_MOBILE(i915)) - return false; + if (IS_I85X(i915)) + return true; - return intel_opregion_asle_present(display); + if (IS_PINEVIEW(i915)) + return true; + + return IS_DISPLAY_VER(display, 3, 4) && IS_MOBILE(i915); } /** @@ -288,7 +291,12 @@ static bool i915_has_asle(struct drm_i915_private *i915) */ void i915_enable_asle_pipestat(struct drm_i915_private *dev_priv) { - if (!i915_has_asle(dev_priv)) + struct intel_display *display = &dev_priv->display; + + if (!intel_opregion_asle_present(display)) + return; + + if (!i915_has_legacy_blc_interrupt(display)) return; spin_lock_irq(&dev_priv->irq_lock); -- 2.45.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/4] drm/i915: Clean up gen3 hotplug irq setup 2024-09-27 14:35 [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 Ville Syrjala 2024-09-27 14:35 ` [PATCH 1/4] drm/i915: Introduce i915_has_legacy_blc_interrupt() Ville Syrjala @ 2024-09-27 14:35 ` Ville Syrjala 2024-09-27 14:35 ` [PATCH 3/4] drm/i915: Clean up some comments in gmch irq code Ville Syrjala ` (5 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Ville Syrjala @ 2024-09-27 14:35 UTC (permalink / raw) To: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> For the "always on/unmasked" interrupts we initialize dev_priv->irq_mask first, then enable_mask. Follow the same order for the hotplug interrupt so that things are a bit less confusing. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/i915_irq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index a784803f709a..ee7a2a49f08e 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c @@ -1065,10 +1065,10 @@ static void i915_irq_postinstall(struct drm_i915_private *dev_priv) I915_USER_INTERRUPT; if (I915_HAS_HOTPLUG(dev_priv)) { - /* Enable in IER... */ - enable_mask |= I915_DISPLAY_PORT_INTERRUPT; /* and unmask in IMR */ dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT; + /* Enable in IER... */ + enable_mask |= I915_DISPLAY_PORT_INTERRUPT; } GEN3_IRQ_INIT(uncore, GEN2_, dev_priv->irq_mask, enable_mask); -- 2.45.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/4] drm/i915: Clean up some comments in gmch irq code 2024-09-27 14:35 [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 Ville Syrjala 2024-09-27 14:35 ` [PATCH 1/4] drm/i915: Introduce i915_has_legacy_blc_interrupt() Ville Syrjala 2024-09-27 14:35 ` [PATCH 2/4] drm/i915: Clean up gen3 hotplug irq setup Ville Syrjala @ 2024-09-27 14:35 ` Ville Syrjala 2024-09-27 14:35 ` [PATCH 4/4] drm/i915: Switch over to gen3 irq code on gen2 Ville Syrjala ` (4 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Ville Syrjala @ 2024-09-27 14:35 UTC (permalink / raw) To: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> Clean up some comments in the gmch irq code: - drop redundant comments - s/iir/IIR/ to make it clear it's referring to the register Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/i915_irq.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index ee7a2a49f08e..f02414dead8c 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c @@ -298,7 +298,7 @@ static irqreturn_t valleyview_irq_handler(int irq, void *arg) hotplug_status = i9xx_hpd_irq_ack(dev_priv); /* Call regardless, as some status bits might not be - * signalled in iir */ + * signalled in IIR */ i9xx_pipestat_irq_ack(dev_priv, iir, pipe_stats); if (iir & (I915_LPE_PIPE_A_INTERRUPT | @@ -380,7 +380,7 @@ static irqreturn_t cherryview_irq_handler(int irq, void *arg) hotplug_status = i9xx_hpd_irq_ack(dev_priv); /* Call regardless, as some status bits might not be - * signalled in iir */ + * signalled in IIR */ i9xx_pipestat_irq_ack(dev_priv, iir, pipe_stats); if (iir & (I915_LPE_PIPE_A_INTERRUPT | @@ -1050,7 +1050,6 @@ static void i915_irq_postinstall(struct drm_i915_private *dev_priv) intel_uncore_write(uncore, EMR, i9xx_error_mask(dev_priv)); - /* Unmask the interrupts that we always want on. */ dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | @@ -1065,9 +1064,7 @@ static void i915_irq_postinstall(struct drm_i915_private *dev_priv) I915_USER_INTERRUPT; if (I915_HAS_HOTPLUG(dev_priv)) { - /* and unmask in IMR */ dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT; - /* Enable in IER... */ enable_mask |= I915_DISPLAY_PORT_INTERRUPT; } @@ -1111,7 +1108,7 @@ static irqreturn_t i915_irq_handler(int irq, void *arg) hotplug_status = i9xx_hpd_irq_ack(dev_priv); /* Call regardless, as some status bits might not be - * signalled in iir */ + * signalled in IIR */ i9xx_pipestat_irq_ack(dev_priv, iir, pipe_stats); if (iir & I915_MASTER_ERROR_INTERRUPT) @@ -1174,7 +1171,6 @@ static void i965_irq_postinstall(struct drm_i915_private *dev_priv) intel_uncore_write(uncore, EMR, i965_error_mask(dev_priv)); - /* Unmask the interrupts that we always want on. */ dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT | I915_DISPLAY_PORT_INTERRUPT | @@ -1233,7 +1229,7 @@ static irqreturn_t i965_irq_handler(int irq, void *arg) hotplug_status = i9xx_hpd_irq_ack(dev_priv); /* Call regardless, as some status bits might not be - * signalled in iir */ + * signalled in IIR */ i9xx_pipestat_irq_ack(dev_priv, iir, pipe_stats); if (iir & I915_MASTER_ERROR_INTERRUPT) -- 2.45.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 4/4] drm/i915: Switch over to gen3 irq code on gen2 2024-09-27 14:35 [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 Ville Syrjala ` (2 preceding siblings ...) 2024-09-27 14:35 ` [PATCH 3/4] drm/i915: Clean up some comments in gmch irq code Ville Syrjala @ 2024-09-27 14:35 ` Ville Syrjala 2024-09-27 14:45 ` Ville Syrjälä 2024-09-27 14:56 ` [PATCH 0/4] drm/i915: Use the gen3+ " Jani Nikula ` (3 subsequent siblings) 7 siblings, 1 reply; 11+ messages in thread From: Ville Syrjala @ 2024-09-27 14:35 UTC (permalink / raw) To: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> The only real reason why we have the gen2 vs. gen3+ split in irq handling is that bspec claims that IIR/IMR/IER/ISR and EMR are only 16 bits on gen2, as opposed to being 32 bits on gen3+. That doesn't seem to be a meaningful distinction as 32bit access to these registers works perfectly fine on gen2 Interestingly the 16 msbs of IMR are in fact hardcoded to 1 on gen2, which to me indicates that 32bit access was the plan all along, and perhaps someone just forgot to update the spec. Nuke the special 16bit gen2 irq code and switch over to the gen3 code. Gen2 doesn't have the ASLE interrupt, which just needs a small tweak in i915_irq_postinstall(). And so far we've not had a codepath that could enable the legacy BLC interrupt on gen2. Now we do, but we'll never actually do it since gen2 machines don't have OpRegion. (and neither do i915/i945 machines btw). On these older platforms the legacy BLC interrupt is meant to be used in conjunction with the LBPC backlight stuff, but we never actually switch off the legacy/combination mode and thus don't use the interrupt either. This was quickly smoke tested on all gen2 variants. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- .../gpu/drm/i915/display/intel_display_irq.c | 18 -- .../gpu/drm/i915/display/intel_display_irq.h | 1 - drivers/gpu/drm/i915/i915_irq.c | 188 +----------------- 3 files changed, 9 insertions(+), 198 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.c b/drivers/gpu/drm/i915/display/intel_display_irq.c index ba82830c464e..8c548ee56c12 100644 --- a/drivers/gpu/drm/i915/display/intel_display_irq.c +++ b/drivers/gpu/drm/i915/display/intel_display_irq.c @@ -476,62 +476,44 @@ void i9xx_pipestat_irq_ack(struct drm_i915_private *dev_priv, pipe_stats[pipe] = intel_uncore_read(&dev_priv->uncore, reg) & status_mask; enable_mask = i915_pipestat_enable_mask(dev_priv, pipe); /* * Clear the PIPE*STAT regs before the IIR * * Toggle the enable bits to make sure we get an * edge in the ISR pipe event bit if we don't clear * all the enabled status bits. Otherwise the edge * triggered IIR on i965/g4x wouldn't notice that * an interrupt is still pending. */ if (pipe_stats[pipe]) { intel_uncore_write(&dev_priv->uncore, reg, pipe_stats[pipe]); intel_uncore_write(&dev_priv->uncore, reg, enable_mask); } } spin_unlock(&dev_priv->irq_lock); } -void i8xx_pipestat_irq_handler(struct drm_i915_private *dev_priv, - u16 iir, u32 pipe_stats[I915_MAX_PIPES]) -{ - enum pipe pipe; - - for_each_pipe(dev_priv, pipe) { - if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS) - intel_handle_vblank(dev_priv, pipe); - - if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS) - i9xx_pipe_crc_irq_handler(dev_priv, pipe); - - if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS) - intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe); - } -} - void i915_pipestat_irq_handler(struct drm_i915_private *dev_priv, u32 iir, u32 pipe_stats[I915_MAX_PIPES]) { struct intel_display *display = &dev_priv->display; - bool blc_event = false; enum pipe pipe; for_each_pipe(dev_priv, pipe) { if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS) intel_handle_vblank(dev_priv, pipe); if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS) blc_event = true; if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS) i9xx_pipe_crc_irq_handler(dev_priv, pipe); if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS) intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe); } if (blc_event || (iir & I915_ASLE_INTERRUPT)) intel_opregion_asle_intr(display); } diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.h b/drivers/gpu/drm/i915/display/intel_display_irq.h index 093e356a2894..bf9d269d0e3f 100644 --- a/drivers/gpu/drm/i915/display/intel_display_irq.h +++ b/drivers/gpu/drm/i915/display/intel_display_irq.h @@ -58,25 +58,24 @@ void i9xx_display_irq_reset(struct drm_i915_private *i915); void vlv_display_irq_reset(struct drm_i915_private *i915); void gen8_display_irq_reset(struct drm_i915_private *i915); void gen11_display_irq_reset(struct drm_i915_private *i915); void vlv_display_irq_postinstall(struct drm_i915_private *i915); void ilk_de_irq_postinstall(struct drm_i915_private *i915); void gen8_de_irq_postinstall(struct drm_i915_private *i915); void gen11_de_irq_postinstall(struct drm_i915_private *i915); void dg1_de_irq_postinstall(struct drm_i915_private *i915); u32 i915_pipestat_enable_mask(struct drm_i915_private *i915, enum pipe pipe); void i915_enable_pipestat(struct drm_i915_private *i915, enum pipe pipe, u32 status_mask); void i915_disable_pipestat(struct drm_i915_private *i915, enum pipe pipe, u32 status_mask); void i915_enable_asle_pipestat(struct drm_i915_private *i915); void i9xx_pipestat_irq_ack(struct drm_i915_private *i915, u32 iir, u32 pipe_stats[I915_MAX_PIPES]); void i915_pipestat_irq_handler(struct drm_i915_private *i915, u32 iir, u32 pipe_stats[I915_MAX_PIPES]); void i965_pipestat_irq_handler(struct drm_i915_private *i915, u32 iir, u32 pipe_stats[I915_MAX_PIPES]); void valleyview_pipestat_irq_handler(struct drm_i915_private *i915, u32 pipe_stats[I915_MAX_PIPES]); -void i8xx_pipestat_irq_handler(struct drm_i915_private *i915, u16 iir, u32 pipe_stats[I915_MAX_PIPES]); void intel_display_irq_init(struct drm_i915_private *i915); #endif /* __INTEL_DISPLAY_IRQ_H__ */ diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index f02414dead8c..ef1a60fc26fa 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c @@ -75,111 +75,71 @@ static inline void pmu_irq_stats(struct drm_i915_private *i915, * should at least prevent store tearing. */ WRITE_ONCE(i915->pmu.irq_count, i915->pmu.irq_count + 1); } void gen3_irq_reset(struct intel_uncore *uncore, i915_reg_t imr, i915_reg_t iir, i915_reg_t ier) { intel_uncore_write(uncore, imr, 0xffffffff); intel_uncore_posting_read(uncore, imr); intel_uncore_write(uncore, ier, 0); /* IIR can theoretically queue up two events. Be paranoid. */ intel_uncore_write(uncore, iir, 0xffffffff); intel_uncore_posting_read(uncore, iir); intel_uncore_write(uncore, iir, 0xffffffff); intel_uncore_posting_read(uncore, iir); } -static void gen2_irq_reset(struct intel_uncore *uncore) -{ - intel_uncore_write16(uncore, GEN2_IMR, 0xffff); - intel_uncore_posting_read16(uncore, GEN2_IMR); - - intel_uncore_write16(uncore, GEN2_IER, 0); - - /* IIR can theoretically queue up two events. Be paranoid. */ - intel_uncore_write16(uncore, GEN2_IIR, 0xffff); - intel_uncore_posting_read16(uncore, GEN2_IIR); - intel_uncore_write16(uncore, GEN2_IIR, 0xffff); - intel_uncore_posting_read16(uncore, GEN2_IIR); -} - /* * We should clear IMR at preinstall/uninstall, and just check at postinstall. */ void gen3_assert_iir_is_zero(struct intel_uncore *uncore, i915_reg_t reg) { u32 val = intel_uncore_read(uncore, reg); if (val == 0) return; drm_WARN(&uncore->i915->drm, 1, "Interrupt register 0x%x is not zero: 0x%08x\n", i915_mmio_reg_offset(reg), val); intel_uncore_write(uncore, reg, 0xffffffff); intel_uncore_posting_read(uncore, reg); intel_uncore_write(uncore, reg, 0xffffffff); intel_uncore_posting_read(uncore, reg); } -static void gen2_assert_iir_is_zero(struct intel_uncore *uncore) -{ - u16 val = intel_uncore_read16(uncore, GEN2_IIR); - - if (val == 0) - return; - - drm_WARN(&uncore->i915->drm, 1, - "Interrupt register 0x%x is not zero: 0x%08x\n", - i915_mmio_reg_offset(GEN2_IIR), val); - intel_uncore_write16(uncore, GEN2_IIR, 0xffff); - intel_uncore_posting_read16(uncore, GEN2_IIR); - intel_uncore_write16(uncore, GEN2_IIR, 0xffff); - intel_uncore_posting_read16(uncore, GEN2_IIR); -} - void gen3_irq_init(struct intel_uncore *uncore, i915_reg_t imr, u32 imr_val, i915_reg_t ier, u32 ier_val, i915_reg_t iir) { gen3_assert_iir_is_zero(uncore, iir); intel_uncore_write(uncore, ier, ier_val); intel_uncore_write(uncore, imr, imr_val); intel_uncore_posting_read(uncore, imr); } -static void gen2_irq_init(struct intel_uncore *uncore, - u32 imr_val, u32 ier_val) -{ - gen2_assert_iir_is_zero(uncore); - - intel_uncore_write16(uncore, GEN2_IER, ier_val); - intel_uncore_write16(uncore, GEN2_IMR, imr_val); - intel_uncore_posting_read16(uncore, GEN2_IMR); -} - /** * ivb_parity_work - Workqueue called when a parity error interrupt * occurred. * @work: workqueue struct * * Doesn't actually do anything except notify userspace. As a consequence of * this event, userspace should try to remap the bad rows since statistically * it is likely the same row is more likely to go bad again. */ static void ivb_parity_work(struct work_struct *work) { struct drm_i915_private *dev_priv = container_of(work, typeof(*dev_priv), l3_parity.error_work); struct intel_gt *gt = to_gt(dev_priv); u32 error_status, row, bank, subbank; char *parity_event[6]; u32 misccpctl; u8 slice = 0; /* We must turn off DOP level clock gating to access the L3 registers. @@ -828,258 +788,134 @@ static void dg1_irq_postinstall(struct drm_i915_private *dev_priv) dg1_de_irq_postinstall(dev_priv); dg1_master_intr_enable(intel_uncore_regs(uncore)); intel_uncore_posting_read(uncore, DG1_MSTR_TILE_INTR); } static void cherryview_irq_postinstall(struct drm_i915_private *dev_priv) { gen8_gt_irq_postinstall(to_gt(dev_priv)); spin_lock_irq(&dev_priv->irq_lock); if (dev_priv->display.irq.display_irqs_enabled) vlv_display_irq_postinstall(dev_priv); spin_unlock_irq(&dev_priv->irq_lock); intel_uncore_write(&dev_priv->uncore, GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL); intel_uncore_posting_read(&dev_priv->uncore, GEN8_MASTER_IRQ); } -static void i8xx_irq_reset(struct drm_i915_private *dev_priv) -{ - struct intel_uncore *uncore = &dev_priv->uncore; - - i9xx_display_irq_reset(dev_priv); - - gen2_irq_reset(uncore); - dev_priv->irq_mask = ~0u; -} - static u32 i9xx_error_mask(struct drm_i915_private *i915) { /* * On gen2/3 FBC generates (seemingly spurious) * display INVALID_GTT/INVALID_GTT_PTE table errors. * * Also gen3 bspec has this to say: * "DISPA_INVALID_GTT_PTE " [DevNapa] : Reserved. This bit does not reflect the page " table error for the display plane A." * * Unfortunately we can't mask off individual PGTBL_ER bits, * so we just have to mask off all page table errors via EMR. */ if (HAS_FBC(i915)) return ~I915_ERROR_MEMORY_REFRESH; else return ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH); } -static void i8xx_irq_postinstall(struct drm_i915_private *dev_priv) -{ - struct intel_uncore *uncore = &dev_priv->uncore; - u16 enable_mask; - - intel_uncore_write16(uncore, EMR, i9xx_error_mask(dev_priv)); - - /* Unmask the interrupts that we always want on. */ - dev_priv->irq_mask = - ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | - I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | - I915_MASTER_ERROR_INTERRUPT); - - enable_mask = - I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | - I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | - I915_MASTER_ERROR_INTERRUPT | - I915_USER_INTERRUPT; - - gen2_irq_init(uncore, dev_priv->irq_mask, enable_mask); - - /* Interrupt setup is already guaranteed to be single-threaded, this is - * just to make the assert_spin_locked check happy. */ - spin_lock_irq(&dev_priv->irq_lock); - i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS); - i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS); - spin_unlock_irq(&dev_priv->irq_lock); -} - -static void i8xx_error_irq_ack(struct drm_i915_private *i915, - u16 *eir, u16 *eir_stuck) -{ - struct intel_uncore *uncore = &i915->uncore; - u16 emr; - - *eir = intel_uncore_read16(uncore, EIR); - intel_uncore_write16(uncore, EIR, *eir); - - *eir_stuck = intel_uncore_read16(uncore, EIR); - if (*eir_stuck == 0) - return; - - /* - * Toggle all EMR bits to make sure we get an edge - * in the ISR master error bit if we don't clear - * all the EIR bits. Otherwise the edge triggered - * IIR on i965/g4x wouldn't notice that an interrupt - * is still pending. Also some EIR bits can't be - * cleared except by handling the underlying error - * (or by a GPU reset) so we mask any bit that - * remains set. - */ - emr = intel_uncore_read16(uncore, EMR); - intel_uncore_write16(uncore, EMR, 0xffff); - intel_uncore_write16(uncore, EMR, emr | *eir_stuck); -} - -static void i8xx_error_irq_handler(struct drm_i915_private *dev_priv, - u16 eir, u16 eir_stuck) -{ - drm_dbg(&dev_priv->drm, "Master Error: EIR 0x%04x\n", eir); - - if (eir_stuck) - drm_dbg(&dev_priv->drm, "EIR stuck: 0x%04x, masked\n", - eir_stuck); - - drm_dbg(&dev_priv->drm, "PGTBL_ER: 0x%08x\n", - intel_uncore_read(&dev_priv->uncore, PGTBL_ER)); -} - static void i9xx_error_irq_ack(struct drm_i915_private *dev_priv, u32 *eir, u32 *eir_stuck) { u32 emr; *eir = intel_uncore_read(&dev_priv->uncore, EIR); intel_uncore_write(&dev_priv->uncore, EIR, *eir); *eir_stuck = intel_uncore_read(&dev_priv->uncore, EIR); if (*eir_stuck == 0) return; /* * Toggle all EMR bits to make sure we get an edge * in the ISR master error bit if we don't clear * all the EIR bits. Otherwise the edge triggered * IIR on i965/g4x wouldn't notice that an interrupt * is still pending. Also some EIR bits can't be * cleared except by handling the underlying error * (or by a GPU reset) so we mask any bit that * remains set. */ emr = intel_uncore_read(&dev_priv->uncore, EMR); intel_uncore_write(&dev_priv->uncore, EMR, 0xffffffff); intel_uncore_write(&dev_priv->uncore, EMR, emr | *eir_stuck); } static void i9xx_error_irq_handler(struct drm_i915_private *dev_priv, u32 eir, u32 eir_stuck) { drm_dbg(&dev_priv->drm, "Master Error, EIR 0x%08x\n", eir); if (eir_stuck) drm_dbg(&dev_priv->drm, "EIR stuck: 0x%08x, masked\n", eir_stuck); drm_dbg(&dev_priv->drm, "PGTBL_ER: 0x%08x\n", intel_uncore_read(&dev_priv->uncore, PGTBL_ER)); } -static irqreturn_t i8xx_irq_handler(int irq, void *arg) -{ - struct drm_i915_private *dev_priv = arg; - irqreturn_t ret = IRQ_NONE; - - if (!intel_irqs_enabled(dev_priv)) - return IRQ_NONE; - - /* IRQs are synced during runtime_suspend, we don't require a wakeref */ - disable_rpm_wakeref_asserts(&dev_priv->runtime_pm); - - do { - u32 pipe_stats[I915_MAX_PIPES] = {}; - u16 eir = 0, eir_stuck = 0; - u16 iir; - - iir = intel_uncore_read16(&dev_priv->uncore, GEN2_IIR); - if (iir == 0) - break; - - ret = IRQ_HANDLED; - - /* Call regardless, as some status bits might not be - * signalled in iir */ - i9xx_pipestat_irq_ack(dev_priv, iir, pipe_stats); - - if (iir & I915_MASTER_ERROR_INTERRUPT) - i8xx_error_irq_ack(dev_priv, &eir, &eir_stuck); - - intel_uncore_write16(&dev_priv->uncore, GEN2_IIR, iir); - - if (iir & I915_USER_INTERRUPT) - intel_engine_cs_irq(to_gt(dev_priv)->engine[RCS0], iir); - - if (iir & I915_MASTER_ERROR_INTERRUPT) - i8xx_error_irq_handler(dev_priv, eir, eir_stuck); - - i8xx_pipestat_irq_handler(dev_priv, iir, pipe_stats); - } while (0); - - pmu_irq_stats(dev_priv, ret); - - enable_rpm_wakeref_asserts(&dev_priv->runtime_pm); - - return ret; -} - static void i915_irq_reset(struct drm_i915_private *dev_priv) { struct intel_uncore *uncore = &dev_priv->uncore; i9xx_display_irq_reset(dev_priv); GEN3_IRQ_RESET(uncore, GEN2_); dev_priv->irq_mask = ~0u; } static void i915_irq_postinstall(struct drm_i915_private *dev_priv) { struct intel_uncore *uncore = &dev_priv->uncore; u32 enable_mask; intel_uncore_write(uncore, EMR, i9xx_error_mask(dev_priv)); dev_priv->irq_mask = - ~(I915_ASLE_INTERRUPT | - I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | + ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | I915_MASTER_ERROR_INTERRUPT); enable_mask = - I915_ASLE_INTERRUPT | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | I915_MASTER_ERROR_INTERRUPT | I915_USER_INTERRUPT; + if (DISPLAY_VER(dev_priv) >= 3) { + dev_priv->irq_mask &= ~I915_ASLE_INTERRUPT; + enable_mask |= I915_ASLE_INTERRUPT; + } + if (I915_HAS_HOTPLUG(dev_priv)) { dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT; enable_mask |= I915_DISPLAY_PORT_INTERRUPT; } GEN3_IRQ_INIT(uncore, GEN2_, dev_priv->irq_mask, enable_mask); /* Interrupt setup is already guaranteed to be single-threaded, this is * just to make the assert_spin_locked check happy. */ spin_lock_irq(&dev_priv->irq_lock); i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS); i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS); spin_unlock_irq(&dev_priv->irq_lock); i915_enable_asle_pipestat(dev_priv); } static irqreturn_t i915_irq_handler(int irq, void *arg) { struct drm_i915_private *dev_priv = arg; @@ -1287,94 +1123,88 @@ void intel_irq_init(struct drm_i915_private *dev_priv) * * This function deinitializes all the IRQ support. */ void intel_irq_fini(struct drm_i915_private *i915) { int i; for (i = 0; i < MAX_L3_SLICES; ++i) kfree(i915->l3_parity.remap_info[i]); } static irq_handler_t intel_irq_handler(struct drm_i915_private *dev_priv) { if (HAS_GMCH(dev_priv)) { if (IS_CHERRYVIEW(dev_priv)) return cherryview_irq_handler; else if (IS_VALLEYVIEW(dev_priv)) return valleyview_irq_handler; else if (GRAPHICS_VER(dev_priv) == 4) return i965_irq_handler; - else if (GRAPHICS_VER(dev_priv) == 3) + else return i915_irq_handler; - else - return i8xx_irq_handler; } else { if (GRAPHICS_VER_FULL(dev_priv) >= IP_VER(12, 10)) return dg1_irq_handler; else if (GRAPHICS_VER(dev_priv) >= 11) return gen11_irq_handler; else if (GRAPHICS_VER(dev_priv) >= 8) return gen8_irq_handler; else return ilk_irq_handler; } } static void intel_irq_reset(struct drm_i915_private *dev_priv) { if (HAS_GMCH(dev_priv)) { if (IS_CHERRYVIEW(dev_priv)) cherryview_irq_reset(dev_priv); else if (IS_VALLEYVIEW(dev_priv)) valleyview_irq_reset(dev_priv); else if (GRAPHICS_VER(dev_priv) == 4) i965_irq_reset(dev_priv); - else if (GRAPHICS_VER(dev_priv) == 3) + else i915_irq_reset(dev_priv); - else - i8xx_irq_reset(dev_priv); } else { if (GRAPHICS_VER_FULL(dev_priv) >= IP_VER(12, 10)) dg1_irq_reset(dev_priv); else if (GRAPHICS_VER(dev_priv) >= 11) gen11_irq_reset(dev_priv); else if (GRAPHICS_VER(dev_priv) >= 8) gen8_irq_reset(dev_priv); else ilk_irq_reset(dev_priv); } } static void intel_irq_postinstall(struct drm_i915_private *dev_priv) { if (HAS_GMCH(dev_priv)) { if (IS_CHERRYVIEW(dev_priv)) cherryview_irq_postinstall(dev_priv); else if (IS_VALLEYVIEW(dev_priv)) valleyview_irq_postinstall(dev_priv); else if (GRAPHICS_VER(dev_priv) == 4) i965_irq_postinstall(dev_priv); - else if (GRAPHICS_VER(dev_priv) == 3) + else i915_irq_postinstall(dev_priv); - else - i8xx_irq_postinstall(dev_priv); } else { if (GRAPHICS_VER_FULL(dev_priv) >= IP_VER(12, 10)) dg1_irq_postinstall(dev_priv); else if (GRAPHICS_VER(dev_priv) >= 11) gen11_irq_postinstall(dev_priv); else if (GRAPHICS_VER(dev_priv) >= 8) gen8_irq_postinstall(dev_priv); else ilk_irq_postinstall(dev_priv); } } /** * intel_irq_install - enables the hardware interrupt * @dev_priv: i915 device instance * * This function enables the hardware interrupt handling, but leaves the hotplug * handling still disabled. It is called after intel_irq_init(). * * In the driver load and resume code we need working interrupts in a few places -- 2.45.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 4/4] drm/i915: Switch over to gen3 irq code on gen2 2024-09-27 14:35 ` [PATCH 4/4] drm/i915: Switch over to gen3 irq code on gen2 Ville Syrjala @ 2024-09-27 14:45 ` Ville Syrjälä 0 siblings, 0 replies; 11+ messages in thread From: Ville Syrjälä @ 2024-09-27 14:45 UTC (permalink / raw) To: intel-gfx On Fri, Sep 27, 2024 at 05:35:45PM +0300, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > The only real reason why we have the gen2 vs. gen3+ split > in irq handling is that bspec claims that IIR/IMR/IER/ISR > and EMR are only 16 bits on gen2, as opposed to being 32 > bits on gen3+. That doesn't seem to be a meaningful > distinction as 32bit access to these registers works > perfectly fine on gen2 > > Interestingly the 16 msbs of IMR are in fact hardcoded > to 1 on gen2, which to me indicates that 32bit access > was the plan all along, and perhaps someone just forgot > to update the spec. > > Nuke the special 16bit gen2 irq code and switch over to > the gen3 code. > > Gen2 doesn't have the ASLE interrupt, which just needs > a small tweak in i915_irq_postinstall(). > > And so far we've not had a codepath that could enable the > legacy BLC interrupt on gen2. Now we do, but we'll never > actually do it since gen2 machines don't have OpRegion. > (and neither do i915/i945 machines btw). On these older > platforms the legacy BLC interrupt is meant to be used > in conjunction with the LBPC backlight stuff, but we > never actually switch off the legacy/combination mode > and thus don't use the interrupt either. > > This was quickly smoke tested on all gen2 variants. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Hmm. I guess I should do this to the gt code as well. But I'll hold off on that for the moment. -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 2024-09-27 14:35 [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 Ville Syrjala ` (3 preceding siblings ...) 2024-09-27 14:35 ` [PATCH 4/4] drm/i915: Switch over to gen3 irq code on gen2 Ville Syrjala @ 2024-09-27 14:56 ` Jani Nikula 2024-10-01 15:47 ` Ville Syrjälä 2024-09-27 22:08 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork ` (2 subsequent siblings) 7 siblings, 1 reply; 11+ messages in thread From: Jani Nikula @ 2024-09-27 14:56 UTC (permalink / raw) To: Ville Syrjala, intel-gfx On Fri, 27 Sep 2024, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Eliminate the special gen2 irq code by simply reusing the > gen3+ code on gen2. Works just fine on actual hardware. > > I generated the last patch with -U20 to help with review. > Unfortunately it still didn't pick up i915_irq_handler() > I don't suppose there's a magic knob to tell git diff > to include a specific function wholesale in the context? Reviewed-by: Jani Nikula <jani.nikula@intel.com> > > Ville Syrjälä (4): > drm/i915: Introduce i915_has_legacy_blc_interrupt() > drm/i915: Clean up gen3 hotplug irq setup > drm/i915: Clean up some comments in gmch irq code > drm/i915: Switch over to gen3 irq code on gen2 > > .../gpu/drm/i915/display/intel_display_irq.c | 38 ++-- > .../gpu/drm/i915/display/intel_display_irq.h | 1 - > drivers/gpu/drm/i915/i915_irq.c | 202 ++---------------- > 3 files changed, 28 insertions(+), 213 deletions(-) -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 2024-09-27 14:56 ` [PATCH 0/4] drm/i915: Use the gen3+ " Jani Nikula @ 2024-10-01 15:47 ` Ville Syrjälä 0 siblings, 0 replies; 11+ messages in thread From: Ville Syrjälä @ 2024-10-01 15:47 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Fri, Sep 27, 2024 at 05:56:31PM +0300, Jani Nikula wrote: > On Fri, 27 Sep 2024, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > Eliminate the special gen2 irq code by simply reusing the > > gen3+ code on gen2. Works just fine on actual hardware. > > > > I generated the last patch with -U20 to help with review. > > Unfortunately it still didn't pick up i915_irq_handler() > > I don't suppose there's a magic knob to tell git diff > > to include a specific function wholesale in the context? > > Reviewed-by: Jani Nikula <jani.nikula@intel.com> Thanks. Pushed the series. I suppose there might be some conflicts with your irq macro cleanup. > > > > > > Ville Syrjälä (4): > > drm/i915: Introduce i915_has_legacy_blc_interrupt() > > drm/i915: Clean up gen3 hotplug irq setup > > drm/i915: Clean up some comments in gmch irq code > > drm/i915: Switch over to gen3 irq code on gen2 > > > > .../gpu/drm/i915/display/intel_display_irq.c | 38 ++-- > > .../gpu/drm/i915/display/intel_display_irq.h | 1 - > > drivers/gpu/drm/i915/i915_irq.c | 202 ++---------------- > > 3 files changed, 28 insertions(+), 213 deletions(-) > > -- > Jani Nikula, Intel -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Use the gen3+ irq code on gen2 2024-09-27 14:35 [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 Ville Syrjala ` (4 preceding siblings ...) 2024-09-27 14:56 ` [PATCH 0/4] drm/i915: Use the gen3+ " Jani Nikula @ 2024-09-27 22:08 ` Patchwork 2024-09-27 22:25 ` ✓ Fi.CI.BAT: success " Patchwork 2024-09-28 20:44 ` ✗ Fi.CI.IGT: failure " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-09-27 22:08 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx == Series Details == Series: drm/i915: Use the gen3+ irq code on gen2 URL : https://patchwork.freedesktop.org/series/139218/ State : warning == Summary == Error: dim checkpatch failed 74822b1923f4 drm/i915: Introduce i915_has_legacy_blc_interrupt() 3195a44a884a drm/i915: Clean up gen3 hotplug irq setup b260e9fcbce4 drm/i915: Clean up some comments in gmch irq code -:24: WARNING:BLOCK_COMMENT_STYLE: Block comments use a trailing */ on a separate line #24: FILE: drivers/gpu/drm/i915/i915_irq.c:301: + * signalled in IIR */ -:33: WARNING:BLOCK_COMMENT_STYLE: Block comments use a trailing */ on a separate line #33: FILE: drivers/gpu/drm/i915/i915_irq.c:383: + * signalled in IIR */ -:60: WARNING:BLOCK_COMMENT_STYLE: Block comments use a trailing */ on a separate line #60: FILE: drivers/gpu/drm/i915/i915_irq.c:1111: + * signalled in IIR */ -:77: WARNING:BLOCK_COMMENT_STYLE: Block comments use a trailing */ on a separate line #77: FILE: drivers/gpu/drm/i915/i915_irq.c:1232: + * signalled in IIR */ total: 0 errors, 4 warnings, 0 checks, 55 lines checked a05fde94540f drm/i915: Switch over to gen3 irq code on gen2 ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915: Use the gen3+ irq code on gen2 2024-09-27 14:35 [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 Ville Syrjala ` (5 preceding siblings ...) 2024-09-27 22:08 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork @ 2024-09-27 22:25 ` Patchwork 2024-09-28 20:44 ` ✗ Fi.CI.IGT: failure " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-09-27 22:25 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4197 bytes --] == Series Details == Series: drm/i915: Use the gen3+ irq code on gen2 URL : https://patchwork.freedesktop.org/series/139218/ State : success == Summary == CI Bug Log - changes from CI_DRM_15453 -> Patchwork_139218v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/index.html Participating hosts (37 -> 36) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_139218v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [ABORT][2] ([i915#12216]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/bat-mtlp-8/igt@i915_selftest@live.html * igt@runner@aborted: - bat-dg2-14: NOTRUN -> [FAIL][3] ([i915#12292]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/bat-dg2-14/igt@runner@aborted.html - bat-dg2-13: NOTRUN -> [FAIL][4] ([i915#12292]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/bat-dg2-13/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live: - bat-arls-2: [ABORT][5] ([i915#12061] / [i915#12133]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/bat-arls-2/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/bat-arls-2/igt@i915_selftest@live.html - bat-arls-1: [DMESG-WARN][7] ([i915#10341] / [i915#12133]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/bat-arls-1/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/bat-arls-1/igt@i915_selftest@live.html * igt@i915_selftest@live@hangcheck: - bat-arls-1: [DMESG-WARN][9] ([i915#11349]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/bat-arls-1/igt@i915_selftest@live@hangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/bat-arls-1/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@workarounds: - bat-arls-2: [ABORT][11] ([i915#12061]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/bat-arls-2/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/bat-arls-2/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_module_load@reload: - bat-arls-5: [DMESG-WARN][13] ([i915#11637]) -> [DMESG-WARN][14] ([i915#11637] / [i915#1982]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/bat-arls-5/igt@i915_module_load@reload.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/bat-arls-5/igt@i915_module_load@reload.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216 [i915#12292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12292 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * Linux: CI_DRM_15453 -> Patchwork_139218v1 CI-20190529: 20190529 CI_DRM_15453: 1522f131505272ed86f58e937f2481e4e3e144c1 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8036: 5aa244179b574e949a07ab1c7494033081735718 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_139218v1: 1522f131505272ed86f58e937f2481e4e3e144c1 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/index.html [-- Attachment #2: Type: text/html, Size: 5227 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915: Use the gen3+ irq code on gen2 2024-09-27 14:35 [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 Ville Syrjala ` (6 preceding siblings ...) 2024-09-27 22:25 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-09-28 20:44 ` Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-09-28 20:44 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100267 bytes --] == Series Details == Series: drm/i915: Use the gen3+ irq code on gen2 URL : https://patchwork.freedesktop.org/series/139218/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15453_full -> Patchwork_139218v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_139218v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_139218v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_139218v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][3] -> [SKIP][4] +64 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_flip@dpms-vs-vblank-race@d-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_flip@dpms-vs-vblank-race@d-hdmi-a1.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-snb: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb1/igt@kms_flip@flip-vs-blocking-wf-vblank.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-snb6/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][8] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][9] +9 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][11] +18 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][12] +5 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@perf@blocking@0-rcs0: - shard-tglu: [PASS][13] -> [FAIL][14] +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@perf@blocking@0-rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@perf@blocking@0-rcs0.html #### Warnings #### * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: [SKIP][15] ([i915#9531]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: [SKIP][17] ([i915#1769] / [i915#3555]) -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: [SKIP][19] ([i915#5286]) -> [SKIP][20] +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-tglu: [SKIP][21] ([i915#6095]) -> [SKIP][22] +11 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: [SKIP][23] ([i915#9197]) -> [SKIP][24] +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_content_protection@lic-type-1: - shard-tglu: [SKIP][25] ([i915#6944] / [i915#9424]) -> [SKIP][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-5/igt@kms_content_protection@lic-type-1.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: [SKIP][27] ([i915#4103]) -> [SKIP][28] +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_flip@dpms-vs-vblank-race: - shard-tglu: [SKIP][29] ([i915#3637]) -> [FAIL][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_flip@dpms-vs-vblank-race.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_flip@dpms-vs-vblank-race.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: [SKIP][31] ([i915#4423]) -> [SKIP][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: [SKIP][33] ([i915#5354]) -> [SKIP][34] +11 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_hdr@invalid-hdr: - shard-tglu: [SKIP][35] ([i915#3555] / [i915#8228]) -> [SKIP][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_hdr@invalid-hdr.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_hdr@invalid-hdr.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: [SKIP][37] ([i915#5289]) -> [SKIP][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: [SKIP][39] ([i915#3555]) -> [SKIP][40] +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-tglu: [SKIP][41] ([i915#9906]) -> [SKIP][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-virtual.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][43] ([i915#7484]) -> [FAIL][44] +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_workarounds@suspend-resume: - {shard-tglu-1}: NOTRUN -> [ABORT][45] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-1/igt@gem_workarounds@suspend-resume.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - {shard-tglu-1}: NOTRUN -> [SKIP][46] +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html New tests --------- New tests have been introduced between CI_DRM_15453_full and Patchwork_139218v1_full: ### New IGT tests (1) ### * igt@kms_lease@simple-lease@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.27] s Known issues ------------ Here are the changes found in Patchwork_139218v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#8414]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-12/igt@drm_fdinfo@virtual-busy-hang.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#8414]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@fbdev@nullptr: - shard-tglu: [PASS][49] -> [SKIP][50] ([i915#2582]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-5/igt@fbdev@nullptr.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@fbdev@nullptr.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3555] / [i915#9323]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3555] / [i915#9323]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-7/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#9323]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#6335]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: [PASS][55] -> [FAIL][56] ([i915#12027]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@gem_ctx_engines@invalid-engines.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#8555]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@hostile: - shard-rkl: NOTRUN -> [FAIL][58] ([i915#11980]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@gem_ctx_persistence@hostile.html - shard-dg1: NOTRUN -> [FAIL][59] ([i915#11980]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#280]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][61] ([i915#7975] / [i915#8213]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4525]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#6334]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_endless@dispatch@vcs1: - shard-dg1: [PASS][64] -> [TIMEOUT][65] ([i915#3778]) +1 other test timeout [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-16/igt@gem_exec_endless@dispatch@vcs1.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-18/igt@gem_exec_endless@dispatch@vcs1.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][66] ([i915#2842]) +5 other tests fail [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [PASS][67] -> [FAIL][68] ([i915#2876]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-rkl: [PASS][69] -> [FAIL][70] ([i915#2842]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-2/igt@gem_exec_fair@basic-throttle.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-2/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4812]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4812]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-4/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3539] / [i915#4852]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-14/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3281]) +16 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3281]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-4/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][76] -> [INCOMPLETE][77] ([i915#11441]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#2190]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#4613]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#4613]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#12193]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4613]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4565]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#284]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-read-write: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4077]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-6/igt@gem_mmap_gtt@basic-read-write.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4083]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-6/igt@gem_mmap_wc@bad-offset.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282]) +6 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@create-protected-buffer: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4270]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-context-2: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4270]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#4270]) +8 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#4270]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#5190] / [i915#8428]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8428]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#8411]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4885]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4077]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-12/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#2856]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-3/igt@gen9_exec_parse@secure-batches.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#2856]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-6/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@valid-registers: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#8399]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#6245]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4212]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#8709]) +11 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#1769] / [i915#3555]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#5286]) +9 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][113] -> [FAIL][114] ([i915#5138]) +1 other test fail [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#3638]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-12/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5190]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3638]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][118] +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_busy@extended-pageflip-modeset-hang-oldfb: - shard-dg2: [PASS][120] -> [SKIP][121] ([i915#9197]) +18 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_busy@extended-pageflip-modeset-hang-oldfb.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_busy@extended-pageflip-modeset-hang-oldfb.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#10307] / [i915#6095]) +169 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#6095]) +90 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#6095]) +102 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-13/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#9197]) +10 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#6095]) +66 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6095]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7213]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4087]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_chamelium_audio@dp-audio.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#7828]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-6/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#7828]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#7828]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7828]) +13 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@ctm-0-50: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#5354]) +12 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_color@ctm-0-50.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#3116] / [i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3116]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#9424]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm@pipe-a-dp-3: - shard-dg2: NOTRUN -> [TIMEOUT][140] ([i915#7173]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-3.html * igt@kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#7118] / [i915#9424]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#7116] / [i915#9424]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#11453]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#3555]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#11453]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#4103]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#4103]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#9809]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][150] +43 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#9067]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#1769] / [i915#3555] / [i915#3804]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#3804]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3804]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#1257]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3840]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#3840]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#4854]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#1839]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#658]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#4881]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-4/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][163] -> [FAIL][164] ([i915#2122]) +1 other test fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3637]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][166] +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3637]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@basic-plain-flip: - shard-tglu: [PASS][168] -> [SKIP][169] ([i915#3637]) +9 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_flip@basic-plain-flip.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_flip@basic-plain-flip.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [PASS][170] -> [FAIL][171] ([i915#2122]) +1 other test fail [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#2672] / [i915#3555]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#2587] / [i915#2672]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#2672]) +5 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672] / [i915#3555]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555]) +5 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: [PASS][178] -> [SKIP][179] ([i915#3555]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#2672]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][181] ([i915#2587] / [i915#2672]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#2672] / [i915#3555]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: [PASS][183] -> [SKIP][184] ([i915#5354]) +8 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-tglu: [PASS][185] -> [SKIP][186] ([i915#1849]) +14 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#1825]) +52 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3023]) +37 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3458]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][190] +9 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][191] +40 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#10433] / [i915#3458]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#1825]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@zero-vdisplay: - shard-tglu: [PASS][197] -> [SKIP][198] ([i915#3555]) +8 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_invalid_mode@zero-vdisplay.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_invalid_mode@zero-vdisplay.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#6301]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@planar-pixel-format-settings: - shard-tglu: [PASS][200] -> [SKIP][201] ([i915#9581]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-5/igt@kms_plane@planar-pixel-format-settings.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane@plane-position-hole-dpms: - shard-tglu: [PASS][202] -> [SKIP][203] ([i915#8825]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_plane@plane-position-hole-dpms.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-tglu: [PASS][204] -> [SKIP][205] ([i915#7294]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_plane_alpha_blend@constant-alpha-max.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3555]) +8 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#12247]) +13 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#12247]) +4 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-tglu: [PASS][209] -> [SKIP][210] ([i915#12247] / [i915#8152]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: - shard-tglu: [PASS][211] -> [SKIP][212] ([i915#8152]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b: - shard-tglu: [PASS][213] -> [SKIP][214] ([i915#12247]) +8 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-dg2: [PASS][215] -> [SKIP][216] ([i915#8152] / [i915#9423]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c: - shard-dg2: [PASS][217] -> [SKIP][218] ([i915#12247]) +5 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2: [PASS][219] -> [SKIP][220] ([i915#8152]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-tglu: [PASS][221] -> [SKIP][222] ([i915#3555] / [i915#8152]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#12247] / [i915#6953]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#12247]) +8 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#5354]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][226] -> [SKIP][227] ([i915#9519]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9519]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@pc8-residency: - shard-glk: NOTRUN -> [SKIP][229] +17 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-glk2/igt@kms_pm_rpm@pc8-residency.html * igt@kms_pm_rpm@pm-caching: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#4077]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_pm_rpm@pm-caching.html * igt@kms_pm_rpm@pm-tiling: - shard-tglu: [PASS][231] -> [SKIP][232] ([i915#9519]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_pm_rpm@pm-tiling.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_pm_rpm@pm-tiling.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2: [PASS][233] -> [SKIP][234] ([i915#3547]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_pm_rpm@system-suspend-modeset.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#6524]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#6524]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_properties@crtc-properties-legacy: - shard-dg2: [PASS][237] -> [SKIP][238] ([i915#11521]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_properties@crtc-properties-legacy.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#9683]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#1072] / [i915#9732]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_psr@fbc-pr-sprite-blt.html - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#9688]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-7/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#9732]) +9 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#1072] / [i915#9732]) +32 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-render: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#1072] / [i915#9732]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@kms_psr@psr-cursor-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9685]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#4235]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#5289]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#5289]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_sysfs_edid_timing: - shard-snb: [PASS][249] -> [FAIL][250] ([IGT#2] / [i915#6493]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb6/igt@kms_sysfs_edid_timing.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-snb6/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#8623]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#9906]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#11920]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-4/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#2437]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#2437] / [i915#9412]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#2437] / [i915#9412]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#7387]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@perf@global-sseu-config.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [FAIL][258] ([i915#11943]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-4/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#8516]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#3291] / [i915#3708]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-5/igt@prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][261] ([i915#3708]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#3708]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-7/igt@prime_vgem@fence-read-hang.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][263] ([i915#9781]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all: - shard-rkl: [FAIL][264] ([i915#12179]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][266] ([i915#7742]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@fbdev@unaligned-read: - shard-tglu: [SKIP][268] ([i915#2582]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@fbdev@unaligned-read.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@fbdev@unaligned-read.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][270] ([i915#2842]) -> [PASS][271] +2 other tests pass [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_mmap_wc@set-cache-level: - shard-tglu: [SKIP][272] ([i915#1850]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@gem_mmap_wc@set-cache-level.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@gem_mmap_wc@set-cache-level.html * igt@gen9_exec_parse@allowed-single: - shard-glk: ([PASS][274], [ABORT][275]) ([i915#5566]) -> [PASS][276] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk7/igt@gen9_exec_parse@allowed-single.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@gen9_exec_parse@allowed-single.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-glk1/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][277] ([i915#9820]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: [SKIP][279] -> [PASS][280] +25 other tests pass [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: ([FAIL][281], [PASS][282]) ([i915#2346]) -> [PASS][283] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [SKIP][284] ([i915#1849]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-11/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-glk: ([PASS][286], [FAIL][287]) ([i915#2122]) -> [PASS][288] +5 other tests pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@dpms-off-confusion-interruptible: - shard-dg2: [SKIP][289] ([i915#5354]) -> [PASS][290] +19 other tests pass [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_flip@dpms-off-confusion-interruptible.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_flip@dpms-off-confusion-interruptible.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset: - shard-tglu: [SKIP][291] ([i915#3637]) -> [PASS][292] +5 other tests pass [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@plain-flip-ts-check@c-hdmi-a4: - shard-dg1: [FAIL][293] ([i915#2122]) -> [PASS][294] +1 other test pass [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-14/igt@kms_flip@plain-flip-ts-check@c-hdmi-a4.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-15/igt@kms_flip@plain-flip-ts-check@c-hdmi-a4.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [FAIL][295] ([i915#6880]) -> [PASS][296] +1 other test pass [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_invalid_mode@bad-hsync-end: - shard-dg2: [SKIP][297] ([i915#3555]) -> [PASS][298] +5 other tests pass [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_invalid_mode@bad-hsync-end.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_invalid_mode@bad-hsync-end.html - shard-tglu: [SKIP][299] ([i915#3555]) -> [PASS][300] +1 other test pass [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_invalid_mode@bad-hsync-end.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_invalid_mode@bad-hsync-end.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2: [SKIP][301] ([i915#8825]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: [SKIP][303] ([i915#7294]) -> [PASS][304] +1 other test pass [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant: - shard-tglu: [SKIP][305] ([i915#7294]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-dg2: [SKIP][307] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][308] +2 other tests pass [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d: - shard-dg2: [SKIP][309] ([i915#12247] / [i915#8152]) -> [PASS][310] +5 other tests pass [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [SKIP][311] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-tglu: [SKIP][313] ([i915#12247] / [i915#3558] / [i915#8152]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b: - shard-tglu: [SKIP][315] ([i915#12247]) -> [PASS][316] +2 other tests pass [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d: - shard-tglu: [SKIP][317] ([i915#12247] / [i915#8152]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-dg2: [SKIP][319] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2: [SKIP][321] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a: - shard-dg2: [SKIP][323] ([i915#12247]) -> [PASS][324] +17 other tests pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [SKIP][325] ([i915#9340]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-7/igt@kms_pm_lpsp@kms-lpsp.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@cursor-dpms: - shard-tglu: [SKIP][327] ([i915#1849]) -> [PASS][328] +5 other tests pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_pm_rpm@cursor-dpms.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][329] ([i915#9519]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][331] ([i915#9519]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_vblank@ts-continuation-modeset: - shard-dg2: [SKIP][333] ([i915#9197]) -> [PASS][334] +45 other tests pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-11/igt@kms_vblank@ts-continuation-modeset.html #### Warnings #### * igt@i915_selftest@mock: - shard-glk: ([DMESG-WARN][335], [DMESG-WARN][336]) ([i915#9311]) -> [DMESG-WARN][337] ([i915#1982] / [i915#9311]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@i915_selftest@mock.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk2/igt@i915_selftest@mock.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-glk2/igt@i915_selftest@mock.html - shard-dg2: [DMESG-WARN][338] ([i915#9311]) -> [DMESG-WARN][339] ([i915#1982] / [i915#9311]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-4/igt@i915_selftest@mock.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-10/igt@i915_selftest@mock.html - shard-dg1: [DMESG-WARN][340] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][341] ([i915#9311]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-19/igt@i915_selftest@mock.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-18/igt@i915_selftest@mock.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: [SKIP][342] ([i915#9197]) -> [SKIP][343] ([i915#9531]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg1: [SKIP][344] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][345] ([i915#4538] / [i915#5286]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-19/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg1-15/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [SKIP][346] -> [SKIP][347] ([i915#5286]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2: [SKIP][348] ([i915#9197]) -> [SKIP][349] +2 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: [SKIP][350] ([i915#5190] / [i915#9197]) -> [SKIP][351] ([i915#4538] / [i915#5190]) +8 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2: [SKIP][352] ([i915#5190] / [i915#9197]) -> [SKIP][353] ([i915#5190]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: [SKIP][354] ([i915#4538] / [i915#5190]) -> [SKIP][355] ([i915#5190] / [i915#9197]) +4 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs: - shard-dg2: [SKIP][356] ([i915#9197]) -> [SKIP][357] ([i915#10307] / [i915#6095]) +7 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][358] ([i915#10307] / [i915#6095]) -> [SKIP][359] ([i915#9197]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-tglu: [SKIP][360] -> [SKIP][361] ([i915#6095]) +7 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_content_protection@content-type-change: - shard-tglu: [SKIP][362] -> [SKIP][363] ([i915#6944] / [i915#9424]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_content_protection@content-type-change.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@lic-type-1: - shard-dg2: [SKIP][364] ([i915#9197]) -> [SKIP][365] ([i915#9424]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_content_protection@lic-type-1.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: [SKIP][366] ([i915#7118]) -> [TIMEOUT][367] ([i915#7173]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-6/igt@kms_content_protection@srm.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-10/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][368] ([i915#9197]) -> [SKIP][369] ([i915#7118] / [i915#9424]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_content_protection@type1.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: [SKIP][370] ([i915#11453] / [i915#3359]) -> [SKIP][371] ([i915#11453]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: [SKIP][372] ([i915#9197]) -> [SKIP][373] ([i915#11453]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu: [SKIP][374] -> [SKIP][375] ([i915#3555]) +2 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-32x10.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-dg2: [SKIP][376] ([i915#5354]) -> [SKIP][377] ([i915#9197]) +2 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: [SKIP][378] ([i915#9197]) -> [SKIP][379] ([i915#5354]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: ([PASS][380], [FAIL][381]) ([i915#2346]) -> [FAIL][382] ([i915#2346]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: [SKIP][383] ([i915#9197]) -> [SKIP][384] ([i915#4103] / [i915#4213]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: [SKIP][385] -> [SKIP][386] ([i915#4103]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [SKIP][387] ([i915#9197]) -> [SKIP][388] ([i915#3555]) +3 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [SKIP][389] ([i915#3555]) -> [SKIP][390] ([i915#9197]) +2 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: [SKIP][391] ([i915#9197]) -> [SKIP][392] ([i915#8812]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-dg2: [SKIP][393] ([i915#9197]) -> [SKIP][394] ([i915#3555] / [i915#3840]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_dsc@dsc-basic.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_dsc@dsc-basic.html - shard-tglu: [SKIP][395] -> [SKIP][396] ([i915#3555] / [i915#3840]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_dsc@dsc-basic.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_dsc@dsc-basic.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-glk: ([FAIL][397], [PASS][398]) ([i915#2122]) -> [FAIL][399] ([i915#2122]) +2 other tests fail [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-glk6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: [SKIP][400] ([i915#2672] / [i915#3555]) -> [SKIP][401] ([i915#3555]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: [SKIP][402] ([i915#3555] / [i915#5190]) -> [SKIP][403] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu: [SKIP][404] ([i915#3555]) -> [SKIP][405] ([i915#2587] / [i915#2672] / [i915#3555]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: [SKIP][406] ([i915#2587] / [i915#2672] / [i915#3555]) -> [SKIP][407] ([i915#3555]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu: [SKIP][408] ([i915#2672] / [i915#3555]) -> [SKIP][409] ([i915#3555]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: [SKIP][410] ([i915#3555]) -> [SKIP][411] ([i915#2672] / [i915#3555]) +2 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu: [SKIP][412] ([i915#3555]) -> [SKIP][413] ([i915#2672] / [i915#3555]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: [SKIP][414] ([i915#3458]) -> [SKIP][415] ([i915#5354]) +5 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: [SKIP][416] -> [SKIP][417] ([i915#5354]) +5 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][418] ([i915#10433] / [i915#3458]) -> [SKIP][419] ([i915#3458]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][420] ([i915#3458]) -> [SKIP][421] ([i915#10433] / [i915#3458]) +1 other test skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: [SKIP][422] ([i915#1849]) -> [SKIP][423] +30 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][424] ([i915#5354]) -> [SKIP][425] ([i915#3458]) +18 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: [SKIP][426] -> [SKIP][427] ([i915#1849]) +61 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][428] ([i915#9197]) -> [SKIP][429] ([i915#3555] / [i915#8228]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_panel_fitting@legacy: - shard-tglu: [SKIP][430] -> [SKIP][431] ([i915#6301]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_panel_fitting@legacy.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: [SKIP][432] ([i915#12247] / [i915#9423]) -> [SKIP][433] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: [SKIP][434] ([i915#12247]) -> [SKIP][435] ([i915#12247] / [i915#8152]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: [SKIP][436] ([i915#12247] / [i915#8152] / [i915#9423]) -> [SKIP][437] ([i915#12247] / [i915#9423]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg2: [SKIP][438] ([i915#12247] / [i915#8152]) -> [SKIP][439] ([i915#12247]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling: - shard-tglu: [SKIP][440] ([i915#12247] / [i915#8152]) -> [SKIP][441] ([i915#12247]) +5 other tests skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-tglu: [SKIP][442] ([i915#6953]) -> [SKIP][443] ([i915#6953] / [i915#8152]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-tglu: [SKIP][444] ([i915#12247] / [i915#3555] / [i915#6953]) -> [SKIP][445] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-9/igt@kms_plane_scaling@ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139218v1/index.html [-- Attachment #2: Type: text/html, Size: 108438 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-10-01 15:47 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-09-27 14:35 [PATCH 0/4] drm/i915: Use the gen3+ irq code on gen2 Ville Syrjala 2024-09-27 14:35 ` [PATCH 1/4] drm/i915: Introduce i915_has_legacy_blc_interrupt() Ville Syrjala 2024-09-27 14:35 ` [PATCH 2/4] drm/i915: Clean up gen3 hotplug irq setup Ville Syrjala 2024-09-27 14:35 ` [PATCH 3/4] drm/i915: Clean up some comments in gmch irq code Ville Syrjala 2024-09-27 14:35 ` [PATCH 4/4] drm/i915: Switch over to gen3 irq code on gen2 Ville Syrjala 2024-09-27 14:45 ` Ville Syrjälä 2024-09-27 14:56 ` [PATCH 0/4] drm/i915: Use the gen3+ " Jani Nikula 2024-10-01 15:47 ` Ville Syrjälä 2024-09-27 22:08 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork 2024-09-27 22:25 ` ✓ Fi.CI.BAT: success " Patchwork 2024-09-28 20:44 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox