From: Imre Deak <imre.deak@intel.com>
To: Patrik Jakobsson <patrik.jakobsson@linux.intel.com>
Cc: Daniel Vetter <daniel.vetter@intel.com>,
intel-gfx@lists.freedesktop.org,
Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
Subject: Re: [SKL-DMC-BUGFIX 3/5] drm/i915/skl: Do not disable cdclk PLL if csr firmware is present.
Date: Mon, 12 Oct 2015 18:11:05 +0300 [thread overview]
Message-ID: <1444662665.13337.77.camel@intel.com> (raw)
In-Reply-To: <20151012144640.GA8717@patrik-desktop.isw.intel.com>
On ma, 2015-10-12 at 16:46 +0200, Patrik Jakobsson wrote:
> On Mon, Oct 12, 2015 at 05:07:13PM +0300, Imre Deak wrote:
> > On ma, 2015-10-12 at 16:37 +0300, Imre Deak wrote:
> > > On ma, 2015-08-03 at 21:55 +0530, Animesh Manna wrote:
> > > > While display engine entering into low power state no need to disable
> > > > cdclk pll as CSR firmware of dmc will take care. If pll is already
> > > > enabled firmware execution sequence will be blocked. This is one
> > > > of the criteria for dmc to work properly.
> > > >
> > > > Cc: Daniel Vetter <daniel.vetter@intel.com>
> > > > Cc: Damien Lespiau <damien.lespiau@intel.com>
> > > > Cc: Imre Deak <imre.deak@intel.com>
> > > > Cc: Sunil Kamath <sunil.kamath@intel.com>
> > > > Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> > > > Signed-off-bt: Vathsala Nagaraju <vathsala.nagaraju@intel.com>
> > > > Signed-off-by: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
> > > > ---
> > > > drivers/gpu/drm/i915/intel_display.c | 11 +++++++----
> > > > 1 file changed, 7 insertions(+), 4 deletions(-)
> > > >
> > > > diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> > > > index af0bcfe..ef2ef4d 100644
> > > > --- a/drivers/gpu/drm/i915/intel_display.c
> > > > +++ b/drivers/gpu/drm/i915/intel_display.c
> > > > @@ -5675,10 +5675,13 @@ void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
> > > > if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
> > > > DRM_ERROR("DBuf power disable timeout\n");
> > >
> > > My understanding is that DBUF_CTL is also handled by the firmware and so
> > > we shouldn't need to disable it either manually. I guess that could be
> > > addressed as a follow-up.
> > >
> > > >
> > > > - /* disable DPLL0 */
> > > > - I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
> > > > - if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
> > > > - DRM_ERROR("Couldn't disable DPLL0\n");
> > > > + if (dev_priv->csr.dmc_payload) {
> > > > + /* disable DPLL0 */
> > > > + I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) &
> > > > + ~LCPLL_PLL_ENABLE);
> > > > + if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
> > > > + DRM_ERROR("Couldn't disable DPLL0\n");
> > > > + }
> > > >
> > > > intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
> >
> > Not introduced in this patch, but the above put looks incorrect. We get
> > here on the runtime suspend path, where all RPM and hence display power
> > domain references should be dropped already. So not sure how this can
> > even work atm. This is for someone to look into as a follow-up.
>
> Hmm, I thought that was fixed already. This seems to be the last comment on
> Paulos attempt at fixing it:
>
> http://lists.freedesktop.org/archives/intel-gfx/2015-August/073122.html
Yes, that would solve this issue. One note about it is that we only want
to manually toggle PW1 and Misc IO if DC6 is disabled (via a module
option for example). And if so, toggling of PW1 and Misc IO would be
part of the bigger
"Sequence for Software to Allow/Disallow Package C9-C10".
> > > > }
> > >
> > >
> > > _______________________________________________
> > > Intel-gfx mailing list
> > > Intel-gfx@lists.freedesktop.org
> > > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
> >
> >
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-10-12 15:11 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-03 16:25 [SKL-DMC-BUGFIX 0/5] SKL PC10 entry fixes Animesh Manna
2015-08-03 16:25 ` [SKL-DMC-BUGFIX 1/5] drm/i915/gen9: Removed byte swapping for csr firmware Animesh Manna
2015-08-04 3:46 ` Nagaraju, Vathsala
2015-08-04 5:55 ` Animesh Manna
2015-08-05 9:01 ` Daniel Vetter
2015-08-06 9:20 ` Animesh Manna
2015-09-11 15:29 ` Mika Kuoppala
2015-09-14 7:35 ` [REGRESSION] " Daniel Vetter
2015-09-17 9:36 ` Mika Kuoppala
2015-08-04 11:24 ` [SKL-DMC-BUGFIX 1/5] " Sunil Kamath
2015-08-03 16:25 ` [SKL-DMC-BUGFIX 2/5] drm/i915/skl: Making DC6 entry is the last call in suspend flow Animesh Manna
2015-08-04 11:25 ` Sunil Kamath
2015-08-05 9:07 ` Daniel Vetter
2015-08-05 9:05 ` Daniel Vetter
2015-08-06 9:17 ` Animesh Manna
2015-08-06 10:50 ` [PATCH " Animesh Manna
2015-08-06 13:18 ` [SKL-DMC-BUGFIX " Daniel Vetter
2015-08-06 14:38 ` Animesh Manna
2015-08-06 15:38 ` Daniel Vetter
2015-10-12 13:32 ` Imre Deak
2015-10-12 15:43 ` [PATCH] drm/i915: Disable DC6 for now Rodrigo Vivi
2015-10-13 1:24 ` Hindman, Gavin
2015-08-03 16:25 ` [SKL-DMC-BUGFIX 3/5] drm/i915/skl: Do not disable cdclk PLL if csr firmware is present Animesh Manna
2015-08-04 11:26 ` Sunil Kamath
2015-08-05 9:12 ` Daniel Vetter
2015-08-06 9:03 ` Animesh Manna
2015-08-06 11:23 ` Animesh Manna
2015-10-12 13:37 ` Imre Deak
2015-10-12 14:07 ` Imre Deak
2015-10-12 14:46 ` Patrik Jakobsson
2015-10-12 15:11 ` Imre Deak [this message]
2015-08-03 16:25 ` [SKL-DMC-BUGFIX 4/5] drm/i915/skl: Block disable call for pw1 if dmc " Animesh Manna
2015-08-04 11:27 ` Sunil Kamath
2015-08-05 9:14 ` Daniel Vetter
2015-08-06 8:57 ` Animesh Manna
2015-10-12 13:45 ` Imre Deak
2015-08-03 16:25 ` [SKL-DMC-BUGFIX 5/5] drm/i915/skl: Removed csr firmware load in resume path Animesh Manna
2015-08-04 11:20 ` Sunil Kamath
2015-08-04 11:33 ` Animesh Manna
2015-08-06 9:49 ` Animesh Manna
2015-10-12 14:02 ` Imre Deak
2015-08-03 18:47 ` [SKL-DMC-BUGFIX 0/5] SKL PC10 entry fixes Zanoni, Paulo R
2015-08-04 11:31 ` Sunil Kamath
2015-08-04 13:14 ` Zanoni, Paulo R
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=1444662665.13337.77.camel@intel.com \
--to=imre.deak@intel.com \
--cc=daniel.vetter@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=patrik.jakobsson@linux.intel.com \
--cc=rajneesh.bhardwaj@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