Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Imre Deak <imre.deak@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH] drm/i915: Fix the i915_dsc_fec_support debugfs file for DP MST connectors
Date: Tue, 9 Jun 2020 18:05:25 +0300	[thread overview]
Message-ID: <20200609150525.GP6112@intel.com> (raw)
In-Reply-To: <20200608181023.11503-1-imre.deak@intel.com>

On Mon, Jun 08, 2020 at 09:10:23PM +0300, Imre Deak wrote:
> DSC is not supported on DP MST streams so just return -EINVAL when
> reading/writing the i915_dsc_fec_support debugfs file for such
> connectors.
> 
> This also fixes an OOPS, caused by the encoder->digport cast, which is
> not valid for MST encoders.
> 
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
>  .../drm/i915/display/intel_display_debugfs.c  | 36 +++++++++++++++----
>  1 file changed, 29 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
> index 2b640d8ab9d2..ebca8e488d03 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
> @@ -2094,6 +2094,8 @@ static int i915_dsc_fec_support_show(struct seq_file *m, void *data)
>  	drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
>  
>  	do {
> +		struct intel_encoder *encoder;
> +
>  		try_again = false;
>  		ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
>  				       &ctx);
> @@ -2120,8 +2122,17 @@ static int i915_dsc_fec_support_show(struct seq_file *m, void *data)
>  		} else if (ret) {
>  			break;
>  		}
> -		intel_dp = intel_attached_dp(to_intel_connector(connector));
> +
> +		encoder = intel_attached_encoder(to_intel_connector(connector));
> +		/* TODO: Add DSC support for MST streams */
> +		if (encoder->type == INTEL_OUTPUT_DP_MST) {
> +			ret = -EINVAL;
> +			break;
> +		}
> +
> +		intel_dp = &enc_to_dig_port(encoder)->dp;
>  		crtc_state = to_intel_crtc_state(crtc->state);
> +
>  		seq_printf(m, "DSC_Enabled: %s\n",
>  			   yesno(crtc_state->dsc.compression_enable));
>  		seq_printf(m, "DSC_Sink_Support: %s\n",
> @@ -2147,9 +2158,8 @@ static ssize_t i915_dsc_fec_support_write(struct file *file,
>  	int ret;
>  	struct drm_connector *connector =
>  		((struct seq_file *)file->private_data)->private;
> -	struct intel_encoder *encoder = intel_attached_encoder(to_intel_connector(connector));
> -	struct drm_i915_private *i915 = to_i915(encoder->base.dev);
> -	struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
> +	struct drm_i915_private *i915 = to_i915(connector->dev);
> +	struct intel_encoder *encoder;
>  
>  	if (len == 0)
>  		return 0;
> @@ -2163,10 +2173,22 @@ static ssize_t i915_dsc_fec_support_write(struct file *file,
>  
>  	drm_dbg(&i915->drm, "Got %s for DSC Enable\n",
>  		(dsc_enable) ? "true" : "false");
> -	intel_dp->force_dsc_en = dsc_enable;
>  
> -	*offp += len;
> -	return len;
> +	drm_modeset_lock(&i915->drm.mode_config.connection_mutex, NULL);
> +
> +	encoder = intel_attached_encoder(to_intel_connector(connector));
> +	/* TODO: Add DSC support for MST streams */
> +	if (encoder->type == INTEL_OUTPUT_DP_MST) {

The attached encoder can be NULL for MST.

Can't we just not add this debugfs file for MST connectors?

> +		ret = -EINVAL;
> +	} else {
> +		enc_to_intel_dp(encoder)->force_dsc_en = dsc_enable;
> +		*offp += len;
> +		ret = len;
> +	}
> +
> +	drm_modeset_unlock(&i915->drm.mode_config.connection_mutex);
> +
> +	return ret;
>  }
>  
>  static int i915_dsc_fec_support_open(struct inode *inode,
> -- 
> 2.23.1
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

  parent reply	other threads:[~2020-06-09 15:05 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-08 18:10 [Intel-gfx] [PATCH] drm/i915: Fix the i915_dsc_fec_support debugfs file for DP MST connectors Imre Deak
2020-06-08 18:26 ` [Intel-gfx] [PATCH v2] " Imre Deak
2020-06-09 18:41   ` [Intel-gfx] [PATCH] " Imre Deak
2020-06-09 19:00     ` Manasi Navare
2020-06-08 18:58 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix the i915_dsc_fec_support debugfs file for DP MST connectors (rev2) Patchwork
2020-06-08 20:14 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2020-06-09 15:05 ` Ville Syrjälä [this message]
2020-06-09 17:40   ` [Intel-gfx] [PATCH] drm/i915: Fix the i915_dsc_fec_support debugfs file for DP MST connectors Imre Deak
2020-06-09 17:59     ` Ville Syrjälä
2020-06-09 18:08       ` Imre Deak
2020-06-09 18:56         ` Manasi Navare
2020-06-09 19:13           ` Imre Deak
2020-06-09 19:17 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix the i915_dsc_fec_support debugfs file for DP MST connectors (rev3) Patchwork
2020-06-09 20:58 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2020-06-11 10:41   ` Imre Deak

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=20200609150525.GP6112@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox