From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Jani Nikula <jani.nikula@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 2/2] drm/i915: Adjust sideband locking a bit for CHV/VLV
Date: Wed, 27 May 2015 11:05:56 +0300 [thread overview]
Message-ID: <20150527080556.GJ18908@intel.com> (raw)
In-Reply-To: <87siaih2gy.fsf@intel.com>
On Wed, May 27, 2015 at 11:03:09AM +0300, Jani Nikula wrote:
> On Tue, 26 May 2015, ville.syrjala@linux.intel.com wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > chv_enable_pll() doesn't need to hold sb_lock for the entire duration of
> > the function. Drop the lock as soon as possible.
> >
> > valleyview_set_cdclk() does a potential lock+unlock+lock+unlock cycle
> > with sb_lock. Move Grab the lock a few lines earlier so we can make do
>
> Move Grab?
s/Move //
>
> Anyway, both patches are
>
> Reviewed-by: Jani Nikula <jani.nikula@intel.com>
>
>
> > with a single lock+unlock cycle always.
> >
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> > drivers/gpu/drm/i915/intel_display.c | 10 +++++-----
> > 1 file changed, 5 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> > index 72b6529..067b1de 100644
> > --- a/drivers/gpu/drm/i915/intel_display.c
> > +++ b/drivers/gpu/drm/i915/intel_display.c
> > @@ -1668,6 +1668,8 @@ static void chv_enable_pll(struct intel_crtc *crtc,
> > tmp |= DPIO_DCLKP_EN;
> > vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
> >
> > + mutex_unlock(&dev_priv->sb_lock);
> > +
> > /*
> > * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
> > */
> > @@ -1683,8 +1685,6 @@ static void chv_enable_pll(struct intel_crtc *crtc,
> > /* not sure when this should be written */
> > I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
> > POSTING_READ(DPLL_MD(pipe));
> > -
> > - mutex_unlock(&dev_priv->sb_lock);
> > }
> >
> > static int intel_num_dvo_pipes(struct drm_device *dev)
> > @@ -5780,12 +5780,13 @@ static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
> > }
> > mutex_unlock(&dev_priv->rps.hw_lock);
> >
> > + mutex_lock(&dev_priv->sb_lock);
> > +
> > if (cdclk == 400000) {
> > u32 divider;
> >
> > divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
> >
> > - mutex_lock(&dev_priv->sb_lock);
> > /* adjust cdclk divider */
> > val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
> > val &= ~DISPLAY_FREQUENCY_VALUES;
> > @@ -5796,10 +5797,8 @@ static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
> > DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
> > 50))
> > DRM_ERROR("timed out waiting for CDclk change\n");
> > - mutex_unlock(&dev_priv->sb_lock);
> > }
> >
> > - mutex_lock(&dev_priv->sb_lock);
> > /* adjust self-refresh exit latency value */
> > val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
> > val &= ~0x7f;
> > @@ -5813,6 +5812,7 @@ static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
> > else
> > val |= 3000 / 250; /* 3.0 usec */
> > vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
> > +
> > mutex_unlock(&dev_priv->sb_lock);
> >
> > vlv_update_cdclk(dev);
> > --
> > 2.3.6
> >
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>
> --
> Jani Nikula, Intel Open Source Technology Center
--
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-05-27 8:06 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-26 17:42 [PATCH 1/2] drm/i915: s/dpio_lock/sb_lock/ ville.syrjala
2015-05-26 17:42 ` [PATCH 2/2] drm/i915: Adjust sideband locking a bit for CHV/VLV ville.syrjala
2015-05-27 8:03 ` Jani Nikula
2015-05-27 8:05 ` Ville Syrjälä [this message]
2015-05-27 12:11 ` Daniel Vetter
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=20150527080556.GJ18908@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox