All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
@ 2013-03-05  5:07 Kuninori Morimoto
  2013-03-05 15:45 ` Laurent Pinchart
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Kuninori Morimoto @ 2013-03-05  5:07 UTC (permalink / raw)
  To: linux-fbdev

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 <osamu.fukushima.wr@renesas.com>
Signed-off-by: Hideyuki Sano <hideyuki.sano.dn@renesas.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
v1 -> v2

 - git log has tested SoC/board

 drivers/video/sh_mobile_lcdcfb.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c
index 63203ac..0264704 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)
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
  2013-03-05  5:07 [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings Kuninori Morimoto
@ 2013-03-05 15:45 ` Laurent Pinchart
  2013-03-19  4:19 ` Simon Horman
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Laurent Pinchart @ 2013-03-05 15:45 UTC (permalink / raw)
  To: linux-fbdev

Hi Morimoto-san,

Thanks for the patch.

On Monday 04 March 2013 21:07:10 Kuninori Morimoto wrote:
> 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 <osamu.fukushima.wr@renesas.com>
> Signed-off-by: Hideyuki Sano <hideyuki.sano.dn@renesas.com>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
> v1 -> v2
> 
>  - git log has tested SoC/board
> 
>  drivers/video/sh_mobile_lcdcfb.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/video/sh_mobile_lcdcfb.c
> b/drivers/video/sh_mobile_lcdcfb.c index 63203ac..0264704 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)

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
  2013-03-05  5:07 [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings Kuninori Morimoto
  2013-03-05 15:45 ` Laurent Pinchart
@ 2013-03-19  4:19 ` Simon Horman
  2013-03-19 12:38 ` Laurent Pinchart
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2013-03-19  4:19 UTC (permalink / raw)
  To: linux-fbdev

On Tue, Mar 05, 2013 at 04:45:46PM +0100, Laurent Pinchart wrote:
> Hi Morimoto-san,
> 
> Thanks for the patch.
> 
> On Monday 04 March 2013 21:07:10 Kuninori Morimoto wrote:
> > 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 <osamu.fukushima.wr@renesas.com>
> > Signed-off-by: Hideyuki Sano <hideyuki.sano.dn@renesas.com>
> > Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

Laurent, can you handle getting this merged?
If not, please let me know who to prod.

> 
> > ---
> > v1 -> v2
> > 
> >  - git log has tested SoC/board
> > 
> >  drivers/video/sh_mobile_lcdcfb.c |    1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/drivers/video/sh_mobile_lcdcfb.c
> > b/drivers/video/sh_mobile_lcdcfb.c index 63203ac..0264704 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)
> 
> -- 
> Regards,
> 
> Laurent Pinchart
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
  2013-03-05  5:07 [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings Kuninori Morimoto
  2013-03-05 15:45 ` Laurent Pinchart
  2013-03-19  4:19 ` Simon Horman
@ 2013-03-19 12:38 ` Laurent Pinchart
  2013-03-25  7:33 ` Kuninori Morimoto
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Laurent Pinchart @ 2013-03-19 12:38 UTC (permalink / raw)
  To: linux-fbdev

Hi Simon,

On Tuesday 19 March 2013 13:19:52 Simon Horman wrote:
> On Tue, Mar 05, 2013 at 04:45:46PM +0100, Laurent Pinchart wrote:
> > On Monday 04 March 2013 21:07:10 Kuninori Morimoto wrote:
> > > 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 <osamu.fukushima.wr@renesas.com>
> > > Signed-off-by: Hideyuki Sano <hideyuki.sano.dn@renesas.com>
> > > Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> > 
> > Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> 
> Laurent, can you handle getting this merged?
> If not, please let me know who to prod.

We have no fbdev maintainer anymore. Can this be pushed through your tree ?

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
  2013-03-05  5:07 [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings Kuninori Morimoto
                   ` (2 preceding siblings ...)
  2013-03-19 12:38 ` Laurent Pinchart
@ 2013-03-25  7:33 ` Kuninori Morimoto
  2013-03-26 13:19 ` Simon Horman
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Kuninori Morimoto @ 2013-03-25  7:33 UTC (permalink / raw)
  To: linux-fbdev


Hi Laurent, Simon,

> > > On Monday 04 March 2013 21:07:10 Kuninori Morimoto wrote:
> > > > 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 <osamu.fukushima.wr@renesas.com>
> > > > Signed-off-by: Hideyuki Sano <hideyuki.sano.dn@renesas.com>
> > > > Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> > > 
> > > Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > 
> > Laurent, can you handle getting this merged?
> > If not, please let me know who to prod.
> 
> We have no fbdev maintainer anymore. Can this be pushed through your tree ?

Could you please teach me current status of this patch ?

Best regards
---
Kuninori Morimoto

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
  2013-03-05  5:07 [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings Kuninori Morimoto
                   ` (3 preceding siblings ...)
  2013-03-25  7:33 ` Kuninori Morimoto
@ 2013-03-26 13:19 ` Simon Horman
  2013-03-26 23:56 ` Kuninori Morimoto
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2013-03-26 13:19 UTC (permalink / raw)
  To: linux-fbdev

On Mon, Mar 25, 2013 at 12:33:52AM -0700, Kuninori Morimoto wrote:
> 
> Hi Laurent, Simon,
> 
> > > > On Monday 04 March 2013 21:07:10 Kuninori Morimoto wrote:
> > > > > 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 <osamu.fukushima.wr@renesas.com>
> > > > > Signed-off-by: Hideyuki Sano <hideyuki.sano.dn@renesas.com>
> > > > > Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> > > > 
> > > > Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > > 
> > > Laurent, can you handle getting this merged?
> > > If not, please let me know who to prod.
> > 
> > We have no fbdev maintainer anymore. Can this be pushed through your tree ?
> 
> Could you please teach me current status of this patch ?

Sorry, I have been a bit slow and haven't applied it yet.
I plan to do so shortly.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
  2013-03-05  5:07 [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings Kuninori Morimoto
                   ` (4 preceding siblings ...)
  2013-03-26 13:19 ` Simon Horman
@ 2013-03-26 23:56 ` Kuninori Morimoto
  2013-03-27  6:03 ` Simon Horman
  2013-03-27  6:08 ` Kuninori Morimoto
  7 siblings, 0 replies; 9+ messages in thread
From: Kuninori Morimoto @ 2013-03-26 23:56 UTC (permalink / raw)
  To: linux-fbdev


Hi Simon

> > > > > On Monday 04 March 2013 21:07:10 Kuninori Morimoto wrote:
> > > > > > 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 <osamu.fukushima.wr@renesas.com>
> > > > > > Signed-off-by: Hideyuki Sano <hideyuki.sano.dn@renesas.com>
> > > > > > Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> > > > > 
> > > > > Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > > > 
> > > > Laurent, can you handle getting this merged?
> > > > If not, please let me know who to prod.
> > > 
> > > We have no fbdev maintainer anymore. Can this be pushed through your tree ?
> > 
> > Could you please teach me current status of this patch ?
> 
> Sorry, I have been a bit slow and haven't applied it yet.
> I plan to do so shortly.

Thank you for your help!


Best regards
---
Kuninori Morimoto

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
  2013-03-05  5:07 [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings Kuninori Morimoto
                   ` (5 preceding siblings ...)
  2013-03-26 23:56 ` Kuninori Morimoto
@ 2013-03-27  6:03 ` Simon Horman
  2013-03-27  6:08 ` Kuninori Morimoto
  7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2013-03-27  6:03 UTC (permalink / raw)
  To: linux-fbdev

On Tue, Mar 26, 2013 at 04:56:09PM -0700, Kuninori Morimoto wrote:
> 
> Hi Simon
> 
> > > > > > On Monday 04 March 2013 21:07:10 Kuninori Morimoto wrote:
> > > > > > > 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 <osamu.fukushima.wr@renesas.com>
> > > > > > > Signed-off-by: Hideyuki Sano <hideyuki.sano.dn@renesas.com>
> > > > > > > Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> > > > > > 
> > > > > > Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > > > > 
> > > > > Laurent, can you handle getting this merged?
> > > > > If not, please let me know who to prod.
> > > > 
> > > > We have no fbdev maintainer anymore. Can this be pushed through your tree ?
> > > 
> > > Could you please teach me current status of this patch ?
> > 
> > Sorry, I have been a bit slow and haven't applied it yet.
> > I plan to do so shortly.
> 
> Thank you for your help!

Can I confirm if this is for v3.9 or v3.10.
If it is for v3.9 perhaps it is also suitable for -stable?

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings
  2013-03-05  5:07 [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings Kuninori Morimoto
                   ` (6 preceding siblings ...)
  2013-03-27  6:03 ` Simon Horman
@ 2013-03-27  6:08 ` Kuninori Morimoto
  7 siblings, 0 replies; 9+ messages in thread
From: Kuninori Morimoto @ 2013-03-27  6:08 UTC (permalink / raw)
  To: linux-fbdev


Hi Simon

> > > Sorry, I have been a bit slow and haven't applied it yet.
> > > I plan to do so shortly.
> > 
> > Thank you for your help!
> 
> Can I confirm if this is for v3.9 or v3.10.
> If it is for v3.9 perhaps it is also suitable for -stable?

Yes, it needs in v3.9.
I'm not sure detail of -stable branch,
but it is very nice if it have this patch

Best regards
---
Kuninori Morimoto

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-03-27  6:08 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-05  5:07 [PATCH v2] fbdev: sh_mobile_lcdc: fixup B side hsync adjust settings Kuninori Morimoto
2013-03-05 15:45 ` Laurent Pinchart
2013-03-19  4:19 ` Simon Horman
2013-03-19 12:38 ` Laurent Pinchart
2013-03-25  7:33 ` Kuninori Morimoto
2013-03-26 13:19 ` Simon Horman
2013-03-26 23:56 ` Kuninori Morimoto
2013-03-27  6:03 ` Simon Horman
2013-03-27  6:08 ` Kuninori Morimoto

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.