* [Intel-gfx] [PATCH] drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay
@ 2023-04-22 18:43 Hans de Goede
2023-04-22 19:23 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Hans de Goede @ 2023-04-22 18:43 UTC (permalink / raw)
To: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
Ville Syrjälä
Cc: Hans de Goede, intel-gfx
The intel_dsi_msleep() helper skips sleeping if the MIPI-sequences have
a version of 3 or newer and the panel is in vid-mode.
This is based on the big comment around line 730 which starts with
"Panel enable/disable sequences from the VBT spec.", where
the "v3 video mode seq" column does not have any wait t# entries.
Commit 6fdb335f1c9c ("drm/i915/dsi: Use unconditional msleep for
the panel_on_delay when there is no reset-deassert MIPI-sequence")
switched to a direct msleep() instead of intel_dsi_msleep()
when there is no MIPI_SEQ_DEASSERT_RESET sequence, to fix
the panel on an Acer Aspire Switch 10 E SW3-016 not turning on.
This was done under the assumption that when there is a v3
MIPI_SEQ_DEASSERT_RESET sequence it will take care of any
necessary delays.
On the Nextbook Ares 8A (a Cherry Trail device like the Acer SW3-016)
there is a MIPI_SEQ_DEASSERT_RESET sequence, yet panel_on_delay
must still be honored otherwise the panel will not turn on.
Switch to always using an unconditional msleep() for
the panel_on_delay instead of making this depend on
the presence of a MIPI_SEQ_DEASSERT_RESET sequence.
Fixes: 6fdb335f1c9c ("drm/i915/dsi: Use unconditional msleep for the panel_on_delay when there is no reset-deassert MIPI-sequence")
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
drivers/gpu/drm/i915/display/vlv_dsi.c | 18 +++---------------
1 file changed, 3 insertions(+), 15 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/vlv_dsi.c b/drivers/gpu/drm/i915/display/vlv_dsi.c
index a6d6d8b33f3f..1b87f8f5f7fd 100644
--- a/drivers/gpu/drm/i915/display/vlv_dsi.c
+++ b/drivers/gpu/drm/i915/display/vlv_dsi.c
@@ -788,7 +788,6 @@ static void intel_dsi_pre_enable(struct intel_atomic_state *state,
{
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
- struct intel_connector *connector = to_intel_connector(conn_state->connector);
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
enum pipe pipe = crtc->pipe;
enum port port;
@@ -836,21 +835,10 @@ static void intel_dsi_pre_enable(struct intel_atomic_state *state,
if (!IS_GEMINILAKE(dev_priv))
intel_dsi_prepare(encoder, pipe_config);
+ /* Give the panel time to power-on and then deassert its reset */
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_ON);
-
- /*
- * Give the panel time to power-on and then deassert its reset.
- * Depending on the VBT MIPI sequences version the deassert-seq
- * may contain the necessary delay, intel_dsi_msleep() will skip
- * the delay in that case. If there is no deassert-seq, then an
- * unconditional msleep is used to give the panel time to power-on.
- */
- if (connector->panel.vbt.dsi.sequence[MIPI_SEQ_DEASSERT_RESET]) {
- intel_dsi_msleep(intel_dsi, intel_dsi->panel_on_delay);
- intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET);
- } else {
- msleep(intel_dsi->panel_on_delay);
- }
+ msleep(intel_dsi->panel_on_delay);
+ intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET);
if (IS_GEMINILAKE(dev_priv)) {
glk_cold_boot = glk_dsi_enable_io(encoder);
--
2.39.2
^ permalink raw reply related [flat|nested] 7+ messages in thread* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay 2023-04-22 18:43 [Intel-gfx] [PATCH] drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay Hans de Goede @ 2023-04-22 19:23 ` Patchwork 2023-04-22 20:33 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2023-04-24 18:34 ` [Intel-gfx] [PATCH] " Ville Syrjälä 2 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-04-22 19:23 UTC (permalink / raw) To: Hans de Goede; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4122 bytes --] == Series Details == Series: drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay URL : https://patchwork.freedesktop.org/series/116858/ State : success == Summary == CI Bug Log - changes from CI_DRM_13043 -> Patchwork_116858v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/index.html Participating hosts (36 -> 36) ------------------------------ Additional (1): bat-mtlp-8 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_116858v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@lmem0: - bat-dg2-9: [PASS][1] -> [FAIL][2] ([fdo#103375]) +6 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/bat-dg2-9/igt@gem_exec_suspend@basic-s3@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/bat-dg2-9/igt@gem_exec_suspend@basic-s3@lmem0.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1: - bat-dg2-8: [PASS][3] -> [FAIL][4] ([i915#7932]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-3: - bat-dg2-9: [PASS][5] -> [FAIL][6] ([fdo#103375] / [i915#7932]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-3.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-3.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8368]: https://gitlab.freedesktop.org/drm/intel/issues/8368 [i915#8369]: https://gitlab.freedesktop.org/drm/intel/issues/8369 [i915#8379]: https://gitlab.freedesktop.org/drm/intel/issues/8379 Build changes ------------- * Linux: CI_DRM_13043 -> Patchwork_116858v1 CI-20190529: 20190529 CI_DRM_13043: 2fa9c266135355c9993507d7c27cc6722956bfec @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7264: 2f0a07378e58e5c7d7b589b39ace7e3a2317f6b2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_116858v1: 2fa9c266135355c9993507d7c27cc6722956bfec @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 085b6c90d21c drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/index.html [-- Attachment #2: Type: text/html, Size: 3639 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay 2023-04-22 18:43 [Intel-gfx] [PATCH] drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay Hans de Goede 2023-04-22 19:23 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-04-22 20:33 ` Patchwork 2023-04-23 7:56 ` Hans de Goede 2023-04-24 18:34 ` [Intel-gfx] [PATCH] " Ville Syrjälä 2 siblings, 1 reply; 7+ messages in thread From: Patchwork @ 2023-04-22 20:33 UTC (permalink / raw) To: Hans de Goede; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 17525 bytes --] == Series Details == Series: drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay URL : https://patchwork.freedesktop.org/series/116858/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13043_full -> Patchwork_116858v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_116858v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_116858v1_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_116858v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ppgtt@blt-vs-render-ctx0: - shard-snb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-snb1/igt@gem_ppgtt@blt-vs-render-ctx0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_mmap_offset@clear@smem0: - {shard-dg1}: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html Known issues ------------ Here are the changes found in Patchwork_116858v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [PASS][5] -> [ABORT][6] ([i915#8211]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-glk5/igt@gem_barrier_race@remote-request@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-glk9/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: NOTRUN -> [FAIL][7] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-glk: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-glk7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][9] -> [ABORT][10] ([i915#5566]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-apl1/igt@gen9_exec_parse@allowed-single.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-apl2/igt@gen9_exec_parse@allowed-single.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3886]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-glk7/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render: - shard-apl: NOTRUN -> [SKIP][12] ([fdo#109271]) +3 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-apl1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +42 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-glk7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271]) +21 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-snb4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-vga-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#658]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-glk7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@perf@stress-open-close@0-rcs0: - shard-apl: [PASS][16] -> [ABORT][17] ([i915#5213]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-apl3/igt@perf@stress-open-close@0-rcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-apl3/igt@perf@stress-open-close@0-rcs0.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - {shard-rkl}: [FAIL][18] ([i915#7742]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_exec_endless@dispatch@vecs0: - {shard-tglu}: [TIMEOUT][20] ([i915#3778]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-tglu-10/igt@gem_exec_endless@dispatch@vecs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-tglu-5/igt@gem_exec_endless@dispatch@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - {shard-tglu}: [FAIL][22] ([i915#2842]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - {shard-rkl}: [FAIL][24] ([i915#2842]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_schedule@smoketest@rcs0: - shard-glk: [DMESG-WARN][26] ([i915#118]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-glk4/igt@gem_exec_schedule@smoketest@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-glk4/igt@gem_exec_schedule@smoketest@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [DMESG-WARN][28] ([i915#4936] / [i915#5493]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [ABORT][30] ([i915#5566]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-apl7/igt@gen9_exec_parse@allowed-all.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-apl1/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_dc@dc6-dpms: - {shard-tglu}: [FAIL][32] ([i915#3989] / [i915#454]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-tglu-4/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - {shard-dg1}: [FAIL][34] ([i915#3591]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - {shard-rkl}: [SKIP][36] ([i915#1397]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-rkl-3/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][38] ([i915#72]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][40] ([i915#2346]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-bo@pipe-b: - {shard-rkl}: [INCOMPLETE][42] ([i915#8011]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-rkl-7/igt@kms_cursor_legacy@single-bo@pipe-b.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-rkl-3/igt@kms_cursor_legacy@single-bo@pipe-b.html * igt@perf@stress-open-close@0-rcs0: - shard-glk: [ABORT][44] ([i915#5213]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-glk1/igt@perf@stress-open-close@0-rcs0.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-glk7/igt@perf@stress-open-close@0-rcs0.html * igt@perf_pmu@idle@rcs0: - {shard-dg1}: [FAIL][46] ([i915#4349]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-dg1-14/igt@perf_pmu@idle@rcs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-dg1-18/igt@perf_pmu@idle@rcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 Build changes ------------- * Linux: CI_DRM_13043 -> Patchwork_116858v1 CI-20190529: 20190529 CI_DRM_13043: 2fa9c266135355c9993507d7c27cc6722956bfec @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7264: 2f0a07378e58e5c7d7b589b39ace7e3a2317f6b2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_116858v1: 2fa9c266135355c9993507d7c27cc6722956bfec @ 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_116858v1/index.html [-- Attachment #2: Type: text/html, Size: 14393 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay 2023-04-22 20:33 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-04-23 7:56 ` Hans de Goede 0 siblings, 0 replies; 7+ messages in thread From: Hans de Goede @ 2023-04-23 7:56 UTC (permalink / raw) To: intel-gfx Hi, On 4/22/23 22:33, Patchwork wrote: > *Patch Details* > *Series:* drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay > *URL:* https://patchwork.freedesktop.org/series/116858/ <https://patchwork.freedesktop.org/series/116858/> > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/index.html <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/index.html> > > > CI Bug Log - changes from CI_DRM_13043_full -> Patchwork_116858v1_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with Patchwork_116858v1_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_116858v1_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > > Participating hosts (7 -> 7) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in Patchwork_116858v1_full: > > > IGT changes > > > Possible regressions > > * igt@gem_ppgtt@blt-vs-render-ctx0: > o shard-snb: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13043/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116858v1/shard-snb1/igt@gem_ppgtt@blt-vs-render-ctx0.html> The only touched file is not used on snb, so this is a false positive. Regards, Hans ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay 2023-04-22 18:43 [Intel-gfx] [PATCH] drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay Hans de Goede 2023-04-22 19:23 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2023-04-22 20:33 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-04-24 18:34 ` Ville Syrjälä 2023-04-24 18:54 ` Hans de Goede 2 siblings, 1 reply; 7+ messages in thread From: Ville Syrjälä @ 2023-04-24 18:34 UTC (permalink / raw) To: Hans de Goede; +Cc: intel-gfx, Rodrigo Vivi On Sat, Apr 22, 2023 at 08:43:59PM +0200, Hans de Goede wrote: > The intel_dsi_msleep() helper skips sleeping if the MIPI-sequences have > a version of 3 or newer and the panel is in vid-mode. > > This is based on the big comment around line 730 which starts with > "Panel enable/disable sequences from the VBT spec.", where > the "v3 video mode seq" column does not have any wait t# entries. > > Commit 6fdb335f1c9c ("drm/i915/dsi: Use unconditional msleep for > the panel_on_delay when there is no reset-deassert MIPI-sequence") > switched to a direct msleep() instead of intel_dsi_msleep() > when there is no MIPI_SEQ_DEASSERT_RESET sequence, to fix > the panel on an Acer Aspire Switch 10 E SW3-016 not turning on. > > This was done under the assumption that when there is a v3 > MIPI_SEQ_DEASSERT_RESET sequence it will take care of any > necessary delays. > > On the Nextbook Ares 8A (a Cherry Trail device like the Acer SW3-016) > there is a MIPI_SEQ_DEASSERT_RESET sequence, yet panel_on_delay > must still be honored otherwise the panel will not turn on. > > Switch to always using an unconditional msleep() for > the panel_on_delay instead of making this depend on > the presence of a MIPI_SEQ_DEASSERT_RESET sequence. I just checked what Windows does, and at least for icl+ it always waits for the panel power delays regardless of what the VBT MIPI sequences are doing. So I suspect we should just get rid of intel_dsi_msleep() entirely and do what the power sequencing delays tell us. Anything else is untested territory. If the VBT actually wanted us to skip the delays then it should really be setting them to zero. > > Fixes: 6fdb335f1c9c ("drm/i915/dsi: Use unconditional msleep for the panel_on_delay when there is no reset-deassert MIPI-sequence") > Signed-off-by: Hans de Goede <hdegoede@redhat.com> > --- > drivers/gpu/drm/i915/display/vlv_dsi.c | 18 +++--------------- > 1 file changed, 3 insertions(+), 15 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/vlv_dsi.c b/drivers/gpu/drm/i915/display/vlv_dsi.c > index a6d6d8b33f3f..1b87f8f5f7fd 100644 > --- a/drivers/gpu/drm/i915/display/vlv_dsi.c > +++ b/drivers/gpu/drm/i915/display/vlv_dsi.c > @@ -788,7 +788,6 @@ static void intel_dsi_pre_enable(struct intel_atomic_state *state, > { > struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); > struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc); > - struct intel_connector *connector = to_intel_connector(conn_state->connector); > struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); > enum pipe pipe = crtc->pipe; > enum port port; > @@ -836,21 +835,10 @@ static void intel_dsi_pre_enable(struct intel_atomic_state *state, > if (!IS_GEMINILAKE(dev_priv)) > intel_dsi_prepare(encoder, pipe_config); > > + /* Give the panel time to power-on and then deassert its reset */ > intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_ON); > - > - /* > - * Give the panel time to power-on and then deassert its reset. > - * Depending on the VBT MIPI sequences version the deassert-seq > - * may contain the necessary delay, intel_dsi_msleep() will skip > - * the delay in that case. If there is no deassert-seq, then an > - * unconditional msleep is used to give the panel time to power-on. > - */ > - if (connector->panel.vbt.dsi.sequence[MIPI_SEQ_DEASSERT_RESET]) { > - intel_dsi_msleep(intel_dsi, intel_dsi->panel_on_delay); > - intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET); > - } else { > - msleep(intel_dsi->panel_on_delay); > - } > + msleep(intel_dsi->panel_on_delay); > + intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET); > > if (IS_GEMINILAKE(dev_priv)) { > glk_cold_boot = glk_dsi_enable_io(encoder); > -- > 2.39.2 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay 2023-04-24 18:34 ` [Intel-gfx] [PATCH] " Ville Syrjälä @ 2023-04-24 18:54 ` Hans de Goede 2023-04-24 19:02 ` Ville Syrjälä 0 siblings, 1 reply; 7+ messages in thread From: Hans de Goede @ 2023-04-24 18:54 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx, Rodrigo Vivi Hi Ville, On 4/24/23 20:34, Ville Syrjälä wrote: > On Sat, Apr 22, 2023 at 08:43:59PM +0200, Hans de Goede wrote: >> The intel_dsi_msleep() helper skips sleeping if the MIPI-sequences have >> a version of 3 or newer and the panel is in vid-mode. >> >> This is based on the big comment around line 730 which starts with >> "Panel enable/disable sequences from the VBT spec.", where >> the "v3 video mode seq" column does not have any wait t# entries. >> >> Commit 6fdb335f1c9c ("drm/i915/dsi: Use unconditional msleep for >> the panel_on_delay when there is no reset-deassert MIPI-sequence") >> switched to a direct msleep() instead of intel_dsi_msleep() >> when there is no MIPI_SEQ_DEASSERT_RESET sequence, to fix >> the panel on an Acer Aspire Switch 10 E SW3-016 not turning on. >> >> This was done under the assumption that when there is a v3 >> MIPI_SEQ_DEASSERT_RESET sequence it will take care of any >> necessary delays. >> >> On the Nextbook Ares 8A (a Cherry Trail device like the Acer SW3-016) >> there is a MIPI_SEQ_DEASSERT_RESET sequence, yet panel_on_delay >> must still be honored otherwise the panel will not turn on. >> >> Switch to always using an unconditional msleep() for >> the panel_on_delay instead of making this depend on >> the presence of a MIPI_SEQ_DEASSERT_RESET sequence. > > I just checked what Windows does, and at least for icl+ it > always waits for the panel power delays regardless of what > the VBT MIPI sequences are doing. > > So I suspect we should just get rid of intel_dsi_msleep() > entirely and do what the power sequencing delays tell us. > Anything else is untested territory. If the VBT actually > wanted us to skip the delays then it should really be > setting them to zero. So I checked and there are only 4 (before this patch) / 3 (after this patch) callers of intel_dsi_msleep(). So just getting rid of it entirely sounds good to me. Shall I prepare a v2 patch which does this ? Regards, Hans >> Fixes: 6fdb335f1c9c ("drm/i915/dsi: Use unconditional msleep for the panel_on_delay when there is no reset-deassert MIPI-sequence") >> Signed-off-by: Hans de Goede <hdegoede@redhat.com> >> --- >> drivers/gpu/drm/i915/display/vlv_dsi.c | 18 +++--------------- >> 1 file changed, 3 insertions(+), 15 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/vlv_dsi.c b/drivers/gpu/drm/i915/display/vlv_dsi.c >> index a6d6d8b33f3f..1b87f8f5f7fd 100644 >> --- a/drivers/gpu/drm/i915/display/vlv_dsi.c >> +++ b/drivers/gpu/drm/i915/display/vlv_dsi.c >> @@ -788,7 +788,6 @@ static void intel_dsi_pre_enable(struct intel_atomic_state *state, >> { >> struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); >> struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc); >> - struct intel_connector *connector = to_intel_connector(conn_state->connector); >> struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); >> enum pipe pipe = crtc->pipe; >> enum port port; >> @@ -836,21 +835,10 @@ static void intel_dsi_pre_enable(struct intel_atomic_state *state, >> if (!IS_GEMINILAKE(dev_priv)) >> intel_dsi_prepare(encoder, pipe_config); >> >> + /* Give the panel time to power-on and then deassert its reset */ >> intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_ON); >> - >> - /* >> - * Give the panel time to power-on and then deassert its reset. >> - * Depending on the VBT MIPI sequences version the deassert-seq >> - * may contain the necessary delay, intel_dsi_msleep() will skip >> - * the delay in that case. If there is no deassert-seq, then an >> - * unconditional msleep is used to give the panel time to power-on. >> - */ >> - if (connector->panel.vbt.dsi.sequence[MIPI_SEQ_DEASSERT_RESET]) { >> - intel_dsi_msleep(intel_dsi, intel_dsi->panel_on_delay); >> - intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET); >> - } else { >> - msleep(intel_dsi->panel_on_delay); >> - } >> + msleep(intel_dsi->panel_on_delay); >> + intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET); >> >> if (IS_GEMINILAKE(dev_priv)) { >> glk_cold_boot = glk_dsi_enable_io(encoder); >> -- >> 2.39.2 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay 2023-04-24 18:54 ` Hans de Goede @ 2023-04-24 19:02 ` Ville Syrjälä 0 siblings, 0 replies; 7+ messages in thread From: Ville Syrjälä @ 2023-04-24 19:02 UTC (permalink / raw) To: Hans de Goede; +Cc: intel-gfx, Rodrigo Vivi On Mon, Apr 24, 2023 at 08:54:27PM +0200, Hans de Goede wrote: > Hi Ville, > > On 4/24/23 20:34, Ville Syrjälä wrote: > > On Sat, Apr 22, 2023 at 08:43:59PM +0200, Hans de Goede wrote: > >> The intel_dsi_msleep() helper skips sleeping if the MIPI-sequences have > >> a version of 3 or newer and the panel is in vid-mode. > >> > >> This is based on the big comment around line 730 which starts with > >> "Panel enable/disable sequences from the VBT spec.", where > >> the "v3 video mode seq" column does not have any wait t# entries. > >> > >> Commit 6fdb335f1c9c ("drm/i915/dsi: Use unconditional msleep for > >> the panel_on_delay when there is no reset-deassert MIPI-sequence") > >> switched to a direct msleep() instead of intel_dsi_msleep() > >> when there is no MIPI_SEQ_DEASSERT_RESET sequence, to fix > >> the panel on an Acer Aspire Switch 10 E SW3-016 not turning on. > >> > >> This was done under the assumption that when there is a v3 > >> MIPI_SEQ_DEASSERT_RESET sequence it will take care of any > >> necessary delays. > >> > >> On the Nextbook Ares 8A (a Cherry Trail device like the Acer SW3-016) > >> there is a MIPI_SEQ_DEASSERT_RESET sequence, yet panel_on_delay > >> must still be honored otherwise the panel will not turn on. > >> > >> Switch to always using an unconditional msleep() for > >> the panel_on_delay instead of making this depend on > >> the presence of a MIPI_SEQ_DEASSERT_RESET sequence. > > > > I just checked what Windows does, and at least for icl+ it > > always waits for the panel power delays regardless of what > > the VBT MIPI sequences are doing. > > > > So I suspect we should just get rid of intel_dsi_msleep() > > entirely and do what the power sequencing delays tell us. > > Anything else is untested territory. If the VBT actually > > wanted us to skip the delays then it should really be > > setting them to zero. > > So I checked and there are only 4 (before this patch) / > 3 (after this patch) callers of intel_dsi_msleep(). > > So just getting rid of it entirely sounds good to me. > > Shall I prepare a v2 patch which does this ? Please do. > > Regards, > > Hans > > > > > > >> Fixes: 6fdb335f1c9c ("drm/i915/dsi: Use unconditional msleep for the panel_on_delay when there is no reset-deassert MIPI-sequence") > >> Signed-off-by: Hans de Goede <hdegoede@redhat.com> > >> --- > >> drivers/gpu/drm/i915/display/vlv_dsi.c | 18 +++--------------- > >> 1 file changed, 3 insertions(+), 15 deletions(-) > >> > >> diff --git a/drivers/gpu/drm/i915/display/vlv_dsi.c b/drivers/gpu/drm/i915/display/vlv_dsi.c > >> index a6d6d8b33f3f..1b87f8f5f7fd 100644 > >> --- a/drivers/gpu/drm/i915/display/vlv_dsi.c > >> +++ b/drivers/gpu/drm/i915/display/vlv_dsi.c > >> @@ -788,7 +788,6 @@ static void intel_dsi_pre_enable(struct intel_atomic_state *state, > >> { > >> struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); > >> struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc); > >> - struct intel_connector *connector = to_intel_connector(conn_state->connector); > >> struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); > >> enum pipe pipe = crtc->pipe; > >> enum port port; > >> @@ -836,21 +835,10 @@ static void intel_dsi_pre_enable(struct intel_atomic_state *state, > >> if (!IS_GEMINILAKE(dev_priv)) > >> intel_dsi_prepare(encoder, pipe_config); > >> > >> + /* Give the panel time to power-on and then deassert its reset */ > >> intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_ON); > >> - > >> - /* > >> - * Give the panel time to power-on and then deassert its reset. > >> - * Depending on the VBT MIPI sequences version the deassert-seq > >> - * may contain the necessary delay, intel_dsi_msleep() will skip > >> - * the delay in that case. If there is no deassert-seq, then an > >> - * unconditional msleep is used to give the panel time to power-on. > >> - */ > >> - if (connector->panel.vbt.dsi.sequence[MIPI_SEQ_DEASSERT_RESET]) { > >> - intel_dsi_msleep(intel_dsi, intel_dsi->panel_on_delay); > >> - intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET); > >> - } else { > >> - msleep(intel_dsi->panel_on_delay); > >> - } > >> + msleep(intel_dsi->panel_on_delay); > >> + intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET); > >> > >> if (IS_GEMINILAKE(dev_priv)) { > >> glk_cold_boot = glk_dsi_enable_io(encoder); > >> -- > >> 2.39.2 > > -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-04-24 19:02 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-04-22 18:43 [Intel-gfx] [PATCH] drm/i915/dsi: Always use unconditional msleep() for the panel_on_delay Hans de Goede 2023-04-22 19:23 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2023-04-22 20:33 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2023-04-23 7:56 ` Hans de Goede 2023-04-24 18:34 ` [Intel-gfx] [PATCH] " Ville Syrjälä 2023-04-24 18:54 ` Hans de Goede 2023-04-24 19:02 ` Ville Syrjälä
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox