From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Imre Deak <imre.deak@intel.com>
Cc: intel-gfx@lists.freedesktop.org, Andrija <akijo97@gmail.com>,
stable@vger.kernel.org
Subject: Re: [Intel-gfx] [PATCH] drm/i915: Fix PCH reference clock for FDI on HSW/BDW
Date: Fri, 25 Oct 2019 20:24:29 +0300 [thread overview]
Message-ID: <20191025172429.GH1208@intel.com> (raw)
In-Reply-To: <20191023124450.GA11288@ideak-desk.fi.intel.com>
On Wed, Oct 23, 2019 at 03:44:50PM +0300, Imre Deak wrote:
> On Tue, Oct 22, 2019 at 09:56:43PM +0300, Ville Syrjala wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > The change to skip the PCH reference initialization during fastboot
> > did end up breaking FDI. To fix that let's try to do the PCH reference
> > init whenever we're disabling a DPLL that was using said reference
> > previously.
> >
> > Cc: stable@vger.kernel.org
> > Tested-by: Andrija <akijo97@gmail.com>
> > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=112084
> > Fixes: b16c7ed95caf ("drm/i915: Do not touch the PCH SSC reference if a PLL is using it")
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Reviewed-by: Imre Deak <imre.deak@intel.com>
CI had some bsd fails which are not relevant, so pushed to dinq.
Thanks for the review.
>
> > ---
> > drivers/gpu/drm/i915/display/intel_display.c | 11 ++++++-----
> > drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 15 +++++++++++++++
> > drivers/gpu/drm/i915/i915_drv.h | 2 ++
> > 3 files changed, 23 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> > index 236fdf122e47..da76f794a965 100644
> > --- a/drivers/gpu/drm/i915/display/intel_display.c
> > +++ b/drivers/gpu/drm/i915/display/intel_display.c
> > @@ -9359,7 +9359,6 @@ static bool wrpll_uses_pch_ssc(struct drm_i915_private *dev_priv,
> > static void lpt_init_pch_refclk(struct drm_i915_private *dev_priv)
> > {
> > struct intel_encoder *encoder;
> > - bool pch_ssc_in_use = false;
> > bool has_fdi = false;
> >
> > for_each_intel_encoder(&dev_priv->drm, encoder) {
> > @@ -9387,22 +9386,24 @@ static void lpt_init_pch_refclk(struct drm_i915_private *dev_priv)
> > * clock hierarchy. That would also allow us to do
> > * clock bending finally.
> > */
> > + dev_priv->pch_ssc_use = 0;
> > +
> > if (spll_uses_pch_ssc(dev_priv)) {
> > DRM_DEBUG_KMS("SPLL using PCH SSC\n");
> > - pch_ssc_in_use = true;
> > + dev_priv->pch_ssc_use |= BIT(DPLL_ID_SPLL);
> > }
> >
> > if (wrpll_uses_pch_ssc(dev_priv, DPLL_ID_WRPLL1)) {
> > DRM_DEBUG_KMS("WRPLL1 using PCH SSC\n");
> > - pch_ssc_in_use = true;
> > + dev_priv->pch_ssc_use |= BIT(DPLL_ID_WRPLL1);
> > }
> >
> > if (wrpll_uses_pch_ssc(dev_priv, DPLL_ID_WRPLL2)) {
> > DRM_DEBUG_KMS("WRPLL2 using PCH SSC\n");
> > - pch_ssc_in_use = true;
> > + dev_priv->pch_ssc_use |= BIT(DPLL_ID_WRPLL2);
> > }
> >
> > - if (pch_ssc_in_use)
> > + if (dev_priv->pch_ssc_use)
> > return;
> >
> > if (has_fdi) {
> > diff --git a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > index ec10fa7d3c69..3ce0a023eee0 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > @@ -526,16 +526,31 @@ static void hsw_ddi_wrpll_disable(struct drm_i915_private *dev_priv,
> > val = I915_READ(WRPLL_CTL(id));
> > I915_WRITE(WRPLL_CTL(id), val & ~WRPLL_PLL_ENABLE);
> > POSTING_READ(WRPLL_CTL(id));
> > +
> > + /*
> > + * Try to set up the PCH reference clock once all DPLLs
> > + * that depend on it have been shut down.
> > + */
> > + if (dev_priv->pch_ssc_use & BIT(id))
> > + intel_init_pch_refclk(dev_priv);
> > }
> >
> > static void hsw_ddi_spll_disable(struct drm_i915_private *dev_priv,
> > struct intel_shared_dpll *pll)
> > {
> > + enum intel_dpll_id id = pll->info->id;
> > u32 val;
> >
> > val = I915_READ(SPLL_CTL);
> > I915_WRITE(SPLL_CTL, val & ~SPLL_PLL_ENABLE);
> > POSTING_READ(SPLL_CTL);
> > +
> > + /*
> > + * Try to set up the PCH reference clock once all DPLLs
> > + * that depend on it have been shut down.
> > + */
> > + if (dev_priv->pch_ssc_use & BIT(id))
> > + intel_init_pch_refclk(dev_priv);
> > }
> >
> > static bool hsw_ddi_wrpll_get_hw_state(struct drm_i915_private *dev_priv,
> > diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
> > index 8882c0908c3b..5332825e0ce4 100644
> > --- a/drivers/gpu/drm/i915/i915_drv.h
> > +++ b/drivers/gpu/drm/i915/i915_drv.h
> > @@ -1348,6 +1348,8 @@ struct drm_i915_private {
> > } contexts;
> > } gem;
> >
> > + u8 pch_ssc_use;
> > +
> > /* For i915gm/i945gm vblank irq workaround */
> > u8 vblank_enabled;
> >
> > --
> > 2.21.0
> >
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Ville Syrjälä
Intel
prev parent reply other threads:[~2019-10-25 17:24 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-22 18:56 [PATCH] drm/i915: Fix PCH reference clock for FDI on HSW/BDW Ville Syrjala
2019-10-23 12:44 ` [Intel-gfx] " Imre Deak
2019-10-25 17:24 ` Ville Syrjälä [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=20191025172429.GH1208@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=akijo97@gmail.com \
--cc=imre.deak@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=stable@vger.kernel.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