* [Intel-gfx] [PATCH 0/2] Selective fetch support for biplanar formats
@ 2021-10-21 10:10 Jouni Högander
2021-10-21 10:10 ` [Intel-gfx] [PATCH 1/2] drm/i915/display: Add initial selective " Jouni Högander
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Jouni Högander @ 2021-10-21 10:10 UTC (permalink / raw)
To: intel-gfx; +Cc: jose.souza, mika.kahola, wan-gyeong.mun
These patches are implementing selective update configuration for biplanar
formats. Also workaround to do full fetch for multi-planar formats is reverted.
Jouni Högander (2):
drm/i915/display: Add initial selective fetch support for biplanar
formats
Revert "drm/i915/display/psr: Do full fetch when handling multi-planar
formats"
drivers/gpu/drm/i915/display/intel_psr.c | 34 +++++++++++++++++++-----
1 file changed, 27 insertions(+), 7 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread* [Intel-gfx] [PATCH 1/2] drm/i915/display: Add initial selective fetch support for biplanar formats 2021-10-21 10:10 [Intel-gfx] [PATCH 0/2] Selective fetch support for biplanar formats Jouni Högander @ 2021-10-21 10:10 ` Jouni Högander 2021-10-21 10:21 ` Jani Nikula 2021-10-29 19:25 ` Souza, Jose 2021-10-21 10:10 ` [Intel-gfx] [PATCH 2/2] Revert "drm/i915/display/psr: Do full fetch when handling multi-planar formats" Jouni Högander ` (4 subsequent siblings) 5 siblings, 2 replies; 11+ messages in thread From: Jouni Högander @ 2021-10-21 10:10 UTC (permalink / raw) To: intel-gfx; +Cc: jose.souza, mika.kahola, wan-gyeong.mun Biplanar formats are using two planes (Y and UV). This patch adds handling of Y selective fetch area by utilizing existing linked plane mechanism. Also UV plane Y offset configuration is modified according to Bspec. Signed-off-by: Jouni Högander <jouni.hogander@intel.com> --- drivers/gpu/drm/i915/display/intel_psr.c | 30 +++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c index 49c2dfbd4055..469bf95178f3 100644 --- a/drivers/gpu/drm/i915/display/intel_psr.c +++ b/drivers/gpu/drm/i915/display/intel_psr.c @@ -1467,10 +1467,19 @@ void intel_psr2_program_plane_sel_fetch(struct intel_plane *plane, val |= plane_state->uapi.dst.x1; intel_de_write_fw(dev_priv, PLANE_SEL_FETCH_POS(pipe, plane->id), val); - /* TODO: consider auxiliary surfaces */ - x = plane_state->uapi.src.x1 >> 16; - y = (plane_state->uapi.src.y1 >> 16) + clip->y1; + x = plane_state->view.color_plane[color_plane].x; + + /* + * From Bspec: UV surface Start Y Position = half of Y plane Y + * start position. + */ + if (!color_plane) + y = plane_state->view.color_plane[color_plane].y + clip->y1; + else + y = plane_state->view.color_plane[color_plane].y + clip->y1 / 2; + val = y << 16 | x; + intel_de_write_fw(dev_priv, PLANE_SEL_FETCH_OFFSET(pipe, plane->id), val); @@ -1700,6 +1709,7 @@ int intel_psr2_sel_fetch_update(struct intel_atomic_state *state, for_each_oldnew_intel_plane_in_state(state, plane, old_plane_state, new_plane_state, i) { struct drm_rect *sel_fetch_area, inter; + struct intel_plane *linked = new_plane_state->planar_linked_plane; if (new_plane_state->uapi.crtc != crtc_state->uapi.crtc || !new_plane_state->uapi.visible) @@ -1718,6 +1728,20 @@ int intel_psr2_sel_fetch_update(struct intel_atomic_state *state, sel_fetch_area->y1 = inter.y1 - new_plane_state->uapi.dst.y1; sel_fetch_area->y2 = inter.y2 - new_plane_state->uapi.dst.y1; crtc_state->update_planes |= BIT(plane->id); + + /* + * Sel_fetch_area is calculated for UV plane. Use + * same area for Y plane as well. + */ + if (linked) { + struct intel_plane_state *linked_new_plane_state = + intel_atomic_get_new_plane_state(state, linked); + struct drm_rect *linked_sel_fetch_area = + &linked_new_plane_state->psr2_sel_fetch_area; + + linked_sel_fetch_area->y1 = sel_fetch_area->y1; + linked_sel_fetch_area->y2 = sel_fetch_area->y2; + } } skip_sel_fetch_set_loop: -- 2.25.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Intel-gfx] [PATCH 1/2] drm/i915/display: Add initial selective fetch support for biplanar formats 2021-10-21 10:10 ` [Intel-gfx] [PATCH 1/2] drm/i915/display: Add initial selective " Jouni Högander @ 2021-10-21 10:21 ` Jani Nikula 2021-10-29 19:25 ` Souza, Jose 1 sibling, 0 replies; 11+ messages in thread From: Jani Nikula @ 2021-10-21 10:21 UTC (permalink / raw) To: Jouni Högander, intel-gfx; +Cc: jose.souza, mika.kahola, wan-gyeong.mun On Thu, 21 Oct 2021, Jouni Högander <jouni.hogander@intel.com> wrote: > Biplanar formats are using two planes (Y and UV). This patch adds handling > of Y selective fetch area by utilizing existing linked plane mechanism. > Also UV plane Y offset configuration is modified according to Bspec. FYI, it's fine to add the bspec reference as a tag in the commit message, e.g. Bspec: 12345 See git log --grep="^Bspec:" for examples. No need to resend for this. BR, Jani. > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > --- > drivers/gpu/drm/i915/display/intel_psr.c | 30 +++++++++++++++++++++--- > 1 file changed, 27 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c > index 49c2dfbd4055..469bf95178f3 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.c > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > @@ -1467,10 +1467,19 @@ void intel_psr2_program_plane_sel_fetch(struct intel_plane *plane, > val |= plane_state->uapi.dst.x1; > intel_de_write_fw(dev_priv, PLANE_SEL_FETCH_POS(pipe, plane->id), val); > > - /* TODO: consider auxiliary surfaces */ > - x = plane_state->uapi.src.x1 >> 16; > - y = (plane_state->uapi.src.y1 >> 16) + clip->y1; > + x = plane_state->view.color_plane[color_plane].x; > + > + /* > + * From Bspec: UV surface Start Y Position = half of Y plane Y > + * start position. > + */ > + if (!color_plane) > + y = plane_state->view.color_plane[color_plane].y + clip->y1; > + else > + y = plane_state->view.color_plane[color_plane].y + clip->y1 / 2; > + > val = y << 16 | x; > + > intel_de_write_fw(dev_priv, PLANE_SEL_FETCH_OFFSET(pipe, plane->id), > val); > > @@ -1700,6 +1709,7 @@ int intel_psr2_sel_fetch_update(struct intel_atomic_state *state, > for_each_oldnew_intel_plane_in_state(state, plane, old_plane_state, > new_plane_state, i) { > struct drm_rect *sel_fetch_area, inter; > + struct intel_plane *linked = new_plane_state->planar_linked_plane; > > if (new_plane_state->uapi.crtc != crtc_state->uapi.crtc || > !new_plane_state->uapi.visible) > @@ -1718,6 +1728,20 @@ int intel_psr2_sel_fetch_update(struct intel_atomic_state *state, > sel_fetch_area->y1 = inter.y1 - new_plane_state->uapi.dst.y1; > sel_fetch_area->y2 = inter.y2 - new_plane_state->uapi.dst.y1; > crtc_state->update_planes |= BIT(plane->id); > + > + /* > + * Sel_fetch_area is calculated for UV plane. Use > + * same area for Y plane as well. > + */ > + if (linked) { > + struct intel_plane_state *linked_new_plane_state = > + intel_atomic_get_new_plane_state(state, linked); > + struct drm_rect *linked_sel_fetch_area = > + &linked_new_plane_state->psr2_sel_fetch_area; > + > + linked_sel_fetch_area->y1 = sel_fetch_area->y1; > + linked_sel_fetch_area->y2 = sel_fetch_area->y2; > + } > } > > skip_sel_fetch_set_loop: -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Intel-gfx] [PATCH 1/2] drm/i915/display: Add initial selective fetch support for biplanar formats 2021-10-21 10:10 ` [Intel-gfx] [PATCH 1/2] drm/i915/display: Add initial selective " Jouni Högander 2021-10-21 10:21 ` Jani Nikula @ 2021-10-29 19:25 ` Souza, Jose 1 sibling, 0 replies; 11+ messages in thread From: Souza, Jose @ 2021-10-29 19:25 UTC (permalink / raw) To: intel-gfx@lists.freedesktop.org, Hogander, Jouni; +Cc: Kahola, Mika On Thu, 2021-10-21 at 13:10 +0300, Jouni Högander wrote: > Biplanar formats are using two planes (Y and UV). This patch adds handling > of Y selective fetch area by utilizing existing linked plane mechanism. > Also UV plane Y offset configuration is modified according to Bspec. > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > --- > drivers/gpu/drm/i915/display/intel_psr.c | 30 +++++++++++++++++++++--- > 1 file changed, 27 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c > index 49c2dfbd4055..469bf95178f3 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.c > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > @@ -1467,10 +1467,19 @@ void intel_psr2_program_plane_sel_fetch(struct intel_plane *plane, > val |= plane_state->uapi.dst.x1; > intel_de_write_fw(dev_priv, PLANE_SEL_FETCH_POS(pipe, plane->id), val); > > - /* TODO: consider auxiliary surfaces */ > - x = plane_state->uapi.src.x1 >> 16; > - y = (plane_state->uapi.src.y1 >> 16) + clip->y1; > + x = plane_state->view.color_plane[color_plane].x; > + > + /* > + * From Bspec: UV surface Start Y Position = half of Y plane Y > + * start position. > + */ > + if (!color_plane) > + y = plane_state->view.color_plane[color_plane].y + clip->y1; > + else > + y = plane_state->view.color_plane[color_plane].y + clip->y1 / 2; Matches bspec but I'm not an expert in colorimetry not sure if it is missing handling for other non-RGB format. Let ship with it and fix on top but would be nice to ask around if we are missing cases for other formats. > + > val = y << 16 | x; > + > intel_de_write_fw(dev_priv, PLANE_SEL_FETCH_OFFSET(pipe, plane->id), > val); > > @@ -1700,6 +1709,7 @@ int intel_psr2_sel_fetch_update(struct intel_atomic_state *state, > for_each_oldnew_intel_plane_in_state(state, plane, old_plane_state, > new_plane_state, i) { > struct drm_rect *sel_fetch_area, inter; > + struct intel_plane *linked = new_plane_state->planar_linked_plane; > > if (new_plane_state->uapi.crtc != crtc_state->uapi.crtc || > !new_plane_state->uapi.visible) > @@ -1718,6 +1728,20 @@ int intel_psr2_sel_fetch_update(struct intel_atomic_state *state, > sel_fetch_area->y1 = inter.y1 - new_plane_state->uapi.dst.y1; > sel_fetch_area->y2 = inter.y2 - new_plane_state->uapi.dst.y1; > crtc_state->update_planes |= BIT(plane->id); > + > + /* > + * Sel_fetch_area is calculated for UV plane. Use > + * same area for Y plane as well. > + */ > + if (linked) { > + struct intel_plane_state *linked_new_plane_state = > + intel_atomic_get_new_plane_state(state, linked); > + struct drm_rect *linked_sel_fetch_area = > + &linked_new_plane_state->psr2_sel_fetch_area; > + > + linked_sel_fetch_area->y1 = sel_fetch_area->y1; > + linked_sel_fetch_area->y2 = sel_fetch_area->y2; Okay this is needed because the slave plane has visible = false. Reviewed-by: José Roberto de Souza <jose.souza@intel.com> > + } > } > > skip_sel_fetch_set_loop: ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Intel-gfx] [PATCH 2/2] Revert "drm/i915/display/psr: Do full fetch when handling multi-planar formats" 2021-10-21 10:10 [Intel-gfx] [PATCH 0/2] Selective fetch support for biplanar formats Jouni Högander 2021-10-21 10:10 ` [Intel-gfx] [PATCH 1/2] drm/i915/display: Add initial selective " Jouni Högander @ 2021-10-21 10:10 ` Jouni Högander 2021-10-29 19:26 ` Souza, Jose 2021-10-21 10:20 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Selective fetch support for biplanar formats Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Jouni Högander @ 2021-10-21 10:10 UTC (permalink / raw) To: intel-gfx; +Cc: jose.souza, mika.kahola, wan-gyeong.mun This reverts commit 1f61f0655b95d5b89589390e6f83c4a61d9b1e8d. Now we are supporting selective fetch for biplanar formats. We can revert WA patch which forced using full fetch for biplanar formats. Signed-off-by: Jouni Högander <jouni.hogander@intel.com> --- drivers/gpu/drm/i915/display/intel_psr.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c index 469bf95178f3..65282a545dbf 100644 --- a/drivers/gpu/drm/i915/display/intel_psr.c +++ b/drivers/gpu/drm/i915/display/intel_psr.c @@ -1571,9 +1571,6 @@ static void intel_psr2_sel_fetch_pipe_alignment(const struct intel_crtc_state *c * also planes are not updated if they have a negative X * position so for now doing a full update in this cases * - * TODO: We are missing multi-planar formats handling, until it is - * implemented it will send full frame updates. - * * Plane scaling and rotation is not supported by selective fetch and both * properties can change without a modeset, so need to be check at every * atomic commmit. @@ -1583,7 +1580,6 @@ static bool psr2_sel_fetch_plane_state_supported(const struct intel_plane_state if (plane_state->uapi.dst.y1 < 0 || plane_state->uapi.dst.x1 < 0 || plane_state->scaler_id >= 0 || - plane_state->hw.fb->format->num_planes > 1 || plane_state->uapi.rotation != DRM_MODE_ROTATE_0) return false; -- 2.25.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Intel-gfx] [PATCH 2/2] Revert "drm/i915/display/psr: Do full fetch when handling multi-planar formats" 2021-10-21 10:10 ` [Intel-gfx] [PATCH 2/2] Revert "drm/i915/display/psr: Do full fetch when handling multi-planar formats" Jouni Högander @ 2021-10-29 19:26 ` Souza, Jose 0 siblings, 0 replies; 11+ messages in thread From: Souza, Jose @ 2021-10-29 19:26 UTC (permalink / raw) To: intel-gfx@lists.freedesktop.org, Hogander, Jouni; +Cc: Kahola, Mika On Thu, 2021-10-21 at 13:10 +0300, Jouni Högander wrote: > This reverts commit 1f61f0655b95d5b89589390e6f83c4a61d9b1e8d. > > Now we are supporting selective fetch for biplanar formats. We can revert WA > patch which forced using full fetch for biplanar formats. > Reviewed-by: José Roberto de Souza <jose.souza@intel.com> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > --- > drivers/gpu/drm/i915/display/intel_psr.c | 4 ---- > 1 file changed, 4 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c > index 469bf95178f3..65282a545dbf 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.c > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > @@ -1571,9 +1571,6 @@ static void intel_psr2_sel_fetch_pipe_alignment(const struct intel_crtc_state *c > * also planes are not updated if they have a negative X > * position so for now doing a full update in this cases > * > - * TODO: We are missing multi-planar formats handling, until it is > - * implemented it will send full frame updates. > - * > * Plane scaling and rotation is not supported by selective fetch and both > * properties can change without a modeset, so need to be check at every > * atomic commmit. > @@ -1583,7 +1580,6 @@ static bool psr2_sel_fetch_plane_state_supported(const struct intel_plane_state > if (plane_state->uapi.dst.y1 < 0 || > plane_state->uapi.dst.x1 < 0 || > plane_state->scaler_id >= 0 || > - plane_state->hw.fb->format->num_planes > 1 || > plane_state->uapi.rotation != DRM_MODE_ROTATE_0) > return false; > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Selective fetch support for biplanar formats 2021-10-21 10:10 [Intel-gfx] [PATCH 0/2] Selective fetch support for biplanar formats Jouni Högander 2021-10-21 10:10 ` [Intel-gfx] [PATCH 1/2] drm/i915/display: Add initial selective " Jouni Högander 2021-10-21 10:10 ` [Intel-gfx] [PATCH 2/2] Revert "drm/i915/display/psr: Do full fetch when handling multi-planar formats" Jouni Högander @ 2021-10-21 10:20 ` Patchwork 2021-10-21 10:51 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2021-10-21 10:20 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx == Series Details == Series: Selective fetch support for biplanar formats URL : https://patchwork.freedesktop.org/series/96113/ State : warning == Summary == $ dim checkpatch origin/drm-tip c3d07cfdcd88 drm/i915/display: Add initial selective fetch support for biplanar formats 7164a9803ffc Revert "drm/i915/display/psr: Do full fetch when handling multi-planar formats" -:12: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line) #12: Now we are supporting selective fetch for biplanar formats. We can revert WA total: 0 errors, 1 warnings, 0 checks, 16 lines checked ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for Selective fetch support for biplanar formats 2021-10-21 10:10 [Intel-gfx] [PATCH 0/2] Selective fetch support for biplanar formats Jouni Högander ` (2 preceding siblings ...) 2021-10-21 10:20 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Selective fetch support for biplanar formats Patchwork @ 2021-10-21 10:51 ` Patchwork 2021-10-21 12:09 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2021-10-22 15:56 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2021-10-21 10:51 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5497 bytes --] == Series Details == Series: Selective fetch support for biplanar formats URL : https://patchwork.freedesktop.org/series/96113/ State : success == Summary == CI Bug Log - changes from CI_DRM_10768 -> Patchwork_21401 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_21401: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_frontbuffer_tracking@basic: - {fi-hsw-gt1}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/fi-hsw-gt1/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-hsw-gt1/igt@kms_frontbuffer_tracking@basic.html Known issues ------------ Here are the changes found in Patchwork_21401 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_cs_nop@sync-fork-compute0: - fi-snb-2600: NOTRUN -> [SKIP][3] ([fdo#109271]) +17 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-snb-2600/igt@amdgpu/amd_cs_nop@sync-fork-compute0.html * igt@gem_huc_copy@huc-copy: - fi-glk-dsi: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-glk-dsi/igt@gem_huc_copy@huc-copy.html * igt@kms_chamelium@dp-crc-fast: - fi-bsw-nick: NOTRUN -> [SKIP][5] ([fdo#109271] / [fdo#111827]) +8 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-bsw-nick/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-glk-dsi: NOTRUN -> [SKIP][6] ([fdo#109271] / [fdo#111827]) +8 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-glk-dsi/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-glk-dsi: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#533]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-glk-dsi/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_psr@primary_page_flip: - fi-glk-dsi: NOTRUN -> [SKIP][8] ([fdo#109271]) +30 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-glk-dsi/igt@kms_psr@primary_page_flip.html * igt@prime_vgem@basic-fence-flip: - fi-bsw-nick: NOTRUN -> [SKIP][9] ([fdo#109271]) +63 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-bsw-nick/igt@prime_vgem@basic-fence-flip.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - fi-tgl-1115g4: [FAIL][10] ([i915#1888]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html * igt@i915_selftest@live@hangcheck: - {fi-hsw-gt1}: [DMESG-WARN][12] ([i915#3303]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html - fi-snb-2600: [INCOMPLETE][14] ([i915#3921]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/fi-snb-2600/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541 Participating hosts (41 -> 34) ------------------------------ Additional (2): fi-glk-dsi fi-bsw-nick Missing (9): fi-kbl-soraka fi-bdw-5557u bat-dg1-6 bat-dg1-5 fi-hsw-4200u fi-bsw-cyan bat-adlp-4 fi-ctg-p8600 fi-kbl-8809g Build changes ------------- * Linux: CI_DRM_10768 -> Patchwork_21401 CI-20190529: 20190529 CI_DRM_10768: 0e1c99720e0793390c9758dc1b4eedd7395b1382 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6258: 4c80c71d7dec29b6376846ae96bd04dc0b6e34d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_21401: 7164a9803ffc40031a3ab1eac77f9f69fd167586 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 7164a9803ffc Revert "drm/i915/display/psr: Do full fetch when handling multi-planar formats" c3d07cfdcd88 drm/i915/display: Add initial selective fetch support for biplanar formats == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/index.html [-- Attachment #2: Type: text/html, Size: 6783 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for Selective fetch support for biplanar formats 2021-10-21 10:10 [Intel-gfx] [PATCH 0/2] Selective fetch support for biplanar formats Jouni Högander ` (3 preceding siblings ...) 2021-10-21 10:51 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2021-10-21 12:09 ` Patchwork 2021-10-22 15:56 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2021-10-21 12:09 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30266 bytes --] == Series Details == Series: Selective fetch support for biplanar formats URL : https://patchwork.freedesktop.org/series/96113/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10768_full -> Patchwork_21401_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_21401_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_21401_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_21401_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen: - shard-tglb: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen.html Known issues ------------ Here are the changes found in Patchwork_21401_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-2x: - shard-tglb: NOTRUN -> [SKIP][2] ([i915#1839]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@feature_discovery@display-2x.html * igt@gem_create@create-massive: - shard-snb: NOTRUN -> [DMESG-WARN][3] ([i915#3002]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb7/igt@gem_create@create-massive.html * igt@gem_ctx_persistence@engines-hostile: - shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb5/igt@gem_ctx_persistence@engines-hostile.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: NOTRUN -> [FAIL][5] ([i915#2842]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][6] -> [FAIL][7] ([i915#2842]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [PASS][8] -> [FAIL][9] ([i915#2842]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_params@no-vebox: - shard-tglb: NOTRUN -> [SKIP][10] ([fdo#109283]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_exec_params@no-vebox.html * igt@gem_pread@exhaustion: - shard-apl: NOTRUN -> [WARN][11] ([i915#2658]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][12] ([i915#2658]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglb: NOTRUN -> [SKIP][13] ([i915#4270]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglb: NOTRUN -> [SKIP][14] ([i915#3297]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-skl: NOTRUN -> [FAIL][15] ([i915#3318]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@basic-rejected: - shard-tglb: NOTRUN -> [SKIP][16] ([fdo#109289]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@basic-rejected: - shard-iclb: NOTRUN -> [SKIP][17] ([i915#2856]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglb: NOTRUN -> [SKIP][18] ([i915#2856]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][19] -> [FAIL][20] ([i915#454]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb1/igt@i915_pm_dc@dc6-psr.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-kbl: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1937]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-tglb: NOTRUN -> [SKIP][22] ([fdo#111644] / [i915#1397] / [i915#2411]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_selftest@live@hangcheck: - shard-snb: [PASS][23] -> [INCOMPLETE][24] ([i915#3921]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-snb2/igt@i915_selftest@live@hangcheck.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb6/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-glk: [PASS][25] -> [DMESG-WARN][26] ([i915#118]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk3/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-kbl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#3777]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-skl: NOTRUN -> [FAIL][28] ([i915#3743]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#3777]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][30] ([fdo#111614]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][31] ([fdo#111615]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-apl: NOTRUN -> [SKIP][32] ([fdo#109271]) +124 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-iclb: NOTRUN -> [SKIP][33] ([fdo#110723]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3886]) +4 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl3/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3886]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#109278] / [i915#3886]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-skl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3689]) +6 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#3689] / [i915#3886]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#109278]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs: - shard-kbl: NOTRUN -> [SKIP][41] ([fdo#109271]) +33 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html * igt@kms_chamelium@dp-crc-multiple: - shard-apl: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +11 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@kms_chamelium@dp-crc-multiple.html * igt@kms_chamelium@hdmi-hpd-fast: - shard-snb: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +10 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb5/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_chamelium@hdmi-mode-timings: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_chamelium@hdmi-mode-timings.html * igt@kms_color_chamelium@pipe-a-ctm-green-to-red: - shard-skl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_color_chamelium@pipe-a-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-b-ctm-limited-range: - shard-tglb: NOTRUN -> [SKIP][46] ([fdo#109284] / [fdo#111827]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue: - shard-kbl: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][48] ([i915#1319]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglb: NOTRUN -> [SKIP][49] ([i915#3116]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: [PASS][50] -> [DMESG-WARN][51] ([i915#180]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-random: - shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109278] / [fdo#109279]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_cursor_crc@pipe-b-cursor-512x170-random.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-random: - shard-tglb: NOTRUN -> [SKIP][53] ([fdo#109279] / [i915#3359]) +4 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-random.html * igt@kms_cursor_crc@pipe-d-cursor-max-size-random: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3359]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-max-size-random.html * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: - shard-snb: NOTRUN -> [SKIP][55] ([fdo#109271]) +206 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb5/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109274] / [fdo#109278]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#4103]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: - shard-tglb: NOTRUN -> [SKIP][58] ([i915#3528]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-glk: [PASS][59] -> [FAIL][60] ([i915#79]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][61] ([i915#180]) +2 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html - shard-apl: [PASS][62] -> [DMESG-WARN][63] ([i915#180]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1: - shard-skl: [PASS][64] -> [FAIL][65] ([i915#2122]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-apl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#2672]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-glk: [PASS][67] -> [FAIL][68] ([i915#2546]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][69] ([fdo#109280]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#111825]) +16 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-tglb: [PASS][71] -> [INCOMPLETE][72] ([i915#2411] / [i915#456]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb2/igt@kms_frontbuffer_tracking@psr-suspend.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: - shard-skl: NOTRUN -> [FAIL][73] ([fdo#108145] / [i915#265]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: - shard-apl: NOTRUN -> [FAIL][74] ([fdo#108145] / [i915#265]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][75] ([fdo#108145] / [i915#265]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_lowres@pipe-b-tiling-y: - shard-tglb: NOTRUN -> [SKIP][76] ([i915#3536]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html * igt@kms_plane_lowres@pipe-d-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][77] ([fdo#112054]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_plane_lowres@pipe-d-tiling-yf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: - shard-apl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-1: - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#658]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5: - shard-tglb: NOTRUN -> [SKIP][80] ([i915#2920]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html * igt@kms_psr2_su@page_flip: - shard-tglb: NOTRUN -> [SKIP][81] ([i915#1911]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_blt: - shard-skl: NOTRUN -> [SKIP][82] ([fdo#109271]) +25 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_psr@psr2_cursor_blt.html * igt@kms_psr@psr2_suspend: - shard-iclb: [PASS][83] -> [SKIP][84] ([fdo#109441]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb2/igt@kms_psr@psr2_suspend.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb1/igt@kms_psr@psr2_suspend.html * igt@kms_writeback@writeback-invalid-parameters: - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#2437]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@kms_writeback@writeback-invalid-parameters.html * igt@nouveau_crc@pipe-c-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][86] ([i915#2530]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@nouveau_crc@pipe-c-ctx-flip-detection.html * igt@perf@polling-parameterized: - shard-skl: [PASS][87] -> [FAIL][88] ([i915#1542]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl5/igt@perf@polling-parameterized.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl2/igt@perf@polling-parameterized.html * igt@perf_pmu@event-wait@rcs0: - shard-tglb: NOTRUN -> [SKIP][89] ([fdo#112283]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@perf_pmu@event-wait@rcs0.html * igt@prime_vgem@fence-write-hang: - shard-tglb: NOTRUN -> [SKIP][90] ([fdo#109295]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@prime_vgem@fence-write-hang.html * igt@sysfs_clients@busy: - shard-skl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2994]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@sysfs_clients@busy.html * igt@sysfs_clients@fair-0: - shard-tglb: NOTRUN -> [SKIP][92] ([i915#2994]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@sysfs_clients@fair-0.html * igt@sysfs_clients@recycle: - shard-apl: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#2994]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@sysfs_clients@recycle.html #### Possible fixes #### * igt@drm_mm@all@evict: - shard-skl: [INCOMPLETE][94] ([i915#198]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl2/igt@drm_mm@all@evict.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl5/igt@drm_mm@all@evict.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][96] ([i915#2369] / [i915#3063] / [i915#3648]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb3/igt@gem_eio@unwedge-stress.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb1/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: [FAIL][98] ([i915#2842]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-kbl: [FAIL][100] ([i915#2842]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_softpin@noreloc-s3: - shard-apl: [DMESG-WARN][102] ([i915#180]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-apl8/igt@gem_softpin@noreloc-s3.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl3/igt@gem_softpin@noreloc-s3.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][104] ([i915#454]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html * igt@i915_suspend@forcewake: - shard-skl: [INCOMPLETE][106] ([i915#636]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl2/igt@i915_suspend@forcewake.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@i915_suspend@forcewake.html * igt@kms_color@pipe-b-ctm-0-75: - shard-skl: [DMESG-WARN][108] ([i915#1982]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl7/igt@kms_color@pipe-b-ctm-0-75.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_color@pipe-b-ctm-0-75.html * igt@kms_cursor_crc@pipe-b-cursor-suspend: - shard-tglb: [INCOMPLETE][110] ([i915#2411] / [i915#456]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-skl: [FAIL][112] ([i915#2346] / [i915#533]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: - shard-kbl: [FAIL][114] ([i915#79]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-skl: [FAIL][116] ([i915#79]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_hdr@bpc-switch-dpms: - shard-skl: [FAIL][118] ([i915#1188]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl2/igt@kms_hdr@bpc-switch-dpms.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - shard-skl: [FAIL][120] ([fdo#108145] / [i915#265]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [SKIP][122] ([fdo#109441]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb7/igt@kms_psr@psr2_cursor_mmap_cpu.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-tglb: [INCOMPLETE][124] ([i915#456]) -> [PASS][125] +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: [WARN][126] ([i915#2684]) -> [WARN][127] ([i915#1804] / [i915#2684]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb1/igt@i915_pm_rc6_residency@rc6-fence.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@i915_pm_rc6_residency@rc6-fence.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: - shard-iclb: [SKIP][128] ([i915#658]) -> [SKIP][129] ([i915#2920]) +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1: - shard-iclb: [SKIP][130] ([i915#2920]) -> [SKIP][131] ([i915#658]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html * igt@kms_psr2_su@page_flip: - shard-iclb: [FAIL][132] ([i915#4148]) -> [SKIP][133] ([fdo#109642] / [fdo#111068] / [i915#658]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb2/igt@kms_psr2_su@page_flip.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@runner@aborted: - shard-kbl: ([FAIL][134], [FAIL][135]) ([i915#3002] / [i915#3363] / [i915#4312]) -> ([FAIL][136], [FAIL][137], == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/index.html [-- Attachment #2: Type: text/html, Size: 33669 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for Selective fetch support for biplanar formats 2021-10-21 10:10 [Intel-gfx] [PATCH 0/2] Selective fetch support for biplanar formats Jouni Högander ` (4 preceding siblings ...) 2021-10-21 12:09 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-10-22 15:56 ` Patchwork 2021-10-29 19:44 ` Souza, Jose 5 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2021-10-22 15:56 UTC (permalink / raw) To: Hogander, Jouni; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30267 bytes --] == Series Details == Series: Selective fetch support for biplanar formats URL : https://patchwork.freedesktop.org/series/96113/ State : success == Summary == CI Bug Log - changes from CI_DRM_10768_full -> Patchwork_21401_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (10 -> 11) ------------------------------ Additional (1): pig-snb-2600 Known issues ------------ Here are the changes found in Patchwork_21401_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-2x: - shard-tglb: NOTRUN -> [SKIP][1] ([i915#1839]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@feature_discovery@display-2x.html * igt@gem_create@create-massive: - shard-snb: NOTRUN -> [DMESG-WARN][2] ([i915#3002]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb7/igt@gem_create@create-massive.html * igt@gem_ctx_persistence@engines-hostile: - shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb5/igt@gem_ctx_persistence@engines-hostile.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: NOTRUN -> [FAIL][4] ([i915#2842]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][5] -> [FAIL][6] ([i915#2842]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2842]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_params@no-vebox: - shard-tglb: NOTRUN -> [SKIP][9] ([fdo#109283]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_exec_params@no-vebox.html * igt@gem_pread@exhaustion: - shard-apl: NOTRUN -> [WARN][10] ([i915#2658]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][11] ([i915#2658]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglb: NOTRUN -> [SKIP][12] ([i915#4270]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglb: NOTRUN -> [SKIP][13] ([i915#3297]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-skl: NOTRUN -> [FAIL][14] ([i915#3318]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@basic-rejected: - shard-tglb: NOTRUN -> [SKIP][15] ([fdo#109289]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@basic-rejected: - shard-iclb: NOTRUN -> [SKIP][16] ([i915#2856]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglb: NOTRUN -> [SKIP][17] ([i915#2856]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][18] -> [FAIL][19] ([i915#454]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb1/igt@i915_pm_dc@dc6-psr.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-kbl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#1937]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-tglb: NOTRUN -> [SKIP][21] ([fdo#111644] / [i915#1397] / [i915#2411]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_selftest@live@hangcheck: - shard-snb: [PASS][22] -> [INCOMPLETE][23] ([i915#3921]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-snb2/igt@i915_selftest@live@hangcheck.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb6/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-glk: [PASS][24] -> [DMESG-WARN][25] ([i915#118]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk3/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-kbl: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#3777]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-skl: NOTRUN -> [FAIL][27] ([i915#3743]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#3777]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][29] ([fdo#111614]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][30] ([fdo#111615]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-apl: NOTRUN -> [SKIP][31] ([fdo#109271]) +124 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-iclb: NOTRUN -> [SKIP][32] ([fdo#110723]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3886]) +4 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl3/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3886]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109278] / [i915#3886]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-skl: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#3886]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#3689]) +6 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3689] / [i915#3886]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109278]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs: - shard-kbl: NOTRUN -> [SKIP][40] ([fdo#109271]) +33 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html * igt@kms_chamelium@dp-crc-multiple: - shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +11 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@kms_chamelium@dp-crc-multiple.html * igt@kms_chamelium@hdmi-hpd-fast: - shard-snb: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +10 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb5/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_chamelium@hdmi-mode-timings: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109284] / [fdo#111827]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_chamelium@hdmi-mode-timings.html * igt@kms_color_chamelium@pipe-a-ctm-green-to-red: - shard-skl: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_color_chamelium@pipe-a-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-b-ctm-limited-range: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +3 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][47] ([i915#1319]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglb: NOTRUN -> [SKIP][48] ([i915#3116]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: [PASS][49] -> [DMESG-WARN][50] ([i915#180]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-random: - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109278] / [fdo#109279]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_cursor_crc@pipe-b-cursor-512x170-random.html * igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen: - shard-tglb: NOTRUN -> [INCOMPLETE][52] ([i915#4340]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-random: - shard-tglb: NOTRUN -> [SKIP][53] ([fdo#109279] / [i915#3359]) +4 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-random.html * igt@kms_cursor_crc@pipe-d-cursor-max-size-random: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3359]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-max-size-random.html * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: - shard-snb: NOTRUN -> [SKIP][55] ([fdo#109271]) +206 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb5/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109274] / [fdo#109278]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#4103]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: - shard-tglb: NOTRUN -> [SKIP][58] ([i915#3528]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-glk: [PASS][59] -> [FAIL][60] ([i915#79]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][61] ([i915#180]) +2 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html - shard-apl: [PASS][62] -> [DMESG-WARN][63] ([i915#180]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1: - shard-skl: [PASS][64] -> [FAIL][65] ([i915#2122]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-apl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#2672]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-glk: [PASS][67] -> [FAIL][68] ([i915#2546]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][69] ([fdo#109280]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#111825]) +16 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-tglb: [PASS][71] -> [INCOMPLETE][72] ([i915#2411] / [i915#456]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb2/igt@kms_frontbuffer_tracking@psr-suspend.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: - shard-skl: NOTRUN -> [FAIL][73] ([fdo#108145] / [i915#265]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: - shard-apl: NOTRUN -> [FAIL][74] ([fdo#108145] / [i915#265]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][75] ([fdo#108145] / [i915#265]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_lowres@pipe-b-tiling-y: - shard-tglb: NOTRUN -> [SKIP][76] ([i915#3536]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html * igt@kms_plane_lowres@pipe-d-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][77] ([fdo#112054]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_plane_lowres@pipe-d-tiling-yf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: - shard-apl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-1: - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#658]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5: - shard-tglb: NOTRUN -> [SKIP][80] ([i915#2920]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html * igt@kms_psr2_su@page_flip: - shard-tglb: NOTRUN -> [SKIP][81] ([i915#1911]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_blt: - shard-skl: NOTRUN -> [SKIP][82] ([fdo#109271]) +25 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_psr@psr2_cursor_blt.html * igt@kms_psr@psr2_suspend: - shard-iclb: [PASS][83] -> [SKIP][84] ([fdo#109441]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb2/igt@kms_psr@psr2_suspend.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb1/igt@kms_psr@psr2_suspend.html * igt@kms_writeback@writeback-invalid-parameters: - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#2437]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@kms_writeback@writeback-invalid-parameters.html * igt@nouveau_crc@pipe-c-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][86] ([i915#2530]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@nouveau_crc@pipe-c-ctx-flip-detection.html * igt@perf@polling-parameterized: - shard-skl: [PASS][87] -> [FAIL][88] ([i915#1542]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl5/igt@perf@polling-parameterized.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl2/igt@perf@polling-parameterized.html * igt@perf_pmu@event-wait@rcs0: - shard-tglb: NOTRUN -> [SKIP][89] ([fdo#112283]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@perf_pmu@event-wait@rcs0.html * igt@prime_vgem@fence-write-hang: - shard-tglb: NOTRUN -> [SKIP][90] ([fdo#109295]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@prime_vgem@fence-write-hang.html * igt@sysfs_clients@busy: - shard-skl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2994]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@sysfs_clients@busy.html * igt@sysfs_clients@fair-0: - shard-tglb: NOTRUN -> [SKIP][92] ([i915#2994]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@sysfs_clients@fair-0.html * igt@sysfs_clients@recycle: - shard-apl: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#2994]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@sysfs_clients@recycle.html #### Possible fixes #### * igt@drm_mm@all@evict: - shard-skl: [INCOMPLETE][94] ([i915#198]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl2/igt@drm_mm@all@evict.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl5/igt@drm_mm@all@evict.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][96] ([i915#2369] / [i915#3063] / [i915#3648]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb3/igt@gem_eio@unwedge-stress.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb1/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: [FAIL][98] ([i915#2842]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-kbl: [FAIL][100] ([i915#2842]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_softpin@noreloc-s3: - shard-apl: [DMESG-WARN][102] ([i915#180]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-apl8/igt@gem_softpin@noreloc-s3.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl3/igt@gem_softpin@noreloc-s3.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][104] ([i915#454]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html * igt@i915_suspend@forcewake: - shard-skl: [INCOMPLETE][106] ([i915#636]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl2/igt@i915_suspend@forcewake.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@i915_suspend@forcewake.html * igt@kms_color@pipe-b-ctm-0-75: - shard-skl: [DMESG-WARN][108] ([i915#1982]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl7/igt@kms_color@pipe-b-ctm-0-75.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_color@pipe-b-ctm-0-75.html * igt@kms_cursor_crc@pipe-b-cursor-suspend: - shard-tglb: [INCOMPLETE][110] ([i915#2411] / [i915#456]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-skl: [FAIL][112] ([i915#2346] / [i915#533]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: - shard-kbl: [FAIL][114] ([i915#79]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-skl: [FAIL][116] ([i915#79]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_hdr@bpc-switch-dpms: - shard-skl: [FAIL][118] ([i915#1188]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl2/igt@kms_hdr@bpc-switch-dpms.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - shard-skl: [FAIL][120] ([fdo#108145] / [i915#265]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [SKIP][122] ([fdo#109441]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb7/igt@kms_psr@psr2_cursor_mmap_cpu.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-tglb: [INCOMPLETE][124] ([i915#456]) -> [PASS][125] +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: [WARN][126] ([i915#2684]) -> [WARN][127] ([i915#1804] / [i915#2684]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb1/igt@i915_pm_rc6_residency@rc6-fence.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@i915_pm_rc6_residency@rc6-fence.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: - shard-iclb: [SKIP][128] ([i915#658]) -> [SKIP][129] ([i915#2920]) +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1: - shard-iclb: [SKIP][130] ([i915#2920]) -> [SKIP][131] ([i915#658]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html * igt@kms_psr2_su@page_flip: - shard-iclb: [FAIL][132] ([i915#4148]) -> [SKIP][133] ([fdo#109642] / [fdo#111068] / [i915#658]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb2/igt@kms_psr2_su@page_flip.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@runner@aborted: - shard-kbl: ([FAIL][134], [FAIL][135]) ([i915#3002] / [i915#3363] / [i915#4312]) -> ([FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#4312]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl7/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl1/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl1/igt@runner@abo == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/index.html [-- Attachment #2: Type: text/html, Size: 33636 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Intel-gfx] ✓ Fi.CI.IGT: success for Selective fetch support for biplanar formats 2021-10-22 15:56 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork @ 2021-10-29 19:44 ` Souza, Jose 0 siblings, 0 replies; 11+ messages in thread From: Souza, Jose @ 2021-10-29 19:44 UTC (permalink / raw) To: intel-gfx@lists.freedesktop.org, Hogander, Jouni [-- Attachment #1: Type: text/plain, Size: 28165 bytes --] On Fri, 2021-10-22 at 15:56 +0000, Patchwork wrote: Patch Details Series: Selective fetch support for biplanar formats URL: https://patchwork.freedesktop.org/series/96113/ State: success Details: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/index.html CI Bug Log - changes from CI_DRM_10768_full -> Patchwork_21401_full Summary SUCCESS No regressions found. Pushed, thanks for the patch. Participating hosts (10 -> 11) Additional (1): pig-snb-2600 Known issues Here are the changes found in Patchwork_21401_full that come from known issues: IGT changes Issues hit * igt@feature_discovery@display-2x: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@feature_discovery@display-2x.html> ([i915#1839]) * igt@gem_create@create-massive: * shard-snb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb7/igt@gem_create@create-massive.html> ([i915#3002]) * igt@gem_ctx_persistence@engines-hostile: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb5/igt@gem_ctx_persistence@engines-hostile.html> ([fdo#109271] / [i915#1099]) +2 similar issues * igt@gem_exec_fair@basic-flow@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-pace-solo@rcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk2/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842]) +1 similar issue * igt@gem_exec_params@no-vebox: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_exec_params@no-vebox.html> ([fdo#109283]) * igt@gem_pread@exhaustion: * shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@gem_pread@exhaustion.html> ([i915#2658]) * igt@gem_pwrite@basic-exhaustion: * shard-kbl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658]) * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270]) * igt@gem_userptr_blits@readonly-unsync: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_userptr_blits@readonly-unsync.html> ([i915#3297]) * igt@gem_userptr_blits@vma-merge: * shard-skl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@gem_userptr_blits@vma-merge.html> ([i915#3318]) * igt@gen7_exec_parse@basic-rejected: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gen7_exec_parse@basic-rejected.html> ([fdo#109289]) +1 similar issue * igt@gen9_exec_parse@basic-rejected: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@gen9_exec_parse@basic-rejected.html> ([i915#2856]) * igt@gen9_exec_parse@cmd-crossing-page: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gen9_exec_parse@cmd-crossing-page.html> ([i915#2856]) +1 similar issue * igt@i915_pm_dc@dc6-psr: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb1/igt@i915_pm_dc@dc6-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@i915_pm_dc@dc6-psr.html> ([i915#454]) * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html> ([fdo#109271] / [i915#1937]) * igt@i915_pm_rpm@dpms-non-lpsp: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html> ([fdo#111644] / [i915#1397] / [i915#2411]) * igt@i915_selftest@live@hangcheck: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-snb2/igt@i915_selftest@live@hangcheck.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb6/igt@i915_selftest@live@hangcheck.html> ([i915#3921]) * igt@kms_big_fb@x-tiled-32bpp-rotate-0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk3/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html> ([i915#118]) +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> ([fdo#109271] / [i915#3777]) * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: * shard-skl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> ([i915#3743]) * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> ([fdo#109271] / [i915#3777]) +1 similar issue * igt@kms_big_fb@y-tiled-64bpp-rotate-90: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> ([fdo#111614]) * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html> ([fdo#111615]) +1 similar issue * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html> ([fdo#109271]) +124 similar issues * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> ([fdo#110723]) * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl3/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +4 similar issues * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> ([fdo#109271] / [i915#3886]) +1 similar issue * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html> ([fdo#109278] / [i915#3886]) * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> ([fdo#109271] / [i915#3886]) * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html> ([i915#3689]) +6 similar issues * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html> ([i915#3689] / [i915#3886]) * igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_gen12_mc_ccs: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_gen12_mc_ccs.html> ([fdo#109278]) +1 similar issue * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html> ([fdo#109271]) +33 similar issues * igt@kms_chamelium@dp-crc-multiple: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@kms_chamelium@dp-crc-multiple.html> ([fdo#109271] / [fdo#111827]) +11 similar issues * igt@kms_chamelium@hdmi-hpd-fast: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb5/igt@kms_chamelium@hdmi-hpd-fast.html> ([fdo#109271] / [fdo#111827]) +10 similar issues * igt@kms_chamelium@hdmi-mode-timings: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_chamelium@hdmi-mode-timings.html> ([fdo#109284] / [fdo#111827]) * igt@kms_color_chamelium@pipe-a-ctm-green-to-red: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_color_chamelium@pipe-a-ctm-green-to-red.html> ([fdo#109271] / [fdo#111827]) +1 similar issue * igt@kms_color_chamelium@pipe-b-ctm-limited-range: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html> ([fdo#109284] / [fdo#111827]) +3 similar issues * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html> ([fdo#109271] / [fdo#111827]) +1 similar issue * igt@kms_content_protection@atomic-dpms: * shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_content_protection@atomic-dpms.html> ([i915#1319]) * igt@kms_content_protection@dp-mst-type-0: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_content_protection@dp-mst-type-0.html> ([i915#3116]) * igt@kms_cursor_crc@pipe-a-cursor-suspend: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html> ([i915#180]) * igt@kms_cursor_crc@pipe-b-cursor-512x170-random: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_cursor_crc@pipe-b-cursor-512x170-random.html> ([fdo#109278] / [fdo#109279]) * igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen: * shard-tglb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen.html> ([i915#4340]) * igt@kms_cursor_crc@pipe-d-cursor-512x170-random: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-random.html> ([fdo#109279] / [i915#3359]) +4 similar issues * igt@kms_cursor_crc@pipe-d-cursor-max-size-random: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-max-size-random.html> ([i915#3359]) +1 similar issue * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-snb5/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html> ([fdo#109271]) +206 similar issues * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> ([fdo#109274] / [fdo#109278]) * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> ([i915#4103]) * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> ([i915#3528]) * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html> ([i915#79]) * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: * shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> ([i915#180]) +2 similar issues * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> ([i915#180]) +2 similar issues * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1: * shard-skl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html> ([i915#2122]) * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html> ([fdo#109271] / [i915#2672]) * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-glk7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html> ([i915#2546]) * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html> ([fdo#109280]) * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html> ([fdo#111825]) +16 similar issues * igt@kms_frontbuffer_tracking@psr-suspend: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb2/igt@kms_frontbuffer_tracking@psr-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb7/igt@kms_frontbuffer_tracking@psr-suspend.html> ([i915#2411] / [i915#456]) +1 similar issue * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: * shard-skl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html> ([fdo#108145] / [i915#265]) * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> ([fdo#108145] / [i915#265]) +2 similar issues * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> ([fdo#108145] / [i915#265]) +1 similar issue * igt@kms_plane_lowres@pipe-b-tiling-y: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536]) * igt@kms_plane_lowres@pipe-d-tiling-yf: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_plane_lowres@pipe-d-tiling-yf.html> ([fdo#112054]) +1 similar issue * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html> ([fdo#109271] / [i915#658]) +2 similar issues * igt@kms_psr2_sf@plane-move-sf-dmg-area-1: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html> ([fdo#109271] / [i915#658]) +1 similar issue * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html> ([i915#2920]) +1 similar issue * igt@kms_psr2_su@page_flip: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@kms_psr2_su@page_flip.html> ([i915#1911]) * igt@kms_psr@psr2_cursor_blt: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_psr@psr2_cursor_blt.html> ([fdo#109271]) +25 similar issues * igt@kms_psr@psr2_suspend: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb2/igt@kms_psr@psr2_suspend.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb1/igt@kms_psr@psr2_suspend.html> ([fdo#109441]) * igt@kms_writeback@writeback-invalid-parameters: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl1/igt@kms_writeback@writeback-invalid-parameters.html> ([fdo#109271] / [i915#2437]) * igt@nouveau_crc@pipe-c-ctx-flip-detection: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@nouveau_crc@pipe-c-ctx-flip-detection.html> ([i915#2530]) +1 similar issue * igt@perf@polling-parameterized: * shard-skl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl5/igt@perf@polling-parameterized.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl2/igt@perf@polling-parameterized.html> ([i915#1542]) * igt@perf_pmu@event-wait@rcs0: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@perf_pmu@event-wait@rcs0.html> ([fdo#112283]) * igt@prime_vgem@fence-write-hang: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@prime_vgem@fence-write-hang.html> ([fdo#109295]) * igt@sysfs_clients@busy: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994]) +1 similar issue * igt@sysfs_clients@fair-0: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb5/igt@sysfs_clients@fair-0.html> ([i915#2994]) * igt@sysfs_clients@recycle: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl8/igt@sysfs_clients@recycle.html> ([fdo#109271] / [i915#2994]) Possible fixes * igt@drm_mm@all@evict: * shard-skl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl2/igt@drm_mm@all@evict.html> ([i915#198]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl5/igt@drm_mm@all@evict.html> * igt@gem_eio@unwedge-stress: * shard-tglb: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb3/igt@gem_eio@unwedge-stress.html> ([i915#2369] / [i915#3063] / [i915#3648]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb1/igt@gem_eio@unwedge-stress.html> * igt@gem_exec_fair@basic-none-share@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html> * igt@gem_exec_fair@basic-none@vecs0: * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl6/igt@gem_exec_fair@basic-none@vecs0.html> * igt@gem_softpin@noreloc-s3: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-apl8/igt@gem_softpin@noreloc-s3.html> ([i915#180]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-apl3/igt@gem_softpin@noreloc-s3.html> * igt@i915_pm_dc@dc6-dpms: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html> ([i915#454]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html> * igt@i915_suspend@forcewake: * shard-skl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl2/igt@i915_suspend@forcewake.html> ([i915#636]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@i915_suspend@forcewake.html> * igt@kms_color@pipe-b-ctm-0-75: * shard-skl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl7/igt@kms_color@pipe-b-ctm-0-75.html> ([i915#1982]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl3/igt@kms_color@pipe-b-ctm-0-75.html> * igt@kms_cursor_crc@pipe-b-cursor-suspend: * shard-tglb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html> ([i915#2411] / [i915#456]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: * shard-skl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> ([i915#2346] / [i915#533]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html> ([i915#79]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html> * igt@kms_flip@flip-vs-expired-vblank@a-edp1: * shard-skl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html> ([i915#79]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html> * igt@kms_hdr@bpc-switch-dpms: * shard-skl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl2/igt@kms_hdr@bpc-switch-dpms.html> ([i915#1188]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl5/igt@kms_hdr@bpc-switch-dpms.html> * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: * shard-skl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> ([fdo#108145] / [i915#265]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-skl6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> * igt@kms_psr@psr2_cursor_mmap_cpu: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb7/igt@kms_psr@psr2_cursor_mmap_cpu.html> ([fdo#109441]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html> * igt@kms_vblank@pipe-a-ts-continuation-suspend: * shard-tglb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> ([i915#456]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> +1 similar issue Warnings * igt@i915_pm_rc6_residency@rc6-fence: * shard-iclb: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb1/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#2684]) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb3/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#1804] / [i915#2684]) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html> ([i915#658]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html> ([i915#2920]) +2 similar issues * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html> ([i915#2920]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html> ([i915#658]) * igt@kms_psr2_su@page_flip: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-iclb2/igt@kms_psr2_su@page_flip.html> ([i915#4148]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-iclb1/igt@kms_psr2_su@page_flip.html> ([fdo#109642] / [fdo#111068] / [i915#658]) * igt@runner@aborted: * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10768/shard-kbl1/igt@runner@aborted.html>) ([i915#3002] / [i915#3363] / [i915#4312]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21401/shard-kbl1/igt@runner@abo>, [FAIL][137], [FAIL][138], [FAIL][139]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#4312]) [-- Attachment #2: Type: text/html, Size: 33844 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2021-10-29 19:44 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-10-21 10:10 [Intel-gfx] [PATCH 0/2] Selective fetch support for biplanar formats Jouni Högander 2021-10-21 10:10 ` [Intel-gfx] [PATCH 1/2] drm/i915/display: Add initial selective " Jouni Högander 2021-10-21 10:21 ` Jani Nikula 2021-10-29 19:25 ` Souza, Jose 2021-10-21 10:10 ` [Intel-gfx] [PATCH 2/2] Revert "drm/i915/display/psr: Do full fetch when handling multi-planar formats" Jouni Högander 2021-10-29 19:26 ` Souza, Jose 2021-10-21 10:20 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Selective fetch support for biplanar formats Patchwork 2021-10-21 10:51 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2021-10-21 12:09 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2021-10-22 15:56 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork 2021-10-29 19:44 ` Souza, Jose
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox