diff options
author | Kuninori Morimoto <[email protected]> | 2013-03-04 20:44:39 -0800 |
---|---|---|
committer | Simon Horman <[email protected]> | 2013-03-27 22:47:24 +0900 |
commit | 9beb09f1cadf33145c307c504f844ae24686c872 (patch) | |
tree | f8b2094aa3c5e887ce8e5a66819a371d8ba6ae62 | |
parent | f6161aa153581da4a3867a2d1a7caf4be19b6ec9 (diff) |
fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
The lcdc B side horizon output is shifted
if sh_mobile_lcdc_pan() was called.
This patch fixup this issue.
It is tested on R8A7740 Armadillo800eva HDMI output.
Special thanks to Fukushima-san, and Sano-san
Reported-by: Osamu Fukushima <[email protected]>
Signed-off-by: Hideyuki Sano <[email protected]>
Signed-off-by: Kuninori Morimoto <[email protected]>
Acked-by: Laurent Pinchart <[email protected]>
Signed-off-by: Simon Horman <[email protected]>
-rw-r--r-- | drivers/video/sh_mobile_lcdcfb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c index 63203acef812..0264704a52be 100644 --- a/drivers/video/sh_mobile_lcdcfb.c +++ b/drivers/video/sh_mobile_lcdcfb.c @@ -858,6 +858,7 @@ static void sh_mobile_lcdc_geometry(struct sh_mobile_lcdc_chan *ch) tmp = ((mode->xres & 7) << 24) | ((display_h_total & 7) << 16) | ((mode->hsync_len & 7) << 8) | (hsync_pos & 7); lcdc_write_chan(ch, LDHAJR, tmp); + lcdc_write_chan_mirror(ch, LDHAJR, tmp); } static void sh_mobile_lcdc_overlay_setup(struct sh_mobile_lcdc_overlay *ovl) |