All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel@ffwll.ch>
To: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915: Fix mode_get() for Broxton
Date: Fri, 4 Dec 2015 16:07:58 +0100	[thread overview]
Message-ID: <20151204150758.GU10243@phenom.ffwll.local> (raw)
In-Reply-To: <20151202090934.GS4437@intel.com>

On Wed, Dec 02, 2015 at 11:09:34AM +0200, Ville Syrjälä wrote:
> On Wed, Dec 02, 2015 at 12:13:27PM +0530, Vandana Kannan wrote:
> > Making changes in intel_crtc_mode_get() to get correct values for crtc clock,
> > vdisplay, hdisplay, vtotal.
> 
> Why? It's not used except potentially during for DVO/LVDS init on
> old platforms.

Yeah, if we touch this we better rework it to read out the pipe config
instead of more duplicated code. But since it's for dvo/lvds only it can
quietly die of old age imo ;-)
-Daniel

> 
> > 1. intel_crtc_mode_get() gets clock using i9xx_crtc_clock_get() which wil not
> > work for hsw, skl, bxt.
> > 2. For BXT DSI, hdisplay, vdisplay, vtotal registers are different. In the
> > current implementation, these value will be incorrect, thus impacting DPST.
> > 
> > Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
> > ---
> >  drivers/gpu/drm/i915/intel_display.c | 66 +++++++++++++++++++++++++++++++++---
> >  1 file changed, 62 insertions(+), 4 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> > index 0743337..974977b 100644
> > --- a/drivers/gpu/drm/i915/intel_display.c
> > +++ b/drivers/gpu/drm/i915/intel_display.c
> > @@ -34,6 +34,7 @@
> >  #include <drm/drm_edid.h>
> >  #include <drm/drmP.h>
> >  #include "intel_drv.h"
> > +#include "intel_dsi.h"
> >  #include <drm/i915_drm.h>
> >  #include "i915_drv.h"
> >  #include "i915_trace.h"
> > @@ -116,6 +117,15 @@ static void skylake_pfit_enable(struct intel_crtc *crtc);
> >  static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force);
> >  static void ironlake_pfit_enable(struct intel_crtc *crtc);
> >  static void intel_modeset_setup_hw_state(struct drm_device *dev);
> > +static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
> > +		enum port port,
> > +		struct intel_crtc_state *pipe_config);
> > +static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
> > +		enum port port,
> > +		struct intel_crtc_state *pipe_config);
> > +static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
> > +		enum port port,
> > +		struct intel_crtc_state *pipe_config);
> >  
> >  typedef struct {
> >  	int	min, max;
> > @@ -10698,6 +10708,33 @@ static void ironlake_pch_clock_get(struct intel_crtc *crtc,
> >  					 &pipe_config->fdi_m_n);
> >  }
> >  
> > +static void haswell_crtc_clock_get(struct intel_crtc *crtc,
> > +		struct intel_crtc_state *pipe_config)
> > +{
> > +	struct drm_device *dev = crtc->base.dev;
> > +	struct drm_i915_private *dev_priv = dev->dev_private;
> > +	struct intel_encoder *encoder = NULL;
> > +	enum port port;
> > +	bool is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
> > +
> > +	for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
> > +		port = intel_ddi_get_encoder_port(encoder);
> > +		if (IS_BROXTON(dev) && is_dsi) {
> > +			pipe_config->port_clock = bxt_get_dsi_pclk(encoder,
> > +					pipe_config->pipe_bpp);
> > +			break;
> > +		}
> > +		if (IS_SKYLAKE(dev))
> > +			skylake_get_ddi_pll(dev_priv, port, pipe_config);
> > +		else if (IS_BROXTON(dev))
> > +			bxt_get_ddi_pll(dev_priv, port, pipe_config);
> > +		else
> > +			haswell_get_ddi_pll(dev_priv, port, pipe_config);
> > +
> > +		intel_ddi_clock_get(encoder, pipe_config);
> > +	}
> > +}
> > +
> >  /** Returns the currently programmed mode of the given pipe. */
> >  struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
> >  					     struct drm_crtc *crtc)
> > @@ -10712,6 +10749,7 @@ struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
> >  	int vtot = I915_READ(VTOTAL(cpu_transcoder));
> >  	int vsync = I915_READ(VSYNC(cpu_transcoder));
> >  	enum pipe pipe = intel_crtc->pipe;
> > +	bool is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
> >  
> >  	mode = kzalloc(sizeof(*mode), GFP_KERNEL);
> >  	if (!mode)
> > @@ -10729,17 +10767,37 @@ struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
> >  	pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
> >  	pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
> >  	pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
> > -	i9xx_crtc_clock_get(intel_crtc, &pipe_config);
> > +	if (HAS_DDI(dev) || INTEL_INFO(dev)->gen >= 9) {
> > +		haswell_crtc_clock_get(intel_crtc, &pipe_config);
> > +	} else {
> > +		i9xx_crtc_clock_get(intel_crtc, &pipe_config);
> > +	}
> >  
> >  	mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
> > -	mode->hdisplay = (htot & 0xffff) + 1;
> >  	mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
> >  	mode->hsync_start = (hsync & 0xffff) + 1;
> >  	mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
> > -	mode->vdisplay = (vtot & 0xffff) + 1;
> > -	mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
> >  	mode->vsync_start = (vsync & 0xffff) + 1;
> >  	mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
> > +	if (IS_BROXTON(dev) && is_dsi) {
> > +		struct intel_encoder *encoder;
> > +
> > +		for_each_encoder_on_crtc(dev, &intel_crtc->base, encoder) {
> > +			struct intel_dsi *intel_dsi =
> > +				enc_to_intel_dsi(&encoder->base);
> > +			enum port port;
> > +
> > +			for_each_dsi_port(port, intel_dsi->ports) {
> > +				mode->vtotal = I915_READ(BXT_MIPI_TRANS_VTOTAL(port));
> > +				mode->hdisplay = I915_READ(BXT_MIPI_TRANS_HACTIVE(port));
> > +				mode->vdisplay = I915_READ(BXT_MIPI_TRANS_VACTIVE(port));
> > +			}
> > +		}
> > +	} else {
> > +		mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
> > +		mode->hdisplay = (htot & 0xffff) + 1;
> > +		mode->vdisplay = (vtot & 0xffff) + 1;
> > +	}
> >  
> >  	drm_mode_set_name(mode);
> >  
> > -- 
> > 1.9.1
> > 
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
> 
> -- 
> Ville Syrjälä
> Intel OTC
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2015-12-04 15:08 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-02  6:43 [PATCH] drm/i915: Fix mode_get() for Broxton Vandana Kannan
2015-12-02  9:09 ` Ville Syrjälä
2015-12-04 15:07   ` Daniel Vetter [this message]
2015-12-02 13:02 ` Jani Nikula

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20151204150758.GU10243@phenom.ffwll.local \
    --to=daniel@ffwll.ch \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=ville.syrjala@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.