public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Vandana Kannan <vandana.kannan@intel.com>
To: Daniel Vetter <daniel@ffwll.ch>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
	"intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>
Subject: Re: [PATCH v2 1/2] drm/i915: Set M2_N2 registers during mode set
Date: Mon, 07 Jul 2014 14:36:58 +0530	[thread overview]
Message-ID: <53BA6332.5050509@intel.com> (raw)
In-Reply-To: <20140707084158.GF5821@phenom.ffwll.local>

On Jul-07-2014 2:11 PM, Daniel Vetter wrote:
> On Tue, Jul 01, 2014 at 10:39:52AM +0530, Vandana Kannan wrote:
>> On Jun-18-2014 9:22 PM, Daniel Vetter wrote:
>>> On Wed, Jun 18, 2014 at 07:47:24PM +0530, Vandana Kannan wrote:
>>>> For Gen < 8, set M2_N2 registers on every mode set. This is required to make
>>>> sure M2_N2 registers are set during boot, resume from sleep for cross-
>>>> checking the state. The register is set only if DRRS is supported.
>>>>
>>>> v2: Patch rebased
>>>>
>>>> Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
>>>> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
>>>> ---
>>>>  drivers/gpu/drm/i915/i915_drv.h      |  3 +++
>>>>  drivers/gpu/drm/i915/intel_display.c | 36 ++++++++++++++++++++++++++++++++----
>>>>  drivers/gpu/drm/i915/intel_dp.c      | 14 --------------
>>>>  drivers/gpu/drm/i915/intel_drv.h     |  1 +
>>>>  4 files changed, 36 insertions(+), 18 deletions(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
>>>> index 0640071..6bf6e00 100644
>>>> --- a/drivers/gpu/drm/i915/i915_drv.h
>>>> +++ b/drivers/gpu/drm/i915/i915_drv.h
>>>> @@ -1989,6 +1989,9 @@ struct drm_i915_cmd_table {
>>>>  #define HAS_PSR(dev)		(IS_HASWELL(dev) || IS_BROADWELL(dev))
>>>>  #define HAS_RUNTIME_PM(dev)	(IS_GEN6(dev) || IS_HASWELL(dev) || \
>>>>  				 IS_BROADWELL(dev) || IS_VALLEYVIEW(dev))
>>>> +#define HAS_DRRS(dev)		(to_i915(dev)->drrs.connector && \
>>>> +				 to_i915(dev)->drrs.connector-> \
>>>> +				 panel.downclock_mode)
>>>
>>> Didn't spot this the first time around, but HAS_* macros should be chip
>>> invariants, so no runtime-dependent pointer chasing and similar things
>>> here. Which also means you can't use this in the pipe config checks.
>>> Solution for that is to set pipe_config->has_drrs bool when you set the
>>> 2nd set of dp m/n values in the pipe_config in intel_dp_compute config.
>>>
>>> My apologies that this takes so long and that the documentation for our
>>> pipe-config infrastructure is so bad (= doesn't exist). I'm slowly working
>>> towards the goal of document all the different subsystems in our driver.
>>>
>>> Thanks, Daniel
>>>
>> Hi Daniel,
>>
>> I have addressed the review comments and resent the patches..
>>
>> http://lists.freedesktop.org/archives/intel-gfx/2014-June/047862.html
>> and
>> http://lists.freedesktop.org/archives/intel-gfx/2014-June/047863.html
>>
>> Please help review the patches..
> 
> Can you please start a new thread with both patches? They're splattered a
> bit badly over the m-l ...
> 
> Thanks, Daniel
Sure..
I will resend them now..

- Vandana
>>
>> Thanks,
>> Vandana
>>>>  
>>>>  #define INTEL_PCH_DEVICE_ID_MASK		0xff00
>>>>  #define INTEL_PCH_IBX_DEVICE_ID_TYPE		0x3b00
>>>> diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
>>>> index 5e8e711..fca5e02 100644
>>>> --- a/drivers/gpu/drm/i915/intel_display.c
>>>> +++ b/drivers/gpu/drm/i915/intel_display.c
>>>> @@ -3987,8 +3987,12 @@ static void ironlake_crtc_enable(struct drm_crtc *crtc)
>>>>  	if (intel_crtc->config.has_pch_encoder)
>>>>  		intel_prepare_shared_dpll(intel_crtc);
>>>>  
>>>> -	if (intel_crtc->config.has_dp_encoder)
>>>> +	if (intel_crtc->config.has_dp_encoder) {
>>>>  		intel_dp_set_m_n(intel_crtc);
>>>> +		if (INTEL_INFO(dev)->gen < 8 && HAS_DRRS(dev))
>>>> +			intel_dp_set_m2_n2(intel_crtc,
>>>> +				&intel_crtc->config.dp_m2_n2);
>>>> +	}
>>>>  
>>>>  	intel_set_pipe_timings(intel_crtc);
>>>>  
>>>> @@ -4097,8 +4101,12 @@ static void haswell_crtc_enable(struct drm_crtc *crtc)
>>>>  	if (intel_crtc->active)
>>>>  		return;
>>>>  
>>>> -	if (intel_crtc->config.has_dp_encoder)
>>>> +	if (intel_crtc->config.has_dp_encoder) {
>>>>  		intel_dp_set_m_n(intel_crtc);
>>>> +		if (INTEL_INFO(dev)->gen < 8 && HAS_DRRS(dev))
>>>> +			intel_dp_set_m2_n2(intel_crtc,
>>>> +					&intel_crtc->config.dp_m2_n2);
>>>> +	}
>>>>  
>>>>  	intel_set_pipe_timings(intel_crtc);
>>>>  
>>>> @@ -4614,8 +4622,12 @@ static void valleyview_crtc_enable(struct drm_crtc *crtc)
>>>>  	/* Set up the display plane register */
>>>>  	dspcntr = DISPPLANE_GAMMA_ENABLE;
>>>>  
>>>> -	if (intel_crtc->config.has_dp_encoder)
>>>> +	if (intel_crtc->config.has_dp_encoder) {
>>>>  		intel_dp_set_m_n(intel_crtc);
>>>> +		if (INTEL_INFO(dev)->gen < 8 && HAS_DRRS(dev))
>>>> +			intel_dp_set_m2_n2(intel_crtc,
>>>> +					&intel_crtc->config.dp_m2_n2);
>>>> +	}
>>>>  
>>>>  	intel_set_pipe_timings(intel_crtc);
>>>>  
>>>> @@ -4706,8 +4718,12 @@ static void i9xx_crtc_enable(struct drm_crtc *crtc)
>>>>  	else
>>>>  		dspcntr |= DISPPLANE_SEL_PIPE_B;
>>>>  
>>>> -	if (intel_crtc->config.has_dp_encoder)
>>>> +	if (intel_crtc->config.has_dp_encoder) {
>>>>  		intel_dp_set_m_n(intel_crtc);
>>>> +		if (INTEL_INFO(dev)->gen < 8 && HAS_DRRS(dev))
>>>> +			intel_dp_set_m2_n2(intel_crtc,
>>>> +					&intel_crtc->config.dp_m2_n2);
>>>> +	}
>>>>  
>>>>  	intel_set_pipe_timings(intel_crtc);
>>>>  
>>>> @@ -5494,6 +5510,18 @@ static void intel_dp_set_m_n(struct intel_crtc *crtc)
>>>>  		intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
>>>>  }
>>>>  
>>>> +void intel_dp_set_m2_n2(struct intel_crtc *crtc, struct intel_link_m_n *m_n)
>>>> +{
>>>> +	struct drm_device *dev = crtc->base.dev;
>>>> +	struct drm_i915_private *dev_priv = dev->dev_private;
>>>> +	enum transcoder transcoder = crtc->config.cpu_transcoder;
>>>> +
>>>> +	I915_WRITE(PIPE_DATA_M2(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
>>>> +	I915_WRITE(PIPE_DATA_N2(transcoder), m_n->gmch_n);
>>>> +	I915_WRITE(PIPE_LINK_M2(transcoder), m_n->link_m);
>>>> +	I915_WRITE(PIPE_LINK_N2(transcoder), m_n->link_n);
>>>> +}
>>>> +
>>>>  static void vlv_update_pll(struct intel_crtc *crtc)
>>>>  {
>>>>  	u32 dpll, dpll_md;
>>>> diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
>>>> index 912e9c4..3394615 100644
>>>> --- a/drivers/gpu/drm/i915/intel_dp.c
>>>> +++ b/drivers/gpu/drm/i915/intel_dp.c
>>>> @@ -780,20 +780,6 @@ intel_dp_set_clock(struct intel_encoder *encoder,
>>>>  	}
>>>>  }
>>>>  
>>>> -static void
>>>> -intel_dp_set_m2_n2(struct intel_crtc *crtc, struct intel_link_m_n *m_n)
>>>> -{
>>>> -	struct drm_device *dev = crtc->base.dev;
>>>> -	struct drm_i915_private *dev_priv = dev->dev_private;
>>>> -	enum transcoder transcoder = crtc->config.cpu_transcoder;
>>>> -
>>>> -	I915_WRITE(PIPE_DATA_M2(transcoder),
>>>> -		TU_SIZE(m_n->tu) | m_n->gmch_m);
>>>> -	I915_WRITE(PIPE_DATA_N2(transcoder), m_n->gmch_n);
>>>> -	I915_WRITE(PIPE_LINK_M2(transcoder), m_n->link_m);
>>>> -	I915_WRITE(PIPE_LINK_N2(transcoder), m_n->link_n);
>>>> -}
>>>> -
>>>>  bool
>>>>  intel_dp_compute_config(struct intel_encoder *encoder,
>>>>  			struct intel_crtc_config *pipe_config)
>>>> diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h
>>>> index ab5962b..cbdb71e 100644
>>>> --- a/drivers/gpu/drm/i915/intel_drv.h
>>>> +++ b/drivers/gpu/drm/i915/intel_drv.h
>>>> @@ -811,6 +811,7 @@ void intel_mode_from_pipe_config(struct drm_display_mode *mode,
>>>>  				 struct intel_crtc_config *pipe_config);
>>>>  int intel_format_to_fourcc(int format);
>>>>  void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc);
>>>> +void intel_dp_set_m2_n2(struct intel_crtc *crtc, struct intel_link_m_n *m_n);
>>>>  
>>>>  
>>>>  /* intel_dp.c */
>>>> -- 
>>>> 1.9.3
>>>>
>>>
>>
> 

      reply	other threads:[~2014-07-07  9:07 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-21 11:10 [PATCH 1/2] drm/i915: Set M2_N2 registers during mode set Vandana Kannan
2014-05-21 11:10 ` [PATCH 2/2] drm/i915: State readout and cross-checking for dp_m2_n2 Vandana Kannan
2014-05-21 12:33   ` Daniel Vetter
2014-05-22  5:50     ` Vandana Kannan
2014-06-18 14:17 ` [PATCH v2 1/2] drm/i915: Set M2_N2 registers during mode set Vandana Kannan
2014-06-18 15:52   ` Daniel Vetter
2014-06-23 10:53     ` [PATCH v3 " Vandana Kannan
2014-07-01  5:09     ` [PATCH v2 " Vandana Kannan
2014-07-07  8:41       ` Daniel Vetter
2014-07-07  9:06         ` Vandana Kannan [this message]

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=53BA6332.5050509@intel.com \
    --to=vandana.kannan@intel.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=daniel@ffwll.ch \
    --cc=intel-gfx@lists.freedesktop.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox