1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-02-15 04:42:02 +00:00
openmptcprouter/6.6/target/linux/bcm27xx/patches-6.6/0792-drivers-gpu-drm-panel-fix-waveshare-panel-software-r.patch

47 lines
1.3 KiB
Diff
Raw Normal View History

2024-04-05 18:55:33 +00:00
From 4bf6034ea833e038ca0d60da682f82e86b96a889 Mon Sep 17 00:00:00 2001
From: eng33 <eng33@waveshare.com>
Date: Mon, 11 Dec 2023 15:06:45 +0800
Subject: [PATCH 0792/1002] drivers/gpu/drm/panel:fix waveshare panel software
restart/shutdown display is abnormal Fixed the screen stays white when the
user restarts or shuts down
Signed-off-by: eng33 <eng33@waveshare.com>
---
drivers/gpu/drm/panel/panel-waveshare-dsi.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/gpu/drm/panel/panel-waveshare-dsi.c b/drivers/gpu/drm/panel/panel-waveshare-dsi.c
index 2e0947abb982..1f07d6581ee6 100644
--- a/drivers/gpu/drm/panel/panel-waveshare-dsi.c
+++ b/drivers/gpu/drm/panel/panel-waveshare-dsi.c
@@ -361,9 +361,18 @@ static void ws_panel_remove(struct i2c_client *i2c)
{
struct ws_panel *ts = i2c_get_clientdata(i2c);
+ ws_panel_disable(&ts->base);
+
drm_panel_remove(&ts->base);
}
+static void ws_panel_shutdown(struct i2c_client *i2c)
+{
+ struct ws_panel *ts = i2c_get_clientdata(i2c);
+
+ ws_panel_disable(&ts->base);
+}
+
static const struct of_device_id ws_panel_of_ids[] = {
{
.compatible = "waveshare,2.8inch-panel",
@@ -402,6 +411,7 @@ static struct i2c_driver ws_panel_driver = {
},
.probe = ws_panel_probe,
.remove = ws_panel_remove,
+ .shutdown = ws_panel_shutdown,
};
module_i2c_driver(ws_panel_driver);
--
2.44.0