From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ville =?iso-8859-1?Q?Syrj=E4l=E4?= Subject: Re: [PATCH v2] drm/i915: vlv: W/a for hotplug/manual VGA detection Date: Wed, 8 Jan 2014 13:47:08 +0200 Message-ID: <20140108114708.GJ4800@intel.com> References: <1387313544-31536-1-git-send-email-imre.deak@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by gabe.freedesktop.org (Postfix) with ESMTP id 66FF3FA695 for ; Wed, 8 Jan 2014 03:47:12 -0800 (PST) Content-Disposition: inline In-Reply-To: <1387313544-31536-1-git-send-email-imre.deak@intel.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org To: Imre Deak Cc: intel-gfx@lists.freedesktop.org List-Id: intel-gfx@lists.freedesktop.org On Tue, Dec 17, 2013 at 10:52:24PM +0200, Imre Deak wrote: > VGA detection requires the reference clock to be on, so make sure this > is the case. > = > This fixes VGA hotplug/manual detection where all pipes are off and so > we would normally disable all clocks. > = > v2: > - Instead of disabling PSR clock gating, force the reference clock on > through the DPLL_A register. (Kin Chan S ) > = > Reported-by: Joonas Lahtinen > Signed-off-by: Imre Deak > --- > drivers/gpu/drm/i915/intel_display.c | 14 ++++++++++++-- > drivers/gpu/drm/i915/intel_pm.c | 5 +++++ > 2 files changed, 17 insertions(+), 2 deletions(-) > = > diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/= intel_display.c > index 674fd43..f3a0a7e 100644 > --- a/drivers/gpu/drm/i915/intel_display.c > +++ b/drivers/gpu/drm/i915/intel_display.c > @@ -1507,9 +1507,15 @@ static void vlv_disable_pll(struct drm_i915_privat= e *dev_priv, enum pipe pipe) > /* Make sure the pipe isn't still relying on us */ > assert_pipe_disabled(dev_priv, pipe); > = > - /* Leave integrated clock source enabled */ > + /* > + * Leave integrated clock source enabled for pipe B and the reference > + * clock for pipe A. The latter is needed for VGA hotplug / manual > + * detection. > + */ > if (pipe =3D=3D PIPE_B) > val =3D DPLL_INTEGRATED_CRI_CLK_VLV; > + else > + val =3D DPLL_REFA_CLK_ENABLE_VLV; > I915_WRITE(DPLL(pipe), val); > POSTING_READ(DPLL(pipe)); > } > @@ -4984,7 +4990,11 @@ static void vlv_update_pll(struct intel_crtc *crtc) > = > vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000); > = > - /* Enable DPIO clock input */ > + /* > + * Enable DPIO clock input. We should never disable the reference > + * clock for pipe A, since VGA hotplug / manual detection depends > + * on it. Set it here for state tracking. > + */ > dpll =3D DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV | > DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV; > /* We should never disable this, set it here for state tracking */ > diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel= _pm.c > index fccd7a8..1c1de83 100644 > --- a/drivers/gpu/drm/i915/intel_pm.c > +++ b/drivers/gpu/drm/i915/intel_pm.c > @@ -4933,6 +4933,11 @@ static void valleyview_init_clock_gating(struct dr= m_device *dev) > = > I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE); > = > + /* Force the reference clock on for VGA hotplug / manual detection */ > + val =3D I915_READ(DPLL(PIPE_A)); > + val |=3D DPLL_REFA_CLK_ENABLE_VLV; > + I915_WRITE(DPLL(PIPE_A), val); > + Maybe put this part into intel_init_dpio()? I can't really comment on the rest since I have no idea why it works. > /* WaDisableEarlyCull:vlv */ > I915_WRITE(_3D_CHICKEN3, > _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL)); > -- = > 1.8.4 > = > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/intel-gfx -- = Ville Syrj=E4l=E4 Intel OTC