* [PATCH] drm/i915: Limit MST to <= 8bpc once again
@ 2019-08-28 10:20 ` Ville Syrjala
0 siblings, 0 replies; 6+ messages in thread
From: Ville Syrjala @ 2019-08-28 10:20 UTC (permalink / raw)
To: intel-gfx; +Cc: stable, Lyude Paul, Geoffrey Bennett
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
My attempt at allowing MST to use the higher color depths has
regressed some configurations. Apparently people have setups
where all MST streams will fit into the DP link with 8bpc but
won't fit with higher color depths.
What we really should be doing is reducing the bpc for all the
streams on the same link until they start to fit. But that requires
a bit more work, so in the meantime let's revert back closer to
the old behavior and limit MST to at most 8bpc.
Cc: stable@vger.kernel.org
Cc: Lyude Paul <lyude@redhat.com>
Cc: Geoffrey Bennett <gmux22@gmail.com>
Fixes: f1477219869c ("drm/i915: Remove the 8bpc shackles from DP MST")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111505
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_dp_mst.c | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index 2c5ac3dd647f..6df240a01b8c 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -128,7 +128,15 @@ static int intel_dp_mst_compute_config(struct intel_encoder *encoder,
limits.max_lane_count = intel_dp_max_lane_count(intel_dp);
limits.min_bpp = intel_dp_min_bpp(pipe_config);
- limits.max_bpp = pipe_config->pipe_bpp;
+ /*
+ * FIXME: If all the streams can't fit into the link with
+ * their current pipe_bpp we should reduce pipe_bpp across
+ * the board until things start to fit. Until then we
+ * limit to <= 8bpc since that's what was hardcoded for all
+ * MST streams previously. This hack should be removed once
+ * we have the proper retry logic in place.
+ */
+ limits.max_bpp = min(pipe_config->pipe_bpp, 24);
intel_dp_adjust_compliance_config(intel_dp, pipe_config, &limits);
--
2.21.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] drm/i915: Limit MST to <= 8bpc once again
2019-08-28 10:20 ` Ville Syrjala
(?)
@ 2019-08-28 15:05 ` Sasha Levin
-1 siblings, 0 replies; 6+ messages in thread
From: Sasha Levin @ 2019-08-28 15:05 UTC (permalink / raw)
To: Sasha Levin, Ville Syrjala, intel-gfx; +Cc: Geoffrey Bennett, stable
Hi,
[This is an automated email]
This commit has been processed because it contains a "Fixes:" tag,
fixing commit: f1477219869c drm/i915: Remove the 8bpc shackles from DP MST.
The bot has tested the following trees: v5.2.10.
v5.2.10: Failed to apply! Possible dependencies:
Unable to calculate
NOTE: The patch will not be queued to stable trees until it is upstream.
How should we proceed with this patch?
--
Thanks,
Sasha
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] drm/i915: Limit MST to <= 8bpc once again
2019-08-28 10:20 ` Ville Syrjala
(?)
(?)
@ 2019-08-28 18:35 ` Lyude Paul
-1 siblings, 0 replies; 6+ messages in thread
From: Lyude Paul @ 2019-08-28 18:35 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: stable, Geoffrey Bennett
Reviewed-by: Lyude Paul <lyude@redhat.com>
On Wed, 2019-08-28 at 13:20 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> My attempt at allowing MST to use the higher color depths has
> regressed some configurations. Apparently people have setups
> where all MST streams will fit into the DP link with 8bpc but
> won't fit with higher color depths.
>
> What we really should be doing is reducing the bpc for all the
> streams on the same link until they start to fit. But that requires
> a bit more work, so in the meantime let's revert back closer to
> the old behavior and limit MST to at most 8bpc.
>
> Cc: stable@vger.kernel.org
> Cc: Lyude Paul <lyude@redhat.com>
> Cc: Geoffrey Bennett <gmux22@gmail.com>
> Fixes: f1477219869c ("drm/i915: Remove the 8bpc shackles from DP MST")
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111505
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp_mst.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index 2c5ac3dd647f..6df240a01b8c 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -128,7 +128,15 @@ static int intel_dp_mst_compute_config(struct
> intel_encoder *encoder,
> limits.max_lane_count = intel_dp_max_lane_count(intel_dp);
>
> limits.min_bpp = intel_dp_min_bpp(pipe_config);
> - limits.max_bpp = pipe_config->pipe_bpp;
> + /*
> + * FIXME: If all the streams can't fit into the link with
> + * their current pipe_bpp we should reduce pipe_bpp across
> + * the board until things start to fit. Until then we
> + * limit to <= 8bpc since that's what was hardcoded for all
> + * MST streams previously. This hack should be removed once
> + * we have the proper retry logic in place.
> + */
> + limits.max_bpp = min(pipe_config->pipe_bpp, 24);
>
> intel_dp_adjust_compliance_config(intel_dp, pipe_config, &limits);
>
--
Cheers,
Lyude Paul
^ permalink raw reply [flat|nested] 6+ messages in thread* ✓ Fi.CI.BAT: success for drm/i915: Limit MST to <= 8bpc once again
2019-08-28 10:20 ` Ville Syrjala
` (2 preceding siblings ...)
(?)
@ 2019-08-29 9:28 ` Patchwork
-1 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-08-29 9:28 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Limit MST to <= 8bpc once again
URL : https://patchwork.freedesktop.org/series/65919/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6796 -> Patchwork_14213
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/
Known issues
------------
Here are the changes found in Patchwork_14213 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s4-devices:
- fi-blb-e6850: [PASS][1] -> [INCOMPLETE][2] ([fdo#107718])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html
#### Possible fixes ####
* igt@i915_selftest@live_gem_contexts:
- fi-kbl-8809g: [INCOMPLETE][3] -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/fi-kbl-8809g/igt@i915_selftest@live_gem_contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/fi-kbl-8809g/igt@i915_selftest@live_gem_contexts.html
#### Warnings ####
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [FAIL][5] ([fdo#111407]) -> [FAIL][6] ([fdo#111096])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
[fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
[fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
Participating hosts (52 -> 45)
------------------------------
Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* Linux: CI_DRM_6796 -> Patchwork_14213
CI-20190529: 20190529
CI_DRM_6796: 91dc1ededd856493001e463ad7d919522d498438 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_5151: a562ad36d1a7efa3053688429792ce97f188d758 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
Patchwork_14213: 1ab2fe06bd204e898bc9dc6e3c34d6e999f111e7 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
1ab2fe06bd20 drm/i915: Limit MST to <= 8bpc once again
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 6+ messages in thread* ✓ Fi.CI.IGT: success for drm/i915: Limit MST to <= 8bpc once again
2019-08-28 10:20 ` Ville Syrjala
` (3 preceding siblings ...)
(?)
@ 2019-08-29 12:55 ` Patchwork
-1 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-08-29 12:55 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Limit MST to <= 8bpc once again
URL : https://patchwork.freedesktop.org/series/65919/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6796_full -> Patchwork_14213_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Known issues
------------
Here are the changes found in Patchwork_14213_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_isolation@bcs0-s3:
- shard-apl: ([PASS][1], [PASS][2]) -> [DMESG-WARN][3] ([fdo#108566]) +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl1/igt@gem_ctx_isolation@bcs0-s3.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl2/igt@gem_ctx_isolation@bcs0-s3.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-apl2/igt@gem_ctx_isolation@bcs0-s3.html
* igt@gem_eio@in-flight-suspend:
- shard-kbl: ([PASS][4], [PASS][5]) -> [DMESG-WARN][6] ([fdo#108566])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-kbl7/igt@gem_eio@in-flight-suspend.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-kbl3/igt@gem_eio@in-flight-suspend.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-kbl6/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@smoke:
- shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#110854])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb1/igt@gem_exec_balancer@smoke.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb8/igt@gem_exec_balancer@smoke.html
* igt@gem_exec_schedule@pi-ringfull-bsd2:
- shard-iclb: ([PASS][9], [PASS][10]) -> [SKIP][11] ([fdo#109276]) +10 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb2/igt@gem_exec_schedule@pi-ringfull-bsd2.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb1/igt@gem_exec_schedule@pi-ringfull-bsd2.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb7/igt@gem_exec_schedule@pi-ringfull-bsd2.html
* igt@gem_exec_schedule@preempt-bsd:
- shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#111325]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb5/igt@gem_exec_schedule@preempt-bsd.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb4/igt@gem_exec_schedule@preempt-bsd.html
* igt@gem_exec_schedule@promotion-bsd1:
- shard-iclb: [PASS][14] -> [SKIP][15] ([fdo#109276]) +3 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb2/igt@gem_exec_schedule@promotion-bsd1.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb3/igt@gem_exec_schedule@promotion-bsd1.html
* igt@gem_exec_schedule@reorder-wide-bsd:
- shard-iclb: ([PASS][16], [PASS][17]) -> [SKIP][18] ([fdo#111325]) +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb3/igt@gem_exec_schedule@reorder-wide-bsd.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-snb: ([PASS][19], [PASS][20]) -> [SKIP][21] ([fdo#109271])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-snb6/igt@i915_pm_rc6_residency@rc6-accuracy.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-snb6/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen:
- shard-apl: [PASS][22] -> [INCOMPLETE][23] ([fdo#103927])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-apl5/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
* igt@kms_flip@flip-vs-suspend:
- shard-hsw: ([PASS][24], [PASS][25]) -> [INCOMPLETE][26] ([fdo#103540])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-hsw4/igt@kms_flip@flip-vs-suspend.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-hsw1/igt@kms_flip@flip-vs-suspend.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-hsw4/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-kbl: ([PASS][27], [PASS][28]) -> [INCOMPLETE][29] ([fdo#103665])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-badstride:
- shard-apl: ([PASS][30], [PASS][31]) -> [INCOMPLETE][32] ([fdo#103927]) +4 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl2/igt@kms_frontbuffer_tracking@fbc-badstride.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl6/igt@kms_frontbuffer_tracking@fbc-badstride.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-apl7/igt@kms_frontbuffer_tracking@fbc-badstride.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-iclb: ([PASS][33], [PASS][34]) -> [FAIL][35] ([fdo#103167]) +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_plane_lowres@pipe-a-tiling-x:
- shard-iclb: ([PASS][36], [PASS][37]) -> [FAIL][38] ([fdo#103166])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-x.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html
* igt@kms_psr@no_drrs:
- shard-iclb: ([PASS][39], [PASS][40]) -> [FAIL][41] ([fdo#108341])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb8/igt@kms_psr@no_drrs.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb7/igt@kms_psr@no_drrs.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb1/igt@kms_psr@no_drrs.html
* igt@perf@short-reads:
- shard-skl: ([PASS][42], [PASS][43]) -> [FAIL][44] ([fdo#103183])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-skl9/igt@perf@short-reads.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-skl10/igt@perf@short-reads.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-skl5/igt@perf@short-reads.html
* igt@perf_pmu@rc6:
- shard-kbl: [PASS][45] -> [SKIP][46] ([fdo#109271])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-kbl6/igt@perf_pmu@rc6.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-kbl7/igt@perf_pmu@rc6.html
#### Possible fixes ####
* igt@gem_ctx_shared@exec-shared-gtt-bsd2:
- shard-iclb: [SKIP][47] ([fdo#109276]) -> [PASS][48] +5 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb7/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb1/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
* igt@gem_exec_schedule@in-order-bsd:
- shard-iclb: ([PASS][49], [SKIP][50]) ([fdo#111325]) -> [PASS][51] +5 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb3/igt@gem_exec_schedule@in-order-bsd.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb4/igt@gem_exec_schedule@in-order-bsd.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb5/igt@gem_exec_schedule@in-order-bsd.html
* igt@gem_exec_schedule@preempt-contexts-bsd2:
- shard-iclb: ([SKIP][52], [SKIP][53]) ([fdo#109276]) -> [PASS][54] +4 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb8/igt@gem_exec_schedule@preempt-contexts-bsd2.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb2/igt@gem_exec_schedule@preempt-contexts-bsd2.html
* igt@gem_exec_schedule@preemptive-hang-bsd:
- shard-iclb: [SKIP][55] ([fdo#111325]) -> [PASS][56] +2 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
* igt@gem_softpin@noreloc-s3:
- shard-kbl: ([PASS][57], [INCOMPLETE][58]) ([fdo#103665]) -> [PASS][59]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-kbl4/igt@gem_softpin@noreloc-s3.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-kbl2/igt@gem_softpin@noreloc-s3.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-kbl4/igt@gem_softpin@noreloc-s3.html
* igt@i915_pm_rpm@i2c:
- shard-hsw: ([FAIL][60], [PASS][61]) ([fdo#104097]) -> [PASS][62]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-hsw1/igt@i915_pm_rpm@i2c.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-hsw6/igt@i915_pm_rpm@i2c.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-hsw1/igt@i915_pm_rpm@i2c.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-apl: ([PASS][63], [DMESG-WARN][64]) ([fdo#108566]) -> [PASS][65] +4 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen:
- shard-apl: ([FAIL][66], [FAIL][67]) ([fdo#103232]) -> [PASS][68] +1 similar issue
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-apl5/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
* igt@kms_cursor_edge_walk@pipe-c-128x128-left-edge:
- shard-apl: ([PASS][69], [INCOMPLETE][70]) ([fdo#103927]) -> [PASS][71] +1 similar issue
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl3/igt@kms_cursor_edge_walk@pipe-c-128x128-left-edge.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-128x128-left-edge.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-apl5/igt@kms_cursor_edge_walk@pipe-c-128x128-left-edge.html
* igt@kms_fbcon_fbt@fbc:
- shard-skl: ([DMESG-WARN][72], [PASS][73]) ([fdo#106107]) -> [PASS][74]
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-skl4/igt@kms_fbcon_fbt@fbc.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-skl7/igt@kms_fbcon_fbt@fbc.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-skl1/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-hsw: ([INCOMPLETE][75], [PASS][76]) ([fdo#103540]) -> [PASS][77] +1 similar issue
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-hsw4/igt@kms_flip@2x-flip-vs-panning.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-hsw7/igt@kms_flip@2x-flip-vs-panning.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-hsw8/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-hsw: ([PASS][78], [FAIL][79]) ([fdo#105363]) -> [PASS][80]
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-hsw7/igt@kms_flip@flip-vs-expired-vblank.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-hsw5/igt@kms_flip@flip-vs-expired-vblank.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-hsw6/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-skl: ([PASS][81], [FAIL][82]) ([fdo#105363]) -> [PASS][83]
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-skl10/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-skl10/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-snb: ([INCOMPLETE][84], [PASS][85]) ([fdo#105411]) -> [PASS][86]
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-snb1/igt@kms_flip@flip-vs-suspend.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-snb5/igt@kms_flip@flip-vs-suspend.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-snb5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-glk: [FAIL][87] ([fdo#103060]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-glk6/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-glk5/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
- shard-iclb: ([FAIL][89], [PASS][90]) ([fdo#103167]) -> [PASS][91] +3 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: ([SKIP][92], [SKIP][93]) ([fdo#109441]) -> [PASS][94] +1 similar issue
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb1/igt@kms_psr@psr2_cursor_blt.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb7/igt@kms_psr@psr2_cursor_blt.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: ([PASS][95], [SKIP][96]) ([fdo#109441]) -> [PASS][97]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
* igt@kms_setmode@basic:
- shard-apl: ([FAIL][98], [PASS][99]) ([fdo#99912]) -> [PASS][100]
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl2/igt@kms_setmode@basic.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-apl6/igt@kms_setmode@basic.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-apl7/igt@kms_setmode@basic.html
* igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
- shard-skl: ([INCOMPLETE][101], [PASS][102]) ([fdo#104108]) -> [PASS][103]
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-skl9/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-skl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-skl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
* igt@prime_vgem@fence-wait-bsd2:
- shard-iclb: ([SKIP][104], [PASS][105]) ([fdo#109276]) -> [PASS][106] +8 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb7/igt@prime_vgem@fence-wait-bsd2.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html
#### Warnings ####
* igt@gem_ctx_isolation@vcs1-nonpriv:
- shard-iclb: ([FAIL][107], [FAIL][108]) ([fdo#111329]) -> [SKIP][109] ([fdo#109276])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html
* igt@gem_exec_schedule@in-order-bsd2:
- shard-iclb: ([PASS][110], [SKIP][111]) ([fdo#109276]) -> [SKIP][112] ([fdo#109276]) +10 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb4/igt@gem_exec_schedule@in-order-bsd2.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb6/igt@gem_exec_schedule@in-order-bsd2.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb3/igt@gem_exec_schedule@in-order-bsd2.html
* igt@gem_exec_schedule@out-order-bsd:
- shard-iclb: ([SKIP][113], [PASS][114]) ([fdo#111325]) -> [SKIP][115] ([fdo#111325])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb2/igt@gem_exec_schedule@out-order-bsd.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb7/igt@gem_exec_schedule@out-order-bsd.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb2/igt@gem_exec_schedule@out-order-bsd.html
* igt@gem_mocs_settings@mocs-reset-bsd2:
- shard-iclb: ([SKIP][116], [SKIP][117]) ([fdo#109276]) -> [FAIL][118] ([fdo#111330]) +1 similar issue
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb3/igt@gem_mocs_settings@mocs-reset-bsd2.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6796/shard-iclb5/igt@gem_mocs_settings@mocs-reset-bsd2.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/shard-iclb4/igt@gem_mocs_settings@mocs-reset-bsd2.html
* igt@gem_workarounds@suspend-resume-context:
- shard-apl: ([DMESG-WARN][119], [PASS][120]) ([fdo#108566]) -> [DMESG-WARN][121] ([fdo#108566]) +3 similar issues
[119]: h
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14213/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 6+ messages in thread