Skip to content

Commit 254503a

Browse files
aford173bzolnier
authored andcommitted
omapfb: dss: Fix max fclk divider for omap36xx
The drm/omap driver was fixed to correct an issue where using a divider of 32 breaks the DSS despite the TRM stating 32 is a valid number. Through experimentation, it appears that 31 works, and it is consistent with the value used by the drm/omap driver. This patch fixes the divider for fbdev driver instead of the drm. Fixes: f76ee89 ("omapfb: copy omapdss & displays for omapfb") Cc: <[email protected]> Freescale#4.5+ Signed-off-by: Adam Ford <[email protected]> Reviewed-by: Tomi Valkeinen <[email protected]> Cc: Dave Airlie <[email protected]> Cc: Rob Clark <[email protected]> [b.zolnierkie: mark patch as applicable to stable 4.5+ (was 4.9+)] Signed-off-by: Bartlomiej Zolnierkiewicz <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 78c2ce9 commit 254503a

File tree

1 file changed

+1
-1
lines changed
  • drivers/video/fbdev/omap2/omapfb/dss

1 file changed

+1
-1
lines changed

drivers/video/fbdev/omap2/omapfb/dss/dss.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ static const struct dss_features omap34xx_dss_feats = {
836836
};
837837

838838
static const struct dss_features omap3630_dss_feats = {
839-
.fck_div_max = 32,
839+
.fck_div_max = 31,
840840
.dss_fck_multiplier = 1,
841841
.parent_clk_name = "dpll4_ck",
842842
.dpi_select_source = &dss_dpi_select_source_omap2_omap3,

0 commit comments

Comments
 (0)