Patch "drm/panel: boe-tv101wum-nl6: Ensure DSI writes succeed during disable" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/panel: boe-tv101wum-nl6: Ensure DSI writes succeed during disable

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-panel-boe-tv101wum-nl6-ensure-dsi-writes-succeed.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 7c10e6e9fd4c6c80055a4af47a702d7c6f2529f4
Author: Stephen Boyd <swboyd@xxxxxxxxxxxx>
Date:   Thu Jan 5 19:01:08 2023 -0800

    drm/panel: boe-tv101wum-nl6: Ensure DSI writes succeed during disable
    
    [ Upstream commit a3ee9e0b57f8ecca02d1c16fad4941e09bfe2941 ]
    
    The unprepare sequence has started to fail after moving to panel bridge
    code in the msm drm driver (commit 007ac0262b0d ("drm/msm/dsi: switch to
    DRM_PANEL_BRIDGE")). You'll see messages like this in the kernel logs:
    
       panel-boe-tv101wum-nl6 ae94000.dsi.0: failed to set panel off: -22
    
    This is because boe_panel_enter_sleep_mode() needs an operating DSI link
    to set the panel into sleep mode. Performing those writes in the
    unprepare phase of bridge ops is too late, because the link has already
    been torn down by the DSI controller in post_disable, i.e. the PHY has
    been disabled, etc. See dsi_mgr_bridge_post_disable() for more details
    on the DSI .
    
    Split the unprepare function into a disable part and an unprepare part.
    For now, just the DSI writes to enter sleep mode are put in the disable
    function. This fixes the panel off routine and keeps the panel happy.
    
    My Wormdingler has an integrated touchscreen that stops responding to
    touch if the panel is only half disabled too. This patch fixes it. And
    finally, this saves power when the screen is off because without this
    fix the regulators for the panel are left enabled when nothing is being
    displayed on the screen.
    
    Fixes: 007ac0262b0d ("drm/msm/dsi: switch to DRM_PANEL_BRIDGE")
    Fixes: a869b9db7adf ("drm/panel: support for boe tv101wum-nl6 wuxga dsi video mode panel")
    Cc: yangcong <yangcong5@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
    Cc: Douglas Anderson <dianders@xxxxxxxxxxxx>
    Cc: Jitao Shi <jitao.shi@xxxxxxxxxxxx>
    Cc: Sam Ravnborg <sam@xxxxxxxxxxxx>
    Cc: Rob Clark <robdclark@xxxxxxxxxxxx>
    Cc: Dmitry Baryshkov <dmitry.baryshkov@xxxxxxxxxx>
    Signed-off-by: Stephen Boyd <swboyd@xxxxxxxxxxxx>
    Reviewed-by: Douglas Anderson <dianders@xxxxxxxxxxxx>
    Signed-off-by: Douglas Anderson <dianders@xxxxxxxxxxxx>
    Link: https://patchwork.freedesktop.org/patch/msgid/20230106030108.2542081-1-swboyd@xxxxxxxxxxxx
    (cherry picked from commit c913cd5489930abbb557ef144a333846286754c3)
    Signed-off-by: Thomas Zimmermann <tzimmermann@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c b/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c
index 857a2f0420d7..c924f1124ebc 100644
--- a/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c
+++ b/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c
@@ -1193,14 +1193,11 @@ static int boe_panel_enter_sleep_mode(struct boe_panel *boe)
 	return 0;
 }
 
-static int boe_panel_unprepare(struct drm_panel *panel)
+static int boe_panel_disable(struct drm_panel *panel)
 {
 	struct boe_panel *boe = to_boe_panel(panel);
 	int ret;
 
-	if (!boe->prepared)
-		return 0;
-
 	ret = boe_panel_enter_sleep_mode(boe);
 	if (ret < 0) {
 		dev_err(panel->dev, "failed to set panel off: %d\n", ret);
@@ -1209,6 +1206,16 @@ static int boe_panel_unprepare(struct drm_panel *panel)
 
 	msleep(150);
 
+	return 0;
+}
+
+static int boe_panel_unprepare(struct drm_panel *panel)
+{
+	struct boe_panel *boe = to_boe_panel(panel);
+
+	if (!boe->prepared)
+		return 0;
+
 	if (boe->desc->discharge_on_disable) {
 		regulator_disable(boe->avee);
 		regulator_disable(boe->avdd);
@@ -1528,6 +1535,7 @@ static enum drm_panel_orientation boe_panel_get_orientation(struct drm_panel *pa
 }
 
 static const struct drm_panel_funcs boe_panel_funcs = {
+	.disable = boe_panel_disable,
 	.unprepare = boe_panel_unprepare,
 	.prepare = boe_panel_prepare,
 	.enable = boe_panel_enable,



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux