All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: "Pandiyan, Dhinakaran" <dhinakaran.pandiyan@intel.com>
Cc: "daniel.vetter@ffwll.ch" <daniel.vetter@ffwll.ch>,
	"Vetter, Daniel" <daniel.vetter@intel.com>,
	"intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>,
	"Vivi, Rodrigo" <rodrigo.vivi@intel.com>
Subject: Re: [PATCH 1/5] drm/i915: Enable edp psr error interrupts on hsw
Date: Thu, 22 Mar 2018 13:33:10 +0200	[thread overview]
Message-ID: <20180322113310.GH5453@intel.com> (raw)
In-Reply-To: <1521683012.19788.40.camel@dk-H97M-D3H>

On Thu, Mar 22, 2018 at 01:19:19AM +0000, Pandiyan, Dhinakaran wrote:
> 
> 
> 
> On Wed, 2018-03-21 at 21:29 +0200, Ville Syrjälä wrote:
> > On Wed, Mar 21, 2018 at 07:19:53PM +0000, Pandiyan, Dhinakaran wrote:
> > > 
> > > 
> > > 
> > > On Wed, 2018-03-21 at 20:59 +0200, Ville Syrjälä wrote:
> > > > On Tue, Mar 20, 2018 at 03:41:47PM -0700, Dhinakaran Pandiyan wrote:
> > > > > From: Daniel Vetter <daniel.vetter@ffwll.ch>
> > > > > 
> > > > > The definitions for the error register should be valid on bdw/skl too,
> > > > > but there we haven't even enabled DE_MISC handling yet.
> > > > > 
> > > > > Somewhat confusing the the moved register offset on bdw is only for
> > > > > the _CTL/_AUX register, and that _IIR/IMR stayed where they have been
> > > > > on bdw.
> > > > > 
> > > > > v2: Fixes from Ville.
> > > > > 
> > > > > v3: From DK
> > > > >  * Rebased on drm-tip
> > > > >  * Removed BDW IIR bit definition, looks like an unintentional change that
> > > > > should be in the following patch.
> > > > > 
> > > > > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > > > > Cc: Daniel Vetter <daniel.vetter@intel.com>
> > > > > Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
> > > > > Signed-off-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
> > > > > ---
> > > > >  drivers/gpu/drm/i915/i915_irq.c  | 34 ++++++++++++++++++++++++++++++++++
> > > > >  drivers/gpu/drm/i915/i915_reg.h  |  8 ++++++++
> > > > >  drivers/gpu/drm/i915/intel_psr.c |  3 ++-
> > > > >  3 files changed, 44 insertions(+), 1 deletion(-)
> > > > > 
> > > > > diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
> > > > > index 44eef355e12c..e94a835b7515 100644
> > > > > --- a/drivers/gpu/drm/i915/i915_irq.c
> > > > > +++ b/drivers/gpu/drm/i915/i915_irq.c
> > > > > @@ -2392,6 +2392,26 @@ static void ilk_display_irq_handler(struct drm_i915_private *dev_priv,
> > > > >  		ironlake_rps_change_irq_handler(dev_priv);
> > > > >  }
> > > > >  
> > > > > +static void hsw_edp_psr_irq_handler(struct drm_i915_private *dev_priv)
> > > > > +{
> > > > > +	u32 edp_psr_iir = I915_READ(EDP_PSR_IIR);
> > > > > +
> > > > > +	if (edp_psr_iir & EDP_PSR_ERROR)
> > > > > +		DRM_DEBUG_KMS("PSR error\n");
> > > > > +
> > > > > +	if (edp_psr_iir & EDP_PSR_PRE_ENTRY) {
> > > > > +		DRM_DEBUG_KMS("PSR prepare entry in 2 vblanks\n");
> > > > 
> > > > I doubt we want to have the entry/exit interrupts generate all this
> > > > noise in dmesg all the time. We should probably only enable the
> > > > interrupts for testing. The error interrupt I suppose we want always,
> > > > might even want DRM_ERROR on it.
> > > 
> > > I implement debugfs control in Patch 4/5, agreed on DRM_ERROR.
> > 
> > Right. It's a bit hard to read this with stuff getting
> > added/remove/moved more or less randomly.
> > 
> > > 
> > > > 
> > > > > +		I915_WRITE(EDP_PSR_IMR, EDP_PSR_PRE_ENTRY);
> > > > > +	}
> > > > > +
> > > > > +	if (edp_psr_iir & EDP_PSR_POST_EXIT) {
> > > > > +		DRM_DEBUG_KMS("PSR exit completed\n");
> > > > > +		I915_WRITE(EDP_PSR_IMR, 0);
> > > > > +	}
> > > > > +
> > > > > +	I915_WRITE(EDP_PSR_IIR, edp_psr_iir);
> > > > > +}
> > > > > +
> > > > >  static void ivb_display_irq_handler(struct drm_i915_private *dev_priv,
> > > > >  				    u32 de_iir)
> > > > >  {
> > > > > @@ -2404,6 +2424,9 @@ static void ivb_display_irq_handler(struct drm_i915_private *dev_priv,
> > > > >  	if (de_iir & DE_ERR_INT_IVB)
> > > > >  		ivb_err_int_handler(dev_priv);
> > > > >  
> > > > > +	if (de_iir & DE_EDP_PSR_INT_HSW)
> > > > > +		hsw_edp_psr_irq_handler(dev_priv);
> > > > > +
> > > > >  	if (de_iir & DE_AUX_CHANNEL_A_IVB)
> > > > >  		dp_aux_irq_handler(dev_priv);
> > > > >  
> > > > > @@ -3252,6 +3275,11 @@ static void ironlake_irq_reset(struct drm_device *dev)
> > > > >  	if (IS_GEN7(dev_priv))
> > > > >  		I915_WRITE(GEN7_ERR_INT, 0xffffffff);
> > > > >  
> > > > > +	if (IS_HASWELL(dev_priv)) {
> > > > > +		I915_WRITE(EDP_PSR_IMR, 0xffffffff);
> > > > > +		I915_WRITE(EDP_PSR_IIR, 0xffffffff);
> > > > > +	}
> > > > > +
> > > > >  	gen5_gt_irq_reset(dev_priv);
> > > > >  
> > > > >  	ibx_irq_reset(dev_priv);
> > > > > @@ -3663,6 +3691,12 @@ static int ironlake_irq_postinstall(struct drm_device *dev)
> > > > >  			      DE_DP_A_HOTPLUG);
> > > > >  	}
> > > > >  
> > > > > +	if (IS_HASWELL(dev_priv)) {
> > > > > +		gen3_assert_iir_is_zero(dev_priv, EDP_PSR_IIR);
> > > > > +		I915_WRITE(EDP_PSR_IMR, 0);
> > > > > +		display_mask |= DE_EDP_PSR_INT_HSW;
> > > > > +	}
> > > > > +
> > > > >  	dev_priv->irq_mask = ~display_mask;
> > > > >  
> > > > >  	ibx_irq_pre_postinstall(dev);
> > > > > diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
> > > > > index 1e000f3004cb..3447f03eac3d 100644
> > > > > --- a/drivers/gpu/drm/i915/i915_reg.h
> > > > > +++ b/drivers/gpu/drm/i915/i915_reg.h
> > > > > @@ -3828,6 +3828,13 @@ enum {
> > > > >  #define   EDP_PSR_TP1_TIME_0us			(3<<4)
> > > > >  #define   EDP_PSR_IDLE_FRAME_SHIFT		0
> > > > >  
> > > > > +/* Bspec claims those aren't shifted but stay at 0x64800 */
> > > > > +#define EDP_PSR_IMR				_MMIO(0x64834)
> > > > > +#define EDP_PSR_IIR				_MMIO(0x64838)
> > > > > +#define   EDP_PSR_ERROR				(1<<2)
> > > > > +#define   EDP_PSR_POST_EXIT			(1<<1)
> > > > > +#define   EDP_PSR_PRE_ENTRY			(1<<0)
> > > > > +
> > > > >  #define EDP_PSR_AUX_CTL				_MMIO(dev_priv->psr_mmio_base + 0x10)
> > > > >  #define EDP_PSR_AUX_DATA(i)			_MMIO(dev_priv->psr_mmio_base + 0x14 + (i) * 4) /* 5 registers */
> > > > >  
> > > > > @@ -6628,6 +6635,7 @@ enum {
> > > > >  #define DE_PCH_EVENT_IVB		(1<<28)
> > > > >  #define DE_DP_A_HOTPLUG_IVB		(1<<27)
> > > > >  #define DE_AUX_CHANNEL_A_IVB		(1<<26)
> > > > > +#define DE_EDP_PSR_INT_HSW		(1<<19)
> > > > >  #define DE_SPRITEC_FLIP_DONE_IVB	(1<<14)
> > > > >  #define DE_PLANEC_FLIP_DONE_IVB		(1<<13)
> > > > >  #define DE_PIPEC_VBLANK_IVB		(1<<10)
> > > > > diff --git a/drivers/gpu/drm/i915/intel_psr.c b/drivers/gpu/drm/i915/intel_psr.c
> > > > > index 317cb4a12693..27dfd507a4f7 100644
> > > > > --- a/drivers/gpu/drm/i915/intel_psr.c
> > > > > +++ b/drivers/gpu/drm/i915/intel_psr.c
> > > > > @@ -613,7 +613,8 @@ static void hsw_psr_enable_source(struct intel_dp *intel_dp,
> > > > >  		I915_WRITE(EDP_PSR_DEBUG,
> > > > >  			   EDP_PSR_DEBUG_MASK_MEMUP |
> > > > >  			   EDP_PSR_DEBUG_MASK_HPD |
> > > > > -			   EDP_PSR_DEBUG_MASK_LPSP);
> > > > > +			   EDP_PSR_DEBUG_MASK_LPSP |
> > > > > +			   EDP_PSR_DEBUG_MASK_REG_WRITE);
> > > > 
> > > > I don't think Daniel's original had this actually. I think I added it
> > > > because I didn't want mmio to mess up my testing.
> > > 
> > > It gets removed in a separate patch (2/5). So I assumed Daniel added it
> > > and you removed it.
> > 
> > Hmm. That could indeed be the case.
> > 
> > > 
> > > 
> > > > In general I'd really
> > > > prefer to mask everything so that we can be sure that the PSR exits
> > > > happen when we want/need them and not randomly due to other activity.
> > > > 
> > > > If any random mmio can cause a PSR exit it's going to hard to prove that
> > > > we're doing the correct thing. Also seems pretty wasteful if eg. GT
> > > > interrupts can cause PSR exits for no good reason. I never tested to see
> > > > which registers cause the PSR exit. That would be good to know.
> > > > 
> > > 
> > > The same bit on SKL+ is called "Mask Display Reg Write", so it either
> > > means
> > > 1) HSW and BDW exit only on display register writes and the bspec
> > > description is ambiguous or 
> > 
> > The problem is that eg. some of the interrupt registers live in the
> > display block. Hence any interrupt could potentially cause the PSR exit.
> > As could any register read we do for debug purpose etc. So at least I
> > would feel safer if PSR can be made to work reliably with more or less
> > everything masked.
> > 
> The idea is to move towards hardware triggered exits since that's what
> is necessary for PSR2 selective updates[1]. More importantly, there are
> places in the driver where we can't manually exit PSR without
> circumventing locking issues - from vblank enable for instance. Relying
> on hardware triggered exits in the modeset/commit path keeps it
> consistent IMO.

What's the difference between the hardware behaviour between "write any
random mmio to trigger an exit" vs. "write some specific register to
trigger an exit". I presume there is a way to trigger the exit
explicitly?

-- 
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2018-03-22 11:33 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-20 22:41 [PATCH 0/5] PSR interrupts Dhinakaran Pandiyan
2018-03-20 22:41 ` [PATCH 1/5] drm/i915: Enable edp psr error interrupts on hsw Dhinakaran Pandiyan
2018-03-21 18:59   ` Ville Syrjälä
2018-03-21 19:19     ` Pandiyan, Dhinakaran
2018-03-21 19:29       ` Ville Syrjälä
2018-03-22  1:19         ` Pandiyan, Dhinakaran
2018-03-22 11:33           ` Ville Syrjälä [this message]
2018-03-22 20:39             ` Rodrigo Vivi
2018-03-23  0:01             ` Pandiyan, Dhinakaran
2018-03-20 22:41 ` [PATCH 2/5] drm/i915: Drop reg_write from the PSR mask Dhinakaran Pandiyan
2018-03-20 22:41 ` [PATCH 3/5] drm/i915: Enable edp psr error interrupts on bdw+ Dhinakaran Pandiyan
2018-03-20 22:41 ` [PATCH 4/5] drm/i915/psr: Control PSR interrupts via debugfs Dhinakaran Pandiyan
2018-03-21 19:45   ` Ville Syrjälä
2018-03-22  0:59     ` Pandiyan, Dhinakaran
2018-03-20 22:41 ` [PATCH 5/5] drm/i915/psr: Timestamps for PSR entry and exit interrupts Dhinakaran Pandiyan
2018-03-21 19:48   ` Ville Syrjälä
2018-03-22  1:05     ` Pandiyan, Dhinakaran
2018-03-22  9:21       ` Ville Syrjälä
2018-03-22 20:59         ` Pandiyan, Dhinakaran
2018-03-22 21:08   ` Chris Wilson
2018-03-22 23:55     ` Pandiyan, Dhinakaran
2018-03-21  8:02 ` ✗ Fi.CI.CHECKPATCH: warning for PSR interrupts Patchwork
2018-03-21  8:03 ` ✗ Fi.CI.SPARSE: " Patchwork
2018-03-21  8:16 ` ✓ Fi.CI.BAT: success " Patchwork
2018-03-21  9:13 ` ✓ Fi.CI.IGT: " Patchwork

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=20180322113310.GH5453@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=daniel.vetter@intel.com \
    --cc=dhinakaran.pandiyan@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=rodrigo.vivi@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.