Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Souza, Jose" <jose.souza@intel.com>
To: "intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>,
	"Deak, Imre" <imre.deak@intel.com>
Cc: "pmenzel@molgen.mpg.de" <pmenzel@molgen.mpg.de>,
	"stable@vger.kernel.org" <stable@vger.kernel.org>
Subject: Re: [Intel-gfx] [PATCH] drm/i915/tgl+: Make sure TypeC FIA is powered up when initializing it
Date: Mon, 8 Feb 2021 15:51:44 +0000	[thread overview]
Message-ID: <d48ea10f1079e42de97ec4d752a8b203d00ba087.camel@intel.com> (raw)
In-Reply-To: <20210208154303.6839-1-imre.deak@intel.com>

On Mon, 2021-02-08 at 17:43 +0200, Imre Deak wrote:
> The TypeC FIA can be powered down if the TC-COLD power state is allowed,
> so block the TC-COLD state when initializing the FIA.
> 
> Note that this isn't needed on ICL where the FIA is never modular and
> which has no generic way to block TC-COLD (except for platforms with a
> legacy TypeC port and on those too only via these legacy ports, not via
> a DP-alt/TBT port).


Reviewed-by: José Roberto de Souza <jose.souza@intel.com>

> 
> Cc: <stable@vger.kernel.org> # v5.10+
> Cc: José Roberto de Souza <jose.souza@intel.com>
> Reported-by: Paul Menzel <pmenzel@molgen.mpg.de>
> Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/3027
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_tc.c | 67 ++++++++++++++-----------
>  1 file changed, 37 insertions(+), 30 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_tc.c b/drivers/gpu/drm/i915/display/intel_tc.c
> index 27dc2dad6809c..2cefc13535a0f 100644
> --- a/drivers/gpu/drm/i915/display/intel_tc.c
> +++ b/drivers/gpu/drm/i915/display/intel_tc.c
> @@ -23,36 +23,6 @@ static const char *tc_port_mode_name(enum tc_port_mode mode)
>  	return names[mode];
>  }
>  
> 
> 
> 
> -static void
> -tc_port_load_fia_params(struct drm_i915_private *i915,
> -			struct intel_digital_port *dig_port)
> -{
> -	enum port port = dig_port->base.port;
> -	enum tc_port tc_port = intel_port_to_tc(i915, port);
> -	u32 modular_fia;
> -
> -	if (INTEL_INFO(i915)->display.has_modular_fia) {
> -		modular_fia = intel_uncore_read(&i915->uncore,
> -						PORT_TX_DFLEXDPSP(FIA1));
> -		drm_WARN_ON(&i915->drm, modular_fia == 0xffffffff);
> -		modular_fia &= MODULAR_FIA_MASK;
> -	} else {
> -		modular_fia = 0;
> -	}
> -
> -	/*
> -	 * Each Modular FIA instance houses 2 TC ports. In SOC that has more
> -	 * than two TC ports, there are multiple instances of Modular FIA.
> -	 */
> -	if (modular_fia) {
> -		dig_port->tc_phy_fia = tc_port / 2;
> -		dig_port->tc_phy_fia_idx = tc_port % 2;
> -	} else {
> -		dig_port->tc_phy_fia = FIA1;
> -		dig_port->tc_phy_fia_idx = tc_port;
> -	}
> -}
> -
>  static enum intel_display_power_domain
>  tc_cold_get_power_domain(struct intel_digital_port *dig_port)
>  {
> @@ -646,6 +616,43 @@ void intel_tc_port_put_link(struct intel_digital_port *dig_port)
>  	mutex_unlock(&dig_port->tc_lock);
>  }
>  
> 
> 
> 
> +static bool
> +tc_has_modular_fia(struct drm_i915_private *i915, struct intel_digital_port *dig_port)
> +{
> +	intel_wakeref_t wakeref;
> +	u32 val;
> +
> +	if (!INTEL_INFO(i915)->display.has_modular_fia)
> +		return false;
> +
> +	wakeref = tc_cold_block(dig_port);
> +	val = intel_uncore_read(&i915->uncore, PORT_TX_DFLEXDPSP(FIA1));
> +	tc_cold_unblock(dig_port, wakeref);
> +
> +	drm_WARN_ON(&i915->drm, val == 0xffffffff);
> +
> +	return val & MODULAR_FIA_MASK;
> +}
> +
> +static void
> +tc_port_load_fia_params(struct drm_i915_private *i915, struct intel_digital_port *dig_port)
> +{
> +	enum port port = dig_port->base.port;
> +	enum tc_port tc_port = intel_port_to_tc(i915, port);
> +
> +	/*
> +	 * Each Modular FIA instance houses 2 TC ports. In SOC that has more
> +	 * than two TC ports, there are multiple instances of Modular FIA.
> +	 */
> +	if (tc_has_modular_fia(i915, dig_port)) {
> +		dig_port->tc_phy_fia = tc_port / 2;
> +		dig_port->tc_phy_fia_idx = tc_port % 2;
> +	} else {
> +		dig_port->tc_phy_fia = FIA1;
> +		dig_port->tc_phy_fia_idx = tc_port;
> +	}
> +}
> +
>  void intel_tc_port_init(struct intel_digital_port *dig_port, bool is_legacy)
>  {
>  	struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev);

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2021-02-08 15:51 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-08 15:43 [Intel-gfx] [PATCH] drm/i915/tgl+: Make sure TypeC FIA is powered up when initializing it Imre Deak
2021-02-08 15:51 ` Souza, Jose [this message]
2021-02-08 19:00 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2021-02-08 22:43 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-02-09 12:31   ` Imre Deak
2021-02-09 17:37     ` Vudum, Lakshminarayana
2021-02-09 17:29 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork

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=d48ea10f1079e42de97ec4d752a8b203d00ba087.camel@intel.com \
    --to=jose.souza@intel.com \
    --cc=imre.deak@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=pmenzel@molgen.mpg.de \
    --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