29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From c74671ffe5d2e64d643d74603f03544d3f490144 Mon Sep 17 00:00:00 2001
|
|
From: Ondrej Jirman <megous@megous.com>
|
|
Date: Sun, 1 Nov 2020 02:57:38 +0100
|
|
Subject: [PATCH 283/478] Revert "drm/sun4i: lvds: Invert the LVDS polarity"
|
|
|
|
This reverts commit 3bc46a083fa9f475dd2e0ab8717d9839b070b8d9.
|
|
---
|
|
drivers/gpu/drm/sun4i/sun4i_tcon.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/gpu/drm/sun4i/sun4i_tcon.c b/drivers/gpu/drm/sun4i/sun4i_tcon.c
|
|
index 9f06dec0fc61..7090b58d00a4 100644
|
|
--- a/drivers/gpu/drm/sun4i/sun4i_tcon.c
|
|
+++ b/drivers/gpu/drm/sun4i/sun4i_tcon.c
|
|
@@ -474,7 +474,9 @@ static void sun4i_tcon0_mode_set_lvds(struct sun4i_tcon *tcon,
|
|
SUN4I_TCON0_BASIC2_V_TOTAL(mode->crtc_vtotal * 2) |
|
|
SUN4I_TCON0_BASIC2_V_BACKPORCH(bp));
|
|
|
|
- reg = SUN4I_TCON0_LVDS_IF_CLK_SEL_TCON0;
|
|
+ reg = SUN4I_TCON0_LVDS_IF_CLK_SEL_TCON0 |
|
|
+ SUN4I_TCON0_LVDS_IF_DATA_POL_NORMAL |
|
|
+ SUN4I_TCON0_LVDS_IF_CLK_POL_NORMAL;
|
|
if (sun4i_tcon_get_pixel_depth(encoder) == 24)
|
|
reg |= SUN4I_TCON0_LVDS_IF_BITWIDTH_24BITS;
|
|
else
|
|
--
|
|
2.35.3
|
|
|