* [PATCH v2 1/6] drm/i915: Add the FIRST_CCS() helper
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
@ 2025-03-26 23:40 ` Andi Shyti
2025-03-27 10:42 ` Jani Nikula
2025-03-26 23:40 ` [PATCH v2 2/6] drm/i915/gt: Move CCS workaround to the correct section Andi Shyti
` (9 subsequent siblings)
10 siblings, 1 reply; 16+ messages in thread
From: Andi Shyti @ 2025-03-26 23:40 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Arshad Mehmood, Chris Wilson, Lucas De Marchi, Andi Shyti,
Andi Shyti
From: Andi Shyti <andi.shyti@intel.com>
Some GPUs, like DG2, can host more than one CCS engine. Some
workarounds or enablements need to happen only once for all the
engines in the GT—for example, on the engine with the lowest
instance.
The FIRST_CCS() helper first checks if the engine is a Compute
engine, and then whether it's the one with the lowest instance.
Signed-off-by: Andi Shyti <andi.shyti@intel.com>
---
drivers/gpu/drm/i915/i915_drv.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 54538b6f85df..5cb501393c4b 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -619,6 +619,9 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
#define CCS_MASK(gt) \
ENGINE_INSTANCES_MASK(gt, CCS0, I915_MAX_CCS)
+#define FIRST_CCS(e__) \
+ (CCS_MASK(e__->gt) && (__ffs(CCS_MASK(e__->gt)) == e__->instance))
+
#define HAS_MEDIA_RATIO_MODE(i915) (INTEL_INFO(i915)->has_media_ratio_mode)
/*
--
2.47.2
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH v2 1/6] drm/i915: Add the FIRST_CCS() helper
2025-03-26 23:40 ` [PATCH v2 1/6] drm/i915: Add the FIRST_CCS() helper Andi Shyti
@ 2025-03-27 10:42 ` Jani Nikula
2025-03-27 11:05 ` Andi Shyti
0 siblings, 1 reply; 16+ messages in thread
From: Jani Nikula @ 2025-03-27 10:42 UTC (permalink / raw)
To: Andi Shyti, intel-gfx, dri-devel
Cc: Arshad Mehmood, Chris Wilson, Lucas De Marchi, Andi Shyti,
Andi Shyti
On Thu, 27 Mar 2025, Andi Shyti <andi.shyti@linux.intel.com> wrote:
> From: Andi Shyti <andi.shyti@intel.com>
>
> Some GPUs, like DG2, can host more than one CCS engine. Some
> workarounds or enablements need to happen only once for all the
> engines in the GT—for example, on the engine with the lowest
> instance.
>
> The FIRST_CCS() helper first checks if the engine is a Compute
> engine, and then whether it's the one with the lowest instance.
>
> Signed-off-by: Andi Shyti <andi.shyti@intel.com>
> ---
> drivers/gpu/drm/i915/i915_drv.h | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
> index 54538b6f85df..5cb501393c4b 100644
> --- a/drivers/gpu/drm/i915/i915_drv.h
> +++ b/drivers/gpu/drm/i915/i915_drv.h
> @@ -619,6 +619,9 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
> #define CCS_MASK(gt) \
> ENGINE_INSTANCES_MASK(gt, CCS0, I915_MAX_CCS)
>
> +#define FIRST_CCS(e__) \
> + (CCS_MASK(e__->gt) && (__ffs(CCS_MASK(e__->gt)) == e__->instance))
> +
Could I persuade you to find a more specific header file for this, along
with the CCS_MASK etc.?
BR,
Jani.
> #define HAS_MEDIA_RATIO_MODE(i915) (INTEL_INFO(i915)->has_media_ratio_mode)
>
> /*
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2 1/6] drm/i915: Add the FIRST_CCS() helper
2025-03-27 10:42 ` Jani Nikula
@ 2025-03-27 11:05 ` Andi Shyti
0 siblings, 0 replies; 16+ messages in thread
From: Andi Shyti @ 2025-03-27 11:05 UTC (permalink / raw)
To: Jani Nikula
Cc: Andi Shyti, intel-gfx, dri-devel, Arshad Mehmood, Chris Wilson,
Lucas De Marchi, Andi Shyti
On Thu, Mar 27, 2025 at 12:42:50PM +0200, Jani Nikula wrote:
> On Thu, 27 Mar 2025, Andi Shyti <andi.shyti@linux.intel.com> wrote:
> > From: Andi Shyti <andi.shyti@intel.com>
> >
> > Some GPUs, like DG2, can host more than one CCS engine. Some
> > workarounds or enablements need to happen only once for all the
> > engines in the GT—for example, on the engine with the lowest
> > instance.
> >
> > The FIRST_CCS() helper first checks if the engine is a Compute
> > engine, and then whether it's the one with the lowest instance.
> >
> > Signed-off-by: Andi Shyti <andi.shyti@intel.com>
> > ---
> > drivers/gpu/drm/i915/i915_drv.h | 3 +++
> > 1 file changed, 3 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
> > index 54538b6f85df..5cb501393c4b 100644
> > --- a/drivers/gpu/drm/i915/i915_drv.h
> > +++ b/drivers/gpu/drm/i915/i915_drv.h
> > @@ -619,6 +619,9 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
> > #define CCS_MASK(gt) \
> > ENGINE_INSTANCES_MASK(gt, CCS0, I915_MAX_CCS)
> >
> > +#define FIRST_CCS(e__) \
> > + (CCS_MASK(e__->gt) && (__ffs(CCS_MASK(e__->gt)) == e__->instance))
> > +
>
> Could I persuade you to find a more specific header file for this, along
> with the CCS_MASK etc.?
yes, sure, I think this should go inside the gt/ (I don't also
like the name FIRST_CCS but could not come out with anything
better).
All the engine related defines should go inside the gt/, I will
take care of it, but that's argument for another patch.
Thanks, Jani,
Andi
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v2 2/6] drm/i915/gt: Move CCS workaround to the correct section
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
2025-03-26 23:40 ` [PATCH v2 1/6] drm/i915: Add the FIRST_CCS() helper Andi Shyti
@ 2025-03-26 23:40 ` Andi Shyti
2025-04-23 14:06 ` Lucas De Marchi
2025-03-26 23:40 ` [PATCH v2 3/6] drm/i915/gt: Remove FIRST_RENDER_COMPUTE in workaround Andi Shyti
` (8 subsequent siblings)
10 siblings, 1 reply; 16+ messages in thread
From: Andi Shyti @ 2025-03-26 23:40 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Arshad Mehmood, Chris Wilson, Lucas De Marchi, Andi Shyti,
Andi Shyti
The CCS engine workaround was previously added in a section
shared by both RCS and CCS engines.
Move it to the proper CCS-specific section so that it's applied
only once, avoiding unintended duplication caused by the first
CCS/RCS detection check.
To do this, the ccs_mode() function had to be moved earlier in
the file to avoid the need for a forward declaration.
Suggested-by: Arshad Mehmood <arshad.mehmood@intel.com>
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
---
drivers/gpu/drm/i915/gt/intel_workarounds.c | 58 +++++++++++----------
1 file changed, 30 insertions(+), 28 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c
index 116683ebe074..bedd88a15959 100644
--- a/drivers/gpu/drm/i915/gt/intel_workarounds.c
+++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c
@@ -2699,10 +2699,38 @@ xcs_engine_wa_init(struct intel_engine_cs *engine, struct i915_wa_list *wal)
XEHP_BLITTER_ROUND_ROBIN_MODE);
}
+static void ccs_engine_wa_mode(struct intel_engine_cs *engine, struct i915_wa_list *wal)
+{
+ struct intel_gt *gt = engine->gt;
+ u32 mode;
+
+ /*
+ * This workaround should be applied only once across all
+ * CCS engines. Apply it to the first CCS encountered.
+ */
+ if (!FIRST_CCS(engine))
+ return;
+
+ /*
+ * Wa_14019159160: This workaround, along with others, leads to
+ * significant challenges in utilizing load balancing among the
+ * CCS slices. Consequently, an architectural decision has been
+ * made to completely disable automatic CCS load balancing.
+ */
+ wa_masked_en(wal, GEN12_RCU_MODE, XEHP_RCU_MODE_FIXED_SLICE_CCS_MODE);
+
+ /*
+ * After having disabled automatic load balancing we need to
+ * assign all slices to a single CCS. We will call it CCS mode 1
+ */
+ mode = intel_gt_apply_ccs_mode(gt);
+ wa_masked_en(wal, XEHP_CCS_MODE, mode);
+}
+
static void
ccs_engine_wa_init(struct intel_engine_cs *engine, struct i915_wa_list *wal)
{
- /* boilerplate for any CCS engine workaround */
+ ccs_engine_wa_mode(engine, wal);
}
/*
@@ -2739,30 +2767,6 @@ add_render_compute_tuning_settings(struct intel_gt *gt,
wa_write_clr(wal, GEN8_GARBCNTL, GEN12_BUS_HASH_CTL_BIT_EXC);
}
-static void ccs_engine_wa_mode(struct intel_engine_cs *engine, struct i915_wa_list *wal)
-{
- struct intel_gt *gt = engine->gt;
- u32 mode;
-
- if (!IS_DG2(gt->i915))
- return;
-
- /*
- * Wa_14019159160: This workaround, along with others, leads to
- * significant challenges in utilizing load balancing among the
- * CCS slices. Consequently, an architectural decision has been
- * made to completely disable automatic CCS load balancing.
- */
- wa_masked_en(wal, GEN12_RCU_MODE, XEHP_RCU_MODE_FIXED_SLICE_CCS_MODE);
-
- /*
- * After having disabled automatic load balancing we need to
- * assign all slices to a single CCS. We will call it CCS mode 1
- */
- mode = intel_gt_apply_ccs_mode(gt);
- wa_masked_en(wal, XEHP_CCS_MODE, mode);
-}
-
/*
* The workarounds in this function apply to shared registers in
* the general render reset domain that aren't tied to a
@@ -2895,10 +2899,8 @@ engine_init_workarounds(struct intel_engine_cs *engine, struct i915_wa_list *wal
* to a single RCS/CCS engine's workaround list since
* they're reset as part of the general render domain reset.
*/
- if (engine->flags & I915_ENGINE_FIRST_RENDER_COMPUTE) {
+ if (engine->flags & I915_ENGINE_FIRST_RENDER_COMPUTE)
general_render_compute_wa_init(engine, wal);
- ccs_engine_wa_mode(engine, wal);
- }
if (engine->class == COMPUTE_CLASS)
ccs_engine_wa_init(engine, wal);
--
2.47.2
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH v2 2/6] drm/i915/gt: Move CCS workaround to the correct section
2025-03-26 23:40 ` [PATCH v2 2/6] drm/i915/gt: Move CCS workaround to the correct section Andi Shyti
@ 2025-04-23 14:06 ` Lucas De Marchi
0 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2025-04-23 14:06 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx, dri-devel, Arshad Mehmood, Chris Wilson, Andi Shyti
On Thu, Mar 27, 2025 at 12:40:01AM +0100, Andi Shyti wrote:
>The CCS engine workaround was previously added in a section
>shared by both RCS and CCS engines.
>
>Move it to the proper CCS-specific section so that it's applied
>only once, avoiding unintended duplication caused by the first
>CCS/RCS detection check.
>
>To do this, the ccs_mode() function had to be moved earlier in
>the file to avoid the need for a forward declaration.
>
>Suggested-by: Arshad Mehmood <arshad.mehmood@intel.com>
>Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
I'm not sure about this one. I think it was done like this because
the register exists on render and has no side effect setting it there.
>---
> drivers/gpu/drm/i915/gt/intel_workarounds.c | 58 +++++++++++----------
> 1 file changed, 30 insertions(+), 28 deletions(-)
>
>diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c
>index 116683ebe074..bedd88a15959 100644
>--- a/drivers/gpu/drm/i915/gt/intel_workarounds.c
>+++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c
>@@ -2699,10 +2699,38 @@ xcs_engine_wa_init(struct intel_engine_cs *engine, struct i915_wa_list *wal)
> XEHP_BLITTER_ROUND_ROBIN_MODE);
> }
>
>+static void ccs_engine_wa_mode(struct intel_engine_cs *engine, struct i915_wa_list *wal)
>+{
>+ struct intel_gt *gt = engine->gt;
>+ u32 mode;
>+
>+ /*
>+ * This workaround should be applied only once across all
>+ * CCS engines. Apply it to the first CCS encountered.
>+ */
>+ if (!FIRST_CCS(engine))
the problem you'd face is that if you fix this macro to also include
render, then you break it here.
Lucas De Marchi
>+ return;
>+
>+ /*
>+ * Wa_14019159160: This workaround, along with others, leads to
>+ * significant challenges in utilizing load balancing among the
>+ * CCS slices. Consequently, an architectural decision has been
>+ * made to completely disable automatic CCS load balancing.
>+ */
>+ wa_masked_en(wal, GEN12_RCU_MODE, XEHP_RCU_MODE_FIXED_SLICE_CCS_MODE);
>+
>+ /*
>+ * After having disabled automatic load balancing we need to
>+ * assign all slices to a single CCS. We will call it CCS mode 1
>+ */
>+ mode = intel_gt_apply_ccs_mode(gt);
>+ wa_masked_en(wal, XEHP_CCS_MODE, mode);
>+}
>+
> static void
> ccs_engine_wa_init(struct intel_engine_cs *engine, struct i915_wa_list *wal)
> {
>- /* boilerplate for any CCS engine workaround */
>+ ccs_engine_wa_mode(engine, wal);
> }
>
> /*
>@@ -2739,30 +2767,6 @@ add_render_compute_tuning_settings(struct intel_gt *gt,
> wa_write_clr(wal, GEN8_GARBCNTL, GEN12_BUS_HASH_CTL_BIT_EXC);
> }
>
>-static void ccs_engine_wa_mode(struct intel_engine_cs *engine, struct i915_wa_list *wal)
>-{
>- struct intel_gt *gt = engine->gt;
>- u32 mode;
>-
>- if (!IS_DG2(gt->i915))
>- return;
>-
>- /*
>- * Wa_14019159160: This workaround, along with others, leads to
>- * significant challenges in utilizing load balancing among the
>- * CCS slices. Consequently, an architectural decision has been
>- * made to completely disable automatic CCS load balancing.
>- */
>- wa_masked_en(wal, GEN12_RCU_MODE, XEHP_RCU_MODE_FIXED_SLICE_CCS_MODE);
>-
>- /*
>- * After having disabled automatic load balancing we need to
>- * assign all slices to a single CCS. We will call it CCS mode 1
>- */
>- mode = intel_gt_apply_ccs_mode(gt);
>- wa_masked_en(wal, XEHP_CCS_MODE, mode);
>-}
>-
> /*
> * The workarounds in this function apply to shared registers in
> * the general render reset domain that aren't tied to a
>@@ -2895,10 +2899,8 @@ engine_init_workarounds(struct intel_engine_cs *engine, struct i915_wa_list *wal
> * to a single RCS/CCS engine's workaround list since
> * they're reset as part of the general render domain reset.
> */
>- if (engine->flags & I915_ENGINE_FIRST_RENDER_COMPUTE) {
>+ if (engine->flags & I915_ENGINE_FIRST_RENDER_COMPUTE)
> general_render_compute_wa_init(engine, wal);
>- ccs_engine_wa_mode(engine, wal);
>- }
>
> if (engine->class == COMPUTE_CLASS)
> ccs_engine_wa_init(engine, wal);
>--
>2.47.2
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v2 3/6] drm/i915/gt: Remove FIRST_RENDER_COMPUTE in workaround
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
2025-03-26 23:40 ` [PATCH v2 1/6] drm/i915: Add the FIRST_CCS() helper Andi Shyti
2025-03-26 23:40 ` [PATCH v2 2/6] drm/i915/gt: Move CCS workaround to the correct section Andi Shyti
@ 2025-03-26 23:40 ` Andi Shyti
2025-03-26 23:40 ` [PATCH v2 4/6] drm/i915/gt: Check for the first CCS instead of FIRST_RENDER_COMPUTE Andi Shyti
` (7 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Andi Shyti @ 2025-03-26 23:40 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Arshad Mehmood, Chris Wilson, Lucas De Marchi, Andi Shyti,
Andi Shyti
From: Andi Shyti <andi.shyti@intel.com>
All platforms supported by i915 have at least one RCS engine,
so there's no need to explicitly check for RCS or CCS presence.
Remove the redundant check and move the associated functions
to a more appropriate location in the code.
Signed-off-by: Andi Shyti <andi.shyti@intel.com>
---
drivers/gpu/drm/i915/gt/intel_workarounds.c | 16 +++++-----------
1 file changed, 5 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c
index bedd88a15959..b8ea6505afa2 100644
--- a/drivers/gpu/drm/i915/gt/intel_workarounds.c
+++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c
@@ -2894,20 +2894,14 @@ engine_init_workarounds(struct intel_engine_cs *engine, struct i915_wa_list *wal
engine_fake_wa_init(engine, wal);
- /*
- * These are common workarounds that just need to applied
- * to a single RCS/CCS engine's workaround list since
- * they're reset as part of the general render domain reset.
- */
- if (engine->flags & I915_ENGINE_FIRST_RENDER_COMPUTE)
+ if (engine->class == RENDER_CLASS) {
general_render_compute_wa_init(engine, wal);
-
- if (engine->class == COMPUTE_CLASS)
- ccs_engine_wa_init(engine, wal);
- else if (engine->class == RENDER_CLASS)
rcs_engine_wa_init(engine, wal);
- else
+ } else if (engine->class == COMPUTE_CLASS) {
+ ccs_engine_wa_init(engine, wal);
+ } else {
xcs_engine_wa_init(engine, wal);
+ }
}
void intel_engine_init_workarounds(struct intel_engine_cs *engine)
--
2.47.2
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH v2 4/6] drm/i915/gt: Check for the first CCS instead of FIRST_RENDER_COMPUTE
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
` (2 preceding siblings ...)
2025-03-26 23:40 ` [PATCH v2 3/6] drm/i915/gt: Remove FIRST_RENDER_COMPUTE in workaround Andi Shyti
@ 2025-03-26 23:40 ` Andi Shyti
2025-03-26 23:40 ` [PATCH v2 5/6] drm/i915/gt/uc: Use FIRST_CCS() helper for one-time CCS operations Andi Shyti
` (6 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Andi Shyti @ 2025-03-26 23:40 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Arshad Mehmood, Chris Wilson, Lucas De Marchi, Andi Shyti,
Andi Shyti
From: Andi Shyti <andi.shyti@intel.com>
Enable the CCS engine when the first CCS is encountered in the
execlist setup, instead of checking for the
I915_ENGINE_FIRST_RENDER_COMPUTE flag.
Signed-off-by: Andi Shyti <andi.shyti@intel.com>
---
drivers/gpu/drm/i915/gt/intel_execlists_submission.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
index 4a80ffa1b962..70ea56054a19 100644
--- a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
+++ b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
@@ -2950,7 +2950,7 @@ static int execlists_resume(struct intel_engine_cs *engine)
enable_execlists(engine);
- if (engine->flags & I915_ENGINE_FIRST_RENDER_COMPUTE)
+ if (FIRST_CCS(engine))
xehp_enable_ccs_engines(engine);
return 0;
--
2.47.2
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH v2 5/6] drm/i915/gt/uc: Use FIRST_CCS() helper for one-time CCS operations
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
` (3 preceding siblings ...)
2025-03-26 23:40 ` [PATCH v2 4/6] drm/i915/gt: Check for the first CCS instead of FIRST_RENDER_COMPUTE Andi Shyti
@ 2025-03-26 23:40 ` Andi Shyti
2025-03-26 23:40 ` [PATCH v2 6/6] drm/i915/gt: Remove unused I915_ENGINE_FIRST_RENDER_COMPUTE flag Andi Shyti
` (5 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Andi Shyti @ 2025-03-26 23:40 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Arshad Mehmood, Chris Wilson, Lucas De Marchi, Andi Shyti,
Andi Shyti
From: Andi Shyti <andi.shyti@intel.com>
Replace checks for I915_ENGINE_FIRST_RENDER_COMPUTE combined
with CCS_MASK() with the FIRST_CCS() helper. This improves
readability and ensures that certain CCS-specific actions, such
as enabling GEN12_RCU_MODE and calling xehp_enable_ccs_engines(),
are performed only once, on the first CCS engine encountered.
This is particularly relevant for platforms like DG2, which
support multiple CCS engines.
Signed-off-by: Andi Shyti <andi.shyti@intel.com>
---
drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c | 3 +--
drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c | 2 +-
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c
index 46fabbfc775e..bf1686af29e7 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c
@@ -392,8 +392,7 @@ static int guc_mmio_regset_init(struct temp_regset *regset,
ret |= GUC_MMIO_REG_ADD(gt, regset, RING_HWS_PGA(base), false);
ret |= GUC_MMIO_REG_ADD(gt, regset, RING_IMR(base), false);
- if ((engine->flags & I915_ENGINE_FIRST_RENDER_COMPUTE) &&
- CCS_MASK(engine->gt))
+ if (FIRST_CCS(engine))
ret |= GUC_MMIO_REG_ADD(gt, regset, GEN12_RCU_MODE, true);
/*
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c
index f8cb7c630d5b..18545196c9f4 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c
@@ -4422,7 +4422,7 @@ static int guc_resume(struct intel_engine_cs *engine)
setup_hwsp(engine);
start_engine(engine);
- if (engine->flags & I915_ENGINE_FIRST_RENDER_COMPUTE)
+ if (FIRST_CCS(engine))
xehp_enable_ccs_engines(engine);
return 0;
--
2.47.2
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH v2 6/6] drm/i915/gt: Remove unused I915_ENGINE_FIRST_RENDER_COMPUTE flag
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
` (4 preceding siblings ...)
2025-03-26 23:40 ` [PATCH v2 5/6] drm/i915/gt/uc: Use FIRST_CCS() helper for one-time CCS operations Andi Shyti
@ 2025-03-26 23:40 ` Andi Shyti
2025-04-23 13:57 ` Lucas De Marchi
2025-03-27 0:13 ` ✗ Fi.CI.CHECKPATCH: warning for Remove I915_ENGINE_FIRST_RENDER_COMPUTE Patchwork
` (4 subsequent siblings)
10 siblings, 1 reply; 16+ messages in thread
From: Andi Shyti @ 2025-03-26 23:40 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Arshad Mehmood, Chris Wilson, Lucas De Marchi, Andi Shyti,
Andi Shyti
From: Andi Shyti <andi.shyti@intel.com>
The I915_ENGINE_FIRST_RENDER_COMPUTE flag is no longer used.
Its purpose has been replaced by the FIRST_CCS() helper, which
determines the first render or compute engine as needed.
Remove the flag definition and its assignment from
intel_engine_setup().
Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Andi Shyti <andi.shyti@intel.com>
---
drivers/gpu/drm/i915/gt/intel_engine_cs.c | 4 ----
drivers/gpu/drm/i915/gt/intel_engine_types.h | 3 +--
2 files changed, 1 insertion(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
index b721bbd23356..1b60be057192 100644
--- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c
+++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
@@ -497,10 +497,6 @@ static int intel_engine_setup(struct intel_gt *gt, enum intel_engine_id id,
engine->logical_mask = BIT(logical_instance);
__sprint_engine_name(engine);
- if ((engine->class == COMPUTE_CLASS || engine->class == RENDER_CLASS) &&
- __ffs(CCS_MASK(engine->gt) | RCS_MASK(engine->gt)) == engine->instance)
- engine->flags |= I915_ENGINE_FIRST_RENDER_COMPUTE;
-
/* features common between engines sharing EUs */
if (engine->class == RENDER_CLASS || engine->class == COMPUTE_CLASS) {
engine->flags |= I915_ENGINE_HAS_RCS_REG_STATE;
diff --git a/drivers/gpu/drm/i915/gt/intel_engine_types.h b/drivers/gpu/drm/i915/gt/intel_engine_types.h
index 155b6255a63e..c5529b966b7a 100644
--- a/drivers/gpu/drm/i915/gt/intel_engine_types.h
+++ b/drivers/gpu/drm/i915/gt/intel_engine_types.h
@@ -590,8 +590,7 @@ struct intel_engine_cs {
#define I915_ENGINE_WANT_FORCED_PREEMPTION BIT(8)
#define I915_ENGINE_HAS_RCS_REG_STATE BIT(9)
#define I915_ENGINE_HAS_EU_PRIORITY BIT(10)
-#define I915_ENGINE_FIRST_RENDER_COMPUTE BIT(11)
-#define I915_ENGINE_USES_WA_HOLD_SWITCHOUT BIT(12)
+#define I915_ENGINE_USES_WA_HOLD_SWITCHOUT BIT(11)
unsigned int flags;
/*
--
2.47.2
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH v2 6/6] drm/i915/gt: Remove unused I915_ENGINE_FIRST_RENDER_COMPUTE flag
2025-03-26 23:40 ` [PATCH v2 6/6] drm/i915/gt: Remove unused I915_ENGINE_FIRST_RENDER_COMPUTE flag Andi Shyti
@ 2025-04-23 13:57 ` Lucas De Marchi
0 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2025-04-23 13:57 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx, dri-devel, Arshad Mehmood, Chris Wilson, Andi Shyti
On Thu, Mar 27, 2025 at 12:40:05AM +0100, Andi Shyti wrote:
>From: Andi Shyti <andi.shyti@intel.com>
>
>The I915_ENGINE_FIRST_RENDER_COMPUTE flag is no longer used.
>Its purpose has been replaced by the FIRST_CCS() helper, which
>determines the first render or compute engine as needed.
which is not true since you implemented the macro exclusively using
CCS_MASK, so it only means compute and will skip applying the
workarounds on platforms that don't have compute but have render.
Lucas De Marchi
>
>Remove the flag definition and its assignment from
>intel_engine_setup().
>
>Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
>Signed-off-by: Andi Shyti <andi.shyti@intel.com>
>---
> drivers/gpu/drm/i915/gt/intel_engine_cs.c | 4 ----
> drivers/gpu/drm/i915/gt/intel_engine_types.h | 3 +--
> 2 files changed, 1 insertion(+), 6 deletions(-)
>
>diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
>index b721bbd23356..1b60be057192 100644
>--- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c
>+++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
>@@ -497,10 +497,6 @@ static int intel_engine_setup(struct intel_gt *gt, enum intel_engine_id id,
> engine->logical_mask = BIT(logical_instance);
> __sprint_engine_name(engine);
>
>- if ((engine->class == COMPUTE_CLASS || engine->class == RENDER_CLASS) &&
>- __ffs(CCS_MASK(engine->gt) | RCS_MASK(engine->gt)) == engine->instance)
>- engine->flags |= I915_ENGINE_FIRST_RENDER_COMPUTE;
>-
> /* features common between engines sharing EUs */
> if (engine->class == RENDER_CLASS || engine->class == COMPUTE_CLASS) {
> engine->flags |= I915_ENGINE_HAS_RCS_REG_STATE;
>diff --git a/drivers/gpu/drm/i915/gt/intel_engine_types.h b/drivers/gpu/drm/i915/gt/intel_engine_types.h
>index 155b6255a63e..c5529b966b7a 100644
>--- a/drivers/gpu/drm/i915/gt/intel_engine_types.h
>+++ b/drivers/gpu/drm/i915/gt/intel_engine_types.h
>@@ -590,8 +590,7 @@ struct intel_engine_cs {
> #define I915_ENGINE_WANT_FORCED_PREEMPTION BIT(8)
> #define I915_ENGINE_HAS_RCS_REG_STATE BIT(9)
> #define I915_ENGINE_HAS_EU_PRIORITY BIT(10)
>-#define I915_ENGINE_FIRST_RENDER_COMPUTE BIT(11)
>-#define I915_ENGINE_USES_WA_HOLD_SWITCHOUT BIT(12)
>+#define I915_ENGINE_USES_WA_HOLD_SWITCHOUT BIT(11)
> unsigned int flags;
>
> /*
>--
>2.47.2
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for Remove I915_ENGINE_FIRST_RENDER_COMPUTE
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
` (5 preceding siblings ...)
2025-03-26 23:40 ` [PATCH v2 6/6] drm/i915/gt: Remove unused I915_ENGINE_FIRST_RENDER_COMPUTE flag Andi Shyti
@ 2025-03-27 0:13 ` Patchwork
2025-03-27 0:14 ` ✗ Fi.CI.SPARSE: " Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-03-27 0:13 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
== Series Details ==
Series: Remove I915_ENGINE_FIRST_RENDER_COMPUTE
URL : https://patchwork.freedesktop.org/series/146832/
State : warning
== Summary ==
Error: dim checkpatch failed
a150ec769409 drm/i915: Add the FIRST_CCS() helper
-:27: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'e__' - possible side-effects?
#27: FILE: drivers/gpu/drm/i915/i915_drv.h:622:
+#define FIRST_CCS(e__) \
+ (CCS_MASK(e__->gt) && (__ffs(CCS_MASK(e__->gt)) == e__->instance))
-:27: CHECK:MACRO_ARG_PRECEDENCE: Macro argument 'e__' may be better as '(e__)' to avoid precedence issues
#27: FILE: drivers/gpu/drm/i915/i915_drv.h:622:
+#define FIRST_CCS(e__) \
+ (CCS_MASK(e__->gt) && (__ffs(CCS_MASK(e__->gt)) == e__->instance))
total: 0 errors, 0 warnings, 2 checks, 9 lines checked
eadd6d4a2092 drm/i915/gt: Move CCS workaround to the correct section
82c17b19530b drm/i915/gt: Remove FIRST_RENDER_COMPUTE in workaround
4fe052e75e45 drm/i915/gt: Check for the first CCS instead of FIRST_RENDER_COMPUTE
61c07aa7b402 drm/i915/gt/uc: Use FIRST_CCS() helper for one-time CCS operations
030506b29b01 drm/i915/gt: Remove unused I915_ENGINE_FIRST_RENDER_COMPUTE flag
^ permalink raw reply [flat|nested] 16+ messages in thread* ✗ Fi.CI.SPARSE: warning for Remove I915_ENGINE_FIRST_RENDER_COMPUTE
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
` (6 preceding siblings ...)
2025-03-27 0:13 ` ✗ Fi.CI.CHECKPATCH: warning for Remove I915_ENGINE_FIRST_RENDER_COMPUTE Patchwork
@ 2025-03-27 0:14 ` Patchwork
2025-03-27 3:13 ` ✓ i915.CI.BAT: success " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-03-27 0:14 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
== Series Details ==
Series: Remove I915_ENGINE_FIRST_RENDER_COMPUTE
URL : https://patchwork.freedesktop.org/series/146832/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 16+ messages in thread* ✓ i915.CI.BAT: success for Remove I915_ENGINE_FIRST_RENDER_COMPUTE
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
` (7 preceding siblings ...)
2025-03-27 0:14 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2025-03-27 3:13 ` Patchwork
2025-03-27 4:52 ` ✗ i915.CI.Full: failure " Patchwork
2025-04-23 13:54 ` [PATCH v2 0/6] " Lucas De Marchi
10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-03-27 3:13 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5863 bytes --]
== Series Details ==
Series: Remove I915_ENGINE_FIRST_RENDER_COMPUTE
URL : https://patchwork.freedesktop.org/series/146832/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16321 -> Patchwork_146832v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/index.html
Participating hosts (40 -> 40)
------------------------------
Additional (2): bat-jsl-4 fi-pnv-d510
Missing (2): bat-twl-1 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_146832v1:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_module_load@load:
- {bat-jsl-4}: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/bat-jsl-4/igt@i915_module_load@load.html
Known issues
------------
Here are the changes found in Patchwork_146832v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- fi-pnv-d510: NOTRUN -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/fi-pnv-d510/igt@dmabuf@all-tests.html
* igt@i915_selftest@live@workarounds:
- bat-rplp-1: [PASS][3] -> [INCOMPLETE][4] ([i915#9413]) +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/bat-rplp-1/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/bat-rplp-1/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/bat-arls-6/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_chamelium_edid@vga-edid-read:
- bat-dg2-13: NOTRUN -> [SKIP][7] ([Intel XE#484] / [i915#4550]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/bat-dg2-13/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][8] +33 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
#### Possible fixes ####
* igt@dmabuf@all-tests:
- bat-apl-1: [INCOMPLETE][9] ([i915#12904]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/bat-apl-1/igt@dmabuf@all-tests.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/bat-mtlp-8/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/bat-mtlp-8/igt@i915_selftest@live.html
- bat-adlp-11: [ABORT][13] ([i915#13696]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/bat-adlp-11/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/bat-adlp-11/igt@i915_selftest@live.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][15] ([i915#13735]) -> [PASS][16] +132 other tests pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_chamelium_edid@dp-edid-read:
- bat-dg2-13: [ABORT][19] ([i915#13940]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13696]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13696
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#13940]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13940
[i915#4550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4550
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* Linux: CI_DRM_16321 -> Patchwork_146832v1
CI-20190529: 20190529
CI_DRM_16321: 14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8284: 8284
Patchwork_146832v1: 14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/index.html
[-- Attachment #2: Type: text/html, Size: 6950 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread* ✗ i915.CI.Full: failure for Remove I915_ENGINE_FIRST_RENDER_COMPUTE
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
` (8 preceding siblings ...)
2025-03-27 3:13 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-03-27 4:52 ` Patchwork
2025-04-23 13:54 ` [PATCH v2 0/6] " Lucas De Marchi
10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-03-27 4:52 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 114585 bytes --]
== Series Details ==
Series: Remove I915_ENGINE_FIRST_RENDER_COMPUTE
URL : https://patchwork.freedesktop.org/series/146832/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16321_full -> Patchwork_146832v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_146832v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_146832v1_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_146832v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-rkl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-rkl-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
Known issues
------------
Here are the changes found in Patchwork_146832v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu-1: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +15 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#3281]) +12 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#9323]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html
- shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#6335])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][18] ([i915#1099])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-snb5/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][21] ([i915#7975] / [i915#8213])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-1/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-immediate:
- shard-mtlp: [PASS][22] -> [ABORT][23] ([i915#13193]) +1 other test abort
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-mtlp-2/igt@gem_eio@in-flight-immediate.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-7/igt@gem_eio@in-flight-immediate.html
* igt@gem_eio@in-flight-suspend:
- shard-dg1: [PASS][24] -> [DMESG-WARN][25] ([i915#4391] / [i915#4423])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-19/igt@gem_eio@in-flight-suspend.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-15/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][26] -> [FAIL][27] ([i915#12543] / [i915#5784])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-12/igt@gem_eio@reset-stress.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4771])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2-9: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_exec_balancer@bonded-true-hang.html
- shard-dg2-9: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#4036])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2-9: NOTRUN -> [SKIP][33] ([i915#8555])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#4525])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#4525]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][37] -> [ABORT][38] ([i915#11713])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-tglu-8/igt@gem_exec_big@single.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-4/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#6344])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#3281]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4537])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613] / [i915#7582])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#4613]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- shard-dg2-9: NOTRUN -> [SKIP][56] ([i915#4083]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic-small-bo-tiledy:
- shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#4077]) +8 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
* igt@gem_mmap_gtt@basic-wc:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_wc@write-read:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_mmap_wc@write-read.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@uncached:
- shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_pread@uncached.html
* igt@gem_pwrite@basic-random:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#4270])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-context-2:
- shard-rkl: [PASS][65] -> [TIMEOUT][66] ([i915#12917] / [i915#12964]) +1 other test timeout
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-rkl-8/igt@gem_pxp@create-regular-context-2.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-4/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [FAIL][67] ([i915#13811])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2-9: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [TIMEOUT][70] ([i915#12917] / [i915#12964])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-snb: NOTRUN -> [SKIP][73] +71 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-snb2/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][74] +283 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#8411])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +6 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4885])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg2-9: NOTRUN -> [SKIP][80] ([i915#4885])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4077]) +8 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4079])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@gem_tiled_pread_basic.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [PASS][83] -> [FAIL][84] ([i915#12941])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-rkl-8/igt@gem_tiled_swapping@non-threaded.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_tiling_max_stride:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4077]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#3282] / [i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
- shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@gen9_exec_parse@batch-invalid-length.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-without-end:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#2527]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@gen9_exec_parse@bb-start-far.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#2527])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2-9: NOTRUN -> [SKIP][101] ([i915#2856])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#13786])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@i915_fb_tiling@basic-x-tiling.html
- shard-dg2-9: NOTRUN -> [SKIP][103] ([i915#13786])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#6412])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@i915_module_load@resize-bar.html
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#6412])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#11681] / [i915#6621])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#11681])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#4387])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock@memory_region:
- shard-rkl: NOTRUN -> [DMESG-WARN][109] ([i915#9311]) +1 other test dmesg-warn
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][110] ([i915#4817])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk3/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#7707])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@bad-pitch-32:
- shard-dg1: [PASS][112] -> [DMESG-WARN][113] ([i915#4423]) +1 other test dmesg-warn
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-17/igt@kms_addfb_basic@bad-pitch-32.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-16/igt@kms_addfb_basic@bad-pitch-32.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4212])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4212])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-4-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#8709]) +7 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#8709]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#8709]) +7 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#8709]) +7 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-9: NOTRUN -> [SKIP][120] ([i915#12967] / [i915#6228])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_async_flips@invalid-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#12967] / [i915#6228])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#9531])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4:
- shard-dg1: [PASS][123] -> [FAIL][124] ([i915#5956]) +1 other test fail
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#1769] / [i915#3555])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#5286]) +8 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][127] +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#5286]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5286])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-glk: NOTRUN -> ([SKIP][130], [SKIP][131]) +14 other tests ( 2 skip )
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#5286]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][133] -> [FAIL][134] ([i915#5138])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#3638])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6187])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-dg2-9: NOTRUN -> [SKIP][137] ([i915#5190]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5190]) +8 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][141] +41 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
- shard-mtlp: NOTRUN -> [SKIP][142] +6 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][143] +61 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#6095]) +132 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#6095]) +24 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#12313]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6095]) +19 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#12805])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][150] ([i915#12796]) +1 other test incomplete
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#6095]) +13 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#6095]) +133 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#10434] / [i915#6095])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#6095]) +34 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#12313]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#12313]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#6095]) +94 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][158] ([i915#10307] / [i915#6095]) +24 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#3742])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +6 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
- shard-dg2-9: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][167] -> [SKIP][168] ([i915#3555])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-11/igt@kms_color@deep-color.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-4/igt@kms_color@deep-color.html
* igt@kms_content_protection@content-type-change:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#6944] / [i915#9424])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3299])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-9: NOTRUN -> [SKIP][171] ([i915#3299])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#7118] / [i915#9424]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_content_protection@legacy.html
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#9424])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#7118])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_content_protection@srm.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#6944])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_content_protection@srm.html
- shard-dg2-9: NOTRUN -> [SKIP][177] ([i915#7118])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: NOTRUN -> [FAIL][178] ([i915#13566]) +1 other test fail
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#8814])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-9: NOTRUN -> [SKIP][180] ([i915#13049])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#13049])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][182] ([i915#13566])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#13049]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3555]) +5 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8814])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][186] ([i915#12358] / [i915#7882])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk4/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][187] ([i915#12358])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#13046] / [i915#5354]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-dg2-9: NOTRUN -> [SKIP][189] ([i915#13046] / [i915#5354]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][190] +21 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#9067])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#9067])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg2-9: NOTRUN -> [SKIP][193] ([i915#9067])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#4103] / [i915#4213]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#4103])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9723])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#9833])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3804])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3555]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-dg2: [PASS][200] -> [SKIP][201] ([i915#1257])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-11/igt@kms_dp_aux_dev.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-4/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#13748])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-9: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#3840])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#13798])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#2575])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [PASS][210] -> [INCOMPLETE][211] ([i915#9878])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-rkl-1/igt@kms_fbcon_fbt@fbc-suspend.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#4854])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_feature_discovery@chamelium.html
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2065] / [i915#4854])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#1839])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#9337])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-9: NOTRUN -> [SKIP][216] ([i915#658])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#8381])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#3637]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#9934]) +5 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#9934]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#3637]) +5 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#9934]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2-9: NOTRUN -> [SKIP][223] ([i915#9934]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible@b-hdmi-a2:
- shard-rkl: [PASS][224] -> [DMESG-WARN][225] ([i915#12964]) +15 other tests dmesg-warn
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-rkl-8/igt@kms_flip@dpms-vs-vblank-race-interruptible@b-hdmi-a2.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-1/igt@kms_flip@dpms-vs-vblank-race-interruptible@b-hdmi-a2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [FAIL][226] ([i915#13734]) +3 other tests fail
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1:
- shard-snb: [PASS][227] -> [FAIL][228] ([i915#13734]) +2 other tests fail
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-snb2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-rkl: [PASS][229] -> [FAIL][230] ([i915#13734]) +2 other tests fail
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-panning@a-hdmi-a1:
- shard-rkl: NOTRUN -> [DMESG-WARN][231] ([i915#12964]) +5 other tests dmesg-warn
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_flip@flip-vs-panning@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#12745] / [i915#4839] / [i915#6113])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][233] ([i915#12745] / [i915#6113])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#2672])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#2587] / [i915#2672] / [i915#3555])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#2587] / [i915#2672])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555] / [i915#5190])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][240] ([i915#2672])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#2672]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#2587] / [i915#2672])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#2587] / [i915#2672])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8810]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: [PASS][248] -> [FAIL][249] ([i915#6880])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#8708]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#5354]) +19 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][252] ([i915#3458]) +7 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#3458]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3458]) +13 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#5439])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#5439])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#3023]) +23 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#8708]) +4 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#1825]) +7 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][260] +6 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][261] ([i915#5354]) +12 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][262] ([i915#8708]) +9 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#1825]) +43 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#8708]) +9 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][267] ([i915#10656])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#13688])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#13688])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#12339])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#12388])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#13522])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][273] ([i915#13026]) +1 other test incomplete
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][274] ([i915#10647] / [i915#12177])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][275] ([i915#10647]) +1 other test fail
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#6953])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg2-9: NOTRUN -> [SKIP][277] ([i915#6953] / [i915#9423])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#12247] / [i915#9423]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#12247]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#6953])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#12247]) +11 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#12247]) +8 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#6953])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#12247]) +3 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#6953] / [i915#9423])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#12247] / [i915#3555])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#12247] / [i915#3555])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#12247]) +3 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html
* igt@kms_pm_dc@dc5-dpms:
- shard-rkl: NOTRUN -> [FAIL][289] ([i915#9295])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_pm_dc@dc5-dpms.html
- shard-tglu-1: NOTRUN -> [FAIL][290] ([i915#9295])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#4281])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#3828])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#9519])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][294] -> [SKIP][295] ([i915#9519]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#9519])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#9519]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#6524] / [i915#6805])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#11520]) +5 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#11520]) +6 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][301] ([i915#11520]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-snb2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#9808])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#12316]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#11520]) +9 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#11520]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-9: NOTRUN -> [SKIP][306] ([i915#11520]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#11520]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][308] ([i915#11520]) +11 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#9683])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-basic:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#9688]) +3 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#9732]) +9 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#1072] / [i915#9732]) +14 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#9732]) +14 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#9732]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_psr@psr-suspend.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +10 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_psr@psr2-primary-blt.html
* igt@kms_psr@psr2-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#4077] / [i915#9688]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +22 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-3/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-9: NOTRUN -> [SKIP][318] ([i915#9685])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#4884])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#5289])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#5289]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#5289]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#12755])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-dg2-9: NOTRUN -> [SKIP][324] ([i915#12755] / [i915#5190]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#12755])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][326] ([i915#3555]) +5 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-dg2-9: NOTRUN -> [SKIP][327] ([i915#3555]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#3555] / [i915#8809] / [i915#8823])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][329] ([i915#10959])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#8623])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][331] ([i915#9196]) +1 other test fail
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#3555]) +3 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#11920])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-dg2-9: NOTRUN -> [SKIP][334] ([i915#9906])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#3555] / [i915#9906])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#9906])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#2437] / [i915#9412])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#2437])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_writeback@writeback-fb-id.html
- shard-dg2-9: NOTRUN -> [SKIP][339] ([i915#2437])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][340] ([i915#2437])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#2437] / [i915#9412])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#2437] / [i915#9412])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-tglu-9/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][344] ([i915#9100]) +1 other test fail
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg2: NOTRUN -> [SKIP][345] +5 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][346] -> [FAIL][347] ([i915#4349]) +4 other tests fail
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2-9: NOTRUN -> [SKIP][348] ([i915#8516])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-9/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-read:
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#3708])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#3708])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#9917])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@gem_eio@in-flight-internal-10ms:
- shard-mtlp: [ABORT][352] ([i915#13193]) -> [PASS][353] +1 other test pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-mtlp-7/igt@gem_eio@in-flight-internal-10ms.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-8/igt@gem_eio@in-flight-internal-10ms.html
* igt@gem_eio@kms:
- shard-rkl: [DMESG-WARN][354] ([i915#13363]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-rkl-8/igt@gem_eio@kms.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-1/igt@gem_eio@kms.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: [ABORT][356] ([i915#7975] / [i915#8213]) -> [PASS][357] +1 other test pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-4/igt@gem_exec_suspend@basic-s4-devices.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][358] ([i915#5493]) -> [PASS][359] +1 other test pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: [ABORT][360] ([i915#13592]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-glk5/igt@i915_module_load@reload-with-fault-injection.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][362] ([i915#3591]) -> [PASS][363] +2 other tests pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: [INCOMPLETE][364] -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-rkl-3/igt@i915_pm_rpm@system-suspend.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-rkl-8/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][366] ([i915#13821]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-snb5/igt@i915_pm_rps@reset.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-snb2/igt@i915_pm_rps@reset.html
* igt@kms_addfb_basic@no-handle:
- shard-dg1: [DMESG-WARN][368] ([i915#4391] / [i915#4423]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-15/igt@kms_addfb_basic@no-handle.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-14/igt@kms_addfb_basic@no-handle.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [FAIL][370] ([i915#5956]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
- shard-glk: [FAIL][372] ([i915#2346]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-glk8/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk8/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
* igt@kms_flip@2x-modeset-vs-vblank-race@ab-vga1-hdmi-a1:
- shard-snb: [INCOMPLETE][374] ([i915#12314]) -> [PASS][375] +1 other test pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-snb2/igt@kms_flip@2x-modeset-vs-vblank-race@ab-vga1-hdmi-a1.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-snb5/igt@kms_flip@2x-modeset-vs-vblank-race@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg1: [FAIL][376] ([i915#13734]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-12/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-18/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp4:
- shard-dg2: [FAIL][378] ([i915#13734]) -> [PASS][379] +2 other tests pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp4.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-glk: [DMESG-WARN][380] ([i915#118]) -> [PASS][381] +2 other tests pass
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-glk8/igt@kms_flip@flip-vs-expired-vblank.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk8/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [FAIL][382] ([i915#6880]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-snb: [SKIP][384] -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [SKIP][386] ([i915#3555] / [i915#8228]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-3/igt@kms_hdr@static-toggle.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-10/igt@kms_hdr@static-toggle.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg1: [DMESG-WARN][388] ([i915#4423]) -> [PASS][389] +1 other test pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-14/igt@kms_pm_rpm@basic-pci-d3-state.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-16/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@perf_pmu@module-unload:
- shard-dg1: [INCOMPLETE][390] ([i915#13520]) -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-15/igt@perf_pmu@module-unload.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-17/igt@perf_pmu@module-unload.html
#### Warnings ####
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs:
- shard-dg1: [SKIP][392] ([i915#4423] / [i915#6095]) -> [SKIP][393] ([i915#6095])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-16/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-13/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [FAIL][394] ([i915#7173]) -> [SKIP][395] ([i915#9424])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-11/igt@kms_content_protection@lic-type-0.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][396] ([i915#9433]) -> [SKIP][397] ([i915#9424])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-14/igt@kms_content_protection@mei-interface.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg1: [SKIP][398] ([i915#4423] / [i915#9934]) -> [SKIP][399] ([i915#9934])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-12/igt@kms_flip@2x-modeset-vs-vblank-race.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-12/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][400] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][401] ([i915#12314] / [i915#12745] / [i915#4839])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: [INCOMPLETE][402] ([i915#12745]) -> [INCOMPLETE][403] ([i915#12314] / [i915#12745])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][404] ([i915#3458]) -> [SKIP][405] ([i915#10433] / [i915#3458]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-dg2: [SKIP][406] ([i915#10433] / [i915#3458]) -> [SKIP][407] ([i915#3458]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][408] ([i915#1187] / [i915#12713]) -> [SKIP][409] ([i915#12713])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html
- shard-dg2: [SKIP][410] ([i915#13331]) -> [SKIP][411] ([i915#12713])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: [SKIP][412] ([i915#11520] / [i915#4423]) -> [SKIP][413] ([i915#11520])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-19/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-15/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: [SKIP][414] ([i915#4423] / [i915#5289]) -> [SKIP][415] ([i915#5289])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg1: [SKIP][416] ([i915#4423] / [i915#9906]) -> [SKIP][417] ([i915#9906])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16321/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-virtual.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-virtual.html
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13592]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13592
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13798]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798
[i915#13811]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13811
[i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_16321 -> Patchwork_146832v1
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_16321: 14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8284: 8284
Patchwork_146832v1: 14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_146832v1/index.html
[-- Attachment #2: Type: text/html, Size: 144694 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE
2025-03-26 23:39 [PATCH v2 0/6] Remove I915_ENGINE_FIRST_RENDER_COMPUTE Andi Shyti
` (9 preceding siblings ...)
2025-03-27 4:52 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-04-23 13:54 ` Lucas De Marchi
10 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2025-04-23 13:54 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx, dri-devel, Arshad Mehmood, Chris Wilson, Andi Shyti
On Thu, Mar 27, 2025 at 12:39:59AM +0100, Andi Shyti wrote:
>Hi,
>
>While testing the multi-CCS static load balancing, Arshad
>discovered that the CCS workaround was being applied twice, due
>to commit [*].
>
>Further discussions with Lucas led to rethinking the purpose of
>I915_ENGINE_FIRST_RENDER_COMPUTE. This flag was originally
>introduced to handle platforms with different CCS/RCS setups.
>However, for all GPUs currently supported by i915, we can assume
>the presence of at least one RCS engine, so the logic can shift
>to focus on the first CCS engine.
Not sure I follow this... The WAs in "first render or compute" are for
things that are shared between RCS and CCS in the hardware. Why are
shifting the focus to "first CCS engine" when that one can be fused
off/unavailable rather then doing the simple "always do these WAs in the
RCS since that one is always available". And yes, if unofficial support
for PVC is desired, then that can't be done, but shifting it to be
always on CCS would be wrong too.
Lucas De Marchi
^ permalink raw reply [flat|nested] 16+ messages in thread