* [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled
@ 2024-10-28 7:46 Jouni Högander
2024-10-28 12:24 ` Jani Nikula
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Jouni Högander @ 2024-10-28 7:46 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander
We are currently seeing unexpected link trainings with several different
eDP panels. These are caused by these panels stating bad link status in
their dpcd registers. This can be observed by doing following test:
1. Boot up without Xe module loaded
2. Load Xe module with PSR disabled:
$ modprobe xe enable_psr=0
3. Read panel link status register
$ dpcd_reg read --offset 0x200e --count=1
0x200e: 00
4. Enable PSR, sleep for 2 seconds and disable PSR again:
$ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug
$ echo "-1" > /sys/kernel/debug/dri/0000:00:02.0/xe_params/enable_psr
$ echo 0x0 > /sys/kernel/debug/dri/0/i915_edp_psr_debug
$ sleep 2
$ cat /sys/kernel/debug/dri/0/i915_edp_psr_status | grep status
$ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug
Source PSR/PanelReplay status: DEEP_SLEEP [0x80310030]
5. Now read panel link status registers again:
$ dpcd_reg read --offset 0x200e --count=1
0x200e: 80
Workaround this by not trusting link status registers after PSR is enabled
until first short pulse interrupt is received.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
.../drm/i915/display/intel_display_types.h | 2 +
drivers/gpu/drm/i915/display/intel_dp.c | 3 +-
drivers/gpu/drm/i915/display/intel_psr.c | 39 +++++++++++++++++++
drivers/gpu/drm/i915/display/intel_psr.h | 1 +
4 files changed, 44 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 2bb1fa64da2f..f0b7d7262961 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1618,6 +1618,8 @@ struct intel_psr {
u32 dc3co_exit_delay;
struct delayed_work dc3co_work;
u8 entry_setup_frames;
+
+ bool link_ok;
};
struct intel_dp {
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index b036c6521659..efaaadfb12ea 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -5007,7 +5007,8 @@ intel_dp_needs_link_retrain(struct intel_dp *intel_dp)
return true;
/* Retrain if link not ok */
- return !intel_dp_link_ok(intel_dp, link_status);
+ return !(intel_dp_link_ok(intel_dp, link_status) ||
+ intel_psr_link_ok(intel_dp));
}
bool intel_dp_has_connector(struct intel_dp *intel_dp,
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 992543f508c1..0cd7388389e0 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2009,6 +2009,15 @@ static void intel_psr_enable_locked(struct intel_dp *intel_dp,
intel_dp->psr.enabled = true;
intel_dp->psr.paused = false;
+ /*
+ * Link_ok is sticky and set here on PSR enable. We can assume link
+ * training is complete as we never continue to PSR enable with
+ * untrained link. Link_ok is kept as set until first short pulse
+ * interrupt. This is targeted to workaround panels stating bad link
+ * after PSR is enabled.
+ */
+ intel_dp->psr.link_ok = true;
+
intel_psr_activate(intel_dp);
}
@@ -3458,6 +3467,9 @@ void intel_psr_short_pulse(struct intel_dp *intel_dp)
mutex_lock(&psr->lock);
+ /* Let's clear possibly set link_ok flag here */
+ psr->link_ok = false;
+
if (!psr->enabled)
goto exit;
@@ -3517,6 +3529,33 @@ bool intel_psr_enabled(struct intel_dp *intel_dp)
return ret;
}
+/**
+ * intel_psr_link_ok - return psr->link_ok
+ * @intel_dp: struct intel_dp
+ *
+ * We are seeing unexpected link re-trainings with some panels. This is caused
+ * by panel stating bad link status after PSR is enabled. Code checking link
+ * status can call this to ensure it can ignore bad link status stated by the
+ * panel I.e. if panel is stating bad link and intel_psr_link_ok is stating link
+ * is ok caller should rely on latter.
+ *
+ * Return value of link_ok
+ */
+bool intel_psr_link_ok(struct intel_dp *intel_dp)
+{
+ bool ret;
+
+ if ((!CAN_PSR(intel_dp) && !CAN_PANEL_REPLAY(intel_dp)) ||
+ !intel_dp_is_edp(intel_dp))
+ return false;
+
+ mutex_lock(&intel_dp->psr.lock);
+ ret = intel_dp->psr.link_ok;
+ mutex_unlock(&intel_dp->psr.lock);
+
+ return ret;
+}
+
/**
* intel_psr_lock - grab PSR lock
* @crtc_state: the crtc state
diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h
index 5f26f61f82aa..956be263c09e 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.h
+++ b/drivers/gpu/drm/i915/display/intel_psr.h
@@ -59,6 +59,7 @@ void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_st
void intel_psr_pause(struct intel_dp *intel_dp);
void intel_psr_resume(struct intel_dp *intel_dp);
bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state *crtc_state);
+bool intel_psr_link_ok(struct intel_dp *intel_dp);
void intel_psr_lock(const struct intel_crtc_state *crtc_state);
void intel_psr_unlock(const struct intel_crtc_state *crtc_state);
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled 2024-10-28 7:46 [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Jouni Högander @ 2024-10-28 12:24 ` Jani Nikula 2024-10-28 12:33 ` Jani Nikula 2024-10-28 12:47 ` Hogander, Jouni 2024-10-28 13:41 ` Imre Deak ` (3 subsequent siblings) 4 siblings, 2 replies; 9+ messages in thread From: Jani Nikula @ 2024-10-28 12:24 UTC (permalink / raw) To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander On Mon, 28 Oct 2024, Jouni Högander <jouni.hogander@intel.com> wrote: > We are currently seeing unexpected link trainings with several different > eDP panels. These are caused by these panels stating bad link status in > their dpcd registers. This can be observed by doing following test: > > 1. Boot up without Xe module loaded > > 2. Load Xe module with PSR disabled: > $ modprobe xe enable_psr=0 > > 3. Read panel link status register > $ dpcd_reg read --offset 0x200e --count=1 > 0x200e: 00 > > 4. Enable PSR, sleep for 2 seconds and disable PSR again: > > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > $ echo "-1" > /sys/kernel/debug/dri/0000:00:02.0/xe_params/enable_psr > $ echo 0x0 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > $ sleep 2 > $ cat /sys/kernel/debug/dri/0/i915_edp_psr_status | grep status > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > Source PSR/PanelReplay status: DEEP_SLEEP [0x80310030] > > 5. Now read panel link status registers again: > $ dpcd_reg read --offset 0x200e --count=1 > 0x200e: 80 > > Workaround this by not trusting link status registers after PSR is enabled > until first short pulse interrupt is received. Which eDP/DPCD version are we talking about? Could this be related to AUX-less ALPM? Some nitpicks below, less important. > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > --- > .../drm/i915/display/intel_display_types.h | 2 + > drivers/gpu/drm/i915/display/intel_dp.c | 3 +- > drivers/gpu/drm/i915/display/intel_psr.c | 39 +++++++++++++++++++ > drivers/gpu/drm/i915/display/intel_psr.h | 1 + > 4 files changed, 44 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h > index 2bb1fa64da2f..f0b7d7262961 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_types.h > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h > @@ -1618,6 +1618,8 @@ struct intel_psr { > u32 dc3co_exit_delay; > struct delayed_work dc3co_work; > u8 entry_setup_frames; > + > + bool link_ok; > }; > > struct intel_dp { > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c > index b036c6521659..efaaadfb12ea 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp.c > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > @@ -5007,7 +5007,8 @@ intel_dp_needs_link_retrain(struct intel_dp *intel_dp) > return true; > > /* Retrain if link not ok */ > - return !intel_dp_link_ok(intel_dp, link_status); > + return !(intel_dp_link_ok(intel_dp, link_status) || > + intel_psr_link_ok(intel_dp)); Nitpick, in general I think "not A and not B" reads better than "not (A or B)" because saying the parens aloud is kind of clumsy. Reading code aloud (well, in my head anyway) is one of my main tests for readability. > } > > bool intel_dp_has_connector(struct intel_dp *intel_dp, > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c > index 992543f508c1..0cd7388389e0 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.c > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > @@ -2009,6 +2009,15 @@ static void intel_psr_enable_locked(struct intel_dp *intel_dp, > intel_dp->psr.enabled = true; > intel_dp->psr.paused = false; > > + /* > + * Link_ok is sticky and set here on PSR enable. We can assume link > + * training is complete as we never continue to PSR enable with > + * untrained link. Link_ok is kept as set until first short pulse > + * interrupt. This is targeted to workaround panels stating bad link > + * after PSR is enabled. > + */ > + intel_dp->psr.link_ok = true; > + > intel_psr_activate(intel_dp); > } > > @@ -3458,6 +3467,9 @@ void intel_psr_short_pulse(struct intel_dp *intel_dp) > > mutex_lock(&psr->lock); > > + /* Let's clear possibly set link_ok flag here */ That's kind of a translation of C into English. If you need the comment, then maybe state the why instead of the what? > + psr->link_ok = false; > + > if (!psr->enabled) > goto exit; > > @@ -3517,6 +3529,33 @@ bool intel_psr_enabled(struct intel_dp *intel_dp) > return ret; > } > > +/** > + * intel_psr_link_ok - return psr->link_ok > + * @intel_dp: struct intel_dp > + * > + * We are seeing unexpected link re-trainings with some panels. This is caused > + * by panel stating bad link status after PSR is enabled. Code checking link > + * status can call this to ensure it can ignore bad link status stated by the > + * panel I.e. if panel is stating bad link and intel_psr_link_ok is stating link > + * is ok caller should rely on latter. > + * > + * Return value of link_ok > + */ > +bool intel_psr_link_ok(struct intel_dp *intel_dp) > +{ > + bool ret; > + > + if ((!CAN_PSR(intel_dp) && !CAN_PANEL_REPLAY(intel_dp)) || > + !intel_dp_is_edp(intel_dp)) > + return false; > + > + mutex_lock(&intel_dp->psr.lock); > + ret = intel_dp->psr.link_ok; > + mutex_unlock(&intel_dp->psr.lock); > + > + return ret; > +} > + > /** > * intel_psr_lock - grab PSR lock > * @crtc_state: the crtc state > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h > index 5f26f61f82aa..956be263c09e 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.h > +++ b/drivers/gpu/drm/i915/display/intel_psr.h > @@ -59,6 +59,7 @@ void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_st > void intel_psr_pause(struct intel_dp *intel_dp); > void intel_psr_resume(struct intel_dp *intel_dp); > bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state *crtc_state); > +bool intel_psr_link_ok(struct intel_dp *intel_dp); > > void intel_psr_lock(const struct intel_crtc_state *crtc_state); > void intel_psr_unlock(const struct intel_crtc_state *crtc_state); -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled 2024-10-28 12:24 ` Jani Nikula @ 2024-10-28 12:33 ` Jani Nikula 2024-10-28 12:47 ` Hogander, Jouni 1 sibling, 0 replies; 9+ messages in thread From: Jani Nikula @ 2024-10-28 12:33 UTC (permalink / raw) To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander On Mon, 28 Oct 2024, Jani Nikula <jani.nikula@linux.intel.com> wrote: > On Mon, 28 Oct 2024, Jouni Högander <jouni.hogander@intel.com> wrote: >> We are currently seeing unexpected link trainings with several different >> eDP panels. These are caused by these panels stating bad link status in >> their dpcd registers. This can be observed by doing following test: >> >> 1. Boot up without Xe module loaded >> >> 2. Load Xe module with PSR disabled: >> $ modprobe xe enable_psr=0 >> >> 3. Read panel link status register >> $ dpcd_reg read --offset 0x200e --count=1 >> 0x200e: 00 >> >> 4. Enable PSR, sleep for 2 seconds and disable PSR again: >> >> $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug >> $ echo "-1" > /sys/kernel/debug/dri/0000:00:02.0/xe_params/enable_psr >> $ echo 0x0 > /sys/kernel/debug/dri/0/i915_edp_psr_debug >> $ sleep 2 >> $ cat /sys/kernel/debug/dri/0/i915_edp_psr_status | grep status >> $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug >> Source PSR/PanelReplay status: DEEP_SLEEP [0x80310030] >> >> 5. Now read panel link status registers again: >> $ dpcd_reg read --offset 0x200e --count=1 >> 0x200e: 80 >> >> Workaround this by not trusting link status registers after PSR is enabled >> until first short pulse interrupt is received. > > Which eDP/DPCD version are we talking about? > > Could this be related to AUX-less ALPM? And what I'm after here, are we satisfied with saying several panels exhibit unexpected behaviour, so work around them? It just somehow doesn't smell like the root cause to me... > > Some nitpicks below, less important. > >> Signed-off-by: Jouni Högander <jouni.hogander@intel.com> >> --- >> .../drm/i915/display/intel_display_types.h | 2 + >> drivers/gpu/drm/i915/display/intel_dp.c | 3 +- >> drivers/gpu/drm/i915/display/intel_psr.c | 39 +++++++++++++++++++ >> drivers/gpu/drm/i915/display/intel_psr.h | 1 + >> 4 files changed, 44 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h >> index 2bb1fa64da2f..f0b7d7262961 100644 >> --- a/drivers/gpu/drm/i915/display/intel_display_types.h >> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h >> @@ -1618,6 +1618,8 @@ struct intel_psr { >> u32 dc3co_exit_delay; >> struct delayed_work dc3co_work; >> u8 entry_setup_frames; >> + >> + bool link_ok; >> }; >> >> struct intel_dp { >> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c >> index b036c6521659..efaaadfb12ea 100644 >> --- a/drivers/gpu/drm/i915/display/intel_dp.c >> +++ b/drivers/gpu/drm/i915/display/intel_dp.c >> @@ -5007,7 +5007,8 @@ intel_dp_needs_link_retrain(struct intel_dp *intel_dp) >> return true; >> >> /* Retrain if link not ok */ >> - return !intel_dp_link_ok(intel_dp, link_status); >> + return !(intel_dp_link_ok(intel_dp, link_status) || >> + intel_psr_link_ok(intel_dp)); > > Nitpick, in general I think "not A and not B" reads better than "not (A > or B)" because saying the parens aloud is kind of clumsy. Reading code > aloud (well, in my head anyway) is one of my main tests for readability. > >> } >> >> bool intel_dp_has_connector(struct intel_dp *intel_dp, >> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c >> index 992543f508c1..0cd7388389e0 100644 >> --- a/drivers/gpu/drm/i915/display/intel_psr.c >> +++ b/drivers/gpu/drm/i915/display/intel_psr.c >> @@ -2009,6 +2009,15 @@ static void intel_psr_enable_locked(struct intel_dp *intel_dp, >> intel_dp->psr.enabled = true; >> intel_dp->psr.paused = false; >> >> + /* >> + * Link_ok is sticky and set here on PSR enable. We can assume link >> + * training is complete as we never continue to PSR enable with >> + * untrained link. Link_ok is kept as set until first short pulse >> + * interrupt. This is targeted to workaround panels stating bad link >> + * after PSR is enabled. >> + */ >> + intel_dp->psr.link_ok = true; >> + >> intel_psr_activate(intel_dp); >> } >> >> @@ -3458,6 +3467,9 @@ void intel_psr_short_pulse(struct intel_dp *intel_dp) >> >> mutex_lock(&psr->lock); >> >> + /* Let's clear possibly set link_ok flag here */ > > That's kind of a translation of C into English. If you need the comment, > then maybe state the why instead of the what? > >> + psr->link_ok = false; >> + >> if (!psr->enabled) >> goto exit; >> >> @@ -3517,6 +3529,33 @@ bool intel_psr_enabled(struct intel_dp *intel_dp) >> return ret; >> } >> >> +/** >> + * intel_psr_link_ok - return psr->link_ok >> + * @intel_dp: struct intel_dp >> + * >> + * We are seeing unexpected link re-trainings with some panels. This is caused >> + * by panel stating bad link status after PSR is enabled. Code checking link >> + * status can call this to ensure it can ignore bad link status stated by the >> + * panel I.e. if panel is stating bad link and intel_psr_link_ok is stating link >> + * is ok caller should rely on latter. >> + * >> + * Return value of link_ok >> + */ >> +bool intel_psr_link_ok(struct intel_dp *intel_dp) >> +{ >> + bool ret; >> + >> + if ((!CAN_PSR(intel_dp) && !CAN_PANEL_REPLAY(intel_dp)) || >> + !intel_dp_is_edp(intel_dp)) >> + return false; >> + >> + mutex_lock(&intel_dp->psr.lock); >> + ret = intel_dp->psr.link_ok; >> + mutex_unlock(&intel_dp->psr.lock); >> + >> + return ret; >> +} >> + >> /** >> * intel_psr_lock - grab PSR lock >> * @crtc_state: the crtc state >> diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h >> index 5f26f61f82aa..956be263c09e 100644 >> --- a/drivers/gpu/drm/i915/display/intel_psr.h >> +++ b/drivers/gpu/drm/i915/display/intel_psr.h >> @@ -59,6 +59,7 @@ void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_st >> void intel_psr_pause(struct intel_dp *intel_dp); >> void intel_psr_resume(struct intel_dp *intel_dp); >> bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state *crtc_state); >> +bool intel_psr_link_ok(struct intel_dp *intel_dp); >> >> void intel_psr_lock(const struct intel_crtc_state *crtc_state); >> void intel_psr_unlock(const struct intel_crtc_state *crtc_state); -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled 2024-10-28 12:24 ` Jani Nikula 2024-10-28 12:33 ` Jani Nikula @ 2024-10-28 12:47 ` Hogander, Jouni 1 sibling, 0 replies; 9+ messages in thread From: Hogander, Jouni @ 2024-10-28 12:47 UTC (permalink / raw) To: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, jani.nikula@linux.intel.com On Mon, 2024-10-28 at 14:24 +0200, Jani Nikula wrote: > On Mon, 28 Oct 2024, Jouni Högander <jouni.hogander@intel.com> wrote: > > We are currently seeing unexpected link trainings with several > > different > > eDP panels. These are caused by these panels stating bad link > > status in > > their dpcd registers. This can be observed by doing following test: > > > > 1. Boot up without Xe module loaded > > > > 2. Load Xe module with PSR disabled: > > $ modprobe xe enable_psr=0 > > > > 3. Read panel link status register > > $ dpcd_reg read --offset 0x200e --count=1 > > 0x200e: 00 > > > > 4. Enable PSR, sleep for 2 seconds and disable PSR again: > > > > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > > $ echo "-1" > > > /sys/kernel/debug/dri/0000:00:02.0/xe_params/enable_psr > > $ echo 0x0 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > > $ sleep 2 > > $ cat /sys/kernel/debug/dri/0/i915_edp_psr_status | grep status > > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > > Source PSR/PanelReplay status: DEEP_SLEEP [0x80310030] > > > > 5. Now read panel link status registers again: > > $ dpcd_reg read --offset 0x200e --count=1 > > 0x200e: 80 > > > > Workaround this by not trusting link status registers after PSR is > > enabled > > until first short pulse interrupt is received. > > Which eDP/DPCD version are we talking about? This is at least since eDP 1.4. > > Could this be related to AUX-less ALPM? Panels we are seeing this are not using AUX-less ALPM. > > Some nitpicks below, less important. > > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > > --- > > .../drm/i915/display/intel_display_types.h | 2 + > > drivers/gpu/drm/i915/display/intel_dp.c | 3 +- > > drivers/gpu/drm/i915/display/intel_psr.c | 39 > > +++++++++++++++++++ > > drivers/gpu/drm/i915/display/intel_psr.h | 1 + > > 4 files changed, 44 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h > > b/drivers/gpu/drm/i915/display/intel_display_types.h > > index 2bb1fa64da2f..f0b7d7262961 100644 > > --- a/drivers/gpu/drm/i915/display/intel_display_types.h > > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h > > @@ -1618,6 +1618,8 @@ struct intel_psr { > > u32 dc3co_exit_delay; > > struct delayed_work dc3co_work; > > u8 entry_setup_frames; > > + > > + bool link_ok; > > }; > > > > struct intel_dp { > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c > > b/drivers/gpu/drm/i915/display/intel_dp.c > > index b036c6521659..efaaadfb12ea 100644 > > --- a/drivers/gpu/drm/i915/display/intel_dp.c > > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > > @@ -5007,7 +5007,8 @@ intel_dp_needs_link_retrain(struct intel_dp > > *intel_dp) > > return true; > > > > /* Retrain if link not ok */ > > - return !intel_dp_link_ok(intel_dp, link_status); > > + return !(intel_dp_link_ok(intel_dp, link_status) || > > + intel_psr_link_ok(intel_dp)); > > Nitpick, in general I think "not A and not B" reads better than "not > (A > or B)" because saying the parens aloud is kind of clumsy. Reading > code > aloud (well, in my head anyway) is one of my main tests for > readability. yes, I agree on this. I was just thinking this too much as want it to accept intel_dp_link_ok result if it's true. I will change it. > > > } > > > > bool intel_dp_has_connector(struct intel_dp *intel_dp, > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c > > b/drivers/gpu/drm/i915/display/intel_psr.c > > index 992543f508c1..0cd7388389e0 100644 > > --- a/drivers/gpu/drm/i915/display/intel_psr.c > > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > > @@ -2009,6 +2009,15 @@ static void intel_psr_enable_locked(struct > > intel_dp *intel_dp, > > intel_dp->psr.enabled = true; > > intel_dp->psr.paused = false; > > > > + /* > > + * Link_ok is sticky and set here on PSR enable. We can > > assume link > > + * training is complete as we never continue to PSR enable > > with > > + * untrained link. Link_ok is kept as set until first short > > pulse > > + * interrupt. This is targeted to workaround panels stating > > bad link > > + * after PSR is enabled. > > + */ > > + intel_dp->psr.link_ok = true; > > + > > intel_psr_activate(intel_dp); > > } > > > > @@ -3458,6 +3467,9 @@ void intel_psr_short_pulse(struct intel_dp > > *intel_dp) > > > > mutex_lock(&psr->lock); > > > > + /* Let's clear possibly set link_ok flag here */ > > That's kind of a translation of C into English. If you need the > comment, > then maybe state the why instead of the what? You are right. I didn't succeed stating link_ok might not be set at all but we are still clearing it here. Anyways useless comment. I will drop it. BR, Jouni Högander > > > + psr->link_ok = false; > > + > > if (!psr->enabled) > > goto exit; > > > > @@ -3517,6 +3529,33 @@ bool intel_psr_enabled(struct intel_dp > > *intel_dp) > > return ret; > > } > > > > +/** > > + * intel_psr_link_ok - return psr->link_ok > > + * @intel_dp: struct intel_dp > > + * > > + * We are seeing unexpected link re-trainings with some panels. > > This is caused > > + * by panel stating bad link status after PSR is enabled. Code > > checking link > > + * status can call this to ensure it can ignore bad link status > > stated by the > > + * panel I.e. if panel is stating bad link and intel_psr_link_ok > > is stating link > > + * is ok caller should rely on latter. > > + * > > + * Return value of link_ok > > + */ > > +bool intel_psr_link_ok(struct intel_dp *intel_dp) > > +{ > > + bool ret; > > + > > + if ((!CAN_PSR(intel_dp) && !CAN_PANEL_REPLAY(intel_dp)) || > > + !intel_dp_is_edp(intel_dp)) > > + return false; > > + > > + mutex_lock(&intel_dp->psr.lock); > > + ret = intel_dp->psr.link_ok; > > + mutex_unlock(&intel_dp->psr.lock); > > + > > + return ret; > > +} > > + > > /** > > * intel_psr_lock - grab PSR lock > > * @crtc_state: the crtc state > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h > > b/drivers/gpu/drm/i915/display/intel_psr.h > > index 5f26f61f82aa..956be263c09e 100644 > > --- a/drivers/gpu/drm/i915/display/intel_psr.h > > +++ b/drivers/gpu/drm/i915/display/intel_psr.h > > @@ -59,6 +59,7 @@ void intel_psr2_program_trans_man_trk_ctl(const > > struct intel_crtc_state *crtc_st > > void intel_psr_pause(struct intel_dp *intel_dp); > > void intel_psr_resume(struct intel_dp *intel_dp); > > bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state > > *crtc_state); > > +bool intel_psr_link_ok(struct intel_dp *intel_dp); > > > > void intel_psr_lock(const struct intel_crtc_state *crtc_state); > > void intel_psr_unlock(const struct intel_crtc_state *crtc_state); > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled 2024-10-28 7:46 [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Jouni Högander 2024-10-28 12:24 ` Jani Nikula @ 2024-10-28 13:41 ` Imre Deak 2024-10-29 7:07 ` Hogander, Jouni 2024-10-29 10:39 ` ✓ Fi.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Imre Deak @ 2024-10-28 13:41 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx, intel-xe On Mon, Oct 28, 2024 at 09:46:42AM +0200, Jouni Högander wrote: > We are currently seeing unexpected link trainings with several different > eDP panels. These are caused by these panels stating bad link status in > their dpcd registers. This can be observed by doing following test: > > 1. Boot up without Xe module loaded > > 2. Load Xe module with PSR disabled: > $ modprobe xe enable_psr=0 > > 3. Read panel link status register > $ dpcd_reg read --offset 0x200e --count=1 > 0x200e: 00 > > 4. Enable PSR, sleep for 2 seconds and disable PSR again: > > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > $ echo "-1" > /sys/kernel/debug/dri/0000:00:02.0/xe_params/enable_psr > $ echo 0x0 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > $ sleep 2 > $ cat /sys/kernel/debug/dri/0/i915_edp_psr_status | grep status > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > Source PSR/PanelReplay status: DEEP_SLEEP [0x80310030] > > 5. Now read panel link status registers again: > $ dpcd_reg read --offset 0x200e --count=1 > 0x200e: 80 > > Workaround this by not trusting link status registers after PSR is enabled > until first short pulse interrupt is received. > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > --- > .../drm/i915/display/intel_display_types.h | 2 + > drivers/gpu/drm/i915/display/intel_dp.c | 3 +- > drivers/gpu/drm/i915/display/intel_psr.c | 39 +++++++++++++++++++ > drivers/gpu/drm/i915/display/intel_psr.h | 1 + > 4 files changed, 44 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h > index 2bb1fa64da2f..f0b7d7262961 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_types.h > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h > @@ -1618,6 +1618,8 @@ struct intel_psr { > u32 dc3co_exit_delay; > struct delayed_work dc3co_work; > u8 entry_setup_frames; > + > + bool link_ok; > }; > > struct intel_dp { > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c > index b036c6521659..efaaadfb12ea 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp.c > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > @@ -5007,7 +5007,8 @@ intel_dp_needs_link_retrain(struct intel_dp *intel_dp) > return true; > > /* Retrain if link not ok */ > - return !intel_dp_link_ok(intel_dp, link_status); > + return !(intel_dp_link_ok(intel_dp, link_status) || > + intel_psr_link_ok(intel_dp)); > } > > bool intel_dp_has_connector(struct intel_dp *intel_dp, > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c > index 992543f508c1..0cd7388389e0 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.c > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > @@ -2009,6 +2009,15 @@ static void intel_psr_enable_locked(struct intel_dp *intel_dp, > intel_dp->psr.enabled = true; > intel_dp->psr.paused = false; > > + /* > + * Link_ok is sticky and set here on PSR enable. We can assume link > + * training is complete as we never continue to PSR enable with > + * untrained link. Link_ok is kept as set until first short pulse > + * interrupt. This is targeted to workaround panels stating bad link > + * after PSR is enabled. > + */ > + intel_dp->psr.link_ok = true; > + > intel_psr_activate(intel_dp); > } > > @@ -3458,6 +3467,9 @@ void intel_psr_short_pulse(struct intel_dp *intel_dp) > > mutex_lock(&psr->lock); > > + /* Let's clear possibly set link_ok flag here */ > + psr->link_ok = false; Should psr->link_ok also get reset when the output is disabled, so it's effect is consistent (i.e. doesn't effect the link state from output enabling/link training until PSR is enabled)? > + > if (!psr->enabled) > goto exit; > > @@ -3517,6 +3529,33 @@ bool intel_psr_enabled(struct intel_dp *intel_dp) > return ret; > } > > +/** > + * intel_psr_link_ok - return psr->link_ok > + * @intel_dp: struct intel_dp > + * > + * We are seeing unexpected link re-trainings with some panels. This is caused > + * by panel stating bad link status after PSR is enabled. Code checking link > + * status can call this to ensure it can ignore bad link status stated by the > + * panel I.e. if panel is stating bad link and intel_psr_link_ok is stating link > + * is ok caller should rely on latter. > + * > + * Return value of link_ok > + */ > +bool intel_psr_link_ok(struct intel_dp *intel_dp) > +{ > + bool ret; > + > + if ((!CAN_PSR(intel_dp) && !CAN_PANEL_REPLAY(intel_dp)) || > + !intel_dp_is_edp(intel_dp)) > + return false; > + > + mutex_lock(&intel_dp->psr.lock); > + ret = intel_dp->psr.link_ok; > + mutex_unlock(&intel_dp->psr.lock); > + > + return ret; > +} > + > /** > * intel_psr_lock - grab PSR lock > * @crtc_state: the crtc state > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h > index 5f26f61f82aa..956be263c09e 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.h > +++ b/drivers/gpu/drm/i915/display/intel_psr.h > @@ -59,6 +59,7 @@ void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_st > void intel_psr_pause(struct intel_dp *intel_dp); > void intel_psr_resume(struct intel_dp *intel_dp); > bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state *crtc_state); > +bool intel_psr_link_ok(struct intel_dp *intel_dp); > > void intel_psr_lock(const struct intel_crtc_state *crtc_state); > void intel_psr_unlock(const struct intel_crtc_state *crtc_state); > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled 2024-10-28 13:41 ` Imre Deak @ 2024-10-29 7:07 ` Hogander, Jouni 0 siblings, 0 replies; 9+ messages in thread From: Hogander, Jouni @ 2024-10-29 7:07 UTC (permalink / raw) To: Deak, Imre Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org On Mon, 2024-10-28 at 15:41 +0200, Imre Deak wrote: > On Mon, Oct 28, 2024 at 09:46:42AM +0200, Jouni Högander wrote: > > We are currently seeing unexpected link trainings with several > > different > > eDP panels. These are caused by these panels stating bad link > > status in > > their dpcd registers. This can be observed by doing following test: > > > > 1. Boot up without Xe module loaded > > > > 2. Load Xe module with PSR disabled: > > $ modprobe xe enable_psr=0 > > > > 3. Read panel link status register > > $ dpcd_reg read --offset 0x200e --count=1 > > 0x200e: 00 > > > > 4. Enable PSR, sleep for 2 seconds and disable PSR again: > > > > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > > $ echo "-1" > > > /sys/kernel/debug/dri/0000:00:02.0/xe_params/enable_psr > > $ echo 0x0 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > > $ sleep 2 > > $ cat /sys/kernel/debug/dri/0/i915_edp_psr_status | grep status > > $ echo 0x1 > /sys/kernel/debug/dri/0/i915_edp_psr_debug > > Source PSR/PanelReplay status: DEEP_SLEEP [0x80310030] > > > > 5. Now read panel link status registers again: > > $ dpcd_reg read --offset 0x200e --count=1 > > 0x200e: 80 > > > > Workaround this by not trusting link status registers after PSR is > > enabled > > until first short pulse interrupt is received. > > > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > > --- > > .../drm/i915/display/intel_display_types.h | 2 + > > drivers/gpu/drm/i915/display/intel_dp.c | 3 +- > > drivers/gpu/drm/i915/display/intel_psr.c | 39 > > +++++++++++++++++++ > > drivers/gpu/drm/i915/display/intel_psr.h | 1 + > > 4 files changed, 44 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h > > b/drivers/gpu/drm/i915/display/intel_display_types.h > > index 2bb1fa64da2f..f0b7d7262961 100644 > > --- a/drivers/gpu/drm/i915/display/intel_display_types.h > > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h > > @@ -1618,6 +1618,8 @@ struct intel_psr { > > u32 dc3co_exit_delay; > > struct delayed_work dc3co_work; > > u8 entry_setup_frames; > > + > > + bool link_ok; > > }; > > > > struct intel_dp { > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c > > b/drivers/gpu/drm/i915/display/intel_dp.c > > index b036c6521659..efaaadfb12ea 100644 > > --- a/drivers/gpu/drm/i915/display/intel_dp.c > > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > > @@ -5007,7 +5007,8 @@ intel_dp_needs_link_retrain(struct intel_dp > > *intel_dp) > > return true; > > > > /* Retrain if link not ok */ > > - return !intel_dp_link_ok(intel_dp, link_status); > > + return !(intel_dp_link_ok(intel_dp, link_status) || > > + intel_psr_link_ok(intel_dp)); > > } > > > > bool intel_dp_has_connector(struct intel_dp *intel_dp, > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c > > b/drivers/gpu/drm/i915/display/intel_psr.c > > index 992543f508c1..0cd7388389e0 100644 > > --- a/drivers/gpu/drm/i915/display/intel_psr.c > > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > > @@ -2009,6 +2009,15 @@ static void intel_psr_enable_locked(struct > > intel_dp *intel_dp, > > intel_dp->psr.enabled = true; > > intel_dp->psr.paused = false; > > > > + /* > > + * Link_ok is sticky and set here on PSR enable. We can > > assume link > > + * training is complete as we never continue to PSR enable > > with > > + * untrained link. Link_ok is kept as set until first short > > pulse > > + * interrupt. This is targeted to workaround panels stating > > bad link > > + * after PSR is enabled. > > + */ > > + intel_dp->psr.link_ok = true; > > + > > intel_psr_activate(intel_dp); > > } > > > > @@ -3458,6 +3467,9 @@ void intel_psr_short_pulse(struct intel_dp > > *intel_dp) > > > > mutex_lock(&psr->lock); > > > > + /* Let's clear possibly set link_ok flag here */ > > + psr->link_ok = false; > > Should psr->link_ok also get reset when the output is disabled, so > it's > effect is consistent (i.e. doesn't effect the link state from output > enabling/link training until PSR is enabled)? Yes, I think this makes sense. I will address this. BR, Jouni Högander > > > + > > if (!psr->enabled) > > goto exit; > > > > @@ -3517,6 +3529,33 @@ bool intel_psr_enabled(struct intel_dp > > *intel_dp) > > return ret; > > } > > > > +/** > > + * intel_psr_link_ok - return psr->link_ok > > + * @intel_dp: struct intel_dp > > + * > > + * We are seeing unexpected link re-trainings with some panels. > > This is caused > > + * by panel stating bad link status after PSR is enabled. Code > > checking link > > + * status can call this to ensure it can ignore bad link status > > stated by the > > + * panel I.e. if panel is stating bad link and intel_psr_link_ok > > is stating link > > + * is ok caller should rely on latter. > > + * > > + * Return value of link_ok > > + */ > > +bool intel_psr_link_ok(struct intel_dp *intel_dp) > > +{ > > + bool ret; > > + > > + if ((!CAN_PSR(intel_dp) && !CAN_PANEL_REPLAY(intel_dp)) || > > + !intel_dp_is_edp(intel_dp)) > > + return false; > > + > > + mutex_lock(&intel_dp->psr.lock); > > + ret = intel_dp->psr.link_ok; > > + mutex_unlock(&intel_dp->psr.lock); > > + > > + return ret; > > +} > > + > > /** > > * intel_psr_lock - grab PSR lock > > * @crtc_state: the crtc state > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h > > b/drivers/gpu/drm/i915/display/intel_psr.h > > index 5f26f61f82aa..956be263c09e 100644 > > --- a/drivers/gpu/drm/i915/display/intel_psr.h > > +++ b/drivers/gpu/drm/i915/display/intel_psr.h > > @@ -59,6 +59,7 @@ void intel_psr2_program_trans_man_trk_ctl(const > > struct intel_crtc_state *crtc_st > > void intel_psr_pause(struct intel_dp *intel_dp); > > void intel_psr_resume(struct intel_dp *intel_dp); > > bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state > > *crtc_state); > > +bool intel_psr_link_ok(struct intel_dp *intel_dp); > > > > void intel_psr_lock(const struct intel_crtc_state *crtc_state); > > void intel_psr_unlock(const struct intel_crtc_state *crtc_state); > > -- > > 2.34.1 > > ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/psr: WA for panels stating bad link status after PSR is enabled 2024-10-28 7:46 [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Jouni Högander 2024-10-28 12:24 ` Jani Nikula 2024-10-28 13:41 ` Imre Deak @ 2024-10-29 10:39 ` Patchwork 2024-10-29 12:49 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-30 19:24 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-29 10:39 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4672 bytes --] == Series Details == Series: drm/i915/psr: WA for panels stating bad link status after PSR is enabled URL : https://patchwork.freedesktop.org/series/140570/ State : success == Summary == CI Bug Log - changes from CI_DRM_15603 -> Patchwork_140570v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/index.html Participating hosts (47 -> 46) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_140570v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-arlh-3: [PASS][1] -> [ABORT][2] ([i915#12133]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-arlh-3/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/bat-arlh-3/igt@i915_selftest@live.html - bat-arls-2: [PASS][3] -> [DMESG-FAIL][4] ([i915#10262] / [i915#10341] / [i915#12133]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-arls-2/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/bat-arls-2/igt@i915_selftest@live.html - bat-atsm-1: [PASS][5] -> [INCOMPLETE][6] ([i915#12133]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-atsm-1/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@hangcheck: - bat-atsm-1: [PASS][7] -> [INCOMPLETE][8] ([i915#12445]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-atsm-1/igt@i915_selftest@live@hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/bat-atsm-1/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@hugepages: - bat-arls-2: [PASS][9] -> [DMESG-WARN][10] ([i915#10341] / [i915#12133]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-arls-2/igt@i915_selftest@live@hugepages.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/bat-arls-2/igt@i915_selftest@live@hugepages.html * igt@i915_selftest@live@late_gt_pm: - bat-arls-2: [PASS][11] -> [DMESG-FAIL][12] ([i915#10262]) +13 other tests dmesg-fail [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][13] -> [ABORT][14] ([i915#12061]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-arlh-3/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-adlm-1: [INCOMPLETE][15] ([i915#12133]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-adlm-1/igt@i915_selftest@live.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/bat-adlm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-adlm-1: [INCOMPLETE][17] ([i915#9413]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-adlm-1/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/bat-adlm-1/igt@i915_selftest@live@workarounds.html [i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262 [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * Linux: CI_DRM_15603 -> Patchwork_140570v1 CI-20190529: 20190529 CI_DRM_15603: 79811c7809c46a23b7cfceaf36d4994792c850da @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8086: 18939acec2446c6644644186b090d16e366af8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_140570v1: 79811c7809c46a23b7cfceaf36d4994792c850da @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/index.html [-- Attachment #2: Type: text/html, Size: 5887 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/psr: WA for panels stating bad link status after PSR is enabled 2024-10-28 7:46 [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Jouni Högander ` (2 preceding siblings ...) 2024-10-29 10:39 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-10-29 12:49 ` Patchwork 2024-10-30 19:24 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-29 12:49 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100299 bytes --] == Series Details == Series: drm/i915/psr: WA for panels stating bad link status after PSR is enabled URL : https://patchwork.freedesktop.org/series/140570/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15603_full -> Patchwork_140570v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_140570v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_140570v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_140570v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_mmap_gtt@isolation: - shard-dg2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@gem_mmap_gtt@isolation.html * igt@kms_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_color@ctm-max.html * igt@kms_flip@dpms-vs-vblank-race@d-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_flip@dpms-vs-vblank-race@d-hdmi-a1.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg1: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-16/igt@kms_plane@plane-panning-bottom-right-suspend.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-12/igt@kms_plane@plane-panning-bottom-right-suspend.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - {shard-dg2-9}: NOTRUN -> [SKIP][6] +178 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@perf@non-zero-reason: - {shard-dg2-9}: NOTRUN -> [FAIL][7] +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-9/igt@perf@non-zero-reason.html Known issues ------------ Here are the changes found in Patchwork_140570v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@drm_fdinfo@virtual-busy.html * igt@drm_read@short-buffer-block: - shard-dg2: [PASS][13] -> [SKIP][14] ([i915#9197]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@drm_read@short-buffer-block.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@drm_read@short-buffer-block.html * igt@gem_busy@close-race: - shard-tglu: NOTRUN -> [FAIL][15] ([i915#12297] / [i915#12577]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@gem_busy@close-race.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3936]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#7297]) +1 other test incomplete [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-8/igt@gem_ccs@suspend-resume.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-4/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#7697]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: [PASS][24] -> [FAIL][25] ([i915#12031]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html - shard-mtlp: NOTRUN -> [FAIL][26] ([i915#12031]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][31] -> [ABORT][32] ([i915#7975] / [i915#8213]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-15/igt@gem_eio@hibernate.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-14/igt@gem_eio@hibernate.html - shard-dg2: [PASS][33] -> [ABORT][34] ([i915#10030] / [i915#7975] / [i915#8213]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-11/igt@gem_eio@hibernate.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-3/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-12/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#6344]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][39] ([i915#11965] / [i915#12558]) +2 other tests fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-12/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: NOTRUN -> [FAIL][40] ([i915#2842]) +3 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share: - shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2842]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-3/igt@gem_exec_fair@basic-none-share.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][44] ([i915#2842]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu-1: NOTRUN -> [FAIL][45] ([i915#2876]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-tglu-1: NOTRUN -> [FAIL][46] ([i915#2842]) +6 other tests fail [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4812]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +16 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_exec_reloc@basic-write-cpu-active.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3281]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-5/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_schedule@pi-ringfull@ccs0: - shard-dg2: NOTRUN -> [FAIL][54] ([i915#12296]) +7 other tests fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_exec_schedule@pi-ringfull@ccs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][59] ([i915#2190]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk7/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#12193]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4565]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#4613]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +9 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4083]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][71] ([i915#2658]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_pwrite_snooped.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_pwrite_snooped.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4958]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_userptr_blits@sd-probe.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][88] +9 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-mtlp: NOTRUN -> [SKIP][89] +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#2856]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#6227]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: [PASS][97] -> [ABORT][98] ([i915#9820]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk4/igt@i915_module_load@reload-with-fault-injection.html - shard-rkl: [PASS][99] -> [ABORT][100] ([i915#9697]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][101] -> [ABORT][102] ([i915#9820]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#8399]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][104] ([i915#2681]) +1 other test warn [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#11681]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#4387]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@i915_pm_sseu@full-enable.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#5723]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4212] / [i915#5190]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4212]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4212]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#8709]) +11 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#8709]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#10333]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#9531]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#5286]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#5286]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#3638]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#3638]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][123] +52 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6095]) +19 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#12313]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#6095]) +80 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#6095]) +39 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#6095]) +81 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#12313]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#6095]) +94 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#6095]) +29 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#12313]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#3742]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#3742]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-negative: - shard-dg1: NOTRUN -> [SKIP][137] +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#7828]) +6 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#7828]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#7828]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7828]) +6 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#7828]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#3116] / [i915#3299]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#6944] / [i915#9424]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#9424]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_content_protection@srm.html - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#6944] / [i915#7116] / [i915#7118]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#8814]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#11453] / [i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#11453] / [i915#3359]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#11453] / [i915#3359]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#3555]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#11453] / [i915#3359]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#11453] / [i915#3359]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#11453] / [i915#3359]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][157] +11 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#9067]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#8588]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#1769] / [i915#3555] / [i915#3804]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#3804]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#1257]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3840]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3840] / [i915#9688]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#3840]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: NOTRUN -> [INCOMPLETE][166] ([i915#9878]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#2065] / [i915#4854]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#1839]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#9337]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#658]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#658]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#3637]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#3637]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@dpms-vs-vblank-race: - shard-tglu: NOTRUN -> [FAIL][174] ([i915#12431]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_flip@dpms-vs-vblank-race.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [FAIL][175] ([i915#2122]) +1 other test fail [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2: [PASS][176] -> [SKIP][177] ([i915#5354]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@modeset-vs-vblank-race: - shard-dg1: [PASS][178] -> [FAIL][179] ([i915#12403] / [i915#12431] / [i915#12541]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-18/igt@kms_flip@modeset-vs-vblank-race.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a4: - shard-dg1: [PASS][180] -> [FAIL][181] ([i915#12403]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-18/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a4.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a4.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-dg2: [PASS][182] -> [FAIL][183] ([i915#2122]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-3/igt@kms_flip@plain-flip-ts-check-interruptible.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-dg1: [PASS][184] -> [FAIL][185] ([i915#11989] / [i915#12517] / [i915#2122]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-13/igt@kms_flip@plain-flip-ts-check-interruptible.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][186] ([i915#2122]) +1 other test fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a4.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-dp3: - shard-dg2: NOTRUN -> [FAIL][187] ([i915#2122]) +2 other tests fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_flip@plain-flip-ts-check-interruptible@b-dp3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#2672]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/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@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#2672]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#5190]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#5274]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#8708]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#1825]) +15 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#1825]) +10 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#8708]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][202] +58 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#8708]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3458]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#5354]) +67 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#9766]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3023]) +9 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#3458]) +5 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#433]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#10656]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [PASS][214] -> [SKIP][215] ([i915#12388]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#12394]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#12339]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#6301]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#6301]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8825]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-dg2: [PASS][221] -> [SKIP][222] ([i915#7294]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_alpha_blend@alpha-7efc.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#7294]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3555]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [PASS][225] -> [FAIL][226] ([i915#8292]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][227] ([i915#8292]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][228] ([i915#8292]) +1 other test fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][229] ([i915#8292]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][230] ([i915#8292]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#12247]) +8 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#12247]) +9 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg2: [PASS][233] -> [SKIP][234] ([i915#8152] / [i915#9423]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#12247]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d: - shard-dg2: [PASS][237] -> [SKIP][238] ([i915#8152]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#12247]) +14 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#12247]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8152] / [i915#9423]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#3555]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#12247]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#12247]) +8 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#6953]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-dg2: [PASS][247] -> [SKIP][248] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d: - shard-dg2: [PASS][249] -> [SKIP][250] ([i915#12247] / [i915#8152]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#6953]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#12247] / [i915#3555] / [i915#8152] / [i915#9423]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#8152]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#6953]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#12343]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#9812]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#5354]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#9292]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#9685]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_pm_dc@dc5-psr.html - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#9685]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][262] -> [SKIP][263] ([i915#4281]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3828]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#8430]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#8430]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#1849]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#9519]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][269] -> [SKIP][270] ([i915#9519]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][271] -> [SKIP][272] ([i915#9519]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#9519]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#9519]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#6524] / [i915#6805]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#6524]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#6524]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-atomic: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#11521]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#11520]) +5 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#12316]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#11520]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-15/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#9808]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#11520]) +7 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][284] ([i915#11520]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#11520]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#11520]) +5 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#9683]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#9683]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#9683]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-suspend: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +17 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#9688]) +7 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9732]) +14 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#1072] / [i915#9732]) +8 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-no-drrs: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#1072] / [i915#9732]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#9732]) +16 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#4077] / [i915#9688]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#5289]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#5289]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#5289]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#5289]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#5190] / [i915#9197]) +9 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#11131] / [i915#4235]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#3555]) +5 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_universal_plane@universal-plane-sanity: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#9197]) +66 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_universal_plane@universal-plane-sanity.html * igt@kms_vrr@flip-dpms: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#3555]) +4 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#11920]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#9906]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-glk: NOTRUN -> [SKIP][308] +63 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk7/igt@kms_vrr@negative-basic.html - shard-dg2: [PASS][309] -> [SKIP][310] ([i915#3555] / [i915#9906]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-10/igt@kms_vrr@negative-basic.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9906]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#8808] / [i915#9906]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#9906]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#2437]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#2437] / [i915#9412]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#2437] / [i915#9412]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#2437]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#7387]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@perf@global-sseu-config.html * igt@perf_pmu@cpu-hotplug: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#8850]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#8516]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#8516]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#3291] / [i915#3708]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#3708] / [i915#4077]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#9917]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#9917]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#9917]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][327] ([i915#12543] / [i915#5784]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-13/igt@gem_eio@reset-stress.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][329] ([i915#7975] / [i915#8213]) -> [PASS][330] +1 other test pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][331] ([i915#12375] / [i915#5566]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk8/igt@gen9_exec_parse@allowed-single.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@i915_selftest@live: - shard-mtlp: [ABORT][333] ([i915#12133] / [i915#12216]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-7/igt@i915_selftest@live.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][335] ([i915#12216]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-7/igt@i915_selftest@live@workarounds.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_async_flips@test-cursor: - shard-dg2: [SKIP][337] ([i915#9197]) -> [PASS][338] +4 other tests pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_async_flips@test-cursor.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_async_flips@test-cursor.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][339] ([i915#2346]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][341] ([i915#1257]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-3/igt@kms_dp_aux_dev.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_dp_aux_dev.html * igt@kms_flip@dpms-off-confusion: - shard-dg2: [SKIP][343] ([i915#5354]) -> [PASS][344] +2 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_flip@dpms-off-confusion.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_flip@dpms-off-confusion.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [FAIL][345] ([i915#2122]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2: - shard-rkl: [FAIL][347] ([i915#11961]) -> [PASS][348] +1 other test pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1: - shard-glk: [FAIL][349] ([i915#2122]) -> [PASS][350] +2 other tests pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate: - shard-tglu: [FAIL][351] ([i915#2122]) -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-interruptible: - shard-dg1: [DMESG-WARN][353] ([i915#4423]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-14/igt@kms_flip@plain-flip-interruptible.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-15/igt@kms_flip@plain-flip-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [FAIL][355] ([i915#2122]) -> [PASS][356] +3 other tests pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-mtlp: [FAIL][357] ([i915#11989] / [i915#2122]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1: - shard-mtlp: [FAIL][359] ([i915#2122]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: [SKIP][361] ([i915#3555] / [i915#8228]) -> [PASS][362] +1 other test pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-3/igt@kms_hdr@bpc-switch-dpms.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_plane_alpha_blend@constant-alpha-min: - shard-dg2: [SKIP][363] ([i915#7294]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-min.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_plane_alpha_blend@constant-alpha-min.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg2: [SKIP][365] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-dg2: [SKIP][367] ([i915#12247]) -> [PASS][368] +2 other tests pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d: - shard-dg2: [SKIP][369] ([i915#12247] / [i915#8152]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][371] ([i915#9519]) -> [PASS][372] +3 other tests pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [FAIL][373] ([i915#11943]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@perf_pmu@all-busy-idle-check-all.html #### Warnings #### * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2: [SKIP][375] -> [SKIP][376] ([i915#9197]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_big_fb@linear-8bpp-rotate-270.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: [SKIP][377] ([i915#4538] / [i915#5190]) -> [SKIP][378] ([i915#5190] / [i915#9197]) +3 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: [SKIP][379] ([i915#9197]) -> [SKIP][380] ([i915#10307] / [i915#6095]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-dg2: [SKIP][381] ([i915#10307] / [i915#6095]) -> [SKIP][382] ([i915#9197]) +2 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: [SKIP][383] ([i915#11616] / [i915#7213]) -> [SKIP][384] ([i915#9197]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_cdclk@mode-transition-all-outputs.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: [SKIP][385] ([i915#9197]) -> [SKIP][386] ([i915#3555]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: [SKIP][387] ([i915#11453] / [i915#3359]) -> [SKIP][388] ([i915#9197]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg2: [SKIP][389] ([i915#3555]) -> [SKIP][390] ([i915#9197]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: [SKIP][391] ([i915#5354]) -> [SKIP][392] ([i915#9197]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: [SKIP][393] ([i915#3555] / [i915#3840]) -> [SKIP][394] ([i915#9197]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_dsc@dsc-with-bpc-formats.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1: - shard-glk: [FAIL][395] ([i915#10826]) -> [FAIL][396] ([i915#2122]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: [SKIP][397] ([i915#3555] / [i915#5190]) -> [SKIP][398] ([i915#2672] / [i915#3555] / [i915#5190]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: [SKIP][399] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][400] ([i915#3555] / [i915#5190]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: [SKIP][401] ([i915#5354]) -> [SKIP][402] ([i915#8708]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: [SKIP][403] ([i915#8708]) -> [SKIP][404] ([i915#5354]) +5 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-dg2: [SKIP][405] ([i915#3458]) -> [SKIP][406] ([i915#10433] / [i915#3458]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [SKIP][407] ([i915#10433] / [i915#3458]) -> [SKIP][408] ([i915#3458]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: [SKIP][409] ([i915#3458]) -> [SKIP][410] ([i915#5354]) +2 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: [SKIP][411] ([i915#5354]) -> [SKIP][412] ([i915#3458]) +1 other test skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][413] ([i915#9197]) -> [SKIP][414] ([i915#3555] / [i915#8228]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_hdr@static-toggle.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_hdr@static-toggle.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][415] ([i915#4816]) -> [SKIP][416] ([i915#4070] / [i915#4816]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: [SKIP][417] ([i915#8806]) -> [SKIP][418] ([i915#9197]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [SKIP][419] ([i915#6953] / [i915#9423]) -> [FAIL][420] ([i915#8292]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: [INCOMPLETE][421] ([i915#5493]) -> [WARN][422] ([i915#9351]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@prime_mmap@test_aperture_limit.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-7/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][423] ([i915#5493]) -> [CRASH][424] ([i915#9351]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-7/ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/index.html [-- Attachment #2: Type: text/html, Size: 109610 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/psr: WA for panels stating bad link status after PSR is enabled 2024-10-28 7:46 [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Jouni Högander ` (3 preceding siblings ...) 2024-10-29 12:49 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-10-30 19:24 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-30 19:24 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100296 bytes --] == Series Details == Series: drm/i915/psr: WA for panels stating bad link status after PSR is enabled URL : https://patchwork.freedesktop.org/series/140570/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15603_full -> Patchwork_140570v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_140570v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_140570v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_140570v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_mmap_gtt@isolation: - shard-dg2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@gem_mmap_gtt@isolation.html * igt@kms_flip@dpms-vs-vblank-race@d-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_flip@dpms-vs-vblank-race@d-hdmi-a1.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg1: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-16/igt@kms_plane@plane-panning-bottom-right-suspend.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-12/igt@kms_plane@plane-panning-bottom-right-suspend.html Known issues ------------ Here are the changes found in Patchwork_140570v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@drm_fdinfo@virtual-busy.html * igt@drm_read@short-buffer-block: - shard-dg2: [PASS][10] -> [SKIP][11] ([i915#9197]) +7 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@drm_read@short-buffer-block.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@drm_read@short-buffer-block.html * igt@gem_busy@close-race: - shard-tglu: NOTRUN -> [FAIL][12] ([i915#12297] / [i915#12577]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@gem_busy@close-race.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#3936]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][16] -> [INCOMPLETE][17] ([i915#7297]) +1 other test incomplete [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-8/igt@gem_ccs@suspend-resume.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-4/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#6335]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: [PASS][21] -> [FAIL][22] ([i915#12031]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html - shard-mtlp: NOTRUN -> [FAIL][23] ([i915#12031]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][28] -> [ABORT][29] ([i915#7975] / [i915#8213]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-15/igt@gem_eio@hibernate.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-14/igt@gem_eio@hibernate.html - shard-dg2: [PASS][30] -> [ABORT][31] ([i915#10030] / [i915#7975] / [i915#8213]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-11/igt@gem_eio@hibernate.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-3/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4771]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-12/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#6344]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][36] ([i915#11965] / [i915#12558]) +2 other tests fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-12/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842]) +3 other tests fail [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share: - shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) +1 other test fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-3/igt@gem_exec_fair@basic-none-share.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][41] ([i915#2842]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu-1: NOTRUN -> [FAIL][42] ([i915#2876]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-tglu-1: NOTRUN -> [FAIL][43] ([i915#2842]) +6 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +16 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_exec_reloc@basic-write-cpu-active.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-5/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_schedule@pi-ringfull@ccs0: - shard-dg2: NOTRUN -> [FAIL][51] ([i915#12296]) +7 other tests fail [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_exec_schedule@pi-ringfull@ccs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#2190]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-glk: NOTRUN -> [SKIP][57] ([i915#4613]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk7/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#12193]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4565]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +9 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][68] ([i915#2658]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_pwrite_snooped.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gem_pwrite_snooped.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#3297]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4958]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gem_userptr_blits@sd-probe.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][85] +9 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-mtlp: NOTRUN -> [SKIP][86] +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#6227]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: [PASS][94] -> [ABORT][95] ([i915#9820]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk4/igt@i915_module_load@reload-with-fault-injection.html - shard-rkl: [PASS][96] -> [ABORT][97] ([i915#9697]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][98] -> [ABORT][99] ([i915#9820]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#8399]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][101] ([i915#2681]) +1 other test warn [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#11681]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#4387]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@i915_pm_sseu@full-enable.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#5723]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4212] / [i915#5190]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4212]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4212]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#8709]) +11 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#8709]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#10333]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#9531]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5286]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#5286]) +4 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#5286]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#3638]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#3638]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][120] +52 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6095]) +19 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#12313]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#6095]) +80 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#6095]) +39 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#6095]) +81 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#12313]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#6095]) +94 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#6095]) +29 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#12313]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#3742]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3742]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-negative: - shard-dg1: NOTRUN -> [SKIP][134] +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#7828]) +6 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#7828]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#7828]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#7828]) +6 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7828]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#12655]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_color@ctm-max.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#3116] / [i915#3299]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#6944] / [i915#9424]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7118]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_content_protection@srm.html - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#6944] / [i915#7116] / [i915#7118]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#8814]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#11453] / [i915#3359]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#11453] / [i915#3359]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#11453] / [i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#3555]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#11453] / [i915#3359]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#11453] / [i915#3359]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#11453] / [i915#3359]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][155] +11 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#9067]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#8588]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#1769] / [i915#3555] / [i915#3804]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#3804]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#1257]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3840]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3840] / [i915#9688]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3840]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: NOTRUN -> [INCOMPLETE][164] ([i915#9878]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#2065] / [i915#4854]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#1839]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#9337]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#658]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#658]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#3637]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3637]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@dpms-vs-vblank-race: - shard-tglu: NOTRUN -> [FAIL][172] ([i915#12431]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_flip@dpms-vs-vblank-race.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [FAIL][173] ([i915#2122]) +1 other test fail [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2: [PASS][174] -> [SKIP][175] ([i915#5354]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@modeset-vs-vblank-race: - shard-dg1: [PASS][176] -> [FAIL][177] ([i915#12403] / [i915#12431] / [i915#12541]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-18/igt@kms_flip@modeset-vs-vblank-race.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a4: - shard-dg1: [PASS][178] -> [FAIL][179] ([i915#12403]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-18/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a4.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a4.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-dg2: [PASS][180] -> [FAIL][181] ([i915#2122]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-3/igt@kms_flip@plain-flip-ts-check-interruptible.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-dg1: [PASS][182] -> [FAIL][183] ([i915#11989] / [i915#12517] / [i915#2122]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-13/igt@kms_flip@plain-flip-ts-check-interruptible.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][184] ([i915#2122]) +1 other test fail [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a4.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-dp3: - shard-dg2: NOTRUN -> [FAIL][185] ([i915#2122]) +2 other tests fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_flip@plain-flip-ts-check-interruptible@b-dp3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#2672]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/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@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#5190]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#5274]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#8708]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#1825]) +15 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#1825]) +10 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8708]) +4 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][200] +58 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8708]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#3458]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#5354]) +67 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#9766]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3023]) +9 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3458]) +5 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#433]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#10656]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [PASS][212] -> [SKIP][213] ([i915#12388]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#12394]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#12339]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#6301]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#6301]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#8825]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-dg2: [PASS][219] -> [SKIP][220] ([i915#7294]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_alpha_blend@alpha-7efc.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#7294]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [PASS][223] -> [FAIL][224] ([i915#8292]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][225] ([i915#8292]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][226] ([i915#8292]) +1 other test fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][227] ([i915#8292]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][228] ([i915#8292]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#12247]) +8 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#12247]) +9 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg2: [PASS][231] -> [SKIP][232] ([i915#8152] / [i915#9423]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c: - shard-dg2: [PASS][233] -> [SKIP][234] ([i915#12247]) +5 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#8152]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#12247]) +14 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#12247]) +4 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8152] / [i915#9423]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#3555]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#12247]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#12247]) +8 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#12247] / [i915#6953]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-dg2: [PASS][245] -> [SKIP][246] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d: - shard-dg2: [PASS][247] -> [SKIP][248] ([i915#12247] / [i915#8152]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#6953]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#12247] / [i915#3555] / [i915#8152] / [i915#9423]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#12247] / [i915#8152]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#6953]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#12343]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#9812]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#5354]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#9292]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#9685]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_pm_dc@dc5-psr.html - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#9685]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][260] -> [SKIP][261] ([i915#4281]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#3828]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#8430]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#8430]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#1849]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#9519]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][267] -> [SKIP][268] ([i915#9519]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][269] -> [SKIP][270] ([i915#9519]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#9519]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#9519]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#6524] / [i915#6805]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#6524]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#6524]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-atomic: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#11521]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#11520]) +5 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#12316]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#11520]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-15/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#9808]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#11520]) +7 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][282] ([i915#11520]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#11520]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#11520]) +5 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#9683]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#9683]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#9683]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-suspend: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9732]) +17 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#9688]) +7 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#9732]) +14 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#1072] / [i915#9732]) +8 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-no-drrs: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#1072] / [i915#9732]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-19/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#9732]) +16 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#4077] / [i915#9688]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#5289]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#5289]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#5289]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#5289]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#5190] / [i915#9197]) +9 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#11131] / [i915#4235]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#3555]) +5 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_universal_plane@universal-plane-sanity: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#9197]) +66 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_universal_plane@universal-plane-sanity.html * igt@kms_vrr@flip-dpms: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#3555]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#11920]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-7/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#9906]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-glk: NOTRUN -> [SKIP][306] +63 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk7/igt@kms_vrr@negative-basic.html - shard-dg2: [PASS][307] -> [SKIP][308] ([i915#3555] / [i915#9906]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-10/igt@kms_vrr@negative-basic.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#9906]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#8808] / [i915#9906]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#9906]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#2437]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#2437] / [i915#9412]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#2437] / [i915#9412]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#2437]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#7387]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@perf@global-sseu-config.html * igt@perf_pmu@cpu-hotplug: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#8850]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#8516]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-9/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#8516]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#3291] / [i915#3708]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#3708] / [i915#4077]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#9917]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-4/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#9917]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#9917]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][325] ([i915#12543] / [i915#5784]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-13/igt@gem_eio@reset-stress.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][327] ([i915#7975] / [i915#8213]) -> [PASS][328] +1 other test pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][329] ([i915#12375] / [i915#5566]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk8/igt@gen9_exec_parse@allowed-single.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@i915_selftest@live: - shard-mtlp: [ABORT][331] ([i915#12133] / [i915#12216]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-7/igt@i915_selftest@live.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][333] ([i915#12216]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-7/igt@i915_selftest@live@workarounds.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_async_flips@test-cursor: - shard-dg2: [SKIP][335] ([i915#9197]) -> [PASS][336] +4 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_async_flips@test-cursor.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_async_flips@test-cursor.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][337] ([i915#2346]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][339] ([i915#1257]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-3/igt@kms_dp_aux_dev.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_dp_aux_dev.html * igt@kms_flip@dpms-off-confusion: - shard-dg2: [SKIP][341] ([i915#5354]) -> [PASS][342] +2 other tests pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_flip@dpms-off-confusion.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_flip@dpms-off-confusion.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [FAIL][343] ([i915#2122]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2: - shard-rkl: [FAIL][345] ([i915#11961]) -> [PASS][346] +1 other test pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1: - shard-glk: [FAIL][347] ([i915#2122]) -> [PASS][348] +2 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate: - shard-tglu: [FAIL][349] ([i915#2122]) -> [PASS][350] +1 other test pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-interruptible: - shard-dg1: [DMESG-WARN][351] ([i915#4423]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-14/igt@kms_flip@plain-flip-interruptible.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg1-15/igt@kms_flip@plain-flip-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [FAIL][353] ([i915#2122]) -> [PASS][354] +3 other tests pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-mtlp: [FAIL][355] ([i915#11989] / [i915#2122]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1: - shard-mtlp: [FAIL][357] ([i915#2122]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: [SKIP][359] ([i915#3555] / [i915#8228]) -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-3/igt@kms_hdr@bpc-switch-dpms.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_plane_alpha_blend@constant-alpha-min: - shard-dg2: [SKIP][361] ([i915#7294]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-min.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_plane_alpha_blend@constant-alpha-min.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg2: [SKIP][363] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-dg2: [SKIP][365] ([i915#12247]) -> [PASS][366] +2 other tests pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d: - shard-dg2: [SKIP][367] ([i915#12247] / [i915#8152]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][369] ([i915#9519]) -> [PASS][370] +3 other tests pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [FAIL][371] ([i915#11943]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@perf_pmu@all-busy-idle-check-all.html #### Warnings #### * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2: [SKIP][373] -> [SKIP][374] ([i915#9197]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_big_fb@linear-8bpp-rotate-270.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: [SKIP][375] ([i915#4538] / [i915#5190]) -> [SKIP][376] ([i915#5190] / [i915#9197]) +3 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: [SKIP][377] ([i915#9197]) -> [SKIP][378] ([i915#10307] / [i915#6095]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-dg2: [SKIP][379] ([i915#10307] / [i915#6095]) -> [SKIP][380] ([i915#9197]) +2 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: [SKIP][381] ([i915#11616] / [i915#7213]) -> [SKIP][382] ([i915#9197]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_cdclk@mode-transition-all-outputs.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: [SKIP][383] ([i915#9197]) -> [SKIP][384] ([i915#3555]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: [SKIP][385] ([i915#11453] / [i915#3359]) -> [SKIP][386] ([i915#9197]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg2: [SKIP][387] ([i915#3555]) -> [SKIP][388] ([i915#9197]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: [SKIP][389] ([i915#5354]) -> [SKIP][390] ([i915#9197]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: [SKIP][391] ([i915#3555] / [i915#3840]) -> [SKIP][392] ([i915#9197]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_dsc@dsc-with-bpc-formats.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1: - shard-glk: [FAIL][393] ([i915#10826]) -> [FAIL][394] ([i915#2122]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-glk4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: [SKIP][395] ([i915#3555] / [i915#5190]) -> [SKIP][396] ([i915#2672] / [i915#3555] / [i915#5190]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: [SKIP][397] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][398] ([i915#3555] / [i915#5190]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: [SKIP][399] ([i915#5354]) -> [SKIP][400] ([i915#8708]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: [SKIP][401] ([i915#8708]) -> [SKIP][402] ([i915#5354]) +5 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-dg2: [SKIP][403] ([i915#3458]) -> [SKIP][404] ([i915#10433] / [i915#3458]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [SKIP][405] ([i915#10433] / [i915#3458]) -> [SKIP][406] ([i915#3458]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: [SKIP][407] ([i915#3458]) -> [SKIP][408] ([i915#5354]) +2 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: [SKIP][409] ([i915#5354]) -> [SKIP][410] ([i915#3458]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][411] ([i915#9197]) -> [SKIP][412] ([i915#3555] / [i915#8228]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_hdr@static-toggle.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-8/igt@kms_hdr@static-toggle.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][413] ([i915#4816]) -> [SKIP][414] ([i915#4070] / [i915#4816]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: [SKIP][415] ([i915#8806]) -> [SKIP][416] ([i915#9197]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [SKIP][417] ([i915#6953] / [i915#9423]) -> [FAIL][418] ([i915#8292]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: [INCOMPLETE][419] ([i915#5493]) -> [WARN][420] ([i915#9351]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@prime_mmap@test_aperture_limit.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-7/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][421] ([i915#5493]) -> [CRASH][422] ([i915#9351]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140570v1/index.html [-- Attachment #2: Type: text/html, Size: 109819 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-10-30 19:24 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-28 7:46 [PATCH] drm/i915/psr: WA for panels stating bad link status after PSR is enabled Jouni Högander 2024-10-28 12:24 ` Jani Nikula 2024-10-28 12:33 ` Jani Nikula 2024-10-28 12:47 ` Hogander, Jouni 2024-10-28 13:41 ` Imre Deak 2024-10-29 7:07 ` Hogander, Jouni 2024-10-29 10:39 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-10-29 12:49 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-30 19:24 ` Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox