aboutsummaryrefslogtreecommitdiff
path: root/target/linux/d1/patches-6.1/0112-drm-panel-cwd686-Fix-timings.patch
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/d1/patches-6.1/0112-drm-panel-cwd686-Fix-timings.patch')
-rw-r--r--target/linux/d1/patches-6.1/0112-drm-panel-cwd686-Fix-timings.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/target/linux/d1/patches-6.1/0112-drm-panel-cwd686-Fix-timings.patch b/target/linux/d1/patches-6.1/0112-drm-panel-cwd686-Fix-timings.patch
new file mode 100644
index 0000000000..08c0f59eed
--- /dev/null
+++ b/target/linux/d1/patches-6.1/0112-drm-panel-cwd686-Fix-timings.patch
@@ -0,0 +1,37 @@
+From 6ea428297717faa16056076f7dd5a69e49c58fe6 Mon Sep 17 00:00:00 2001
+From: Samuel Holland <samuel@sholland.org>
+Date: Sun, 7 Aug 2022 23:34:35 -0500
+Subject: [PATCH 112/117] drm: panel: cwd686: Fix timings
+
+Signed-off-by: Samuel Holland <samuel@sholland.org>
+---
+ drivers/gpu/drm/panel/panel-clockwork-cwd686.c | 18 +++++++++---------
+ 1 file changed, 9 insertions(+), 9 deletions(-)
+
+--- a/drivers/gpu/drm/panel/panel-clockwork-cwd686.c
++++ b/drivers/gpu/drm/panel/panel-clockwork-cwd686.c
+@@ -31,15 +31,15 @@ struct cwd686 {
+ };
+
+ static const struct drm_display_mode default_mode = {
+- .clock = 54465,
+- .hdisplay = 480,
+- .hsync_start = 480 + 150,
+- .hsync_end = 480 + 150 + 24,
+- .htotal = 480 + 150 + 24 + 40,
+- .vdisplay = 1280,
+- .vsync_start = 1280 + 12,
+- .vsync_end = 1280 + 12 + 6,
+- .vtotal = 1280 + 12 + 6 + 10,
++ .clock = 54465,
++ .hdisplay = 480,
++ .hsync_start = 480 + 64,
++ .hsync_end = 480 + 64 + 40,
++ .htotal = 480 + 64 + 40 + 110,
++ .vdisplay = 1280,
++ .vsync_start = 1280 + 16,
++ .vsync_end = 1280 + 16 + 10,
++ .vtotal = 1280 + 16 + 10 + 2,
+ };
+
+ static inline struct cwd686 *panel_to_cwd686(struct drm_panel *panel)