Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Hogander, Jouni" <jouni.hogander@intel.com>
To: "intel-xe@lists.freedesktop.org" <intel-xe@lists.freedesktop.org>,
	"intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>,
	"Deak, Imre" <imre.deak@intel.com>
Subject: Re: [PATCH v2 6/7] drm/i915/dp_mst: Recompute all MST link CRTCs if DSC gets enabled on the link
Date: Thu, 16 Oct 2025 17:04:46 +0000	[thread overview]
Message-ID: <c04fcdb63906c5207359d6b0bbb74e0b4e7ae336.camel@intel.com> (raw)
In-Reply-To: <20251015161934.262108-7-imre.deak@intel.com>

On Wed, 2025-10-15 at 19:19 +0300, Imre Deak wrote:
> The state of all the CRTCs on an MST link must be recomputed, if DSC
> gets enabled on any of the CRTCs on the link. For instance an MST
> docking station's Panel Replay capability may depend on whether DSC
> is
> enabled on any of the dock's streams (aka CRTCs). To assist the Panel
> Replay state computation for a CRTC based on the above, track in the
> CRTC state if DSC is enabled on any CRTC on an MST link.
> 
> The intel_link_bw_limits::force_fec_pipes mask is used for a reason
> similar to the above: enable FEC on all CRTCs of a non-UHBR (8b10b)
> MST
> link if DSC is enabled on any of the link's CRTCs. The FEC enabled
> state
> for a CRTC doesn't indicate if DSC is enabled on a UHBR MST link (FEC
> is
> always enabled by the HW for UHBR, hence it's not tracked by the
> intel_crtc_state::fec_enable flag for such links, where this flag is
> always false).
> 
> Based on the above, to be able to determine the DSC state on both
> non-UHBR and UHBR MST links, track the more generic DSC-enabled-on-
> link
> state (instead of the FEC-enabled-on-link state) for each CRTC in
> intel_link_bw_limits.
> 
> Signed-off-by: Imre Deak <imre.deak@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_display.c |  2 +-
>  drivers/gpu/drm/i915/display/intel_dp_mst.c  | 16 ++++++++--------
>  drivers/gpu/drm/i915/display/intel_link_bw.c | 17 +++++++++--------
>  drivers/gpu/drm/i915/display/intel_link_bw.h |  2 +-
>  4 files changed, 19 insertions(+), 18 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> b/drivers/gpu/drm/i915/display/intel_display.c
> index d5b2612d4ec25..64c0cf34b7af3 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -4601,7 +4601,7 @@ intel_modeset_pipe_config(struct
> intel_atomic_state *state,
>  	if (ret)
>  		return ret;
>  
> -	crtc_state->fec_enable = limits->force_fec_pipes & BIT(crtc-
> >pipe);
> +	crtc_state->dsc.compression_enabled_on_link = limits-
> >link_dsc_pipes & BIT(crtc->pipe);
>  	crtc_state->max_link_bpp_x16 = limits->max_bpp_x16[crtc-
> >pipe];
>  
>  	if (crtc_state->pipe_bpp > fxp_q4_to_int(crtc_state-
> >max_link_bpp_x16)) {
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index 0cbb4c3a8e22f..a845b2612a3fa 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -814,14 +814,14 @@ static u8
> get_pipes_downstream_of_mst_port(struct intel_atomic_state *state,
>  	return mask;
>  }
>  
> -static int intel_dp_mst_check_fec_change(struct intel_atomic_state
> *state,
> +static int intel_dp_mst_check_dsc_change(struct intel_atomic_state
> *state,
>  					 struct
> drm_dp_mst_topology_mgr *mst_mgr,
>  					 struct intel_link_bw_limits
> *limits)
>  {
>  	struct intel_display *display = to_intel_display(state);
>  	struct intel_crtc *crtc;
>  	u8 mst_pipe_mask;
> -	u8 fec_pipe_mask = 0;
> +	u8 dsc_pipe_mask = 0;
>  	int ret;
>  
>  	mst_pipe_mask = get_pipes_downstream_of_mst_port(state,
> mst_mgr, NULL);
> @@ -834,16 +834,16 @@ static int intel_dp_mst_check_fec_change(struct
> intel_atomic_state *state,
>  		if (drm_WARN_ON(display->drm, !crtc_state))
>  			return -EINVAL;
>  
> -		if (crtc_state->fec_enable)
> -			fec_pipe_mask |= BIT(crtc->pipe);
> +		if (intel_dsc_enabled_on_link(crtc_state))
> +			dsc_pipe_mask |= BIT(crtc->pipe);
>  	}
>  
> -	if (!fec_pipe_mask || mst_pipe_mask == fec_pipe_mask)
> +	if (!dsc_pipe_mask || mst_pipe_mask == dsc_pipe_mask)
>  		return 0;
>  
> -	limits->force_fec_pipes |= mst_pipe_mask;
> +	limits->link_dsc_pipes |= mst_pipe_mask;
>  
> -	ret = intel_modeset_pipes_in_mask_early(state, "MST FEC",
> +	ret = intel_modeset_pipes_in_mask_early(state, "MST DSC",
>  						mst_pipe_mask);
>  
>  	return ret ? : -EAGAIN;
> @@ -897,7 +897,7 @@ int intel_dp_mst_atomic_check_link(struct
> intel_atomic_state *state,
>  	int i;
>  
>  	for_each_new_mst_mgr_in_state(&state->base, mgr, mst_state,
> i) {
> -		ret = intel_dp_mst_check_fec_change(state, mgr,
> limits);
> +		ret = intel_dp_mst_check_dsc_change(state, mgr,
> limits);
>  		if (ret)
>  			return ret;
>  
> diff --git a/drivers/gpu/drm/i915/display/intel_link_bw.c
> b/drivers/gpu/drm/i915/display/intel_link_bw.c
> index f52dee0ea412f..d2862de894fa7 100644
> --- a/drivers/gpu/drm/i915/display/intel_link_bw.c
> +++ b/drivers/gpu/drm/i915/display/intel_link_bw.c
> @@ -20,6 +20,7 @@
>  #include "intel_dp_tunnel.h"
>  #include "intel_fdi.h"
>  #include "intel_link_bw.h"
> +#include "intel_vdsc.h"
>  
>  static int get_forced_link_bpp_x16(struct intel_atomic_state *state,
>  				   const struct intel_crtc *crtc)
> @@ -55,7 +56,7 @@ void intel_link_bw_init_limits(struct
> intel_atomic_state *state,
>  	struct intel_display *display = to_intel_display(state);
>  	enum pipe pipe;
>  
> -	limits->force_fec_pipes = 0;
> +	limits->link_dsc_pipes = 0;
>  	limits->bpp_limit_reached_pipes = 0;
>  	for_each_pipe(display, pipe) {
>  		struct intel_crtc *crtc =
> intel_crtc_for_pipe(display, pipe);
> @@ -65,8 +66,8 @@ void intel_link_bw_init_limits(struct
> intel_atomic_state *state,
>  
>  		if (state->base.duplicated && crtc_state) {
>  			limits->max_bpp_x16[pipe] = crtc_state-
> >max_link_bpp_x16;
> -			if (crtc_state->fec_enable)
> -				limits->force_fec_pipes |=
> BIT(pipe);
> +			if (intel_dsc_enabled_on_link(crtc_state))
> +				limits->link_dsc_pipes |= BIT(pipe);
>  		} else {
>  			limits->max_bpp_x16[pipe] = INT_MAX;
>  		}
> @@ -265,10 +266,10 @@ assert_link_limit_change_valid(struct
> intel_display *display,
>  	bool bpps_changed = false;
>  	enum pipe pipe;
>  
> -	/* FEC can't be forced off after it was forced on. */
> +	/* DSC can't be disabled after it was enabled. */
>  	if (drm_WARN_ON(display->drm,
> -			(old_limits->force_fec_pipes & new_limits-
> >force_fec_pipes) !=
> -			old_limits->force_fec_pipes))
> +			(old_limits->link_dsc_pipes & new_limits-
> >link_dsc_pipes) !=
> +			old_limits->link_dsc_pipes))
>  		return false;
>  
>  	for_each_pipe(display, pipe) {
> @@ -286,8 +287,8 @@ assert_link_limit_change_valid(struct
> intel_display *display,
>  	/* At least one limit must change. */
>  	if (drm_WARN_ON(display->drm,
>  			!bpps_changed &&
> -			new_limits->force_fec_pipes ==
> -			old_limits->force_fec_pipes))
> +			new_limits->link_dsc_pipes ==
> +			old_limits->link_dsc_pipes))
>  		return false;
>  
>  	return true;
> diff --git a/drivers/gpu/drm/i915/display/intel_link_bw.h
> b/drivers/gpu/drm/i915/display/intel_link_bw.h
> index 95ab7c50c61d0..cb18e171037cf 100644
> --- a/drivers/gpu/drm/i915/display/intel_link_bw.h
> +++ b/drivers/gpu/drm/i915/display/intel_link_bw.h
> @@ -15,7 +15,7 @@ struct intel_connector;
>  struct intel_crtc_state;
>  
>  struct intel_link_bw_limits {
> -	u8 force_fec_pipes;
> +	u8 link_dsc_pipes;
>  	u8 bpp_limit_reached_pipes;
>  	/* in 1/16 bpp units */
>  	int max_bpp_x16[I915_MAX_PIPES];


  reply	other threads:[~2025-10-16 17:04 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-15 16:19 [PATCH v2 0/7] drm/i915/dp: Fix panel replay in DSC mode Imre Deak
2025-10-15 16:19 ` [PATCH v2 1/7] drm/i915/dsc: Add helper to enable the DSC configuration for a CRTC Imre Deak
2025-10-16 16:39   ` Hogander, Jouni
2025-10-15 16:19 ` [PATCH v2 2/7] drm/i915/dp: Ensure the FEC state stays disabled for UHBR links Imre Deak
2025-10-16 16:47   ` Hogander, Jouni
2025-10-15 16:19 ` [PATCH v2 3/7] drm/i915/dp: Export helper to determine if FEC on non-UHBR links is required Imre Deak
2025-10-16 16:56   ` Hogander, Jouni
2025-10-16 17:18     ` Imre Deak
2025-10-16 18:23       ` Hogander, Jouni
2025-10-16 20:00         ` Imre Deak
2025-10-17  4:00           ` Hogander, Jouni
2025-10-15 16:19 ` [PATCH v2 4/7] drm/i915/dp_mst: Reuse the DP-SST helper function to compute FEC config Imre Deak
2025-10-16 16:58   ` Hogander, Jouni
2025-10-15 16:19 ` [PATCH v2 5/7] drm/i915/dp_mst: Track DSC enabled status on the MST link Imre Deak
2025-10-16 17:01   ` Hogander, Jouni
2025-10-15 16:19 ` [PATCH v2 6/7] drm/i915/dp_mst: Recompute all MST link CRTCs if DSC gets enabled on the link Imre Deak
2025-10-16 17:04   ` Hogander, Jouni [this message]
2025-10-15 16:19 ` [PATCH v2 7/7] drm/i915/dp: Fix panel replay when DSC is enabled Imre Deak
2025-10-16  7:06   ` Hogander, Jouni
2025-10-15 20:24 ` ✗ i915.CI.BAT: failure for drm/i915/dp: Fix panel replay in DSC mode (rev2) Patchwork
2025-10-17  9:30   ` Imre Deak
2025-10-17  9:43     ` Grabski, Mateusz
2025-10-17  9:44       ` Imre Deak
2025-10-17 17:57 ` ✗ i915.CI.Full: " Patchwork
2025-10-17 18:58   ` 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=c04fcdb63906c5207359d6b0bbb74e0b4e7ae336.camel@intel.com \
    --to=jouni.hogander@intel.com \
    --cc=imre.deak@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@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