From: Jani Nikula <jani.nikula@linux.intel.com>
To: Gary Wang <gary.c.wang@intel.com>, intel-gfx@lists.freedesktop.org
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Subject: Re: [PATCH] drm/i915: set CDCLK if DPLL0 enabled during resuming from S3
Date: Fri, 28 Aug 2015 20:36:51 +0300 [thread overview]
Message-ID: <87lhcvmi18.fsf@intel.com> (raw)
In-Reply-To: <1440751234-12801-1-git-send-email-gary.c.wang@intel.com>
On Fri, 28 Aug 2015, Gary Wang <gary.c.wang@intel.com> wrote:
> Since BIOS RC 1.4 it would enable CDCLK PLL during BIOS S3 resume, then
> driver needs to set CDCLK to avoid display corruption if DPLL0 enabled.
>
> References: https://bugs.freedesktop.org/show_bug.cgi?id=91697
> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Reviewed-by: Damien Lespiau <damien.lespiau@intel.com>
> Reviewed-by: Cooper Chiou <cooper.chiou@intel.com>
> Reviewed-by: Wei Shun Chang <wei.shun.chang@intel.com>
> Tested-by: Gary Wang <gary.c.wang@intel.com>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> Cc: Gavin Hindman <gavin.hindman@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Xiong Y Zhang <xiong.y.zhang@intel.com>
> Signed-off-by: Gary Wang <gary.c.wang@intel.com>
Pushed to drm-intel-next-fixes, with the comment fixed per Damien's
comment. Also fixed the accidental mode change on the file; you can
avoid errors like this by running checkpatch. Thanks for the patch and
review.
BR,
Jani.
> ---
> drivers/gpu/drm/i915/intel_display.c | 13 +++++--------
> 1 file changed, 5 insertions(+), 8 deletions(-)
> mode change 100644 => 100755 drivers/gpu/drm/i915/intel_display.c
>
> diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> old mode 100644
> new mode 100755
> index f604ce1..617d1d8
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -5707,16 +5707,13 @@ void skl_init_cdclk(struct drm_i915_private *dev_priv)
> /* enable PG1 and Misc I/O */
> intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
>
> - /* DPLL0 already enabed !? */
> - if (I915_READ(LCPLL1_CTL) & LCPLL_PLL_ENABLE) {
> - DRM_DEBUG_DRIVER("DPLL0 already running\n");
> - return;
> + /* DPLL0 not enabed !? */
> + if (!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_ENABLE)) {
> + /* enable DPLL0 */
> + required_vco = skl_cdclk_get_vco(dev_priv->skl_boot_cdclk);
> + skl_dpll0_enable(dev_priv, required_vco);
> }
>
> - /* enable DPLL0 */
> - required_vco = skl_cdclk_get_vco(dev_priv->skl_boot_cdclk);
> - skl_dpll0_enable(dev_priv, required_vco);
> -
> /* set CDCLK to the frequency the BIOS chose */
> skl_set_cdclk(dev_priv, dev_priv->skl_boot_cdclk);
>
> --
> 1.9.1
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
prev parent reply other threads:[~2015-08-28 17:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-28 8:40 [PATCH] drm/i915: set CDCLK if DPLL0 enabled during resuming from S3 Gary Wang
2015-08-28 13:12 ` Damien Lespiau
2015-08-28 15:29 ` Rodrigo Vivi
2015-08-28 17:36 ` Jani Nikula [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=87lhcvmi18.fsf@intel.com \
--to=jani.nikula@linux.intel.com \
--cc=daniel.vetter@ffwll.ch \
--cc=gary.c.wang@intel.com \
--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 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.