* [Intel-gfx] [PATCH] drm/i915/dsi: fix DSS CTL register offsets for TGL+
@ 2023-03-01 15:14 Jani Nikula
2023-03-01 15:38 ` Ville Syrjälä
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Jani Nikula @ 2023-03-01 15:14 UTC (permalink / raw)
To: intel-gfx; +Cc: Jani Nikula, stable
On TGL+ the DSS control registers are at different offsets, and there's
one per pipe. Fix the offsets to fix dual link DSI for TGL+.
There would be helpers for this in the DSC code, but just do the quick
fix now for DSI. Long term, we should probably move all the DSS handling
into intel_vdsc.c, so exporting the helpers seems counter-productive.
Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/8232
Cc: Ville Syrjala <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/icl_dsi.c | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c
index b5316715bb3b..5a17ab3f0d1a 100644
--- a/drivers/gpu/drm/i915/display/icl_dsi.c
+++ b/drivers/gpu/drm/i915/display/icl_dsi.c
@@ -277,9 +277,21 @@ static void configure_dual_link_mode(struct intel_encoder *encoder,
{
struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
+ i915_reg_t dss_ctl1_reg, dss_ctl2_reg;
u32 dss_ctl1;
- dss_ctl1 = intel_de_read(dev_priv, DSS_CTL1);
+ /* FIXME: Move all DSS handling to intel_vdsc.c */
+ if (DISPLAY_VER(dev_priv) >= 12) {
+ struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
+
+ dss_ctl1_reg = ICL_PIPE_DSS_CTL1(crtc->pipe);
+ dss_ctl2_reg = ICL_PIPE_DSS_CTL2(crtc->pipe);
+ } else {
+ dss_ctl1_reg = DSS_CTL1;
+ dss_ctl2_reg = DSS_CTL2;
+ }
+
+ dss_ctl1 = intel_de_read(dev_priv, dss_ctl1_reg);
dss_ctl1 |= SPLITTER_ENABLE;
dss_ctl1 &= ~OVERLAP_PIXELS_MASK;
dss_ctl1 |= OVERLAP_PIXELS(intel_dsi->pixel_overlap);
@@ -299,14 +311,14 @@ static void configure_dual_link_mode(struct intel_encoder *encoder,
dss_ctl1 &= ~LEFT_DL_BUF_TARGET_DEPTH_MASK;
dss_ctl1 |= LEFT_DL_BUF_TARGET_DEPTH(dl_buffer_depth);
- intel_de_rmw(dev_priv, DSS_CTL2, RIGHT_DL_BUF_TARGET_DEPTH_MASK,
+ intel_de_rmw(dev_priv, dss_ctl2_reg, RIGHT_DL_BUF_TARGET_DEPTH_MASK,
RIGHT_DL_BUF_TARGET_DEPTH(dl_buffer_depth));
} else {
/* Interleave */
dss_ctl1 |= DUAL_LINK_MODE_INTERLEAVE;
}
- intel_de_write(dev_priv, DSS_CTL1, dss_ctl1);
+ intel_de_write(dev_priv, dss_ctl1_reg, dss_ctl1);
}
/* aka DSI 8X clock */
--
2.39.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915/dsi: fix DSS CTL register offsets for TGL+ 2023-03-01 15:14 [Intel-gfx] [PATCH] drm/i915/dsi: fix DSS CTL register offsets for TGL+ Jani Nikula @ 2023-03-01 15:38 ` Ville Syrjälä 2023-03-01 16:00 ` Ville Syrjälä 2023-03-06 16:25 ` Jani Nikula 2023-03-01 21:31 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 2 replies; 8+ messages in thread From: Ville Syrjälä @ 2023-03-01 15:38 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx, stable On Wed, Mar 01, 2023 at 05:14:09PM +0200, Jani Nikula wrote: > On TGL+ the DSS control registers are at different offsets, and there's > one per pipe. Fix the offsets to fix dual link DSI for TGL+. > > There would be helpers for this in the DSC code, but just do the quick > fix now for DSI. Long term, we should probably move all the DSS handling > into intel_vdsc.c, so exporting the helpers seems counter-productive. I'm not entirely happy with intel_vdsc.c since it handles both the hardware VDSC block (which includes DSS, and so also uncompressed joiner and MSO), and also some actual DSC calculations/etc. Might be nice to have a cleaner split of some sort. That also reminds me that MSO+dsc/joiner is probably going to fail miserably given that neither side knows about the other and both poke the DSS registers. > > Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/8232 > Cc: Ville Syrjala <ville.syrjala@linux.intel.com> > Cc: stable@vger.kernel.org > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/icl_dsi.c | 18 +++++++++++++++--- > 1 file changed, 15 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c > index b5316715bb3b..5a17ab3f0d1a 100644 > --- a/drivers/gpu/drm/i915/display/icl_dsi.c > +++ b/drivers/gpu/drm/i915/display/icl_dsi.c > @@ -277,9 +277,21 @@ static void configure_dual_link_mode(struct intel_encoder *encoder, > { > struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); > struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); > + i915_reg_t dss_ctl1_reg, dss_ctl2_reg; > u32 dss_ctl1; > > - dss_ctl1 = intel_de_read(dev_priv, DSS_CTL1); > + /* FIXME: Move all DSS handling to intel_vdsc.c */ > + if (DISPLAY_VER(dev_priv) >= 12) { > + struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc); > + > + dss_ctl1_reg = ICL_PIPE_DSS_CTL1(crtc->pipe); > + dss_ctl2_reg = ICL_PIPE_DSS_CTL2(crtc->pipe); > + } else { > + dss_ctl1_reg = DSS_CTL1; > + dss_ctl2_reg = DSS_CTL2; > + } > + > + dss_ctl1 = intel_de_read(dev_priv, dss_ctl1_reg); Side note: should get rid of this rmw to make sure the thing fully configuerd the way we want... Anyways, this seems fine for now: Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > dss_ctl1 |= SPLITTER_ENABLE; > dss_ctl1 &= ~OVERLAP_PIXELS_MASK; > dss_ctl1 |= OVERLAP_PIXELS(intel_dsi->pixel_overlap); > @@ -299,14 +311,14 @@ static void configure_dual_link_mode(struct intel_encoder *encoder, > > dss_ctl1 &= ~LEFT_DL_BUF_TARGET_DEPTH_MASK; > dss_ctl1 |= LEFT_DL_BUF_TARGET_DEPTH(dl_buffer_depth); > - intel_de_rmw(dev_priv, DSS_CTL2, RIGHT_DL_BUF_TARGET_DEPTH_MASK, > + intel_de_rmw(dev_priv, dss_ctl2_reg, RIGHT_DL_BUF_TARGET_DEPTH_MASK, > RIGHT_DL_BUF_TARGET_DEPTH(dl_buffer_depth)); > } else { > /* Interleave */ > dss_ctl1 |= DUAL_LINK_MODE_INTERLEAVE; > } > > - intel_de_write(dev_priv, DSS_CTL1, dss_ctl1); > + intel_de_write(dev_priv, dss_ctl1_reg, dss_ctl1); > } > > /* aka DSI 8X clock */ > -- > 2.39.1 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/dsi: fix DSS CTL register offsets for TGL+ 2023-03-01 15:38 ` Ville Syrjälä @ 2023-03-01 16:00 ` Ville Syrjälä 2023-03-06 16:25 ` Jani Nikula 1 sibling, 0 replies; 8+ messages in thread From: Ville Syrjälä @ 2023-03-01 16:00 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx, stable On Wed, Mar 01, 2023 at 05:38:39PM +0200, Ville Syrjälä wrote: > On Wed, Mar 01, 2023 at 05:14:09PM +0200, Jani Nikula wrote: > > On TGL+ the DSS control registers are at different offsets, and there's > > one per pipe. Fix the offsets to fix dual link DSI for TGL+. > > > > There would be helpers for this in the DSC code, but just do the quick > > fix now for DSI. Long term, we should probably move all the DSS handling > > into intel_vdsc.c, so exporting the helpers seems counter-productive. > > I'm not entirely happy with intel_vdsc.c since it handles > both the hardware VDSC block (which includes DSS, and so > also uncompressed joiner and MSO), and also some actual > DSC calculations/etc. Might be nice to have a cleaner > split of some sort. > > That also reminds me that MSO+dsc/joiner is probably going > to fail miserably given that neither side knows about the > other and both poke the DSS registers. I suppose MSO+joiner should just be rejected outright since the splitter seems to sit before the joiner in the path. We'd need them to be the other way around. But MSO+DSC does look plausible. -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/dsi: fix DSS CTL register offsets for TGL+ 2023-03-01 15:38 ` Ville Syrjälä 2023-03-01 16:00 ` Ville Syrjälä @ 2023-03-06 16:25 ` Jani Nikula 1 sibling, 0 replies; 8+ messages in thread From: Jani Nikula @ 2023-03-06 16:25 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx, stable On Wed, 01 Mar 2023, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote: > On Wed, Mar 01, 2023 at 05:14:09PM +0200, Jani Nikula wrote: >> On TGL+ the DSS control registers are at different offsets, and there's >> one per pipe. Fix the offsets to fix dual link DSI for TGL+. >> >> There would be helpers for this in the DSC code, but just do the quick >> fix now for DSI. Long term, we should probably move all the DSS handling >> into intel_vdsc.c, so exporting the helpers seems counter-productive. > > I'm not entirely happy with intel_vdsc.c since it handles > both the hardware VDSC block (which includes DSS, and so > also uncompressed joiner and MSO), and also some actual > DSC calculations/etc. Might be nice to have a cleaner > split of some sort. > > That also reminds me that MSO+dsc/joiner is probably going > to fail miserably given that neither side knows about the > other and both poke the DSS registers. > >> >> Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/8232 >> Cc: Ville Syrjala <ville.syrjala@linux.intel.com> >> Cc: stable@vger.kernel.org >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> >> --- >> drivers/gpu/drm/i915/display/icl_dsi.c | 18 +++++++++++++++--- >> 1 file changed, 15 insertions(+), 3 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c >> index b5316715bb3b..5a17ab3f0d1a 100644 >> --- a/drivers/gpu/drm/i915/display/icl_dsi.c >> +++ b/drivers/gpu/drm/i915/display/icl_dsi.c >> @@ -277,9 +277,21 @@ static void configure_dual_link_mode(struct intel_encoder *encoder, >> { >> struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); >> struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); >> + i915_reg_t dss_ctl1_reg, dss_ctl2_reg; >> u32 dss_ctl1; >> >> - dss_ctl1 = intel_de_read(dev_priv, DSS_CTL1); >> + /* FIXME: Move all DSS handling to intel_vdsc.c */ >> + if (DISPLAY_VER(dev_priv) >= 12) { >> + struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc); >> + >> + dss_ctl1_reg = ICL_PIPE_DSS_CTL1(crtc->pipe); >> + dss_ctl2_reg = ICL_PIPE_DSS_CTL2(crtc->pipe); >> + } else { >> + dss_ctl1_reg = DSS_CTL1; >> + dss_ctl2_reg = DSS_CTL2; >> + } >> + >> + dss_ctl1 = intel_de_read(dev_priv, dss_ctl1_reg); > > Side note: should get rid of this rmw to make sure the thing > fully configuerd the way we want... > > Anyways, this seems fine for now: > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Thanks, pushed to din. BR, Jani. > >> dss_ctl1 |= SPLITTER_ENABLE; >> dss_ctl1 &= ~OVERLAP_PIXELS_MASK; >> dss_ctl1 |= OVERLAP_PIXELS(intel_dsi->pixel_overlap); >> @@ -299,14 +311,14 @@ static void configure_dual_link_mode(struct intel_encoder *encoder, >> >> dss_ctl1 &= ~LEFT_DL_BUF_TARGET_DEPTH_MASK; >> dss_ctl1 |= LEFT_DL_BUF_TARGET_DEPTH(dl_buffer_depth); >> - intel_de_rmw(dev_priv, DSS_CTL2, RIGHT_DL_BUF_TARGET_DEPTH_MASK, >> + intel_de_rmw(dev_priv, dss_ctl2_reg, RIGHT_DL_BUF_TARGET_DEPTH_MASK, >> RIGHT_DL_BUF_TARGET_DEPTH(dl_buffer_depth)); >> } else { >> /* Interleave */ >> dss_ctl1 |= DUAL_LINK_MODE_INTERLEAVE; >> } >> >> - intel_de_write(dev_priv, DSS_CTL1, dss_ctl1); >> + intel_de_write(dev_priv, dss_ctl1_reg, dss_ctl1); >> } >> >> /* aka DSI 8X clock */ >> -- >> 2.39.1 -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ 2023-03-01 15:14 [Intel-gfx] [PATCH] drm/i915/dsi: fix DSS CTL register offsets for TGL+ Jani Nikula 2023-03-01 15:38 ` Ville Syrjälä @ 2023-03-01 21:31 ` Patchwork 2023-03-03 14:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-03-01 21:31 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3414 bytes --] == Series Details == Series: drm/i915/dsi: fix DSS CTL register offsets for TGL+ URL : https://patchwork.freedesktop.org/series/114522/ State : success == Summary == CI Bug Log - changes from CI_DRM_12799 -> Patchwork_114522v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_114522v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-1: NOTRUN -> [ABORT][1] ([i915#6687] / [i915#7978]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@requests: - bat-rpls-2: [PASS][2] -> [ABORT][3] ([i915#4983] / [i915#7694] / [i915#7913] / [i915#7981]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/bat-rpls-2/igt@i915_selftest@live@requests.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-rpls-1: NOTRUN -> [DMESG-FAIL][4] ([i915#6367] / [i915#7996]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/bat-rpls-1/igt@i915_selftest@live@slpc.html #### Possible fixes #### * igt@i915_selftest@live@migrate: - bat-atsm-1: [DMESG-FAIL][5] ([i915#7699]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/bat-atsm-1/igt@i915_selftest@live@migrate.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/bat-atsm-1/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][7] ([i915#4983]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/bat-rpls-1/igt@i915_selftest@live@reset.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/bat-rpls-1/igt@i915_selftest@live@reset.html [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7694]: https://gitlab.freedesktop.org/drm/intel/issues/7694 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996 Build changes ------------- * Linux: CI_DRM_12799 -> Patchwork_114522v1 CI-20190529: 20190529 CI_DRM_12799: 5f6631c00a7f226c990aecc643bc9fa70da1599a @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7178: ffe3f6670b91ab975f90799ab3fd0941b6eae019 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_114522v1: 5f6631c00a7f226c990aecc643bc9fa70da1599a @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 3f1fc1c43734 drm/i915/dsi: fix DSS CTL register offsets for TGL+ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/index.html [-- Attachment #2: Type: text/html, Size: 4191 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ (rev2) 2023-03-01 15:14 [Intel-gfx] [PATCH] drm/i915/dsi: fix DSS CTL register offsets for TGL+ Jani Nikula 2023-03-01 15:38 ` Ville Syrjälä 2023-03-01 21:31 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-03-03 14:12 ` Patchwork 2023-03-04 13:13 ` [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ Patchwork 2023-03-06 20:31 ` [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ (rev2) Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-03-03 14:12 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 8839 bytes --] == Series Details == Series: drm/i915/dsi: fix DSS CTL register offsets for TGL+ (rev2) URL : https://patchwork.freedesktop.org/series/114522/ State : success == Summary == CI Bug Log - changes from CI_DRM_12807 -> Patchwork_114522v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/index.html Participating hosts (36 -> 39) ------------------------------ Additional (3): bat-atsm-1 fi-apl-guc fi-pnv-d510 Known issues ------------ Here are the changes found in Patchwork_114522v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@eof: - bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#2582]) +4 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@fbdev@eof.html * igt@gem_exec_gttfill@basic: - fi-pnv-d510: NOTRUN -> [FAIL][2] ([i915#7229]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@gem_lmem_swapping@basic: - fi-apl-guc: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/fi-apl-guc/igt@gem_lmem_swapping@basic.html * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#4083]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@gem_mmap@basic.html * igt@gem_tiled_fence_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4077]) +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4079]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#6621]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [PASS][8] -> [ABORT][9] ([i915#7911]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: NOTRUN -> [DMESG-FAIL][10] ([i915#5334]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [PASS][11] -> [DMESG-WARN][12] ([i915#7699]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/bat-dg2-11/igt@i915_selftest@live@migrate.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@reset: - bat-rpls-1: [PASS][13] -> [ABORT][14] ([i915#4983]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/bat-rpls-1/igt@i915_selftest@live@reset.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@i915_suspend@basic-s3-without-i915: - bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#6645]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@size-max: - bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#6077]) +36 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@kms_addfb_basic@size-max.html * igt@kms_chamelium_hpd@vga-hpd-fast: - fi-apl-guc: NOTRUN -> [SKIP][17] ([fdo#109271]) +22 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/fi-apl-guc/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-atsm-1: NOTRUN -> [SKIP][18] ([i915#6078]) +19 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_flip@basic-plain-flip: - bat-atsm-1: NOTRUN -> [SKIP][19] ([i915#6166]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@kms_flip@basic-plain-flip.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-atsm-1: NOTRUN -> [SKIP][20] ([i915#6093]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@hang-read-crc: - bat-atsm-1: NOTRUN -> [SKIP][21] ([i915#1836]) +6 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_prop_blob@basic: - bat-atsm-1: NOTRUN -> [SKIP][22] ([i915#7357]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@kms_prop_blob@basic.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][23] ([fdo#109271]) +38 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - bat-atsm-1: NOTRUN -> [SKIP][24] ([i915#1072]) +3 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-atsm-1: NOTRUN -> [SKIP][25] ([i915#6094]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-atsm-1: NOTRUN -> [SKIP][26] ([fdo#109295] / [i915#6078]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-atsm-1: NOTRUN -> [SKIP][27] ([fdo#109295] / [i915#4077]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-atsm-1: NOTRUN -> [SKIP][28] ([fdo#109295]) +3 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/bat-atsm-1/igt@prime_vgem@basic-write.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078 [i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093 [i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094 [i915#6166]: https://gitlab.freedesktop.org/drm/intel/issues/6166 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 [i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 Build changes ------------- * Linux: CI_DRM_12807 -> Patchwork_114522v2 CI-20190529: 20190529 CI_DRM_12807: 2b332905a3202e5c218463de58bfa3da55e641e5 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7180: b6b1ceb4fc4d8f83a9540e4628a6c2648514bb19 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_114522v2: 2b332905a3202e5c218463de58bfa3da55e641e5 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits b37b1a989c02 drm/i915/dsi: fix DSS CTL register offsets for TGL+ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/index.html [-- Attachment #2: Type: text/html, Size: 10472 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ 2023-03-01 15:14 [Intel-gfx] [PATCH] drm/i915/dsi: fix DSS CTL register offsets for TGL+ Jani Nikula ` (2 preceding siblings ...) 2023-03-03 14:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ (rev2) Patchwork @ 2023-03-04 13:13 ` Patchwork 2023-03-06 20:31 ` [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ (rev2) Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-03-04 13:13 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 44211 bytes --] == Series Details == Series: drm/i915/dsi: fix DSS CTL register offsets for TGL+ URL : https://patchwork.freedesktop.org/series/114522/ State : success == Summary == CI Bug Log - changes from CI_DRM_12799_full -> Patchwork_114522v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (19 -> 19) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_114522v1_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_create@create-clear@smem0: - {shard-rkl}: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-2/igt@gem_create@create-clear@smem0.html * igt@gem_create@create-ext-cpu-access-big: - {shard-dg2-6}: NOTRUN -> [ABORT][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_eio@hibernate: - {shard-dg2-8}: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-dg2-8/igt@gem_eio@hibernate.html * igt@kms_content_protection@srm@pipe-a-dp-2: - {shard-dg2-12}: NOTRUN -> [TIMEOUT][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-dg2-12/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_lease@empty_lease@pipe-a-hdmi-a-3: - {shard-dg2-7}: NOTRUN -> [ABORT][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-dg2-7/igt@kms_lease@empty_lease@pipe-a-hdmi-a-3.html * igt@kms_lease@empty_lease@pipe-b-hdmi-a-3: - {shard-dg2-7}: NOTRUN -> [DMESG-WARN][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-dg2-7/igt@kms_lease@empty_lease@pipe-b-hdmi-a-3.html New tests --------- New tests have been introduced between CI_DRM_12799_full and Patchwork_114522v1_full: ### New IGT tests (2) ### * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in Patchwork_114522v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu-10: NOTRUN -> [SKIP][7] ([i915#6230]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@api_intel_bb@crc32.html * igt@drm_buddy@all-tests: - shard-tglu-10: NOTRUN -> [SKIP][8] ([i915#6433]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@drm_buddy@all-tests.html * igt@fbdev@info: - shard-tglu-9: NOTRUN -> [SKIP][9] ([i915#2582]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@fbdev@info.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-9: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#5325]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu-10: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-10: NOTRUN -> [SKIP][12] ([i915#6335]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@process: - shard-snb: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#1099]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-snb1/igt@gem_ctx_persistence@process.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu-9: NOTRUN -> [SKIP][14] ([i915#6334]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-tglu-10: NOTRUN -> [FAIL][15] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][16] -> [FAIL][17] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu-10: NOTRUN -> [ABORT][18] ([i915#7975]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_huc_copy@huc-copy: - shard-tglu-10: NOTRUN -> [SKIP][19] ([i915#2190]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu-9: NOTRUN -> [SKIP][20] ([i915#4613]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-10: NOTRUN -> [SKIP][21] ([i915#4613]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][22] ([i915#2658]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-snb1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-tglu-10: NOTRUN -> [SKIP][23] ([i915#4270]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglu-9: NOTRUN -> [SKIP][24] ([i915#4270]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu-9: NOTRUN -> [SKIP][25] ([fdo#110542]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@gem_userptr_blits@coherency-sync.html * igt@gem_workarounds@suspend-resume: - shard-apl: [PASS][26] -> [ABORT][27] ([i915#180]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-apl7/igt@gem_workarounds@suspend-resume.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-apl7/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [PASS][28] -> [ABORT][29] ([i915#5566]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-apl3/igt@gen9_exec_parse@allowed-all.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-apl2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][30] -> [ABORT][31] ([i915#5566]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-glk9/igt@gen9_exec_parse@allowed-single.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-glk6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-9: NOTRUN -> [SKIP][32] ([i915#2527] / [i915#2856]) +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-access: - shard-tglu-10: NOTRUN -> [SKIP][33] ([i915#2527] / [i915#2856]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@gen9_exec_parse@unaligned-access.html * igt@i915_pm_backlight@basic-brightness: - shard-tglu-9: NOTRUN -> [SKIP][34] ([i915#7561]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_backlight@fade-with-suspend: - shard-tglu-10: NOTRUN -> [SKIP][35] ([i915#7561]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@i915_pm_backlight@fade-with-suspend.html * igt@i915_pm_lpsp@screens-disabled: - shard-tglu-9: NOTRUN -> [SKIP][36] ([i915#1902]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu-9: NOTRUN -> [WARN][37] ([i915#2681]) +3 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglu-9: NOTRUN -> [SKIP][38] ([fdo#109506]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-tglu-9: NOTRUN -> [SKIP][39] ([i915#3547]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@i915_pm_rpm@system-suspend-modeset.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu-10: NOTRUN -> [SKIP][40] ([i915#5286]) +3 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-tglu-10: NOTRUN -> [SKIP][41] ([fdo#111614]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu-10: NOTRUN -> [SKIP][42] ([fdo#111615]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs: - shard-tglu-10: NOTRUN -> [SKIP][43] ([fdo#111615] / [i915#3689]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][44] ([i915#3689] / [i915#6095]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs: - shard-tglu-10: NOTRUN -> [SKIP][45] ([i915#3689]) +3 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs: - shard-tglu-9: NOTRUN -> [SKIP][46] ([fdo#111615] / [i915#1845] / [i915#7651]) +8 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-tglu-9: NOTRUN -> [SKIP][47] ([i915#1845] / [i915#7651]) +44 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][48] ([i915#3689] / [i915#3886]) +4 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][49] ([i915#6095]) +2 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_chamelium_color@ctm-0-50: - shard-tglu-9: NOTRUN -> [SKIP][50] ([fdo#111827]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-max: - shard-tglu-10: NOTRUN -> [SKIP][51] ([fdo#111827]) +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-tglu-9: NOTRUN -> [SKIP][52] ([i915#7828]) +3 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@dp-hpd: - shard-tglu-10: NOTRUN -> [SKIP][53] ([i915#7828]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_color@ctm-0-50: - shard-tglu-9: NOTRUN -> [SKIP][54] ([i915#3546]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_color@ctm-0-50.html * igt@kms_content_protection@atomic-dpms: - shard-tglu-10: NOTRUN -> [SKIP][55] ([i915#6944] / [i915#7116] / [i915#7118]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-tglu-10: NOTRUN -> [SKIP][56] ([fdo#109274]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-10: NOTRUN -> [SKIP][57] ([i915#4103]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-10: NOTRUN -> [SKIP][58] ([i915#3469]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_fence_pin_leak: - shard-tglu-9: NOTRUN -> [SKIP][59] ([fdo#109274] / [i915#1845]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu-9: NOTRUN -> [SKIP][60] ([fdo#109274] / [i915#3637]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu-10: NOTRUN -> [SKIP][61] ([fdo#109274] / [i915#3637]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@bo-too-big-interruptible: - shard-tglu-9: NOTRUN -> [SKIP][62] ([i915#3637]) +4 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_flip@bo-too-big-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: - shard-apl: [PASS][63] -> [FAIL][64] ([i915#79]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a2: - shard-glk: [PASS][65] -> [FAIL][66] ([i915#2122]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-glk2/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a2.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-glk1/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu-10: NOTRUN -> [SKIP][67] ([i915#2587] / [i915#2672]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy: - shard-tglu-9: NOTRUN -> [SKIP][68] ([i915#1849]) +36 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-tglu-10: NOTRUN -> [SKIP][69] ([fdo#109280]) +13 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt: - shard-tglu-10: NOTRUN -> [SKIP][70] ([fdo#110189]) +13 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-10: NOTRUN -> [SKIP][71] ([i915#6301]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglu-10: NOTRUN -> [SKIP][72] ([fdo#109289]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-tglu-9: NOTRUN -> [SKIP][73] ([fdo#109289]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck: - shard-tglu-9: NOTRUN -> [SKIP][74] ([i915#1845]) +10 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_pipe_crc_basic@compare-crc-sanitycheck.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-tglu-9: NOTRUN -> [SKIP][75] ([i915#7128]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1: - shard-tglu-10: NOTRUN -> [SKIP][76] ([i915#5176]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-modifiers-unity-scaling: - shard-tglu-9: NOTRUN -> [SKIP][77] ([i915#3555]) +9 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-modifiers-unity-scaling.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][78] ([fdo#109271]) +96 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-snb6/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-tglu-9: NOTRUN -> [SKIP][79] ([i915#6953] / [i915#8152]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-tglu-10: NOTRUN -> [SKIP][80] ([i915#658]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr@psr2_primary_page_flip: - shard-tglu-9: NOTRUN -> [SKIP][81] ([fdo#110189]) +3 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-10: NOTRUN -> [SKIP][82] ([fdo#111615] / [i915#5289]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_universal_plane@universal-plane-pipe-a-functional: - shard-tglu-9: NOTRUN -> [SKIP][83] ([fdo#109274]) +3 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_universal_plane@universal-plane-pipe-a-functional.html * igt@kms_vblank@pipe-b-accuracy-idle: - shard-glk: [PASS][84] -> [FAIL][85] ([i915#43]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-glk3/igt@kms_vblank@pipe-b-accuracy-idle.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-glk6/igt@kms_vblank@pipe-b-accuracy-idle.html * igt@kms_vrr@negative-basic: - shard-tglu-10: NOTRUN -> [SKIP][86] ([i915#3555]) +4 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu-9: NOTRUN -> [SKIP][87] ([i915#2437]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf_pmu@event-wait@rcs0: - shard-tglu-9: NOTRUN -> [SKIP][88] ([fdo#112283]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@perf_pmu@event-wait@rcs0.html * igt@tools_test@sysfs_l3_parity: - shard-tglu-10: NOTRUN -> [SKIP][89] ([fdo#109307]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-tglu-10: NOTRUN -> [SKIP][90] ([fdo#109315] / [i915#2575]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-tglu-10: NOTRUN -> [SKIP][91] ([i915#2575]) +3 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-10/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-tglu-9: NOTRUN -> [SKIP][92] ([i915#2575]) +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-9/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html #### Possible fixes #### * igt@api_intel_bb@object-reloc-keep-cache: - {shard-rkl}: [SKIP][93] ([i915#3281]) -> [PASS][94] +5 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][95] ([fdo#103375]) -> [PASS][96] +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-rkl-4/igt@gem_eio@in-flight-suspend.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-5/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [FAIL][97] ([i915#2842]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-glk5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_schedule@semaphore-power: - {shard-rkl}: [SKIP][99] ([i915#7276]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_partial_pwrite_pread@reads-display: - {shard-rkl}: [SKIP][101] ([i915#3282]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-rkl-4/igt@gem_partial_pwrite_pread@reads-display.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-display.html * igt@gen9_exec_parse@shadow-peek: - {shard-rkl}: [SKIP][103] ([i915#2527]) -> [PASS][104] +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_rpm@cursor-dpms: - {shard-tglu}: [SKIP][105] ([i915#1849]) -> [PASS][106] +2 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-tglu-6/igt@i915_pm_rpm@cursor-dpms.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-3/igt@i915_pm_rpm@cursor-dpms.html * igt@i915_pm_rps@engine-order: - shard-apl: [FAIL][107] ([i915#6537]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-apl1/igt@i915_pm_rps@engine-order.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-apl6/igt@i915_pm_rps@engine-order.html * igt@kms_big_fb@linear-32bpp-rotate-0: - {shard-rkl}: [SKIP][109] ([i915#1845] / [i915#4098]) -> [PASS][110] +15 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-0.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - {shard-tglu}: [SKIP][111] ([i915#1845] / [i915#7651]) -> [PASS][112] +14 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-tglu-6/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-3/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][113] ([i915#2346]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2: - shard-glk: [FAIL][115] ([i915#79]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-glk4/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - {shard-rkl}: [SKIP][117] ([i915#1849] / [i915#4098]) -> [PASS][118] +6 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_properties@crtc-properties-legacy: - {shard-rkl}: [SKIP][119] ([i915#1849]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-rkl-5/igt@kms_properties@crtc-properties-legacy.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html * igt@kms_psr@cursor_blt: - {shard-rkl}: [SKIP][121] ([i915#1072]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-rkl-5/igt@kms_psr@cursor_blt.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-6/igt@kms_psr@cursor_blt.html * igt@kms_universal_plane@universal-plane-pipe-a-sanity: - {shard-tglu}: [SKIP][123] ([fdo#109274]) -> [PASS][124] +1 similar issue [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-tglu-6/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-tglu-3/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html * igt@perf@gen12-oa-tlb-invalidate: - {shard-rkl}: [SKIP][125] ([fdo#109289]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12799/shard-rkl-5/igt@perf@gen12-oa-tlb-invalidate.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v1/shard-rkl-2/igt@perf@gen12-oa-tlb-invalidate.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#43]: https://gitlab.freedesktop.org/drm/intel/issues/43 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5410]: https://gitlab.freedesktop.org/drm/intel/issues/5410 [i915#5431]: https://gitlab.freedesktop.org/drm/intel/issues/5431 [i915#5433]: https://gitlab.freedesktop.org/drm/intel/issues/5433 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5445]: https://gitlab.freedesktop.org/drm/intel/issues/5445 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5464]: https://gitlab.freedesktop.org/drm/intel/issues/5464 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6530]: https://gitlab.freedesktop.org/drm/intel/issues/6530 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8077]: https://gitlab.freedesktop.org/drm/intel/issues/8077 [i915#8150]: https://gitlab.freedesktop.org/drm/intel/issues/8150 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154 [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 Build changes ------------- * Linux: CI_DRM_12799 -> Patchwork_114522v1 CI-20190529: 20190529 CI_DRM_12799: 5f6631c00a7f226c990aecc643bc9fa70da1599a @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7178: ffe3f6670b91ab975f90799ab3fd0941b6eae019 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_114522v1: 5f6631c00a7f226c990aecc643bc9fa70da1599a @ 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_114522v1/index.html [-- Attachment #2: Type: text/html, Size: 41759 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ (rev2) 2023-03-01 15:14 [Intel-gfx] [PATCH] drm/i915/dsi: fix DSS CTL register offsets for TGL+ Jani Nikula ` (3 preceding siblings ...) 2023-03-04 13:13 ` [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ Patchwork @ 2023-03-06 20:31 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-03-06 20:31 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 22294 bytes --] == Series Details == Series: drm/i915/dsi: fix DSS CTL register offsets for TGL+ (rev2) URL : https://patchwork.freedesktop.org/series/114522/ State : success == Summary == CI Bug Log - changes from CI_DRM_12807_full -> Patchwork_114522v2_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_114522v2_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_eio@in-flight-contexts-immediate: - {shard-rkl}: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-rkl-4/igt@gem_eio@in-flight-contexts-immediate.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-rkl-4/igt@gem_eio@in-flight-contexts-immediate.html * {igt@kms_plane_scaling@i915-max-source-size}: - {shard-tglu}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-tglu-5/igt@kms_plane_scaling@i915-max-source-size.html Known issues ------------ Here are the changes found in Patchwork_114522v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-snb1/igt@gem_ctx_persistence@engines-hang.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][5] ([i915#3354]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-snb4/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][6] ([i915#2842]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk8/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@heavy-multi: - shard-apl: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#4613]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-apl3/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#4613]) +2 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][11] ([i915#2658]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-snb1/igt@gem_pread@exhaustion.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-apl: NOTRUN -> [SKIP][12] ([fdo#109271]) +54 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-apl3/igt@gen7_exec_parse@oacontrol-tracking.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#1937]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#3886]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-apl3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#3886]) +6 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk8/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271]) +179 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk8/igt@kms_cdclk@mode-transition.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][17] -> [FAIL][18] ([i915#2346]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [FAIL][19] ([i915#2122]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2: - shard-glk: [PASS][20] -> [FAIL][21] ([i915#79]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271]) +240 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#658]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-apl3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-glk: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#658]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][25] ([i915#5465]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#2437]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk7/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@stress-open-close: - shard-glk: [PASS][27] -> [ABORT][28] ([i915#5213]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-glk5/igt@perf@stress-open-close.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk8/igt@perf@stress-open-close.html #### Possible fixes #### * igt@fbdev@info: - {shard-tglu}: [SKIP][29] ([i915#2582]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-tglu-6/igt@fbdev@info.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-tglu-1/igt@fbdev@info.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][31] ([i915#2842]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_reloc@basic-gtt-read-active: - {shard-rkl}: [SKIP][33] ([i915#3281]) -> [PASS][34] +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read-active.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-active.html * igt@gem_readwrite@beyond-eob: - {shard-rkl}: [SKIP][35] ([i915#3282]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-rkl-2/igt@gem_readwrite@beyond-eob.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-rkl-5/igt@gem_readwrite@beyond-eob.html * igt@gen9_exec_parse@bb-chained: - {shard-rkl}: [SKIP][37] ([i915#2527]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-rkl-2/igt@gen9_exec_parse@bb-chained.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - {shard-rkl}: [WARN][39] ([i915#2681]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - {shard-tglu}: [SKIP][41] ([i915#1845] / [i915#7651]) -> [PASS][42] +12 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-tglu-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions: - {shard-tglu}: [SKIP][43] ([i915#1845]) -> [PASS][44] +4 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-tglu-6/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-tglu-1/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1: - shard-glk: [FAIL][45] ([i915#79]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - {shard-tglu}: [SKIP][47] ([i915#1849]) -> [PASS][48] +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_plane@plane-position-hole@pipe-b-planes: - {shard-tglu}: [SKIP][49] ([i915#1849] / [i915#3558]) -> [PASS][50] +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-tglu-6/igt@kms_plane@plane-position-hole@pipe-b-planes.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-tglu-1/igt@kms_plane@plane-position-hole@pipe-b-planes.html * igt@perf@gen12-mi-rpc: - {shard-rkl}: [SKIP][51] ([fdo#109289]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-rkl-5/igt@perf@gen12-mi-rpc.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-rkl-2/igt@perf@gen12-mi-rpc.html * igt@perf_pmu@idle@rcs0: - {shard-dg1}: [FAIL][53] ([i915#4349]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12807/shard-dg1-13/igt@perf_pmu@idle@rcs0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114522v2/shard-dg1-18/igt@perf_pmu@idle@rcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3354]: https://gitlab.freedesktop.org/drm/intel/issues/3354 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 Build changes ------------- * Linux: CI_DRM_12807 -> Patchwork_114522v2 CI-20190529: 20190529 CI_DRM_12807: 2b332905a3202e5c218463de58bfa3da55e641e5 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7180: b6b1ceb4fc4d8f83a9540e4628a6c2648514bb19 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_114522v2: 2b332905a3202e5c218463de58bfa3da55e641e5 @ 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_114522v2/index.html [-- Attachment #2: Type: text/html, Size: 17460 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-03-06 20:31 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-01 15:14 [Intel-gfx] [PATCH] drm/i915/dsi: fix DSS CTL register offsets for TGL+ Jani Nikula 2023-03-01 15:38 ` Ville Syrjälä 2023-03-01 16:00 ` Ville Syrjälä 2023-03-06 16:25 ` Jani Nikula 2023-03-01 21:31 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2023-03-03 14:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ (rev2) Patchwork 2023-03-04 13:13 ` [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ Patchwork 2023-03-06 20:31 ` [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/dsi: fix DSS CTL register offsets for TGL+ (rev2) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox