* [Intel-gfx] [PATCH resend 0/2] drm/i915: Some upside-down panel handling fixes
@ 2020-02-28 11:41 Hans de Goede
2020-02-28 11:41 ` [Intel-gfx] [PATCH resend 1/2] drm/i915/dsi: Remove readback of panel orientation on BYT / CHT Hans de Goede
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Hans de Goede @ 2020-02-28 11:41 UTC (permalink / raw)
To: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
Ville Syrjälä
Cc: intel-gfx, dri-devel
Hi All,
This is a resend of 2 patches which I submitted a while ago, rebased
on top of the latest dinq to fix some conflicts.
The first patch has already been reviewed.
There were some questions about the second patch, which I have answered,
see: https://patchwork.freedesktop.org/patch/345305/?series=70952&rev=2
A review of the second patch would be appreciated.
Regards,
Hans
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 7+ messages in thread* [Intel-gfx] [PATCH resend 1/2] drm/i915/dsi: Remove readback of panel orientation on BYT / CHT 2020-02-28 11:41 [Intel-gfx] [PATCH resend 0/2] drm/i915: Some upside-down panel handling fixes Hans de Goede @ 2020-02-28 11:41 ` Hans de Goede 2020-02-28 11:41 ` [Intel-gfx] [PATCH resend 2/2] drm/i915/dp: Use BDB_GENERAL_FEATURES VBT block info for builtin panel-orientation Hans de Goede ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Hans de Goede @ 2020-02-28 11:41 UTC (permalink / raw) To: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Ville Syrjälä Cc: intel-gfx, dri-devel Commit 82daca297506 ("drm/i915: Add "panel orientation" property to the panel connector, v6.") uses hardware state readback to determine if the GOP is rotating the image by 180 degrees to compensate for upside-down mounted panels. When I wrote that commit I tried to find the VBT bits the GOP used to decide to rotate the image, but I could not find them. Back then I only looked at the rotation bits in struct mipi_config and these read 0 on the 1 BYT device I have with an upside-down mounted panel (a GP-electronic T701 tablet). While working on a similar problem on a BYT device with an eDP panel I noticed that the new intel_dsi_get_panel_orientation() helper which gets used on newer SoCs (Apollo-Lake, etc.) checks the rotate_180 bit in the BDB_GENERAL_FEATURES VBT block. I've checked and this bit indeed is set on the GP-electronic T701 tablet, so using the generic intel_dsi_get_panel_orientation() helper there does the right thing without needing any extra readback of hw state. This commit removes the special handling of the panel orientation for DSI panels on BYT/CHT devices, bringing the handling in line with the handling of DSI panels on other devices. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> --- drivers/gpu/drm/i915/display/vlv_dsi.c | 55 +------------------------- 1 file changed, 1 insertion(+), 54 deletions(-) diff --git a/drivers/gpu/drm/i915/display/vlv_dsi.c b/drivers/gpu/drm/i915/display/vlv_dsi.c index d07cfad8ce6f..f4c362dc6e15 100644 --- a/drivers/gpu/drm/i915/display/vlv_dsi.c +++ b/drivers/gpu/drm/i915/display/vlv_dsi.c @@ -1591,59 +1591,6 @@ static const struct drm_connector_funcs intel_dsi_connector_funcs = { .atomic_duplicate_state = intel_digital_connector_duplicate_state, }; -static enum drm_panel_orientation -vlv_dsi_get_hw_panel_orientation(struct intel_connector *connector) -{ - struct drm_i915_private *dev_priv = to_i915(connector->base.dev); - struct intel_encoder *encoder = intel_attached_encoder(connector); - enum intel_display_power_domain power_domain; - enum drm_panel_orientation orientation; - struct intel_plane *plane; - struct intel_crtc *crtc; - intel_wakeref_t wakeref; - enum pipe pipe; - u32 val; - - if (!encoder->get_hw_state(encoder, &pipe)) - return DRM_MODE_PANEL_ORIENTATION_UNKNOWN; - - crtc = intel_get_crtc_for_pipe(dev_priv, pipe); - plane = to_intel_plane(crtc->base.primary); - - power_domain = POWER_DOMAIN_PIPE(pipe); - wakeref = intel_display_power_get_if_enabled(dev_priv, power_domain); - if (!wakeref) - return DRM_MODE_PANEL_ORIENTATION_UNKNOWN; - - val = intel_de_read(dev_priv, DSPCNTR(plane->i9xx_plane)); - - if (!(val & DISPLAY_PLANE_ENABLE)) - orientation = DRM_MODE_PANEL_ORIENTATION_UNKNOWN; - else if (val & DISPPLANE_ROTATE_180) - orientation = DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP; - else - orientation = DRM_MODE_PANEL_ORIENTATION_NORMAL; - - intel_display_power_put(dev_priv, power_domain, wakeref); - - return orientation; -} - -static enum drm_panel_orientation -vlv_dsi_get_panel_orientation(struct intel_connector *connector) -{ - struct drm_i915_private *dev_priv = to_i915(connector->base.dev); - enum drm_panel_orientation orientation; - - if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { - orientation = vlv_dsi_get_hw_panel_orientation(connector); - if (orientation != DRM_MODE_PANEL_ORIENTATION_UNKNOWN) - return orientation; - } - - return intel_dsi_get_panel_orientation(connector); -} - static void vlv_dsi_add_properties(struct intel_connector *connector) { struct drm_i915_private *dev_priv = to_i915(connector->base.dev); @@ -1662,7 +1609,7 @@ static void vlv_dsi_add_properties(struct intel_connector *connector) drm_connector_set_panel_orientation_with_quirk( &connector->base, - vlv_dsi_get_panel_orientation(connector), + intel_dsi_get_panel_orientation(connector), connector->panel.fixed_mode->hdisplay, connector->panel.fixed_mode->vdisplay); } -- 2.24.1 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Intel-gfx] [PATCH resend 2/2] drm/i915/dp: Use BDB_GENERAL_FEATURES VBT block info for builtin panel-orientation 2020-02-28 11:41 [Intel-gfx] [PATCH resend 0/2] drm/i915: Some upside-down panel handling fixes Hans de Goede 2020-02-28 11:41 ` [Intel-gfx] [PATCH resend 1/2] drm/i915/dsi: Remove readback of panel orientation on BYT / CHT Hans de Goede @ 2020-02-28 11:41 ` Hans de Goede 2020-02-28 14:58 ` Ville Syrjälä 2020-02-28 15:18 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Some upside-down panel handling fixes Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Hans de Goede @ 2020-02-28 11:41 UTC (permalink / raw) To: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Ville Syrjälä Cc: intel-gfx, dri-devel Some devices with a builtin panel have the panel mounted upside down, this is indicated by the rotate_180 bit in the BDB_GENERAL_FEATURES VBT block. We store this info in dev_priv->vbt.orientation, use this to set the connector's orientation property so that fbcon and userspace will show the image the right way up on devices with an upside-down mounted panel. This fixes the image being upside-down on a Teclast X89 tablet. Signed-off-by: Hans de Goede <hdegoede@redhat.com> --- drivers/gpu/drm/i915/display/intel_dp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c index 2db8d46f61a1..c31f5233941c 100644 --- a/drivers/gpu/drm/i915/display/intel_dp.c +++ b/drivers/gpu/drm/i915/display/intel_dp.c @@ -7608,9 +7608,8 @@ static bool intel_edp_init_connector(struct intel_dp *intel_dp, intel_panel_setup_backlight(connector, pipe); if (fixed_mode) { - /* We do not know the orientation, but their might be a quirk */ drm_connector_set_panel_orientation_with_quirk(connector, - DRM_MODE_PANEL_ORIENTATION_UNKNOWN, + dev_priv->vbt.orientation, fixed_mode->hdisplay, fixed_mode->vdisplay); } -- 2.24.1 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH resend 2/2] drm/i915/dp: Use BDB_GENERAL_FEATURES VBT block info for builtin panel-orientation 2020-02-28 11:41 ` [Intel-gfx] [PATCH resend 2/2] drm/i915/dp: Use BDB_GENERAL_FEATURES VBT block info for builtin panel-orientation Hans de Goede @ 2020-02-28 14:58 ` Ville Syrjälä 0 siblings, 0 replies; 7+ messages in thread From: Ville Syrjälä @ 2020-02-28 14:58 UTC (permalink / raw) To: Hans de Goede; +Cc: intel-gfx, dri-devel On Fri, Feb 28, 2020 at 12:41:10PM +0100, Hans de Goede wrote: > Some devices with a builtin panel have the panel mounted upside down, > this is indicated by the rotate_180 bit in the BDB_GENERAL_FEATURES VBT > block. > > We store this info in dev_priv->vbt.orientation, use this to set the > connector's orientation property so that fbcon and userspace will show > the image the right way up on devices with an upside-down mounted panel. > > This fixes the image being upside-down on a Teclast X89 tablet. > > Signed-off-by: Hans de Goede <hdegoede@redhat.com> > --- > drivers/gpu/drm/i915/display/intel_dp.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c > index 2db8d46f61a1..c31f5233941c 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp.c > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > @@ -7608,9 +7608,8 @@ static bool intel_edp_init_connector(struct intel_dp *intel_dp, > intel_panel_setup_backlight(connector, pipe); > > if (fixed_mode) { > - /* We do not know the orientation, but their might be a quirk */ > drm_connector_set_panel_orientation_with_quirk(connector, > - DRM_MODE_PANEL_ORIENTATION_UNKNOWN, > + dev_priv->vbt.orientation, That's the non-DSI specific one I presume... yes. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > fixed_mode->hdisplay, fixed_mode->vdisplay); > } > > -- > 2.24.1 -- Ville Syrjälä Intel _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Some upside-down panel handling fixes 2020-02-28 11:41 [Intel-gfx] [PATCH resend 0/2] drm/i915: Some upside-down panel handling fixes Hans de Goede 2020-02-28 11:41 ` [Intel-gfx] [PATCH resend 1/2] drm/i915/dsi: Remove readback of panel orientation on BYT / CHT Hans de Goede 2020-02-28 11:41 ` [Intel-gfx] [PATCH resend 2/2] drm/i915/dp: Use BDB_GENERAL_FEATURES VBT block info for builtin panel-orientation Hans de Goede @ 2020-02-28 15:18 ` Patchwork 2020-02-28 15:47 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2020-03-01 9:24 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2020-02-28 15:18 UTC (permalink / raw) To: Hans de Goede; +Cc: intel-gfx == Series Details == Series: drm/i915: Some upside-down panel handling fixes URL : https://patchwork.freedesktop.org/series/74076/ State : warning == Summary == $ dim checkpatch origin/drm-tip 3da5c24d3382 drm/i915/dsi: Remove readback of panel orientation on BYT / CHT -:10: ERROR:GIT_COMMIT_ID: Please use git commit description style 'commit <12+ chars of sha1> ("<title line>")' - ie: 'Commit 82daca297506 ("drm/i915: Add "panel orientation" property to the panel connector, v6.")' #10: Commit 82daca297506 ("drm/i915: Add "panel orientation" property to the total: 1 errors, 0 warnings, 0 checks, 67 lines checked 91740cf1d41c drm/i915/dp: Use BDB_GENERAL_FEATURES VBT block info for builtin panel-orientation _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Some upside-down panel handling fixes 2020-02-28 11:41 [Intel-gfx] [PATCH resend 0/2] drm/i915: Some upside-down panel handling fixes Hans de Goede ` (2 preceding siblings ...) 2020-02-28 15:18 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Some upside-down panel handling fixes Patchwork @ 2020-02-28 15:47 ` Patchwork 2020-03-01 9:24 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2020-02-28 15:47 UTC (permalink / raw) To: Hans de Goede; +Cc: intel-gfx == Series Details == Series: drm/i915: Some upside-down panel handling fixes URL : https://patchwork.freedesktop.org/series/74076/ State : success == Summary == CI Bug Log - changes from CI_DRM_8030 -> Patchwork_16761 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/index.html Known issues ------------ Here are the changes found in Patchwork_16761 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gem_contexts: - fi-cfl-guc: [PASS][1] -> [DMESG-FAIL][2] ([i915#730]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html * igt@kms_addfb_basic@addfb25-y-tiled: - fi-tgl-y: [PASS][3] -> [DMESG-WARN][4] ([CI#94] / [i915#402]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/fi-tgl-y/igt@kms_addfb_basic@addfb25-y-tiled.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/fi-tgl-y/igt@kms_addfb_basic@addfb25-y-tiled.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [PASS][5] -> [FAIL][6] ([fdo#111096] / [i915#323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html #### Possible fixes #### * igt@prime_self_import@basic-llseek-size: - fi-tgl-y: [DMESG-WARN][7] ([CI#94] / [i915#402]) -> [PASS][8] +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html [CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#730]: https://gitlab.freedesktop.org/drm/intel/issues/730 Participating hosts (50 -> 43) ------------------------------ Additional (2): fi-glk-dsi fi-ilk-650 Missing (9): fi-kbl-soraka fi-ilk-m540 fi-byt-j1900 fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-bsw-kefka fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * Linux: CI_DRM_8030 -> Patchwork_16761 CI-20190529: 20190529 CI_DRM_8030: dbdc956c90598337bef46cede52b082954651c0e @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5476: 6628336d5699e3fda2c3b64b1c9fc5426b6de29a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_16761: 91740cf1d41cdc75321a68067c5bdd0d5e55b297 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 91740cf1d41c drm/i915/dp: Use BDB_GENERAL_FEATURES VBT block info for builtin panel-orientation 3da5c24d3382 drm/i915/dsi: Remove readback of panel orientation on BYT / CHT == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/index.html _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Some upside-down panel handling fixes 2020-02-28 11:41 [Intel-gfx] [PATCH resend 0/2] drm/i915: Some upside-down panel handling fixes Hans de Goede ` (3 preceding siblings ...) 2020-02-28 15:47 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2020-03-01 9:24 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2020-03-01 9:24 UTC (permalink / raw) To: Hans de Goede; +Cc: intel-gfx == Series Details == Series: drm/i915: Some upside-down panel handling fixes URL : https://patchwork.freedesktop.org/series/74076/ State : success == Summary == CI Bug Log - changes from CI_DRM_8030_full -> Patchwork_16761_full ==================================================== Summary ------- **SUCCESS** No regressions found. Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_16761_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@perf@stress-open-close}: - shard-skl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-skl5/igt@perf@stress-open-close.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-skl6/igt@perf@stress-open-close.html Known issues ------------ Here are the changes found in Patchwork_16761_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_busy@busy-vcs1: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#112080]) +8 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb2/igt@gem_busy@busy-vcs1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb8/igt@gem_busy@busy-vcs1.html * igt@gem_exec_async@concurrent-writes-bsd: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#112146]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb5/igt@gem_exec_async@concurrent-writes-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb1/igt@gem_exec_async@concurrent-writes-bsd.html * igt@gem_exec_schedule@implicit-both-bsd: - shard-iclb: [PASS][7] -> [SKIP][8] ([i915#677]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb3/igt@gem_exec_schedule@implicit-both-bsd.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb4/igt@gem_exec_schedule@implicit-both-bsd.html * igt@gem_exec_schedule@implicit-write-read-bsd2: - shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#109276] / [i915#677]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb1/igt@gem_exec_schedule@implicit-write-read-bsd2.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb8/igt@gem_exec_schedule@implicit-write-read-bsd2.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-apl: [PASS][11] -> [FAIL][12] ([i915#644]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-apl7/igt@gem_ppgtt@flink-and-close-vma-leak.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-apl1/igt@gem_ppgtt@flink-and-close-vma-leak.html - shard-skl: [PASS][13] -> [FAIL][14] ([i915#644]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-skl6/igt@gem_ppgtt@flink-and-close-vma-leak.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-skl10/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: [PASS][15] -> [DMESG-WARN][16] ([i915#180]) +7 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_flip@flip-vs-suspend: - shard-iclb: [PASS][17] -> [INCOMPLETE][18] ([i915#221]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb3/igt@kms_flip@flip-vs-suspend.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb3/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-apl: [PASS][19] -> [DMESG-WARN][20] ([i915#180]) +4 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_hdr@bpc-switch-dpms: - shard-skl: [PASS][21] -> [FAIL][22] ([i915#1188]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-skl1/igt@kms_hdr@bpc-switch-dpms.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-skl5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [PASS][23] -> [INCOMPLETE][24] ([fdo#103665]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_psr@no_drrs: - shard-iclb: [PASS][25] -> [FAIL][26] ([i915#173]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb8/igt@kms_psr@no_drrs.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb1/igt@kms_psr@no_drrs.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#109441]) +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_setmode@basic: - shard-apl: [PASS][29] -> [FAIL][30] ([i915#31]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-apl1/igt@kms_setmode@basic.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-apl3/igt@kms_setmode@basic.html * igt@prime_busy@hang-bsd2: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109276]) +19 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb4/igt@prime_busy@hang-bsd2.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb5/igt@prime_busy@hang-bsd2.html #### Possible fixes #### * igt@gem_blits@basic: - shard-skl: [DMESG-WARN][33] ([i915#836]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-skl5/igt@gem_blits@basic.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-skl3/igt@gem_blits@basic.html * igt@gem_exec_balancer@hang: - shard-tglb: [FAIL][35] ([i915#1277]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-tglb2/igt@gem_exec_balancer@hang.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-tglb1/igt@gem_exec_balancer@hang.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][37] ([fdo#110854]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb5/igt@gem_exec_balancer@smoke.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb4/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@implicit-both-bsd1: - shard-iclb: [SKIP][39] ([fdo#109276] / [i915#677]) -> [PASS][40] +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb6/igt@gem_exec_schedule@implicit-both-bsd1.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb4/igt@gem_exec_schedule@implicit-both-bsd1.html * igt@gem_exec_schedule@pi-distinct-iova-bsd: - shard-iclb: [SKIP][41] ([i915#677]) -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb1/igt@gem_exec_schedule@pi-distinct-iova-bsd.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb6/igt@gem_exec_schedule@pi-distinct-iova-bsd.html * igt@gem_exec_schedule@preempt-contexts-bsd2: - shard-iclb: [SKIP][43] ([fdo#109276]) -> [PASS][44] +16 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb6/igt@gem_exec_schedule@preempt-contexts-bsd2.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb4/igt@gem_exec_schedule@preempt-contexts-bsd2.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [SKIP][45] ([fdo#112146]) -> [PASS][46] +7 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [FAIL][47] ([i915#644]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-glk8/igt@gem_ppgtt@flink-and-close-vma-leak.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-glk3/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gen9_exec_parse@allowed-single: - shard-skl: [DMESG-WARN][49] ([i915#716]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-skl7/igt@gen9_exec_parse@allowed-single.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-skl8/igt@gen9_exec_parse@allowed-single.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-glk: [FAIL][51] ([i915#79]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-glk: [FAIL][53] ([i915#49]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-glk7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-kbl: [DMESG-WARN][55] ([i915#180]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min: - shard-skl: [FAIL][57] ([fdo#108145]) -> [PASS][58] +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-skl6/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-skl10/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-glk: [FAIL][59] ([i915#899]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-glk7/igt@kms_plane_lowres@pipe-a-tiling-x.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-glk5/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [SKIP][61] ([fdo#109441]) -> [PASS][62] +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html * igt@perf_pmu@busy-check-all-vcs1: - shard-iclb: [SKIP][63] ([fdo#112080]) -> [PASS][64] +8 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb8/igt@perf_pmu@busy-check-all-vcs1.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb1/igt@perf_pmu@busy-check-all-vcs1.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [FAIL][65] ([IGT#28]) -> [SKIP][66] ([fdo#112080]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-iclb6/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: [FAIL][67] ([i915#454]) -> [SKIP][68] ([i915#468]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-tglb1/igt@i915_pm_dc@dc6-dpms.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@legacy-planes: - shard-snb: [SKIP][69] ([fdo#109271]) -> [INCOMPLETE][70] ([i915#82]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8030/shard-snb5/igt@i915_pm_rpm@legacy-planes.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/shard-snb6/igt@i915_pm_rpm@legacy-planes.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188 [i915#1277]: https://gitlab.freedesktop.org/drm/intel/issues/1277 [i915#173]: https://gitlab.freedesktop.org/drm/intel/issues/173 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#221]: https://gitlab.freedesktop.org/drm/intel/issues/221 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82 [i915#836]: https://gitlab.freedesktop.org/drm/intel/issues/836 [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899 Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Build changes ------------- * CI: CI-20190529 -> None * Linux: CI_DRM_8030 -> Patchwork_16761 CI-20190529: 20190529 CI_DRM_8030: dbdc956c90598337bef46cede52b082954651c0e @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5476: 6628336d5699e3fda2c3b64b1c9fc5426b6de29a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_16761: 91740cf1d41cdc75321a68067c5bdd0d5e55b297 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_16761/index.html _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-03-01 9:24 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-02-28 11:41 [Intel-gfx] [PATCH resend 0/2] drm/i915: Some upside-down panel handling fixes Hans de Goede 2020-02-28 11:41 ` [Intel-gfx] [PATCH resend 1/2] drm/i915/dsi: Remove readback of panel orientation on BYT / CHT Hans de Goede 2020-02-28 11:41 ` [Intel-gfx] [PATCH resend 2/2] drm/i915/dp: Use BDB_GENERAL_FEATURES VBT block info for builtin panel-orientation Hans de Goede 2020-02-28 14:58 ` Ville Syrjälä 2020-02-28 15:18 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Some upside-down panel handling fixes Patchwork 2020-02-28 15:47 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2020-03-01 9:24 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox