Skip to content
Snippets Groups Projects
Commit b8fe1ee1 authored by Liu Ying's avatar Liu Ying Committed by Leonard Crestez
Browse files

MLK-17023 drm/imx: ldb: Align HSYNC and VSYNC polarities with PHY in DE mode


When an external display device works in data enable(DE) mode,
it usually provides video mode(s) without HSYNC and VSYNC
polarities via display flags.  In this case, the controller(LDB)
and the LVDS PHY still need to align the two signal polarities
with each other respectively.  Otherwise, polarities generated
by default register values may cause mismatch polarities and
display artifacts.  With the DE mode JDI TX26D202VM0BWA panel,
we see vertical lines(very likely, only one) at the left boundary
are missing sometimes, which is caused by this mismatch.  This
patch replaces the default polarity status with explicit active
high in DE mode to fix the issue.

Signed-off-by: default avatarLiu Ying <victor.liu@nxp.com>
(cherry picked from commit 69f6ca59)
parent 6c515401
No related branches found
No related tags found
No related merge requests found
...@@ -522,13 +522,13 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder, ...@@ -522,13 +522,13 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder,
if (imx_ldb_ch == &ldb->channel[0] || dual) { if (imx_ldb_ch == &ldb->channel[0] || dual) {
if (mode->flags & DRM_MODE_FLAG_NVSYNC) if (mode->flags & DRM_MODE_FLAG_NVSYNC)
ldb->ldb_ctrl |= LDB_DI0_VS_POL_ACT_LOW; ldb->ldb_ctrl |= LDB_DI0_VS_POL_ACT_LOW;
else if (mode->flags & DRM_MODE_FLAG_PVSYNC) else
ldb->ldb_ctrl &= ~LDB_DI0_VS_POL_ACT_LOW; ldb->ldb_ctrl &= ~LDB_DI0_VS_POL_ACT_LOW;
} }
if (imx_ldb_ch == &ldb->channel[1] || dual) { if (imx_ldb_ch == &ldb->channel[1] || dual) {
if (mode->flags & DRM_MODE_FLAG_NVSYNC) if (mode->flags & DRM_MODE_FLAG_NVSYNC)
ldb->ldb_ctrl |= LDB_DI1_VS_POL_ACT_LOW; ldb->ldb_ctrl |= LDB_DI1_VS_POL_ACT_LOW;
else if (mode->flags & DRM_MODE_FLAG_PVSYNC) else
ldb->ldb_ctrl &= ~LDB_DI1_VS_POL_ACT_LOW; ldb->ldb_ctrl &= ~LDB_DI1_VS_POL_ACT_LOW;
} }
...@@ -540,7 +540,7 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder, ...@@ -540,7 +540,7 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder,
ldb->channel[0].phy, false); ldb->channel[0].phy, false);
mixel_phy_lvds_set_vsync_pol( mixel_phy_lvds_set_vsync_pol(
ldb->channel[1].phy, false); ldb->channel[1].phy, false);
} else if (mode->flags & DRM_MODE_FLAG_PVSYNC) { } else {
mixel_phy_lvds_set_vsync_pol( mixel_phy_lvds_set_vsync_pol(
ldb->channel[0].phy, true); ldb->channel[0].phy, true);
mixel_phy_lvds_set_vsync_pol( mixel_phy_lvds_set_vsync_pol(
...@@ -552,7 +552,7 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder, ...@@ -552,7 +552,7 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder,
ldb->channel[0].phy, false); ldb->channel[0].phy, false);
mixel_phy_lvds_set_hsync_pol( mixel_phy_lvds_set_hsync_pol(
ldb->channel[1].phy, false); ldb->channel[1].phy, false);
} else if (mode->flags & DRM_MODE_FLAG_PHSYNC) { } else {
mixel_phy_lvds_set_hsync_pol( mixel_phy_lvds_set_hsync_pol(
ldb->channel[0].phy, true); ldb->channel[0].phy, true);
mixel_phy_lvds_set_hsync_pol( mixel_phy_lvds_set_hsync_pol(
...@@ -563,14 +563,14 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder, ...@@ -563,14 +563,14 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder,
if (mode->flags & DRM_MODE_FLAG_NVSYNC) if (mode->flags & DRM_MODE_FLAG_NVSYNC)
mixel_phy_combo_lvds_set_vsync_pol( mixel_phy_combo_lvds_set_vsync_pol(
ldb->channel[0].phy, false); ldb->channel[0].phy, false);
else if (mode->flags & DRM_MODE_FLAG_PVSYNC) else
mixel_phy_combo_lvds_set_vsync_pol( mixel_phy_combo_lvds_set_vsync_pol(
ldb->channel[0].phy, true); ldb->channel[0].phy, true);
/* HSYNC */ /* HSYNC */
if (mode->flags & DRM_MODE_FLAG_NHSYNC) if (mode->flags & DRM_MODE_FLAG_NHSYNC)
mixel_phy_combo_lvds_set_hsync_pol( mixel_phy_combo_lvds_set_hsync_pol(
ldb->channel[0].phy, false); ldb->channel[0].phy, false);
else if (mode->flags & DRM_MODE_FLAG_PHSYNC) else
mixel_phy_combo_lvds_set_hsync_pol( mixel_phy_combo_lvds_set_hsync_pol(
ldb->channel[0].phy, true); ldb->channel[0].phy, true);
} }
...@@ -580,14 +580,14 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder, ...@@ -580,14 +580,14 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder,
if (mode->flags & DRM_MODE_FLAG_NVSYNC) if (mode->flags & DRM_MODE_FLAG_NVSYNC)
mixel_phy_lvds_set_vsync_pol(imx_ldb_ch->phy, mixel_phy_lvds_set_vsync_pol(imx_ldb_ch->phy,
false); false);
else if (mode->flags & DRM_MODE_FLAG_PVSYNC) else
mixel_phy_lvds_set_vsync_pol(imx_ldb_ch->phy, mixel_phy_lvds_set_vsync_pol(imx_ldb_ch->phy,
true); true);
/* HSYNC */ /* HSYNC */
if (mode->flags & DRM_MODE_FLAG_NHSYNC) if (mode->flags & DRM_MODE_FLAG_NHSYNC)
mixel_phy_lvds_set_hsync_pol(imx_ldb_ch->phy, mixel_phy_lvds_set_hsync_pol(imx_ldb_ch->phy,
false); false);
else if (mode->flags & DRM_MODE_FLAG_PHSYNC) else
mixel_phy_lvds_set_hsync_pol(imx_ldb_ch->phy, mixel_phy_lvds_set_hsync_pol(imx_ldb_ch->phy,
true); true);
} else if (ldb->use_mixel_combo_phy) { } else if (ldb->use_mixel_combo_phy) {
...@@ -596,7 +596,7 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder, ...@@ -596,7 +596,7 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder,
mixel_phy_combo_lvds_set_vsync_pol( mixel_phy_combo_lvds_set_vsync_pol(
imx_ldb_ch->phy, imx_ldb_ch->phy,
false); false);
else if (mode->flags & DRM_MODE_FLAG_PVSYNC) else
mixel_phy_combo_lvds_set_vsync_pol( mixel_phy_combo_lvds_set_vsync_pol(
imx_ldb_ch->phy, imx_ldb_ch->phy,
true); true);
...@@ -605,7 +605,7 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder, ...@@ -605,7 +605,7 @@ imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder,
mixel_phy_combo_lvds_set_hsync_pol( mixel_phy_combo_lvds_set_hsync_pol(
imx_ldb_ch->phy, imx_ldb_ch->phy,
false); false);
else if (mode->flags & DRM_MODE_FLAG_PHSYNC) else
mixel_phy_combo_lvds_set_hsync_pol( mixel_phy_combo_lvds_set_hsync_pol(
imx_ldb_ch->phy, imx_ldb_ch->phy,
true); true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment