]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/panel: otm8009a: Add delay at the end of initialization
authorYannick Fertré <yannick.fertre@st.com>
Thu, 21 Mar 2019 08:04:05 +0000 (09:04 +0100)
committerThierry Reding <treding@nvidia.com>
Wed, 3 Apr 2019 16:44:41 +0000 (18:44 +0200)
At the end of initialization, a delay is required by the panel. Without
this delay, the panel could received a frame early & generate a crash of
panel (black screen).

Signed-off-by: Yannick Fertré <yannick.fertre@st.com>
Reviewed-by: Philippe Cornu <philippe.cornu@st.com>
Tested-by: Philippe Cornu <philippe.cornu@st.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/1553155445-13407-1-git-send-email-yannick.fertre@st.com
drivers/gpu/drm/panel/panel-orisetech-otm8009a.c

index 87fa316e1d7b09a60778751acc51972c759a1c84..58ccf648b70fbde9cbed5241e99ab8119a9af416 100644 (file)
@@ -248,6 +248,9 @@ static int otm8009a_init_sequence(struct otm8009a *ctx)
        /* Send Command GRAM memory write (no parameters) */
        dcs_write_seq(ctx, MIPI_DCS_WRITE_MEMORY_START);
 
+       /* Wait a short while to let the panel be ready before the 1st frame */
+       mdelay(10);
+
        return 0;
 }