Skip to content

Commit 57ef278

Browse files
Liu Yingsuperna9999
authored andcommitted
drm/bridge: fsl-ldb: Enable split mode for LVDS dual link
When LVDS dual link is used, we have to enable the LDB_CTRL_SPLIT_MODE bit. Fixes: 463db5c ("drm: bridge: ldb: Implement simple Freescale i.MX8MP LDB bridge") Cc: Andrzej Hajda <[email protected]> Cc: Neil Armstrong <[email protected]> Cc: Robert Foss <[email protected]> Cc: Laurent Pinchart <[email protected]> Cc: Jonas Karlman <[email protected]> Cc: Jernej Skrabec <[email protected]> Cc: David Airlie <[email protected]> Cc: Daniel Vetter <[email protected]> Cc: Sam Ravnborg <[email protected]> Cc: Marek Vasut <[email protected]> Cc: NXP Linux Team <[email protected]> Signed-off-by: Liu Ying <[email protected]> Reviewed-by: Marek Vasut <[email protected]> Signed-off-by: Neil Armstrong <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 591129d commit 57ef278

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/bridge/fsl-ldb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ static void fsl_ldb_atomic_enable(struct drm_bridge *bridge,
153153
reg = LDB_CTRL_CH0_ENABLE;
154154

155155
if (fsl_ldb->lvds_dual_link)
156-
reg |= LDB_CTRL_CH1_ENABLE;
156+
reg |= LDB_CTRL_CH1_ENABLE | LDB_CTRL_SPLIT_MODE;
157157

158158
if (lvds_format_24bpp) {
159159
reg |= LDB_CTRL_CH0_DATA_WIDTH;

0 commit comments

Comments
 (0)