Commit 94ca719e authored by Ville Syrjälä's avatar Ville Syrjälä Committed by Daniel Vetter

drm/i915: Unconfuse DP link rate array names

To keep things clear rename the intel_dp->supported_rates[] to
intel_dp->sink_rates[], and rename the supported_rates[] name we used
elsewhere for the intersection of source and sink rates to
common_rates[].

Cc: Sonika Jindal <sonika.jindal@intel.com>
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: default avatarSonika Jindal <sonika.jindal@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 0336400e
...@@ -1135,9 +1135,9 @@ hsw_dp_set_ddi_pll_sel(struct intel_crtc_state *pipe_config, int link_bw) ...@@ -1135,9 +1135,9 @@ hsw_dp_set_ddi_pll_sel(struct intel_crtc_state *pipe_config, int link_bw)
static int static int
intel_dp_sink_rates(struct intel_dp *intel_dp, const int **sink_rates) intel_dp_sink_rates(struct intel_dp *intel_dp, const int **sink_rates)
{ {
if (intel_dp->num_supported_rates) { if (intel_dp->num_sink_rates) {
*sink_rates = intel_dp->supported_rates; *sink_rates = intel_dp->sink_rates;
return intel_dp->num_supported_rates; return intel_dp->num_sink_rates;
} }
*sink_rates = default_rates; *sink_rates = default_rates;
...@@ -1203,7 +1203,7 @@ intel_dp_set_clock(struct intel_encoder *encoder, ...@@ -1203,7 +1203,7 @@ intel_dp_set_clock(struct intel_encoder *encoder,
static int intersect_rates(const int *source_rates, int source_len, static int intersect_rates(const int *source_rates, int source_len,
const int *sink_rates, int sink_len, const int *sink_rates, int sink_len,
int *supported_rates) int *common_rates)
{ {
int i = 0, j = 0, k = 0; int i = 0, j = 0, k = 0;
...@@ -1211,7 +1211,7 @@ static int intersect_rates(const int *source_rates, int source_len, ...@@ -1211,7 +1211,7 @@ static int intersect_rates(const int *source_rates, int source_len,
if (source_rates[i] == sink_rates[j]) { if (source_rates[i] == sink_rates[j]) {
if (WARN_ON(k >= DP_MAX_SUPPORTED_RATES)) if (WARN_ON(k >= DP_MAX_SUPPORTED_RATES))
return k; return k;
supported_rates[k] = source_rates[i]; common_rates[k] = source_rates[i];
++k; ++k;
++i; ++i;
++j; ++j;
...@@ -1224,8 +1224,8 @@ static int intersect_rates(const int *source_rates, int source_len, ...@@ -1224,8 +1224,8 @@ static int intersect_rates(const int *source_rates, int source_len,
return k; return k;
} }
static int intel_supported_rates(struct intel_dp *intel_dp, static int intel_dp_common_rates(struct intel_dp *intel_dp,
int *supported_rates) int *common_rates)
{ {
struct drm_device *dev = intel_dp_to_dev(intel_dp); struct drm_device *dev = intel_dp_to_dev(intel_dp);
const int *source_rates, *sink_rates; const int *source_rates, *sink_rates;
...@@ -1236,7 +1236,7 @@ static int intel_supported_rates(struct intel_dp *intel_dp, ...@@ -1236,7 +1236,7 @@ static int intel_supported_rates(struct intel_dp *intel_dp,
return intersect_rates(source_rates, source_len, return intersect_rates(source_rates, source_len,
sink_rates, sink_len, sink_rates, sink_len,
supported_rates); common_rates);
} }
static void snprintf_int_array(char *str, size_t len, static void snprintf_int_array(char *str, size_t len,
...@@ -1259,8 +1259,8 @@ static void intel_dp_print_rates(struct intel_dp *intel_dp) ...@@ -1259,8 +1259,8 @@ static void intel_dp_print_rates(struct intel_dp *intel_dp)
{ {
struct drm_device *dev = intel_dp_to_dev(intel_dp); struct drm_device *dev = intel_dp_to_dev(intel_dp);
const int *source_rates, *sink_rates; const int *source_rates, *sink_rates;
int source_len, sink_len, supported_len; int source_len, sink_len, common_len;
int supported_rates[DP_MAX_SUPPORTED_RATES]; int common_rates[DP_MAX_SUPPORTED_RATES];
char str[128]; /* FIXME: too big for stack? */ char str[128]; /* FIXME: too big for stack? */
if ((drm_debug & DRM_UT_KMS) == 0) if ((drm_debug & DRM_UT_KMS) == 0)
...@@ -1274,9 +1274,9 @@ static void intel_dp_print_rates(struct intel_dp *intel_dp) ...@@ -1274,9 +1274,9 @@ static void intel_dp_print_rates(struct intel_dp *intel_dp)
snprintf_int_array(str, sizeof(str), sink_rates, sink_len); snprintf_int_array(str, sizeof(str), sink_rates, sink_len);
DRM_DEBUG_KMS("sink rates: %s\n", str); DRM_DEBUG_KMS("sink rates: %s\n", str);
supported_len = intel_supported_rates(intel_dp, supported_rates); common_len = intel_dp_common_rates(intel_dp, common_rates);
snprintf_int_array(str, sizeof(str), supported_rates, supported_len); snprintf_int_array(str, sizeof(str), common_rates, common_len);
DRM_DEBUG_KMS("supported rates: %s\n", str); DRM_DEBUG_KMS("common rates: %s\n", str);
} }
static int rate_to_index(int find, const int *rates) static int rate_to_index(int find, const int *rates)
...@@ -1296,7 +1296,7 @@ intel_dp_max_link_rate(struct intel_dp *intel_dp) ...@@ -1296,7 +1296,7 @@ intel_dp_max_link_rate(struct intel_dp *intel_dp)
int rates[DP_MAX_SUPPORTED_RATES] = {}; int rates[DP_MAX_SUPPORTED_RATES] = {};
int len; int len;
len = intel_supported_rates(intel_dp, rates); len = intel_dp_common_rates(intel_dp, rates);
if (WARN_ON(len <= 0)) if (WARN_ON(len <= 0))
return 162000; return 162000;
...@@ -1305,7 +1305,7 @@ intel_dp_max_link_rate(struct intel_dp *intel_dp) ...@@ -1305,7 +1305,7 @@ intel_dp_max_link_rate(struct intel_dp *intel_dp)
int intel_dp_rate_select(struct intel_dp *intel_dp, int rate) int intel_dp_rate_select(struct intel_dp *intel_dp, int rate)
{ {
return rate_to_index(rate, intel_dp->supported_rates); return rate_to_index(rate, intel_dp->sink_rates);
} }
bool bool
...@@ -1327,15 +1327,15 @@ intel_dp_compute_config(struct intel_encoder *encoder, ...@@ -1327,15 +1327,15 @@ intel_dp_compute_config(struct intel_encoder *encoder,
int max_clock; int max_clock;
int bpp, mode_rate; int bpp, mode_rate;
int link_avail, link_clock; int link_avail, link_clock;
int supported_rates[DP_MAX_SUPPORTED_RATES] = {}; int common_rates[DP_MAX_SUPPORTED_RATES] = {};
int supported_len; int common_len;
supported_len = intel_supported_rates(intel_dp, supported_rates); common_len = intel_dp_common_rates(intel_dp, common_rates);
/* No common link rates between source and sink */ /* No common link rates between source and sink */
WARN_ON(supported_len <= 0); WARN_ON(common_len <= 0);
max_clock = supported_len - 1; max_clock = common_len - 1;
if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && port != PORT_A) if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && port != PORT_A)
pipe_config->has_pch_encoder = true; pipe_config->has_pch_encoder = true;
...@@ -1360,7 +1360,7 @@ intel_dp_compute_config(struct intel_encoder *encoder, ...@@ -1360,7 +1360,7 @@ intel_dp_compute_config(struct intel_encoder *encoder,
DRM_DEBUG_KMS("DP link computation with max lane count %i " DRM_DEBUG_KMS("DP link computation with max lane count %i "
"max bw %d pixel clock %iKHz\n", "max bw %d pixel clock %iKHz\n",
max_lane_count, supported_rates[max_clock], max_lane_count, common_rates[max_clock],
adjusted_mode->crtc_clock); adjusted_mode->crtc_clock);
/* Walk through all bpp values. Luckily they're all nicely spaced with 2 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
...@@ -1393,7 +1393,7 @@ intel_dp_compute_config(struct intel_encoder *encoder, ...@@ -1393,7 +1393,7 @@ intel_dp_compute_config(struct intel_encoder *encoder,
lane_count <= max_lane_count; lane_count <= max_lane_count;
lane_count <<= 1) { lane_count <<= 1) {
link_clock = supported_rates[clock]; link_clock = common_rates[clock];
link_avail = intel_dp_max_data_rate(link_clock, link_avail = intel_dp_max_data_rate(link_clock,
lane_count); lane_count);
...@@ -1424,18 +1424,18 @@ intel_dp_compute_config(struct intel_encoder *encoder, ...@@ -1424,18 +1424,18 @@ intel_dp_compute_config(struct intel_encoder *encoder,
intel_dp->lane_count = lane_count; intel_dp->lane_count = lane_count;
if (intel_dp->num_supported_rates) { if (intel_dp->num_sink_rates) {
intel_dp->link_bw = 0; intel_dp->link_bw = 0;
intel_dp->rate_select = intel_dp->rate_select =
intel_dp_rate_select(intel_dp, supported_rates[clock]); intel_dp_rate_select(intel_dp, common_rates[clock]);
} else { } else {
intel_dp->link_bw = intel_dp->link_bw =
drm_dp_link_rate_to_bw_code(supported_rates[clock]); drm_dp_link_rate_to_bw_code(common_rates[clock]);
intel_dp->rate_select = 0; intel_dp->rate_select = 0;
} }
pipe_config->pipe_bpp = bpp; pipe_config->pipe_bpp = bpp;
pipe_config->port_clock = supported_rates[clock]; pipe_config->port_clock = common_rates[clock];
DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n", DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
intel_dp->link_bw, intel_dp->lane_count, intel_dp->link_bw, intel_dp->lane_count,
...@@ -1458,7 +1458,7 @@ intel_dp_compute_config(struct intel_encoder *encoder, ...@@ -1458,7 +1458,7 @@ intel_dp_compute_config(struct intel_encoder *encoder,
} }
if (IS_SKYLAKE(dev) && is_edp(intel_dp)) if (IS_SKYLAKE(dev) && is_edp(intel_dp))
skl_edp_set_pll_config(pipe_config, supported_rates[clock]); skl_edp_set_pll_config(pipe_config, common_rates[clock]);
else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
hsw_dp_set_ddi_pll_sel(pipe_config, intel_dp->link_bw); hsw_dp_set_ddi_pll_sel(pipe_config, intel_dp->link_bw);
else else
...@@ -3545,7 +3545,7 @@ intel_dp_start_link_train(struct intel_dp *intel_dp) ...@@ -3545,7 +3545,7 @@ intel_dp_start_link_train(struct intel_dp *intel_dp)
if (drm_dp_enhanced_frame_cap(intel_dp->dpcd)) if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN; link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2); drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
if (intel_dp->num_supported_rates) if (intel_dp->num_sink_rates)
drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_RATE_SET, drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_RATE_SET,
&intel_dp->rate_select, 1); &intel_dp->rate_select, 1);
...@@ -3797,23 +3797,23 @@ intel_dp_get_dpcd(struct intel_dp *intel_dp) ...@@ -3797,23 +3797,23 @@ intel_dp_get_dpcd(struct intel_dp *intel_dp)
(intel_dp->dpcd[DP_EDP_CONFIGURATION_CAP] & DP_DPCD_DISPLAY_CONTROL_CAPABLE) && (intel_dp->dpcd[DP_EDP_CONFIGURATION_CAP] & DP_DPCD_DISPLAY_CONTROL_CAPABLE) &&
(intel_dp_dpcd_read_wake(&intel_dp->aux, DP_EDP_DPCD_REV, &rev, 1) == 1) && (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_EDP_DPCD_REV, &rev, 1) == 1) &&
(rev >= 0x03)) { /* eDp v1.4 or higher */ (rev >= 0x03)) { /* eDp v1.4 or higher */
__le16 supported_rates[DP_MAX_SUPPORTED_RATES]; __le16 sink_rates[DP_MAX_SUPPORTED_RATES];
int i; int i;
intel_dp_dpcd_read_wake(&intel_dp->aux, intel_dp_dpcd_read_wake(&intel_dp->aux,
DP_SUPPORTED_LINK_RATES, DP_SUPPORTED_LINK_RATES,
supported_rates, sink_rates,
sizeof(supported_rates)); sizeof(sink_rates));
for (i = 0; i < ARRAY_SIZE(supported_rates); i++) { for (i = 0; i < ARRAY_SIZE(sink_rates); i++) {
int val = le16_to_cpu(supported_rates[i]); int val = le16_to_cpu(sink_rates[i]);
if (val == 0) if (val == 0)
break; break;
intel_dp->supported_rates[i] = val * 200; intel_dp->sink_rates[i] = val * 200;
} }
intel_dp->num_supported_rates = i; intel_dp->num_sink_rates = i;
} }
intel_dp_print_rates(intel_dp); intel_dp_print_rates(intel_dp);
......
...@@ -55,7 +55,7 @@ static bool intel_dp_mst_compute_config(struct intel_encoder *encoder, ...@@ -55,7 +55,7 @@ static bool intel_dp_mst_compute_config(struct intel_encoder *encoder,
rate = intel_dp_max_link_rate(intel_dp); rate = intel_dp_max_link_rate(intel_dp);
if (intel_dp->num_supported_rates) { if (intel_dp->num_sink_rates) {
intel_dp->link_bw = 0; intel_dp->link_bw = 0;
intel_dp->rate_select = intel_dp_rate_select(intel_dp, rate); intel_dp->rate_select = intel_dp_rate_select(intel_dp, rate);
} else { } else {
......
...@@ -627,8 +627,9 @@ struct intel_dp { ...@@ -627,8 +627,9 @@ struct intel_dp {
uint8_t dpcd[DP_RECEIVER_CAP_SIZE]; uint8_t dpcd[DP_RECEIVER_CAP_SIZE];
uint8_t psr_dpcd[EDP_PSR_RECEIVER_CAP_SIZE]; uint8_t psr_dpcd[EDP_PSR_RECEIVER_CAP_SIZE];
uint8_t downstream_ports[DP_MAX_DOWNSTREAM_PORTS]; uint8_t downstream_ports[DP_MAX_DOWNSTREAM_PORTS];
uint8_t num_supported_rates; /* sink rates as reported by DP_SUPPORTED_LINK_RATES */
int supported_rates[DP_MAX_SUPPORTED_RATES]; uint8_t num_sink_rates;
int sink_rates[DP_MAX_SUPPORTED_RATES];
struct drm_dp_aux aux; struct drm_dp_aux aux;
uint8_t train_set[4]; uint8_t train_set[4];
int panel_power_up_delay; int panel_power_up_delay;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment