On Wed, Aug 18, 2021 at 09:10:40PM +0300, Jani Nikula wrote:
> The MST code uses actual link rates in the limits struct, while the DP
> code in general uses indexes to the ->common_rates[] array. Fix the
> confusion by using actual link rate values everywhere. This is a better
> abstraction than some obscure index.
> 
> Rename the struct members while at it to ensure all the places are
> covered.
> 
> Signed-off-by: Jani Nikula <jani.nik...@intel.com>

Reviewed-by: Ville Syrjälä <ville.syrj...@linux.intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_dp.c     | 30 ++++++++++++---------
>  drivers/gpu/drm/i915/display/intel_dp.h     |  2 +-
>  drivers/gpu/drm/i915/display/intel_dp_mst.c |  6 ++---
>  3 files changed, 21 insertions(+), 17 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c 
> b/drivers/gpu/drm/i915/display/intel_dp.c
> index 75d4ebc66941..d273b3848785 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -1044,7 +1044,8 @@ intel_dp_adjust_compliance_config(struct intel_dp 
> *intel_dp,
>                                                   intel_dp->num_common_rates,
>                                                   
> intel_dp->compliance.test_link_rate);
>                       if (index >= 0)
> -                             limits->min_clock = limits->max_clock = index;
> +                             limits->min_rate = limits->max_rate =
> +                                     intel_dp->compliance.test_link_rate;
>                       limits->min_lane_count = limits->max_lane_count =
>                               intel_dp->compliance.test_lane_count;
>               }
> @@ -1058,8 +1059,8 @@ intel_dp_compute_link_config_wide(struct intel_dp 
> *intel_dp,
>                                 const struct link_config_limits *limits)
>  {
>       struct drm_display_mode *adjusted_mode = &pipe_config->hw.adjusted_mode;
> -     int bpp, clock, lane_count;
> -     int mode_rate, link_clock, link_avail;
> +     int bpp, i, lane_count;
> +     int mode_rate, link_rate, link_avail;
>  
>       for (bpp = limits->max_bpp; bpp >= limits->min_bpp; bpp -= 2 * 3) {
>               int output_bpp = 
> intel_dp_output_bpp(pipe_config->output_format, bpp);
> @@ -1067,18 +1068,22 @@ intel_dp_compute_link_config_wide(struct intel_dp 
> *intel_dp,
>               mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
>                                                  output_bpp);
>  
> -             for (clock = limits->min_clock; clock <= limits->max_clock; 
> clock++) {
> +             for (i = 0; i < intel_dp->num_common_rates; i++) {
> +                     link_rate = intel_dp->common_rates[i];
> +                     if (link_rate < limits->min_rate ||
> +                         link_rate > limits->max_rate)
> +                             continue;
> +
>                       for (lane_count = limits->min_lane_count;
>                            lane_count <= limits->max_lane_count;
>                            lane_count <<= 1) {
> -                             link_clock = intel_dp->common_rates[clock];
> -                             link_avail = intel_dp_max_data_rate(link_clock,
> +                             link_avail = intel_dp_max_data_rate(link_rate,
>                                                                   lane_count);
>  
>                               if (mode_rate <= link_avail) {
>                                       pipe_config->lane_count = lane_count;
>                                       pipe_config->pipe_bpp = bpp;
> -                                     pipe_config->port_clock = link_clock;
> +                                     pipe_config->port_clock = link_rate;
>  
>                                       return 0;
>                               }
> @@ -1212,7 +1217,7 @@ static int intel_dp_dsc_compute_config(struct intel_dp 
> *intel_dp,
>        * with DSC enabled for the requested mode.
>        */
>       pipe_config->pipe_bpp = pipe_bpp;
> -     pipe_config->port_clock = intel_dp->common_rates[limits->max_clock];
> +     pipe_config->port_clock = limits->max_rate;
>       pipe_config->lane_count = limits->max_lane_count;
>  
>       if (intel_dp_is_edp(intel_dp)) {
> @@ -1321,8 +1326,8 @@ intel_dp_compute_link_config(struct intel_encoder 
> *encoder,
>       /* No common link rates between source and sink */
>       drm_WARN_ON(encoder->base.dev, common_len <= 0);
>  
> -     limits.min_clock = 0;
> -     limits.max_clock = common_len - 1;
> +     limits.min_rate = intel_dp->common_rates[0];
> +     limits.max_rate = intel_dp->common_rates[common_len - 1];
>  
>       limits.min_lane_count = 1;
>       limits.max_lane_count = intel_dp_max_lane_count(intel_dp);
> @@ -1340,15 +1345,14 @@ intel_dp_compute_link_config(struct intel_encoder 
> *encoder,
>                * values correspond to the native resolution of the panel.
>                */
>               limits.min_lane_count = limits.max_lane_count;
> -             limits.min_clock = limits.max_clock;
> +             limits.min_rate = limits.max_rate;
>       }
>  
>       intel_dp_adjust_compliance_config(intel_dp, pipe_config, &limits);
>  
>       drm_dbg_kms(&i915->drm, "DP link computation with max lane count %i "
>                   "max rate %d max bpp %d pixel clock %iKHz\n",
> -                 limits.max_lane_count,
> -                 intel_dp->common_rates[limits.max_clock],
> +                 limits.max_lane_count, limits.max_rate,
>                   limits.max_bpp, adjusted_mode->crtc_clock);
>  
>       if ((adjusted_mode->crtc_clock > i915->max_dotclk_freq ||
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.h 
> b/drivers/gpu/drm/i915/display/intel_dp.h
> index 680631b5b437..1345d588fc6d 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.h
> +++ b/drivers/gpu/drm/i915/display/intel_dp.h
> @@ -26,7 +26,7 @@ struct intel_dp;
>  struct intel_encoder;
>  
>  struct link_config_limits {
> -     int min_clock, max_clock;
> +     int min_rate, max_rate;
>       int min_lane_count, max_lane_count;
>       int min_bpp, max_bpp;
>  };
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c 
> b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index 9859c0334ebc..d104441344c0 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -61,7 +61,7 @@ static int intel_dp_mst_compute_link_config(struct 
> intel_encoder *encoder,
>       int bpp, slots = -EINVAL;
>  
>       crtc_state->lane_count = limits->max_lane_count;
> -     crtc_state->port_clock = limits->max_clock;
> +     crtc_state->port_clock = limits->max_rate;
>  
>       for (bpp = limits->max_bpp; bpp >= limits->min_bpp; bpp -= 2 * 3) {
>               crtc_state->pipe_bpp = bpp;
> @@ -131,8 +131,8 @@ static int intel_dp_mst_compute_config(struct 
> intel_encoder *encoder,
>        * for MST we always configure max link bw - the spec doesn't
>        * seem to suggest we should do otherwise.
>        */
> -     limits.min_clock =
> -     limits.max_clock = intel_dp_max_link_rate(intel_dp);
> +     limits.min_rate =
> +     limits.max_rate = intel_dp_max_link_rate(intel_dp);
>  
>       limits.min_lane_count =
>       limits.max_lane_count = intel_dp_max_lane_count(intel_dp);
> -- 
> 2.20.1

-- 
Ville Syrjälä
Intel

Reply via email to