* [PATCH resend] ocfb: fix tgdel and tvdel timing parameters
@ 2016-01-26 14:48 Andrea Merello
2016-01-26 20:36 ` Stefan Kristiansson
2016-01-29 11:35 ` Tomi Valkeinen
0 siblings, 2 replies; 3+ messages in thread
From: Andrea Merello @ 2016-01-26 14:48 UTC (permalink / raw)
To: linux-fbdev
According to the ocfb documentation:
Fix tgdel HW param should be left margin, not right.
Fix tvdel HW param should upper margin, not lower.
This seems to fix lock issues on certain monitors (tested on a
slightly customized IP, but the FPGA guy said that it should
be the same wrt this changes).
Signed-off-by: Andrea Merello <andrea.merello@gmail.com>
diff --git a/drivers/video/fbdev/ocfb.c b/drivers/video/fbdev/ocfb.c
index c9293ae..a970edc2 100644
--- a/drivers/video/fbdev/ocfb.c
+++ b/drivers/video/fbdev/ocfb.c
@@ -123,11 +123,11 @@ static int ocfb_setupfb(struct ocfb_dev *fbdev)
/* Horizontal timings */
ocfb_writereg(fbdev, OCFB_HTIM, (var->hsync_len - 1) << 24 |
- (var->right_margin - 1) << 16 | (var->xres - 1));
+ (var->left_margin - 1) << 16 | (var->xres - 1));
/* Vertical timings */
ocfb_writereg(fbdev, OCFB_VTIM, (var->vsync_len - 1) << 24 |
- (var->lower_margin - 1) << 16 | (var->yres - 1));
+ (var->upper_margin - 1) << 16 | (var->yres - 1));
/* Total length of frame */
hlen = var->left_margin + var->right_margin + var->hsync_len +
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH resend] ocfb: fix tgdel and tvdel timing parameters
2016-01-26 14:48 [PATCH resend] ocfb: fix tgdel and tvdel timing parameters Andrea Merello
@ 2016-01-26 20:36 ` Stefan Kristiansson
2016-01-29 11:35 ` Tomi Valkeinen
1 sibling, 0 replies; 3+ messages in thread
From: Stefan Kristiansson @ 2016-01-26 20:36 UTC (permalink / raw)
To: linux-fbdev
On Tue, Jan 26, 2016 at 03:48:04PM +0100, Andrea Merello wrote:
> According to the ocfb documentation:
> Fix tgdel HW param should be left margin, not right.
> Fix tvdel HW param should upper margin, not lower.
>
> This seems to fix lock issues on certain monitors (tested on a
> slightly customized IP, but the FPGA guy said that it should
> be the same wrt this changes).
>
> Signed-off-by: Andrea Merello <andrea.merello@gmail.com>
I don't have a hardware setup at the moment to test this,
but you are right about the ocfb documentation and looking at the rtl,
it seems right.
Acked-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH resend] ocfb: fix tgdel and tvdel timing parameters
2016-01-26 14:48 [PATCH resend] ocfb: fix tgdel and tvdel timing parameters Andrea Merello
2016-01-26 20:36 ` Stefan Kristiansson
@ 2016-01-29 11:35 ` Tomi Valkeinen
1 sibling, 0 replies; 3+ messages in thread
From: Tomi Valkeinen @ 2016-01-29 11:35 UTC (permalink / raw)
To: linux-fbdev
[-- Attachment #1: Type: text/plain, Size: 1296 bytes --]
On 26/01/16 16:48, Andrea Merello wrote:
> According to the ocfb documentation:
> Fix tgdel HW param should be left margin, not right.
> Fix tvdel HW param should upper margin, not lower.
>
> This seems to fix lock issues on certain monitors (tested on a
> slightly customized IP, but the FPGA guy said that it should
> be the same wrt this changes).
>
> Signed-off-by: Andrea Merello <andrea.merello@gmail.com>
>
> diff --git a/drivers/video/fbdev/ocfb.c b/drivers/video/fbdev/ocfb.c
> index c9293ae..a970edc2 100644
> --- a/drivers/video/fbdev/ocfb.c
> +++ b/drivers/video/fbdev/ocfb.c
> @@ -123,11 +123,11 @@ static int ocfb_setupfb(struct ocfb_dev *fbdev)
>
> /* Horizontal timings */
> ocfb_writereg(fbdev, OCFB_HTIM, (var->hsync_len - 1) << 24 |
> - (var->right_margin - 1) << 16 | (var->xres - 1));
> + (var->left_margin - 1) << 16 | (var->xres - 1));
>
> /* Vertical timings */
> ocfb_writereg(fbdev, OCFB_VTIM, (var->vsync_len - 1) << 24 |
> - (var->lower_margin - 1) << 16 | (var->yres - 1));
> + (var->upper_margin - 1) << 16 | (var->yres - 1));
>
> /* Total length of frame */
> hlen = var->left_margin + var->right_margin + var->hsync_len +
> --
> 1.9.1
>
Thanks, queued for 4.5 fixes.
Tomi
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-01-29 11:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-26 14:48 [PATCH resend] ocfb: fix tgdel and tvdel timing parameters Andrea Merello
2016-01-26 20:36 ` Stefan Kristiansson
2016-01-29 11:35 ` Tomi Valkeinen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).