From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Imre Deak <imre.deak@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 2/3] drm/i915/bxt: Wait for PHY1 GRC done if PHY0 was already enabled
Date: Thu, 21 Apr 2016 15:08:29 +0300 [thread overview]
Message-ID: <20160421120829.GK4329@intel.com> (raw)
In-Reply-To: <1461174366-16758-3-git-send-email-imre.deak@intel.com>
On Wed, Apr 20, 2016 at 08:46:05PM +0300, Imre Deak wrote:
> If we skipped PHY0 initialization because it was already enabled by
> BIOS, we still have to wait for the PHY1 GRC calibration as that is
> done as part of the PHY0 init.
>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
> drivers/gpu/drm/i915/intel_ddi.c | 21 ++++++++++++++++++---
> 1 file changed, 18 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_ddi.c b/drivers/gpu/drm/i915/intel_ddi.c
> index 943aa93..e68914a 100644
> --- a/drivers/gpu/drm/i915/intel_ddi.c
> +++ b/drivers/gpu/drm/i915/intel_ddi.c
> @@ -1760,6 +1760,13 @@ static u32 broxton_get_grc(struct drm_i915_private *dev_priv, enum dpio_phy phy)
> return (val & GRC_CODE_MASK) >> GRC_CODE_SHIFT;
> }
>
> +static void broxton_phy_wait_grc_done(struct drm_i915_private *dev_priv,
> + enum dpio_phy phy)
> +{
> + if (wait_for(I915_READ(BXT_PORT_REF_DW3(phy)) & GRC_DONE, 10))
> + DRM_ERROR("timeout waiting for PHY1 GRC\n");
You pass the phy as a parameter, so supposedly the debug message should
reflect that parameter.
> +}
> +
> static void broxton_phy_init(struct drm_i915_private *dev_priv,
> enum dpio_phy phy)
> {
> @@ -1863,9 +1870,7 @@ static void broxton_phy_init(struct drm_i915_private *dev_priv,
> * the corresponding calibrated value from PHY1, and disable
> * the automatic calibration on PHY0.
> */
> - if (wait_for(I915_READ(BXT_PORT_REF_DW3(DPIO_PHY1)) & GRC_DONE,
> - 10))
> - DRM_ERROR("timeout waiting for PHY1 GRC\n");
> + broxton_phy_wait_grc_done(dev_priv, DPIO_PHY1);
>
> val = dev_priv->bxt_phy_grc = broxton_get_grc(dev_priv,
> DPIO_PHY1);
> @@ -1878,6 +1883,10 @@ static void broxton_phy_init(struct drm_i915_private *dev_priv,
> val |= GRC_DIS | GRC_RDY_OVRD;
> I915_WRITE(BXT_PORT_REF_DW8(DPIO_PHY0), val);
> }
> + /*
> + * During PHY1 init delay waiting for GRC calibration to finish, since
> + * it can happen in parallel with the subsequent PHY0 init.
> + */
>
> val = I915_READ(BXT_PHY_CTL_FAMILY(phy));
> val |= COMMON_RESET_DIS;
> @@ -1889,6 +1898,12 @@ void broxton_ddi_phy_init(struct drm_i915_private *dev_priv)
> /* Enable PHY1 first since it provides Rcomp for PHY0 */
> broxton_phy_init(dev_priv, DPIO_PHY1);
> broxton_phy_init(dev_priv, DPIO_PHY0);
> +
> + /*
> + * If BIOS enabled only PHY0 and not PHY1, we skipped waiting for the
> + * PHY1 GRC calibration to finish, so wait for it here.
> + */
> + broxton_phy_wait_grc_done(dev_priv, DPIO_PHY1);
> }
>
> static void broxton_phy_uninit(struct drm_i915_private *dev_priv,
> --
> 2.5.0
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2016-04-21 12:08 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-20 17:46 [PATCH 0/3] drm/i915/bxt: Fix PHY init with partial BIOS config Imre Deak
2016-04-20 17:46 ` [PATCH 1/3] drm/i915/bxt: Use PHY0 GRC value for HW state verification Imre Deak
2016-04-20 17:46 ` [PATCH 2/3] drm/i915/bxt: Wait for PHY1 GRC done if PHY0 was already enabled Imre Deak
2016-04-21 12:08 ` Ville Syrjälä [this message]
2016-04-21 16:19 ` [PATCH v2 " Imre Deak
2016-04-21 16:43 ` Ville Syrjälä
2016-04-21 16:51 ` Imre Deak
2016-04-20 17:46 ` [PATCH 3/3] drm/i915/bxt: Force reprogramming a PHY with invalid HW state Imre Deak
2016-04-21 12:11 ` Ville Syrjälä
2016-04-21 10:57 ` ✓ Fi.CI.BAT: success for drm/i915/bxt: Fix PHY init with partial BIOS config Patchwork
2016-04-21 12:05 ` ✗ Fi.CI.BAT: failure " Patchwork
2016-04-22 13:15 ` Imre Deak
2016-04-22 7:27 ` ✗ Fi.CI.BAT: failure for drm/i915/bxt: Fix PHY init with partial BIOS config (rev2) Patchwork
2016-04-22 13:37 ` Imre Deak
2016-04-22 14:07 ` Ville Syrjälä
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=20160421120829.GK4329@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=imre.deak@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.