All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/vlv: use W_SYNC_SHIFT for interlaced modes on VLV
@ 2014-03-27 18:56 Jesse Barnes
  2014-03-28 19:49 ` Ville Syrjälä
  2014-03-28 20:08 ` Ville Syrjälä
  0 siblings, 2 replies; 5+ messages in thread
From: Jesse Barnes @ 2014-03-27 18:56 UTC (permalink / raw)
  To: intel-gfx

This makes HDMI testers happier on VLV platforms.  It may be that we
need it for any non-SVO platform, but I don't have any tests to back
that up, so I'm leaving other pre-ILK platforms alone for now.

Tested-by: "Clint Taylor <clinton.a.taylor@intel.com>"
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
---
 drivers/gpu/drm/i915/intel_display.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index e0a87aa..d633139 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -5541,8 +5541,11 @@ static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
 		}
 	}
 
-	if (!IS_GEN2(dev) &&
+	if (IS_VALLEYVIEW(dev) &&
 	    intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
+		pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
+	else if (!IS_GEN2(dev) &&
+		 intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
 		pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
 	else
 		pipeconf |= PIPECONF_PROGRESSIVE;
-- 
1.7.9.5

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

* Re: [PATCH] drm/i915/vlv: use W_SYNC_SHIFT for interlaced modes on VLV
  2014-03-27 18:56 [PATCH] drm/i915/vlv: use W_SYNC_SHIFT for interlaced modes on VLV Jesse Barnes
@ 2014-03-28 19:49 ` Ville Syrjälä
  2014-03-28 20:08 ` Ville Syrjälä
  1 sibling, 0 replies; 5+ messages in thread
From: Ville Syrjälä @ 2014-03-28 19:49 UTC (permalink / raw)
  To: Jesse Barnes; +Cc: intel-gfx

On Thu, Mar 27, 2014 at 11:56:08AM -0700, Jesse Barnes wrote:
> This makes HDMI testers happier on VLV platforms.  It may be that we
> need it for any non-SVO platform, but I don't have any tests to back
> that up, so I'm leaving other pre-ILK platforms alone for now.

It looks like we should use PIPECONF_INTERLACE_W_FIELD_INDICATION
only with sdvo on gen4+, and always on gen3 (simply because VSYNCSHIFT
didn't yet exist).

Oh and we seem to misprogram VSYNCSHIFT on ILK+ with SDVO. The correct
value would be htotal/2 instead of the midway point between hsync
pulses. That's the value PIPECONF_INTERLACE_W_FIELD_INDICATION also
implies, but ILK+ no longer has that option in PIPECONF, so VSYNCSHIFT
must be progammed manually.

> 
> Tested-by: "Clint Taylor <clinton.a.taylor@intel.com>"
> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
> ---
>  drivers/gpu/drm/i915/intel_display.c |    5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> index e0a87aa..d633139 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -5541,8 +5541,11 @@ static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
>  		}
>  	}
>  
> -	if (!IS_GEN2(dev) &&
> +	if (IS_VALLEYVIEW(dev) &&
>  	    intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
> +		pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
> +	else if (!IS_GEN2(dev) &&
> +		 intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
>  		pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
>  	else
>  		pipeconf |= PIPECONF_PROGRESSIVE;
> -- 
> 1.7.9.5PIPECONF_PROGRESSIVE
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Ville Syrjälä
Intel OTC

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

* Re: [PATCH] drm/i915/vlv: use W_SYNC_SHIFT for interlaced modes on VLV
  2014-03-27 18:56 [PATCH] drm/i915/vlv: use W_SYNC_SHIFT for interlaced modes on VLV Jesse Barnes
  2014-03-28 19:49 ` Ville Syrjälä
@ 2014-03-28 20:08 ` Ville Syrjälä
  2014-03-28 20:30   ` Chris Wilson
  1 sibling, 1 reply; 5+ messages in thread
From: Ville Syrjälä @ 2014-03-28 20:08 UTC (permalink / raw)
  To: Jesse Barnes; +Cc: intel-gfx

On Thu, Mar 27, 2014 at 11:56:08AM -0700, Jesse Barnes wrote:
> This makes HDMI testers happier on VLV platforms.  It may be that we
> need it for any non-SVO platform, but I don't have any tests to back
> that up, so I'm leaving other pre-ILK platforms alone for now.
> 
> Tested-by: "Clint Taylor <clinton.a.taylor@intel.com>"
> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

> ---
>  drivers/gpu/drm/i915/intel_display.c |    5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> index e0a87aa..d633139 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -5541,8 +5541,11 @@ static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
>  		}
>  	}
>  
> -	if (!IS_GEN2(dev) &&
> +	if (IS_VALLEYVIEW(dev) &&
>  	    intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
> +		pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
> +	else if (!IS_GEN2(dev) &&
> +		 intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
>  		pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
>  	else
>  		pipeconf |= PIPECONF_PROGRESSIVE;
> -- 
> 1.7.9.5
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Ville Syrjälä
Intel OTC

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

* Re: [PATCH] drm/i915/vlv: use W_SYNC_SHIFT for interlaced modes on VLV
  2014-03-28 20:08 ` Ville Syrjälä
@ 2014-03-28 20:30   ` Chris Wilson
  2014-03-29  9:36     ` Daniel Vetter
  0 siblings, 1 reply; 5+ messages in thread
From: Chris Wilson @ 2014-03-28 20:30 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-gfx

On Fri, Mar 28, 2014 at 10:08:55PM +0200, Ville Syrjälä wrote:
> On Thu, Mar 27, 2014 at 11:56:08AM -0700, Jesse Barnes wrote:
> > This makes HDMI testers happier on VLV platforms.  It may be that we
> > need it for any non-SVO platform, but I don't have any tests to back
> > that up, so I'm leaving other pre-ILK platforms alone for now.
> > 
> > Tested-by: "Clint Taylor <clinton.a.taylor@intel.com>"
> > Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
> 
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=74964

Shouldn't this only be applied if sdvo or hdmi?
-Chris

-- 
Chris Wilson, Intel Open Source Technology Centre

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

* Re: [PATCH] drm/i915/vlv: use W_SYNC_SHIFT for interlaced modes on VLV
  2014-03-28 20:30   ` Chris Wilson
@ 2014-03-29  9:36     ` Daniel Vetter
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Vetter @ 2014-03-29  9:36 UTC (permalink / raw)
  To: Chris Wilson, Ville Syrjälä, Jesse Barnes, intel-gfx

On Fri, Mar 28, 2014 at 08:30:55PM +0000, Chris Wilson wrote:
> On Fri, Mar 28, 2014 at 10:08:55PM +0200, Ville Syrjälä wrote:
> > On Thu, Mar 27, 2014 at 11:56:08AM -0700, Jesse Barnes wrote:
> > > This makes HDMI testers happier on VLV platforms.  It may be that we
> > > need it for any non-SVO platform, but I don't have any tests to back
> > > that up, so I'm leaving other pre-ILK platforms alone for now.
> > > 
> > > Tested-by: "Clint Taylor <clinton.a.taylor@intel.com>"
> > > Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
> > 
> > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> 
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=74964
> 
> Shouldn't this only be applied if sdvo or hdmi?

Thanks for patch, review and bz link, applied. Ville has some follow-up
patches to rectify, I'll slurp them in now.
-Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

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

end of thread, other threads:[~2014-03-29  9:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-27 18:56 [PATCH] drm/i915/vlv: use W_SYNC_SHIFT for interlaced modes on VLV Jesse Barnes
2014-03-28 19:49 ` Ville Syrjälä
2014-03-28 20:08 ` Ville Syrjälä
2014-03-28 20:30   ` Chris Wilson
2014-03-29  9:36     ` Daniel Vetter

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.