* [PATCH v2 0/3] Fix value being written to DDI_CLK_VALFREQ
@ 2026-08-11 17:58 Suraj Kandpal
2026-08-11 17:58 ` [PATCH v2 1/3] drm/i915/ddi: add helper to compute DDI clock frequency Suraj Kandpal
` (4 more replies)
0 siblings, 5 replies; 13+ messages in thread
From: Suraj Kandpal @ 2026-08-11 17:58 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal
Currently we write the portclock as is into DDI_CLK_VALFREQ register.
Which is fine for HDMI TMDS and DP 8b/10b encoding but for DP
128b/132b and HDMI FRL port clock needs to be modified to the
appropriate symbol clock and then be written into this register.
H/w has not thrown a bug yet because this is a validation register
and has no functional impact on H/w.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Suraj Kandpal (3):
drm/i915/ddi: add helper to compute DDI clock frequency
drm/i915/cx0: program DDI_CLK_VALFREQ with DDI clock frequency
drm/i915/lt_phy: program DDI_CLK_VALFREQ with DDI clock frequency
drivers/gpu/drm/i915/display/intel_cx0_phy.c | 5 +++--
drivers/gpu/drm/i915/display/intel_ddi.c | 11 +++++++++++
drivers/gpu/drm/i915/display/intel_ddi.h | 1 +
drivers/gpu/drm/i915/display/intel_lt_phy.c | 6 ++++--
4 files changed, 19 insertions(+), 4 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH v2 1/3] drm/i915/ddi: add helper to compute DDI clock frequency 2026-08-11 17:58 [PATCH v2 0/3] Fix value being written to DDI_CLK_VALFREQ Suraj Kandpal @ 2026-08-11 17:58 ` Suraj Kandpal 2026-08-12 3:43 ` Nautiyal, Ankit K 2026-08-11 17:58 ` [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with " Suraj Kandpal ` (3 subsequent siblings) 4 siblings, 1 reply; 13+ messages in thread From: Suraj Kandpal @ 2026-08-11 17:58 UTC (permalink / raw) To: intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal Add intel_ddi_link_symbol_clock() to return the DDI clock frequency for a given port clock: DP 8b/10b : rate DP 128b/132b (UHBR) : (10 / 32) * rate HDMI FRL : (10 / 18) * rate HDMI TMDS : rate The DP case reuses intel_dp_link_symbol_clock(). This will help in upcoming commits to decide value to be written in DDI_CLK_VALFREQ. Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- v1 -> v2 -Update commit message with correct formula (Jani) drivers/gpu/drm/i915/display/intel_ddi.c | 11 +++++++++++ drivers/gpu/drm/i915/display/intel_ddi.h | 1 + 2 files changed, 12 insertions(+) diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c index bf5788c5bbd3..dd9064592ec9 100644 --- a/drivers/gpu/drm/i915/display/intel_ddi.c +++ b/drivers/gpu/drm/i915/display/intel_ddi.c @@ -1529,6 +1529,17 @@ int intel_ddi_level(struct intel_encoder *encoder, return level; } +int intel_ddi_link_symbol_clock(struct intel_encoder *encoder, int clock) +{ + if (intel_encoder_is_dp(encoder)) + return intel_dp_link_symbol_clock(clock); + + if (intel_hdmi_is_frl(clock)) + return DIV_ROUND_CLOSEST(clock * 10, 18); + + return clock; +} + static void hsw_set_signal_levels(struct intel_encoder *encoder, const struct intel_crtc_state *crtc_state) diff --git a/drivers/gpu/drm/i915/display/intel_ddi.h b/drivers/gpu/drm/i915/display/intel_ddi.h index 580ecb09b8b6..239d5a403f91 100644 --- a/drivers/gpu/drm/i915/display/intel_ddi.h +++ b/drivers/gpu/drm/i915/display/intel_ddi.h @@ -81,6 +81,7 @@ void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder *encoder); int intel_ddi_level(struct intel_encoder *encoder, const struct intel_crtc_state *crtc_state, int lane); +int intel_ddi_link_symbol_clock(struct intel_encoder *encoder, int clock); void intel_ddi_update_active_dpll(struct intel_atomic_state *state, struct intel_encoder *encoder, struct intel_crtc *crtc); -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v2 1/3] drm/i915/ddi: add helper to compute DDI clock frequency 2026-08-11 17:58 ` [PATCH v2 1/3] drm/i915/ddi: add helper to compute DDI clock frequency Suraj Kandpal @ 2026-08-12 3:43 ` Nautiyal, Ankit K 0 siblings, 0 replies; 13+ messages in thread From: Nautiyal, Ankit K @ 2026-08-12 3:43 UTC (permalink / raw) To: Suraj Kandpal, intel-xe, intel-gfx On 8/11/2026 11:28 PM, Suraj Kandpal wrote: > Add intel_ddi_link_symbol_clock() to return the DDI clock frequency for > a given port clock: > DP 8b/10b : rate > DP 128b/132b (UHBR) : (10 / 32) * rate > HDMI FRL : (10 / 18) * rate > HDMI TMDS : rate > > The DP case reuses intel_dp_link_symbol_clock(). > This will help in upcoming commits to decide value to be written > in DDI_CLK_VALFREQ. > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > --- > v1 -> v2 > -Update commit message with correct formula (Jani) > > drivers/gpu/drm/i915/display/intel_ddi.c | 11 +++++++++++ > drivers/gpu/drm/i915/display/intel_ddi.h | 1 + > 2 files changed, 12 insertions(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c > index bf5788c5bbd3..dd9064592ec9 100644 > --- a/drivers/gpu/drm/i915/display/intel_ddi.c > +++ b/drivers/gpu/drm/i915/display/intel_ddi.c > @@ -1529,6 +1529,17 @@ int intel_ddi_level(struct intel_encoder *encoder, > return level; > } > > +int intel_ddi_link_symbol_clock(struct intel_encoder *encoder, int clock) > +{ > + if (intel_encoder_is_dp(encoder)) > + return intel_dp_link_symbol_clock(clock); > + > + if (intel_hdmi_is_frl(clock)) > + return DIV_ROUND_CLOSEST(clock * 10, 18); > + > + return clock; > +} > + > static void > hsw_set_signal_levels(struct intel_encoder *encoder, > const struct intel_crtc_state *crtc_state) > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.h b/drivers/gpu/drm/i915/display/intel_ddi.h > index 580ecb09b8b6..239d5a403f91 100644 > --- a/drivers/gpu/drm/i915/display/intel_ddi.h > +++ b/drivers/gpu/drm/i915/display/intel_ddi.h > @@ -81,6 +81,7 @@ void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder *encoder); > int intel_ddi_level(struct intel_encoder *encoder, > const struct intel_crtc_state *crtc_state, > int lane); > +int intel_ddi_link_symbol_clock(struct intel_encoder *encoder, int clock); > void intel_ddi_update_active_dpll(struct intel_atomic_state *state, > struct intel_encoder *encoder, > struct intel_crtc *crtc); ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with DDI clock frequency 2026-08-11 17:58 [PATCH v2 0/3] Fix value being written to DDI_CLK_VALFREQ Suraj Kandpal 2026-08-11 17:58 ` [PATCH v2 1/3] drm/i915/ddi: add helper to compute DDI clock frequency Suraj Kandpal @ 2026-08-11 17:58 ` Suraj Kandpal 2026-08-12 3:49 ` Nautiyal, Ankit K 2026-08-11 17:58 ` [PATCH v2 3/3] drm/i915/lt_phy: " Suraj Kandpal ` (2 subsequent siblings) 4 siblings, 1 reply; 13+ messages in thread From: Suraj Kandpal @ 2026-08-11 17:58 UTC (permalink / raw) To: intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal DDI_CLK_VALFREQ is programmed with the port clock, which for DP is the symbol clock computed assuming 8b/10b encoding (link_rate / 10). For DP 128b/132b (UHBR) rates and for HDMI FRL the port clock needs to be modfied. On silicon DDI_CLK_VALFREQ is a scratch register with no functional impact, so the bug is not observed. Use intel_ddi_link_symbol_clock() to write the correct DDI clock in kHz. Fixes: 51390cc0e00a ("drm/i915/mtl: Add Support for C10 PHY message bus and pll programming") Fixes: 73fc3abcb797 ("drm/i915/mtl: Enabling/disabling sequence Thunderbolt pll") Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- drivers/gpu/drm/i915/display/intel_cx0_phy.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c index 452062417ce9..dbebd7210848 100644 --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c @@ -3233,7 +3233,8 @@ static void intel_cx0pll_enable(struct intel_encoder *encoder, * 8. Program DDI_CLK_VALFREQ to match intended DDI * clock frequency. */ - intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), port_clock); + intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), + intel_ddi_link_symbol_clock(encoder, port_clock)); /* * 9. Set PORT_CLOCK_CTL register PCLK PLL Request @@ -3406,7 +3407,7 @@ void intel_mtl_tbt_pll_enable_clock(struct intel_encoder *encoder, int port_cloc * clock frequency. */ intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), - port_clock); + intel_ddi_link_symbol_clock(encoder, port_clock)); } void intel_mtl_pll_enable(struct intel_encoder *encoder, -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with DDI clock frequency 2026-08-11 17:58 ` [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with " Suraj Kandpal @ 2026-08-12 3:49 ` Nautiyal, Ankit K 2026-08-12 4:24 ` Kandpal, Suraj 0 siblings, 1 reply; 13+ messages in thread From: Nautiyal, Ankit K @ 2026-08-12 3:49 UTC (permalink / raw) To: Suraj Kandpal, intel-xe, intel-gfx On 8/11/2026 11:28 PM, Suraj Kandpal wrote: > DDI_CLK_VALFREQ is programmed with the port clock, which for DP is the > symbol clock computed assuming 8b/10b encoding (link_rate / 10). For > DP 128b/132b (UHBR) rates and for HDMI FRL the port clock needs to > be modfied. > On silicon DDI_CLK_VALFREQ is a scratch register with no > functional impact, so the bug is not observed. > Use intel_ddi_link_symbol_clock() to write the correct DDI clock in > kHz. Perhaps can be re-phrased as : DDI_CLK_VALFREQ does not configure hardware, it only records the frequency software intends to set, so there is no functional impact. Patch LGTM. Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > > Fixes: 51390cc0e00a ("drm/i915/mtl: Add Support for C10 PHY message bus and pll programming") > Fixes: 73fc3abcb797 ("drm/i915/mtl: Enabling/disabling sequence Thunderbolt pll") > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > --- > drivers/gpu/drm/i915/display/intel_cx0_phy.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > index 452062417ce9..dbebd7210848 100644 > --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c > +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > @@ -3233,7 +3233,8 @@ static void intel_cx0pll_enable(struct intel_encoder *encoder, > * 8. Program DDI_CLK_VALFREQ to match intended DDI > * clock frequency. > */ > - intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), port_clock); > + intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), > + intel_ddi_link_symbol_clock(encoder, port_clock)); > > /* > * 9. Set PORT_CLOCK_CTL register PCLK PLL Request > @@ -3406,7 +3407,7 @@ void intel_mtl_tbt_pll_enable_clock(struct intel_encoder *encoder, int port_cloc > * clock frequency. > */ > intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), > - port_clock); > + intel_ddi_link_symbol_clock(encoder, port_clock)); > } > > void intel_mtl_pll_enable(struct intel_encoder *encoder, ^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with DDI clock frequency 2026-08-12 3:49 ` Nautiyal, Ankit K @ 2026-08-12 4:24 ` Kandpal, Suraj 2026-08-12 9:03 ` Jani Nikula 0 siblings, 1 reply; 13+ messages in thread From: Kandpal, Suraj @ 2026-08-12 4:24 UTC (permalink / raw) To: Nautiyal, Ankit K, intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org > Subject: Re: [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with DDI > clock frequency > > > On 8/11/2026 11:28 PM, Suraj Kandpal wrote: > > DDI_CLK_VALFREQ is programmed with the port clock, which for DP is the > > symbol clock computed assuming 8b/10b encoding (link_rate / 10). For > > DP 128b/132b (UHBR) rates and for HDMI FRL the port clock needs to be > > modfied. > > On silicon DDI_CLK_VALFREQ is a scratch register with no functional > > impact, so the bug is not observed. > > Use intel_ddi_link_symbol_clock() to write the correct DDI clock in > > kHz. > > Perhaps can be re-phrased as : > > DDI_CLK_VALFREQ does not configure hardware, it only records the frequency > software intends to set, so there is no functional impact. > > Patch LGTM. > > Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> Thanks for the review Pushed to din with above mentioned changes in commit message Regards, Suraj Kandpal > > > > > > Fixes: 51390cc0e00a ("drm/i915/mtl: Add Support for C10 PHY message > > bus and pll programming") > > Fixes: 73fc3abcb797 ("drm/i915/mtl: Enabling/disabling sequence > > Thunderbolt pll") > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > > --- > > drivers/gpu/drm/i915/display/intel_cx0_phy.c | 5 +++-- > > 1 file changed, 3 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c > > b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > > index 452062417ce9..dbebd7210848 100644 > > --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c > > +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > > @@ -3233,7 +3233,8 @@ static void intel_cx0pll_enable(struct intel_encoder > *encoder, > > * 8. Program DDI_CLK_VALFREQ to match intended DDI > > * clock frequency. > > */ > > - intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), port_clock); > > + intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), > > + intel_ddi_link_symbol_clock(encoder, port_clock)); > > > > /* > > * 9. Set PORT_CLOCK_CTL register PCLK PLL Request @@ -3406,7 > > +3407,7 @@ void intel_mtl_tbt_pll_enable_clock(struct intel_encoder > *encoder, int port_cloc > > * clock frequency. > > */ > > intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), > > - port_clock); > > + intel_ddi_link_symbol_clock(encoder, port_clock)); > > } > > > > void intel_mtl_pll_enable(struct intel_encoder *encoder, ^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with DDI clock frequency 2026-08-12 4:24 ` Kandpal, Suraj @ 2026-08-12 9:03 ` Jani Nikula 2026-08-12 9:11 ` Kandpal, Suraj 0 siblings, 1 reply; 13+ messages in thread From: Jani Nikula @ 2026-08-12 9:03 UTC (permalink / raw) To: Kandpal, Suraj, Nautiyal, Ankit K, intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org On Wed, 12 Aug 2026, "Kandpal, Suraj" <suraj.kandpal@intel.com> wrote: >> Subject: Re: [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with DDI >> clock frequency >> >> >> On 8/11/2026 11:28 PM, Suraj Kandpal wrote: >> > DDI_CLK_VALFREQ is programmed with the port clock, which for DP is the >> > symbol clock computed assuming 8b/10b encoding (link_rate / 10). For >> > DP 128b/132b (UHBR) rates and for HDMI FRL the port clock needs to be >> > modfied. >> > On silicon DDI_CLK_VALFREQ is a scratch register with no functional >> > impact, so the bug is not observed. >> > Use intel_ddi_link_symbol_clock() to write the correct DDI clock in >> > kHz. >> >> Perhaps can be re-phrased as : >> >> DDI_CLK_VALFREQ does not configure hardware, it only records the frequency >> software intends to set, so there is no functional impact. >> >> Patch LGTM. >> >> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > > Thanks for the review > > Pushed to din with above mentioned changes in commit message Process nitpick #1. This series was pushed before there were xe CI results AFAICS. I understand the series is the same as v1, with just the commit message changed. But that's process nitpick #2. Please don't send a v2 to just change the commit message, on the same day, with no other review comments in yet. Wait out for the review comments, and if the only thing that needs changing in the end is the commit message, you don't have to resend anything at all. Just fix the commit message and push. Ask in the review thread if you're unsure about the wording. In this case, going slower would've gone faster, and saved a full v2 CI round on dozens of machines, just for a commit message wording change. BR, Jani. -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with DDI clock frequency 2026-08-12 9:03 ` Jani Nikula @ 2026-08-12 9:11 ` Kandpal, Suraj 0 siblings, 0 replies; 13+ messages in thread From: Kandpal, Suraj @ 2026-08-12 9:11 UTC (permalink / raw) To: Jani Nikula, Nautiyal, Ankit K, intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org > Subject: RE: [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with DDI > clock frequency > > On Wed, 12 Aug 2026, "Kandpal, Suraj" <suraj.kandpal@intel.com> wrote: > >> Subject: Re: [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ > >> with DDI clock frequency > >> > >> > >> On 8/11/2026 11:28 PM, Suraj Kandpal wrote: > >> > DDI_CLK_VALFREQ is programmed with the port clock, which for DP is > >> > the symbol clock computed assuming 8b/10b encoding (link_rate / > >> > 10). For DP 128b/132b (UHBR) rates and for HDMI FRL the port clock > >> > needs to be modfied. > >> > On silicon DDI_CLK_VALFREQ is a scratch register with no functional > >> > impact, so the bug is not observed. > >> > Use intel_ddi_link_symbol_clock() to write the correct DDI clock in > >> > kHz. > >> > >> Perhaps can be re-phrased as : > >> > >> DDI_CLK_VALFREQ does not configure hardware, it only records the > >> frequency software intends to set, so there is no functional impact. > >> > >> Patch LGTM. > >> > >> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > > > > Thanks for the review > > > > Pushed to din with above mentioned changes in commit message > > Process nitpick #1. This series was pushed before there were xe CI results > AFAICS. > > I understand the series is the same as v1, with just the commit message > changed. But that's process nitpick #2. Please don't send a v2 to just change the > commit message, on the same day, with no other review comments in yet. Wait > out for the review comments, and if the only thing that needs changing in the > end is the commit message, you don't have to resend anything at all. Just fix > the commit message and push. Ask in the review thread if you're unsure about > the wording. > > In this case, going slower would've gone faster, and saved a full v2 CI round on > dozens of machines, just for a commit message wording change. > Sure Jani will keep it in mind going forward Regards, Suraj Kandpal > BR, > Jani. > > > -- > Jani Nikula, Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v2 3/3] drm/i915/lt_phy: program DDI_CLK_VALFREQ with DDI clock frequency 2026-08-11 17:58 [PATCH v2 0/3] Fix value being written to DDI_CLK_VALFREQ Suraj Kandpal 2026-08-11 17:58 ` [PATCH v2 1/3] drm/i915/ddi: add helper to compute DDI clock frequency Suraj Kandpal 2026-08-11 17:58 ` [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with " Suraj Kandpal @ 2026-08-11 17:58 ` Suraj Kandpal 2026-08-12 3:50 ` Nautiyal, Ankit K 2026-08-11 19:39 ` ✓ i915.CI.BAT: success for Fix value being written to DDI_CLK_VALFREQ (rev2) Patchwork 2026-08-12 0:12 ` ✓ i915.CI.Full: " Patchwork 4 siblings, 1 reply; 13+ messages in thread From: Suraj Kandpal @ 2026-08-11 17:58 UTC (permalink / raw) To: intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal DDI_CLK_VALFREQ is programmed with the port clock, which for DP is the symbol clock computed assuming 8b/10b encoding (link_rate / 10). For DP 128b/132b (UHBR) rates and for HDMI FRL the port clock needs to be modified. On silicon DDI_CLK_VALFREQ is a scratch register with no functional impact, so the bug is not observed. Use intel_ddi_link_symbol_clock() to write the correct DDI clock in kHz Fixes: 5ec58d714935 ("drm/i915/lt_phy: Add .enable_clock hook on DDI") Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- drivers/gpu/drm/i915/display/intel_lt_phy.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy.c b/drivers/gpu/drm/i915/display/intel_lt_phy.c index 8fc6d230493f..86492651b01d 100644 --- a/drivers/gpu/drm/i915/display/intel_lt_phy.c +++ b/drivers/gpu/drm/i915/display/intel_lt_phy.c @@ -1976,7 +1976,8 @@ void intel_lt_phy_pll_enable(struct intel_encoder *encoder, * Change. We handle this step in bxt_set_cdclk(). */ /* 10. Program DDI_CLK_VALFREQ to match intended DDI clock frequency. */ - intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), port_clock); + intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), + intel_ddi_link_symbol_clock(encoder, port_clock)); /* 11. Program PORT_CLOCK_CTL[PCLK PLL Request LN0] = 1. */ intel_de_rmw(display, XELPDP_PORT_CLOCK_CTL(display, port), @@ -2023,7 +2024,8 @@ void intel_lt_phy_pll_enable(struct intel_encoder *encoder, lane_phy_pulse_status, lane_phy_pulse_status); } else { - intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), port_clock); + intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), + intel_ddi_link_symbol_clock(encoder, port_clock)); } /* -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v2 3/3] drm/i915/lt_phy: program DDI_CLK_VALFREQ with DDI clock frequency 2026-08-11 17:58 ` [PATCH v2 3/3] drm/i915/lt_phy: " Suraj Kandpal @ 2026-08-12 3:50 ` Nautiyal, Ankit K 2026-08-12 17:26 ` Rodrigo Vivi 0 siblings, 1 reply; 13+ messages in thread From: Nautiyal, Ankit K @ 2026-08-12 3:50 UTC (permalink / raw) To: Suraj Kandpal, intel-xe, intel-gfx On 8/11/2026 11:28 PM, Suraj Kandpal wrote: > DDI_CLK_VALFREQ is programmed with the port clock, which for DP is the > symbol clock computed assuming 8b/10b encoding (link_rate / 10). For > DP 128b/132b (UHBR) rates and for HDMI FRL the port clock needs to > be modified. > On silicon DDI_CLK_VALFREQ is a scratch register with no > functional impact, so the bug is not observed. > Use intel_ddi_link_symbol_clock() to write the correct DDI clock in > kHz > > Fixes: 5ec58d714935 ("drm/i915/lt_phy: Add .enable_clock hook on DDI") > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > --- > drivers/gpu/drm/i915/display/intel_lt_phy.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy.c b/drivers/gpu/drm/i915/display/intel_lt_phy.c > index 8fc6d230493f..86492651b01d 100644 > --- a/drivers/gpu/drm/i915/display/intel_lt_phy.c > +++ b/drivers/gpu/drm/i915/display/intel_lt_phy.c > @@ -1976,7 +1976,8 @@ void intel_lt_phy_pll_enable(struct intel_encoder *encoder, > * Change. We handle this step in bxt_set_cdclk(). > */ > /* 10. Program DDI_CLK_VALFREQ to match intended DDI clock frequency. */ > - intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), port_clock); > + intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), > + intel_ddi_link_symbol_clock(encoder, port_clock)); > > /* 11. Program PORT_CLOCK_CTL[PCLK PLL Request LN0] = 1. */ > intel_de_rmw(display, XELPDP_PORT_CLOCK_CTL(display, port), > @@ -2023,7 +2024,8 @@ void intel_lt_phy_pll_enable(struct intel_encoder *encoder, > lane_phy_pulse_status, > lane_phy_pulse_status); > } else { > - intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), port_clock); > + intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), > + intel_ddi_link_symbol_clock(encoder, port_clock)); > } > > /* ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 3/3] drm/i915/lt_phy: program DDI_CLK_VALFREQ with DDI clock frequency 2026-08-12 3:50 ` Nautiyal, Ankit K @ 2026-08-12 17:26 ` Rodrigo Vivi 0 siblings, 0 replies; 13+ messages in thread From: Rodrigo Vivi @ 2026-08-12 17:26 UTC (permalink / raw) To: Nautiyal, Ankit K; +Cc: Suraj Kandpal, intel-xe, intel-gfx On Wed, Aug 12, 2026 at 09:20:12AM +0530, Nautiyal, Ankit K wrote: > > On 8/11/2026 11:28 PM, Suraj Kandpal wrote: > > DDI_CLK_VALFREQ is programmed with the port clock, which for DP is the > > symbol clock computed assuming 8b/10b encoding (link_rate / 10). For > > DP 128b/132b (UHBR) rates and for HDMI FRL the port clock needs to > > be modified. > > On silicon DDI_CLK_VALFREQ is a scratch register with no > > functional impact, so the bug is not observed. > > Use intel_ddi_link_symbol_clock() to write the correct DDI clock in > > kHz > > > > Fixes: 5ec58d714935 ("drm/i915/lt_phy: Add .enable_clock hook on DDI") Next time, please be mindful about the -fixes, stable, and customer trees and keep new helper in the same patch as the fixes. Thanks, Rodrigo. > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > > Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > > > > --- > > drivers/gpu/drm/i915/display/intel_lt_phy.c | 6 ++++-- > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy.c b/drivers/gpu/drm/i915/display/intel_lt_phy.c > > index 8fc6d230493f..86492651b01d 100644 > > --- a/drivers/gpu/drm/i915/display/intel_lt_phy.c > > +++ b/drivers/gpu/drm/i915/display/intel_lt_phy.c > > @@ -1976,7 +1976,8 @@ void intel_lt_phy_pll_enable(struct intel_encoder *encoder, > > * Change. We handle this step in bxt_set_cdclk(). > > */ > > /* 10. Program DDI_CLK_VALFREQ to match intended DDI clock frequency. */ > > - intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), port_clock); > > + intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), > > + intel_ddi_link_symbol_clock(encoder, port_clock)); > > /* 11. Program PORT_CLOCK_CTL[PCLK PLL Request LN0] = 1. */ > > intel_de_rmw(display, XELPDP_PORT_CLOCK_CTL(display, port), > > @@ -2023,7 +2024,8 @@ void intel_lt_phy_pll_enable(struct intel_encoder *encoder, > > lane_phy_pulse_status, > > lane_phy_pulse_status); > > } else { > > - intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), port_clock); > > + intel_de_write(display, DDI_CLK_VALFREQ(encoder->port), > > + intel_ddi_link_symbol_clock(encoder, port_clock)); > > } > > /* ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.BAT: success for Fix value being written to DDI_CLK_VALFREQ (rev2) 2026-08-11 17:58 [PATCH v2 0/3] Fix value being written to DDI_CLK_VALFREQ Suraj Kandpal ` (2 preceding siblings ...) 2026-08-11 17:58 ` [PATCH v2 3/3] drm/i915/lt_phy: " Suraj Kandpal @ 2026-08-11 19:39 ` Patchwork 2026-08-12 0:12 ` ✓ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2026-08-11 19:39 UTC (permalink / raw) To: Suraj Kandpal; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 1008 bytes --] == Series Details == Series: Fix value being written to DDI_CLK_VALFREQ (rev2) URL : https://patchwork.freedesktop.org/series/171962/ State : success == Summary == CI Bug Log - changes from CI_DRM_18980 -> Patchwork_171962v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/index.html Participating hosts (38 -> 36) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Changes ------- No changes found Build changes ------------- * Linux: CI_DRM_18980 -> Patchwork_171962v2 CI-20190529: 20190529 CI_DRM_18980: aabf41c0ea0ad661a2e384e51955b24343f6ca25 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_9051: 9051 Patchwork_171962v2: aabf41c0ea0ad661a2e384e51955b24343f6ca25 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/index.html [-- Attachment #2: Type: text/html, Size: 1573 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.Full: success for Fix value being written to DDI_CLK_VALFREQ (rev2) 2026-08-11 17:58 [PATCH v2 0/3] Fix value being written to DDI_CLK_VALFREQ Suraj Kandpal ` (3 preceding siblings ...) 2026-08-11 19:39 ` ✓ i915.CI.BAT: success for Fix value being written to DDI_CLK_VALFREQ (rev2) Patchwork @ 2026-08-12 0:12 ` Patchwork 4 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2026-08-12 0:12 UTC (permalink / raw) To: Suraj Kandpal; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 109145 bytes --] == Series Details == Series: Fix value being written to DDI_CLK_VALFREQ (rev2) URL : https://patchwork.freedesktop.org/series/171962/ State : success == Summary == CI Bug Log - changes from CI_DRM_18980_full -> Patchwork_171962v2_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in Patchwork_171962v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][1] ([i915#11078]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][2] ([i915#11078]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu: NOTRUN -> [SKIP][3] ([i915#3555] / [i915#9323]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][4] ([i915#3555] / [i915#9323]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#9323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][7] -> [INCOMPLETE][8] ([i915#13356] / [i915#16348]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#280]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#4771]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#4525]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#4525]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-tglu-1: NOTRUN -> [FAIL][13] ([i915#15944]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#6334]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-gtt-read: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#3281]) +7 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#3281]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#13356]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#2190]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][20] ([i915#2190]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#4613] / [i915#7582]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#4613]) +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#4613]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#4613]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap@basic-small-bo: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#4083]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@gem_mmap@basic-small-bo.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][26] ([i915#2658]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk2/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#3282]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk10: NOTRUN -> [WARN][28] ([i915#14702] / [i915#2658]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#4270]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-glk11: NOTRUN -> [SKIP][30] +239 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#8411]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#3297]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#3297]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3297]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][35] ([i915#13356]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk1/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@batch-without-end: - shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#2527] / [i915#2856]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@secure-batches: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#2527]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@gen9_exec_parse@secure-batches.html - shard-tglu: NOTRUN -> [SKIP][38] ([i915#2527] / [i915#2856]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#2527]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#8399]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#8399]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][42] -> [INCOMPLETE][43] ([i915#13356] / [i915#13820]) +1 other test incomplete [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#6590]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][45] ([i915#13790] / [i915#2681]) +1 other test warn [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@gem-idle: - shard-dg1: [PASS][46] -> [DMESG-WARN][47] ([i915#4423]) +1 other test dmesg-warn [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-16/igt@i915_pm_rpm@gem-idle.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-15/igt@i915_pm_rpm@gem-idle.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [PASS][48] -> [INCOMPLETE][49] ([i915#13356]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#7984]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@i915_power@sanity.html * igt@i915_query@query-topology-unsupported: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#16079]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@i915_query@query-topology-unsupported.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#5723]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk11: NOTRUN -> [INCOMPLETE][53] ([i915#16182] / [i915#4817]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk11/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#7707]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#1769] / [i915#3555]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#5286]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#5286]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#5286]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3638]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#3828]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#3828]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#6095]) +175 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#6095]) +34 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#14544] / [i915#6095]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#12313]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#12313]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#12313]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#12313]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#10307] / [i915#6095]) +88 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#12805]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#12805]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][73] ([i915#12805]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#6095]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk10: NOTRUN -> [INCOMPLETE][75] ([i915#15582]) +1 other test incomplete [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][76] ([i915#15582]) +1 other test incomplete [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#14098] / [i915#6095]) +52 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#6095]) +81 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#6095]) +34 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3742]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3742]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#3742]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#11151] / [i915#7828]) +8 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#16471]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#11151] / [i915#7828]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#11151] / [i915#7828]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#11151] / [i915#7828]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#3555] / [i915#9979]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#15865]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#15865]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#15330]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#15330] / [i915#3116]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#15330]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#15330]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#15865]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#13049]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: NOTRUN -> [FAIL][98] ([i915#13566]) +4 other tests fail [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#13049]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#13049]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-rkl: [PASS][101] -> [FAIL][102] ([i915#13566]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3555]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#3555]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#4103]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#9067]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#3804]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#13707]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#16361]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#16361]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#16361]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#16081]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@hdr: - shard-rkl: [PASS][113] -> [SKIP][114] ([i915#16600]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-1/igt@kms_feature_discovery@hdr.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_feature_discovery@hdr.html - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#16600]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_feature_discovery@hdr.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#658]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#9934]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#9934]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#3637] / [i915#9934]) +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#9934]) +8 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#3637] / [i915#9934]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [PASS][122] -> [INCOMPLETE][123] ([i915#16276] / [i915#6113]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-8/igt@kms_flip@flip-vs-suspend.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk11: NOTRUN -> [INCOMPLETE][124] ([i915#12745] / [i915#4839]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk11: NOTRUN -> [INCOMPLETE][125] ([i915#12745]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][126] ([i915#16276] / [i915#6113]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#15643]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#15643]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#15643]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#15643]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4423]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-rkl: [PASS][132] -> [SKIP][133] ([i915#15989]) +15 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][134] +76 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][135] +12 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#15989]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#5439]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-linear: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#15989]) +21 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#15102]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#1825]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk10: NOTRUN -> [SKIP][141] +81 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#5439]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move: - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#15102]) +29 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#15990]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#15102]) +27 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#15989]) +13 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][147] +81 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#15989]) +15 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][149] ([i915#16056] / [i915#16593]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk10/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#15104] / [i915#15990]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#15990] / [i915#8708]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#15102] / [i915#3023]) +15 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#15102]) +36 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][154] +92 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8228]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#12713]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#8228]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#16644] / [i915#3555] / [i915#8228]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-rkl: [PASS][159] -> [SKIP][160] ([i915#16644] / [i915#3555] / [i915#8228]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_hdr@static-toggle.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8228]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#15459]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#15638] / [i915#15722]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-untiled: - shard-dg1: [PASS][164] -> [ABORT][165] ([i915#4423]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-12/igt@kms_pipe_stress@stress-xrgb8888-untiled.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-19/igt@kms_pipe_stress@stress-xrgb8888-untiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#14712]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#15709]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#16386]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#15709]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#16386]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#16386]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#15709]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#13958]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-y: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#13958]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#14259]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [PASS][176] -> [SKIP][177] ([i915#6953]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#15329]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#12343] / [i915#9812]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#12343] / [i915#9812]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#12343] / [i915#5354]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#15948]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [FAIL][183] ([i915#16479]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#9340]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#15073]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#15073]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][187] -> [SKIP][188] ([i915#14544] / [i915#15073]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][189] -> [SKIP][190] ([i915#15073]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#15073]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg1: [PASS][192] -> [SKIP][193] ([i915#15073]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@package-g7: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#15403]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_pm_rpm@package-g7.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#6524]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#11520]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][197] ([i915#11520]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk10: NOTRUN -> [SKIP][198] ([i915#11520]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#11520]) +7 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][200] ([i915#11520]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk11/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#11520]) +5 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9683]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@pr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#9732]) +15 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_psr@pr-sprite-plane-move.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#9732]) +14 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-cursor-plane-move: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#1072] / [i915#9732]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#1072] / [i915#9732]) +15 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#15949]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-glk: NOTRUN -> [SKIP][208] +160 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#5289]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#5289]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#3555]) +5 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full.html - shard-dg1: NOTRUN -> [SKIP][212] ([i915#3555]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#8623]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [PASS][214] -> [INCOMPLETE][215] ([i915#12276]) +1 other test incomplete [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][216] ([i915#12276]) +1 other test incomplete [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#15243] / [i915#3555]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#9906]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@kms_vrr@max-min.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#2436]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#2434]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@perf@mi-rpc.html * igt@perf_pmu@module-unload: - shard-rkl: NOTRUN -> [ABORT][221] ([i915#15778]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#8516]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html * igt@prime_udl@share-import-addfb: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#16420]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@basic-read: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3708]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-13/igt@prime_vgem@basic-read.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#16066]) +9 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#9917]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#16066]) +8 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-tglu-10/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html #### Possible fixes #### * igt@gem_softpin@noreloc-s3: - shard-rkl: [ABORT][228] ([i915#15131]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-1/igt@gem_softpin@noreloc-s3.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@gem_softpin@noreloc-s3.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [INCOMPLETE][230] ([i915#13356]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@gem_workarounds@suspend-resume-context.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@gem_workarounds@suspend-resume-context.html * igt@i915_suspend@sysfs-reader: - shard-rkl: [INCOMPLETE][232] ([i915#4817]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@i915_suspend@sysfs-reader.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@i915_suspend@sysfs-reader.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [FAIL][234] ([i915#15733] / [i915#5138]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [INCOMPLETE][236] ([i915#15582]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [FAIL][238] ([i915#13566]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-rkl: [INCOMPLETE][240] ([i915#16276] / [i915#6113]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-rkl: [SKIP][242] ([i915#15989]) -> [PASS][243] +17 other tests pass [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_pipe_crc_basic@hang-read-crc: - shard-dg1: [DMESG-WARN][244] ([i915#4423]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-17/igt@kms_pipe_crc_basic@hang-read-crc.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-15/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: [SKIP][246] ([i915#15073]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][248] ([i915#8411]) -> [SKIP][249] ([i915#14544] / [i915#8411]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: [SKIP][250] ([i915#14544] / [i915#8411]) -> [SKIP][251] ([i915#8411]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: [SKIP][252] ([i915#3555] / [i915#9323]) -> [SKIP][253] ([i915#14544] / [i915#3555] / [i915#9323]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][254] ([i915#14544] / [i915#8562]) -> [SKIP][255] ([i915#8562]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@gem_create@create-ext-set-pat.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: [SKIP][256] ([i915#14544] / [i915#280]) -> [SKIP][257] ([i915#280]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: [SKIP][258] ([i915#4525]) -> [SKIP][259] ([i915#14544] / [i915#4525]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@gem_exec_balancer@parallel-ordering.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][260] ([i915#3281]) -> [SKIP][261] ([i915#14544] / [i915#3281]) +5 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_reloc@basic-write-wc: - shard-rkl: [SKIP][262] ([i915#14544] / [i915#3281]) -> [SKIP][263] ([i915#3281]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][264] ([i915#2190]) -> [SKIP][265] ([i915#14544] / [i915#2190]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-7/igt@gem_huc_copy@huc-copy.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: [SKIP][266] ([i915#4613]) -> [SKIP][267] ([i915#14544] / [i915#4613]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@gem_lmem_swapping@heavy-random.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html * igt@gem_media_vme: - shard-rkl: [SKIP][268] ([i915#14544] / [i915#284]) -> [SKIP][269] ([i915#284]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@gem_media_vme.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@gem_media_vme.html * igt@gem_pwrite@basic-self: - shard-rkl: [SKIP][270] ([i915#14544] / [i915#3282]) -> [SKIP][271] ([i915#3282]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@gem_pwrite@basic-self.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@gem_pwrite@basic-self.html * igt@gem_pwrite_snooped: - shard-rkl: [SKIP][272] ([i915#3282]) -> [SKIP][273] ([i915#14544] / [i915#3282]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@gem_pwrite_snooped.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@gem_pwrite_snooped.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [SKIP][274] ([i915#13717] / [i915#14544]) -> [SKIP][275] ([i915#13717]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: [SKIP][276] ([i915#3297]) -> [SKIP][277] ([i915#14544] / [i915#3297]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-rkl: [SKIP][278] ([i915#14544] / [i915#2527]) -> [SKIP][279] ([i915#2527]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][280] ([i915#2527]) -> [SKIP][281] ([i915#14544] / [i915#2527]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: [SKIP][282] ([i915#14544] / [i915#8399]) -> [SKIP][283] ([i915#8399]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_query@query-topology-unsupported: - shard-rkl: [SKIP][284] ([i915#16079]) -> [SKIP][285] ([i915#14544] / [i915#16079]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@i915_query@query-topology-unsupported.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@i915_query@query-topology-unsupported.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: [SKIP][286] ([i915#14544] / [i915#5286]) -> [SKIP][287] ([i915#5286]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][288] ([i915#5286]) -> [SKIP][289] ([i915#14544] / [i915#5286]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: [SKIP][290] ([i915#3638]) -> [SKIP][291] ([i915#14544] / [i915#3638]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][292] ([i915#3828]) -> [SKIP][293] ([i915#14544] / [i915#3828]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg1: [SKIP][294] ([i915#3638]) -> [SKIP][295] ([i915#3638] / [i915#4423]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-12/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-19/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][296] ([i915#14544] / [i915#3638]) -> [SKIP][297] ([i915#3638]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][298] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][299] ([i915#14098] / [i915#6095]) +11 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][300] ([i915#14544] / [i915#6095]) -> [SKIP][301] ([i915#6095]) +7 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-rkl: [SKIP][302] ([i915#12313]) -> [SKIP][303] ([i915#12313] / [i915#14544]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][304] ([i915#6095]) -> [SKIP][305] ([i915#14544] / [i915#6095]) +5 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][306] ([i915#14098] / [i915#6095]) -> [SKIP][307] ([i915#14098] / [i915#14544] / [i915#6095]) +9 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_chamelium_audio@dp-audio-after-suspend: - shard-rkl: [SKIP][308] ([i915#11151]) -> [SKIP][309] ([i915#11151] / [i915#14544]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_chamelium_audio@dp-audio-after-suspend.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_chamelium_audio@dp-audio-after-suspend.html * igt@kms_chamelium_edid@vga-edid-read: - shard-rkl: [SKIP][310] ([i915#11151] / [i915#7828]) -> [SKIP][311] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_chamelium_edid@vga-edid-read.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-rkl: [SKIP][312] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][313] ([i915#11151] / [i915#7828]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-fast.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][314] ([i915#15330]) -> [SKIP][315] ([i915#14544] / [i915#15330]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: [SKIP][316] ([i915#15865]) -> [SKIP][317] ([i915#14544] / [i915#15865]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_content_protection@legacy-hdcp14.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-rkl: [SKIP][318] ([i915#14544] / [i915#3555]) -> [SKIP][319] ([i915#3555]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][320] ([i915#13049]) -> [SKIP][321] ([i915#13049] / [i915#14544]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][322] ([i915#13049] / [i915#14544]) -> [SKIP][323] ([i915#13049]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: [SKIP][324] ([i915#3555]) -> [SKIP][325] ([i915#14544] / [i915#3555]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: [SKIP][326] ([i915#14544] / [i915#3555] / [i915#3804]) -> [SKIP][327] ([i915#3555] / [i915#3804]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: [SKIP][328] ([i915#13749] / [i915#14544]) -> [SKIP][329] ([i915#13749]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: [SKIP][330] ([i915#13748]) -> [SKIP][331] ([i915#13748] / [i915#14544]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_dp_link_training@uhbr-sst.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - shard-rkl: [SKIP][332] ([i915#14544] / [i915#16361]) -> [SKIP][333] ([i915#16361]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-rkl: [SKIP][334] ([i915#16361]) -> [SKIP][335] ([i915#14544] / [i915#16361]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][336] ([i915#16680]) -> [SKIP][337] ([i915#14544] / [i915#16680]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@vrr: - shard-rkl: [SKIP][338] ([i915#14544] / [i915#16600]) -> [SKIP][339] ([i915#16600]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_feature_discovery@vrr.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_feature_discovery@vrr.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-rkl: [SKIP][340] ([i915#9934]) -> [SKIP][341] ([i915#14544] / [i915#9934]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_flip@2x-dpms-vs-vblank-race.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-rkl: [SKIP][342] ([i915#14544] / [i915#9934]) -> [SKIP][343] ([i915#9934]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: [SKIP][344] ([i915#15643]) -> [SKIP][345] ([i915#14544] / [i915#15643]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: [SKIP][346] ([i915#14544] / [i915#15643]) -> [SKIP][347] ([i915#15643]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: - shard-dg1: [SKIP][348] ([i915#15990] / [i915#4423] / [i915#8708]) -> [SKIP][349] ([i915#15990] / [i915#8708]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: [SKIP][350] ([i915#14544]) -> [SKIP][351] +38 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-suspend: - shard-rkl: [INCOMPLETE][352] ([i915#16056]) -> [SKIP][353] ([i915#15989]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-suspend.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][354] ([i915#15102] / [i915#3023]) -> [SKIP][355] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][356] ([i915#14544] / [i915#1825]) -> [SKIP][357] ([i915#1825]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][358] ([i915#10433] / [i915#15102]) -> [SKIP][359] ([i915#15102]) +4 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][360] ([i915#14544] / [i915#15102]) -> [SKIP][361] ([i915#15102]) +12 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][362] -> [SKIP][363] ([i915#14544]) +45 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render: - shard-dg1: [SKIP][364] ([i915#15989] / [i915#4423]) -> [SKIP][365] ([i915#15989]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-17/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-15/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][366] ([i915#15102]) -> [SKIP][367] ([i915#14544] / [i915#15102]) +16 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-rkl: [SKIP][368] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][369] ([i915#15102] / [i915#3023]) +7 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][370] ([i915#15102]) -> [SKIP][371] ([i915#10433] / [i915#15102]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html - shard-dg1: [SKIP][372] ([i915#15102] / [i915#4423]) -> [SKIP][373] ([i915#15102]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: [SKIP][374] ([i915#1825]) -> [SKIP][375] ([i915#14544] / [i915#1825]) +5 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][376] ([i915#15990] / [i915#4423]) -> [SKIP][377] ([i915#15990]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-15/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-dg1: [SKIP][378] ([i915#4423]) -> [SKIP][379] +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-15/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt: - shard-dg1: [SKIP][380] ([i915#15990]) -> [SKIP][381] ([i915#15990] / [i915#4423]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-12/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-19/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: [SKIP][382] ([i915#16644]) -> [SKIP][383] ([i915#12713] / [i915#16644]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: [SKIP][384] ([i915#14544] / [i915#15458]) -> [SKIP][385] ([i915#15458]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: [SKIP][386] ([i915#15638] / [i915#15722]) -> [SKIP][387] ([i915#14544] / [i915#15638] / [i915#15722]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][388] ([i915#6301]) -> [SKIP][389] ([i915#14544] / [i915#6301]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][390] ([i915#14544] / [i915#6301]) -> [SKIP][391] ([i915#6301]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_panel_fitting@legacy.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-rkl: [SKIP][392] ([i915#15709]) -> [SKIP][393] ([i915#14544] / [i915#15709]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: [SKIP][394] ([i915#14544] / [i915#15709]) -> [SKIP][395] ([i915#15709]) +2 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: [SKIP][396] ([i915#13958]) -> [SKIP][397] ([i915#13958] / [i915#14544]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-none.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: [SKIP][398] ([i915#12343] / [i915#5354]) -> [SKIP][399] ([i915#12343] / [i915#14544] / [i915#5354]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: [SKIP][400] ([i915#15948]) -> [SKIP][401] ([i915#14544] / [i915#15948]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][402] ([i915#14544] / [i915#15739]) -> [SKIP][403] ([i915#15739]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: [SKIP][404] ([i915#9340]) -> [SKIP][405] ([i915#3828]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: [SKIP][406] ([i915#8430]) -> [SKIP][407] ([i915#14544] / [i915#8430]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][408] ([i915#11520]) -> [SKIP][409] ([i915#11520] / [i915#14544]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][410] ([i915#11520] / [i915#14544]) -> [SKIP][411] ([i915#11520]) +1 other test skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][412] ([i915#9683]) -> [SKIP][413] ([i915#14544] / [i915#9683]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_psr2_su@page_flip-nv12.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-suspend: - shard-rkl: [SKIP][414] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][415] ([i915#1072] / [i915#9732]) +11 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_psr@fbc-pr-suspend.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@psr-cursor-render: - shard-rkl: [SKIP][416] ([i915#1072] / [i915#9732]) -> [SKIP][417] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_psr@psr-cursor-render.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_psr@psr-cursor-render.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: [SKIP][418] ([i915#14544] / [i915#8623]) -> [SKIP][419] ([i915#8623]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: [SKIP][420] ([i915#9906]) -> [SKIP][421] ([i915#14544] / [i915#9906]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][422] ([i915#15243] / [i915#3555]) -> [SKIP][423] ([i915#14544] / [i915#15243] / [i915#3555]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@kms_vrr@flip-suspend.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: [SKIP][424] ([i915#14544] / [i915#9906]) -> [SKIP][425] ([i915#9906]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][426] ([i915#2433]) -> [SKIP][427] ([i915#14544] / [i915#2433]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18980/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * Linux: CI_DRM_18980 -> Patchwork_171962v2 CI-20190529: 20190529 CI_DRM_18980: aabf41c0ea0ad661a2e384e51955b24343f6ca25 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_9051: 9051 Patchwork_171962v2: aabf41c0ea0ad661a2e384e51955b24343f6ca25 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_171962v2/index.html [-- Attachment #2: Type: text/html, Size: 147943 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-08-12 17:26 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-08-11 17:58 [PATCH v2 0/3] Fix value being written to DDI_CLK_VALFREQ Suraj Kandpal 2026-08-11 17:58 ` [PATCH v2 1/3] drm/i915/ddi: add helper to compute DDI clock frequency Suraj Kandpal 2026-08-12 3:43 ` Nautiyal, Ankit K 2026-08-11 17:58 ` [PATCH v2 2/3] drm/i915/cx0: program DDI_CLK_VALFREQ with " Suraj Kandpal 2026-08-12 3:49 ` Nautiyal, Ankit K 2026-08-12 4:24 ` Kandpal, Suraj 2026-08-12 9:03 ` Jani Nikula 2026-08-12 9:11 ` Kandpal, Suraj 2026-08-11 17:58 ` [PATCH v2 3/3] drm/i915/lt_phy: " Suraj Kandpal 2026-08-12 3:50 ` Nautiyal, Ankit K 2026-08-12 17:26 ` Rodrigo Vivi 2026-08-11 19:39 ` ✓ i915.CI.BAT: success for Fix value being written to DDI_CLK_VALFREQ (rev2) Patchwork 2026-08-12 0:12 ` ✓ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox