* [PATCH] drm: tegra: fix front_porch <-> back_porch mixup
@ 2012-12-11 20:51 Lucas Stach
[not found] ` <1355259101-17815-1-git-send-email-dev-8ppwABl0HbeELgA04lAiVw@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Lucas Stach @ 2012-12-11 20:51 UTC (permalink / raw)
To: Thierry Reding
Cc: Dave Airlie, linux-tegra-u79uwXL29TY76Z2rM5mHXA,
dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
Fixes wrong picture offset observed when using HDMI output with a
Technisat HD TV.
Signed-off-by: Lucas Stach <dev-8ppwABl0HbeELgA04lAiVw@public.gmane.org>
---
Captions are a bit confusing here. As the porch is always relative to
the sync pulse, the left picture margin is actually the back_porch.
---
drivers/gpu/drm/tegra/dc.c | 8 ++++----
drivers/gpu/drm/tegra/hdmi.c | 6 +++---
2 Dateien geändert, 7 Zeilen hinzugefügt(+), 7 Zeilen entfernt(-)
diff --git a/drivers/gpu/drm/tegra/dc.c b/drivers/gpu/drm/tegra/dc.c
index 0744103..54683e4 100644
--- a/drivers/gpu/drm/tegra/dc.c
+++ b/drivers/gpu/drm/tegra/dc.c
@@ -102,12 +102,12 @@ static int tegra_dc_set_timings(struct tegra_dc *dc,
((mode->hsync_end - mode->hsync_start) << 0);
tegra_dc_writel(dc, value, DC_DISP_SYNC_WIDTH);
- value = ((mode->vsync_start - mode->vdisplay) << 16) |
- ((mode->hsync_start - mode->hdisplay) << 0);
- tegra_dc_writel(dc, value, DC_DISP_BACK_PORCH);
-
value = ((mode->vtotal - mode->vsync_end) << 16) |
((mode->htotal - mode->hsync_end) << 0);
+ tegra_dc_writel(dc, value, DC_DISP_BACK_PORCH);
+
+ value = ((mode->vsync_start - mode->vdisplay) << 16) |
+ ((mode->hsync_start - mode->hdisplay) << 0);
tegra_dc_writel(dc, value, DC_DISP_FRONT_PORCH);
value = (mode->vdisplay << 16) | mode->hdisplay;
diff --git a/drivers/gpu/drm/tegra/hdmi.c b/drivers/gpu/drm/tegra/hdmi.c
index ab40164..81ea934 100644
--- a/drivers/gpu/drm/tegra/hdmi.c
+++ b/drivers/gpu/drm/tegra/hdmi.c
@@ -479,7 +479,7 @@ static void tegra_hdmi_setup_avi_infoframe(struct tegra_hdmi *hdmi,
return;
}
- h_front_porch = mode->htotal - mode->hsync_end;
+ h_front_porch = mode->hsync_start - mode->hdisplay;
memset(&frame, 0, sizeof(frame));
frame.r = HDMI_AVI_R_SAME;
@@ -634,8 +634,8 @@ static int tegra_output_hdmi_enable(struct tegra_output *output)
pclk = mode->clock * 1000;
h_sync_width = mode->hsync_end - mode->hsync_start;
- h_front_porch = mode->htotal - mode->hsync_end;
- h_back_porch = mode->hsync_start - mode->hdisplay;
+ h_back_porch = mode->htotal - mode->hsync_end;
+ h_front_porch = mode->hsync_start - mode->hdisplay;
err = regulator_enable(hdmi->vdd);
if (err < 0) {
--
1.7.11.7
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] drm: tegra: fix front_porch <-> back_porch mixup
[not found] ` <1355259101-17815-1-git-send-email-dev-8ppwABl0HbeELgA04lAiVw@public.gmane.org>
@ 2012-12-12 8:44 ` Mark Zhang
0 siblings, 0 replies; 2+ messages in thread
From: Mark Zhang @ 2012-12-12 8:44 UTC (permalink / raw)
To: Lucas Stach
Cc: Thierry Reding, linux-tegra-u79uwXL29TY76Z2rM5mHXA, Dave Airlie,
dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
Acked-by: Mark Zhang <markz-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Tested-by: Mark Zhang <markz-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
On my Tegra 30 cardhu. Thanks, Lucas.
Mark
On 12/12/2012 04:51 AM, Lucas Stach wrote:
> Fixes wrong picture offset observed when using HDMI output with a
> Technisat HD TV.
>
> Signed-off-by: Lucas Stach <dev-8ppwABl0HbeELgA04lAiVw@public.gmane.org>
> ---
> Captions are a bit confusing here. As the porch is always relative to
> the sync pulse, the left picture margin is actually the back_porch.
> ---
> drivers/gpu/drm/tegra/dc.c | 8 ++++----
> drivers/gpu/drm/tegra/hdmi.c | 6 +++---
> 2 Dateien geändert, 7 Zeilen hinzugefügt(+), 7 Zeilen entfernt(-)
>
> diff --git a/drivers/gpu/drm/tegra/dc.c b/drivers/gpu/drm/tegra/dc.c
> index 0744103..54683e4 100644
> --- a/drivers/gpu/drm/tegra/dc.c
> +++ b/drivers/gpu/drm/tegra/dc.c
> @@ -102,12 +102,12 @@ static int tegra_dc_set_timings(struct tegra_dc *dc,
> ((mode->hsync_end - mode->hsync_start) << 0);
> tegra_dc_writel(dc, value, DC_DISP_SYNC_WIDTH);
>
> - value = ((mode->vsync_start - mode->vdisplay) << 16) |
> - ((mode->hsync_start - mode->hdisplay) << 0);
> - tegra_dc_writel(dc, value, DC_DISP_BACK_PORCH);
> -
> value = ((mode->vtotal - mode->vsync_end) << 16) |
> ((mode->htotal - mode->hsync_end) << 0);
> + tegra_dc_writel(dc, value, DC_DISP_BACK_PORCH);
> +
> + value = ((mode->vsync_start - mode->vdisplay) << 16) |
> + ((mode->hsync_start - mode->hdisplay) << 0);
> tegra_dc_writel(dc, value, DC_DISP_FRONT_PORCH);
>
> value = (mode->vdisplay << 16) | mode->hdisplay;
> diff --git a/drivers/gpu/drm/tegra/hdmi.c b/drivers/gpu/drm/tegra/hdmi.c
> index ab40164..81ea934 100644
> --- a/drivers/gpu/drm/tegra/hdmi.c
> +++ b/drivers/gpu/drm/tegra/hdmi.c
> @@ -479,7 +479,7 @@ static void tegra_hdmi_setup_avi_infoframe(struct tegra_hdmi *hdmi,
> return;
> }
>
> - h_front_porch = mode->htotal - mode->hsync_end;
> + h_front_porch = mode->hsync_start - mode->hdisplay;
> memset(&frame, 0, sizeof(frame));
> frame.r = HDMI_AVI_R_SAME;
>
> @@ -634,8 +634,8 @@ static int tegra_output_hdmi_enable(struct tegra_output *output)
>
> pclk = mode->clock * 1000;
> h_sync_width = mode->hsync_end - mode->hsync_start;
> - h_front_porch = mode->htotal - mode->hsync_end;
> - h_back_porch = mode->hsync_start - mode->hdisplay;
> + h_back_porch = mode->htotal - mode->hsync_end;
> + h_front_porch = mode->hsync_start - mode->hdisplay;
>
> err = regulator_enable(hdmi->vdd);
> if (err < 0) {
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-12-12 8:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-11 20:51 [PATCH] drm: tegra: fix front_porch <-> back_porch mixup Lucas Stach
[not found] ` <1355259101-17815-1-git-send-email-dev-8ppwABl0HbeELgA04lAiVw@public.gmane.org>
2012-12-12 8:44 ` Mark Zhang
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).