]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/i915/dp: Clamp the connector max_bpc request to the valid pipe bpp range
authorImre Deak <imre.deak@intel.com>
Wed, 11 Feb 2026 11:58:11 +0000 (13:58 +0200)
committerImre Deak <imre.deak@intel.com>
Thu, 12 Feb 2026 16:02:55 +0000 (18:02 +0200)
The user's request for a maximum BPC - via the max-bpc connector
property - determines the pipe BPP selected by the encoder, which is in
turn used either as the uncompressed output BPP or as the input BPP for
the DSC engine. This user-requested BPC->BPP can be outside of the
source/sink's supported valid min/max pipe BPP range and atm such an
out-of-bound request will be rejected by the encoder's state
computation.

As opposed to the above, the semantics for the max-bpc connector
property - which the user may reasonably expect - should not be to
fail the modeset in case of an out-of-bound max BPC request, but rather
to adjust the request, clamping it to the valid BPP range.

Based on the above, calculate the baseline (i.e. the non-DP specific
platform/EDID) _maximum_ pipe BPP, storing it in
intel_crtc_state::max_pipe_bpp, separately from the baseline _target_
pipe BPP (which is the lower BPP of the baseline maximum and requested
maximum BPP, stored in intel_crtc_state::pipe_bpp). This allows the
encoder state computation to use the baseline maximum pipe BPP as a hard
limit for the selected pipe BPP, while also letting it use the baseline
target pipe BPP only as a preference, clamping this target BPP to the
valid DP pipe BPP range.

v2:
- Fix typos in the commit message. (Michał)
- Clarify code comment's reference to the baseline max BPP value.
  (Ankit)

Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patch.msgid.link/20260211115811.508496-2-imre.deak@intel.com
drivers/gpu/drm/i915/display/intel_display.c
drivers/gpu/drm/i915/display/intel_display_types.h
drivers/gpu/drm/i915/display/intel_dp.c

index 721d2644cedf71630da8f9174d1710a9bd7a416e..f224c9d7e0dfad9db3eb1836b17760b964b87ed8 100644 (file)
@@ -4373,12 +4373,24 @@ compute_sink_pipe_bpp(const struct drm_connector_state *conn_state,
        struct intel_display *display = to_intel_display(crtc_state);
        struct drm_connector *connector = conn_state->connector;
        const struct drm_display_info *info = &connector->display_info;
+       int edid_bpc = info->bpc ? : 8;
        int target_pipe_bpp;
+       int max_edid_bpp;
+
+       max_edid_bpp = bpc_to_bpp(edid_bpc);
+       if (max_edid_bpp < 0)
+               return max_edid_bpp;
 
        target_pipe_bpp = bpc_to_bpp(conn_state->max_bpc);
        if (target_pipe_bpp < 0)
                return target_pipe_bpp;
 
+       /*
+        * The maximum pipe BPP is the minimum of the max platform BPP and
+        * the max EDID BPP.
+        */
+       crtc_state->max_pipe_bpp = min(crtc_state->pipe_bpp, max_edid_bpp);
+
        if (target_pipe_bpp < crtc_state->pipe_bpp) {
                drm_dbg_kms(display->drm,
                            "[CONNECTOR:%d:%s] Limiting target display pipe bpp to %d "
index 08692e06d8e9b75a49d9d41fa7671353c7d958a7..54deb3486d76e81dccdc29f9dacfb2887a3cce42 100644 (file)
@@ -1162,6 +1162,7 @@ struct intel_crtc_state {
        } dsi_pll;
 
        int max_link_bpp_x16;   /* in 1/16 bpp units */
+       int max_pipe_bpp;       /* in 1 bpp units */
        int pipe_bpp;           /* in 1 bpp units */
        int min_hblank;
        struct intel_link_m_n dp_m_n;
index 48845899298e4e3abc86e2df66a87af9403001f7..b5fe7d8ba5864e905671108900f7c26104d5e2d8 100644 (file)
@@ -1769,7 +1769,7 @@ static int intel_dp_max_bpp(struct intel_dp *intel_dp,
        struct intel_connector *connector = intel_dp->attached_connector;
        int bpp, bpc;
 
-       bpc = crtc_state->pipe_bpp / 3;
+       bpc = crtc_state->max_pipe_bpp / 3;
 
        if (intel_dp->dfp.max_bpc)
                bpc = min_t(int, bpc, intel_dp->dfp.max_bpc);
@@ -2726,7 +2726,7 @@ intel_dp_compute_config_limits(struct intel_dp *intel_dp,
                 * previously. This hack should be removed once we have the
                 * proper retry logic in place.
                 */
-               limits->pipe.max_bpp = min(crtc_state->pipe_bpp, 24);
+               limits->pipe.max_bpp = min(crtc_state->max_pipe_bpp, 24);
        } else {
                limits->pipe.max_bpp = intel_dp_max_bpp(intel_dp, crtc_state,
                                                        respect_downstream_limits);
@@ -2757,6 +2757,27 @@ intel_dp_compute_config_limits(struct intel_dp *intel_dp,
        if (dsc && !intel_dp_dsc_compute_pipe_bpp_limits(connector, limits))
                return false;
 
+       /*
+        * crtc_state->pipe_bpp is the non-DP specific baseline (platform /
+        * EDID) maximum pipe BPP limited by the max-BPC connector property
+        * request. Since by now pipe.max_bpp is <= the above baseline
+        * maximum BPP, the only remaining reason for adjusting pipe.max_bpp
+        * is the max-BPC connector property request. Adjust pipe.max_bpp to
+        * this request within the current valid pipe.min_bpp .. pipe.max_bpp
+        * range.
+        */
+       limits->pipe.max_bpp = clamp(crtc_state->pipe_bpp, limits->pipe.min_bpp,
+                                    limits->pipe.max_bpp);
+       if (dsc)
+               limits->pipe.max_bpp = align_max_sink_dsc_input_bpp(connector,
+                                                                   limits->pipe.max_bpp);
+
+       if (limits->pipe.max_bpp != crtc_state->pipe_bpp)
+               drm_dbg_kms(display->drm,
+                           "[CONNECTOR:%d:%s] Adjusting requested max pipe bpp %d -> %d\n",
+                           connector->base.base.id, connector->base.name,
+                           crtc_state->pipe_bpp, limits->pipe.max_bpp);
+
        if (is_mst || intel_dp->use_max_params) {
                /*
                 * For MST we always configure max link bw - the spec doesn't