[PATCH] drm/msm/dp: Enable support for eDP v1.4+ link rates table

Dale Whinham posted 1 patch 1 day, 1 hour ago
drivers/gpu/drm/msm/dp/dp_ctrl.c  | 57 +++++++++++++++++-----------
drivers/gpu/drm/msm/dp/dp_link.h  |  3 ++
drivers/gpu/drm/msm/dp/dp_panel.c | 79 +++++++++++++++++++++++++++++++++------
3 files changed, 107 insertions(+), 32 deletions(-)
[PATCH] drm/msm/dp: Enable support for eDP v1.4+ link rates table
Posted by Dale Whinham 1 day, 1 hour ago
The MSM DRM driver currently does not support panels which report their
supported link rates via the SUPPORTED_LINK_RATES table.

For panels which do not offer the optional eDP v1.3 fallback via
MAX_LINK_RATE, this will cause a panel probe failure (e.g. Samsung
ATNA30DW01-1 as found in Microsoft Surface Pro 11).

Detect eDP v1.4 panels and parse the SUPPORTED_LINK_RATES table when
present.

Additionally, set the rate using LINK_RATE_SET instead of LINK_BW_SET,
but only if LINK_BW_SET hasn't already been written to.

Signed-off-by: Dale Whinham <daleyo@gmail.com>
Tested-by: Jérôme de Bretagne <jerome.debretagne@gmail.com>
Tested-by: Steev Klimaszewski <threeway@gmail.com>
---
 drivers/gpu/drm/msm/dp/dp_ctrl.c  | 57 +++++++++++++++++-----------
 drivers/gpu/drm/msm/dp/dp_link.h  |  3 ++
 drivers/gpu/drm/msm/dp/dp_panel.c | 79 +++++++++++++++++++++++++++++++++------
 3 files changed, 107 insertions(+), 32 deletions(-)

diff --git a/drivers/gpu/drm/msm/dp/dp_ctrl.c b/drivers/gpu/drm/msm/dp/dp_ctrl.c
index cbcc7c2f0ffc..f00456902c10 100644
--- a/drivers/gpu/drm/msm/dp/dp_ctrl.c
+++ b/drivers/gpu/drm/msm/dp/dp_ctrl.c
@@ -175,20 +175,29 @@ static inline void msm_dp_write_link(struct msm_dp_ctrl_private *ctrl,
 static int msm_dp_aux_link_configure(struct drm_dp_aux *aux,
 					struct msm_dp_link_info *link)
 {
-	u8 values[2];
+	u8 lane_count, bw_code;
 	int err;
 
-	values[0] = drm_dp_link_rate_to_bw_code(link->rate);
-	values[1] = link->num_lanes;
+	lane_count = link->num_lanes;
 
 	if (link->capabilities & DP_LINK_CAP_ENHANCED_FRAMING)
-		values[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
+		lane_count |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
+
+	if (link->use_rate_set) {
+		DRM_DEBUG_DP("using LINK_RATE_SET: 0x%02x", link->rate_set);
+		err = drm_dp_dpcd_writeb(aux, DP_LINK_RATE_SET, link->rate_set);
+	} else {
+		bw_code = drm_dp_link_rate_to_bw_code(link->rate);
+		DRM_DEBUG_DP("using LINK_BW_SET: 0x%02x", bw_code);
+		err = drm_dp_dpcd_writeb(aux, DP_LINK_BW_SET, bw_code);
+	}
 
-	err = drm_dp_dpcd_write(aux, DP_LINK_BW_SET, values, sizeof(values));
 	if (err < 0)
 		return err;
 
-	return 0;
+	err = drm_dp_dpcd_writeb(aux, DP_LANE_COUNT_SET, lane_count);
+
+	return err;
 }
 
 /*
@@ -1474,26 +1483,32 @@ static int msm_dp_ctrl_link_train_1(struct msm_dp_ctrl_private *ctrl,
 static int msm_dp_ctrl_link_rate_down_shift(struct msm_dp_ctrl_private *ctrl)
 {
 	int ret = 0;
+	struct msm_dp_link_info *link_params = &ctrl->link->link_params;
 
-	switch (ctrl->link->link_params.rate) {
-	case 810000:
-		ctrl->link->link_params.rate = 540000;
-		break;
-	case 540000:
-		ctrl->link->link_params.rate = 270000;
-		break;
-	case 270000:
-		ctrl->link->link_params.rate = 162000;
-		break;
-	case 162000:
-	default:
-		ret = -EINVAL;
-		break;
+	if (link_params->rate_set) {
+		--link_params->rate_set;
+		link_params->rate = link_params->supported_rates[link_params->rate_set];
+	} else {
+		switch (link_params->rate) {
+		case 810000:
+			link_params->rate = 540000;
+			break;
+		case 540000:
+			link_params->rate = 270000;
+			break;
+		case 270000:
+			link_params->rate = 162000;
+			break;
+		case 162000:
+		default:
+			ret = -EINVAL;
+			break;
+		}
 	}
 
 	if (!ret) {
 		drm_dbg_dp(ctrl->drm_dev, "new rate=0x%x\n",
-				ctrl->link->link_params.rate);
+				link_params->rate);
 	}
 
 	return ret;
diff --git a/drivers/gpu/drm/msm/dp/dp_link.h b/drivers/gpu/drm/msm/dp/dp_link.h
index b1eb2de6d2a7..725e08f75574 100644
--- a/drivers/gpu/drm/msm/dp/dp_link.h
+++ b/drivers/gpu/drm/msm/dp/dp_link.h
@@ -17,6 +17,9 @@
 struct msm_dp_link_info {
 	unsigned char revision;
 	unsigned int rate;
+	unsigned int supported_rates[DP_MAX_SUPPORTED_RATES];
+	unsigned int rate_set;
+	bool use_rate_set;
 	unsigned int num_lanes;
 	unsigned long capabilities;
 };
diff --git a/drivers/gpu/drm/msm/dp/dp_panel.c b/drivers/gpu/drm/msm/dp/dp_panel.c
index ad5d55bf009d..5f9ccc48ee6c 100644
--- a/drivers/gpu/drm/msm/dp/dp_panel.c
+++ b/drivers/gpu/drm/msm/dp/dp_panel.c
@@ -13,6 +13,8 @@
 #include <drm/drm_print.h>
 
 #include <linux/io.h>
+#include <linux/types.h>
+#include <asm/byteorder.h>
 
 #define DP_INTF_CONFIG_DATABUS_WIDEN     BIT(4)
 
@@ -107,29 +109,84 @@ static int msm_dp_panel_read_dpcd(struct msm_dp_panel *msm_dp_panel)
 	drm_dbg_dp(panel->drm_dev, "max_lanes=%d max_link_rate=%d\n",
 		   link->max_dp_lanes, link->max_dp_link_rate);
 
-	link_info->rate = drm_dp_max_link_rate(dpcd);
+	max_lttpr_lanes = drm_dp_lttpr_max_lane_count(link->lttpr_common_caps);
+	max_lttpr_rate = drm_dp_lttpr_max_link_rate(link->lttpr_common_caps);
+
+	/* For eDP v1.4+, parse the SUPPORTED_LINK_RATES table */
+	if (link_info->revision >= DP_DPCD_REV_14) {
+		__le16 rates[DP_MAX_SUPPORTED_RATES];
+		u8 bw_set;
+		int i;
+
+		rc = drm_dp_dpcd_read_data(panel->aux, DP_SUPPORTED_LINK_RATES,
+					   rates, sizeof(rates));
+		if (rc)
+			return rc;
+
+		rc = drm_dp_dpcd_read_byte(panel->aux, DP_LINK_BW_SET, &bw_set);
+		if (rc)
+			return rc;
+
+		/* Find index of maximum supported link rate that does not exceed dtsi limits */
+		for (i = 0; i < ARRAY_SIZE(rates); i++) {
+			/*
+			 * The value from the DPCD multiplied by 200 gives
+			 * the link rate in kHz. Divide by 10 to convert to
+			 * symbol rate, accounting for 8b/10b encoding.
+			 */
+			u32 rate = (le16_to_cpu(rates[i]) * 200) / 10;
+
+			if (!rate)
+				break;
+
+			drm_dbg_dp(panel->drm_dev,
+				   "SUPPORTED_LINK_RATES[%d]: %d\n", i, rate);
+
+			/* Limit link rate from link-frequencies of endpoint property of dtsi */
+			if (rate > link->max_dp_link_rate)
+				break;
+
+			/* Limit link rate from LTTPR capabilities, if any */
+			if (max_lttpr_rate && rate > max_lttpr_rate)
+				break;
+
+			link_info->rate = rate;
+			link_info->supported_rates[i] = rate;
+			link_info->rate_set = i;
+		}
+
+		/* Only use LINK_RATE_SET if LINK_BW_SET hasn't already been written to */
+		if (!bw_set && link_info->rate)
+			link_info->use_rate_set = true;
+	}
+
+	/* Fall back on MAX_LINK_RATE/LINK_BW_SET (eDP v1.3) */
+	if (!link_info->rate) {
+		link_info->rate = drm_dp_max_link_rate(dpcd);
+
+		/* Limit link rate from link-frequencies of endpoint property of dtsi */
+		if (link_info->rate > link->max_dp_link_rate)
+			link_info->rate = link->max_dp_link_rate;
+
+		/* Limit link rate from LTTPR capabilities, if any */
+		if (max_lttpr_rate && max_lttpr_rate < link_info->rate)
+			link_info->rate = max_lttpr_rate;
+	}
+
 	link_info->num_lanes = drm_dp_max_lane_count(dpcd);
 
 	/* Limit data lanes from data-lanes of endpoint property of dtsi */
 	if (link_info->num_lanes > link->max_dp_lanes)
 		link_info->num_lanes = link->max_dp_lanes;
 
-	/* Limit link rate from link-frequencies of endpoint property of dtsi */
-	if (link_info->rate > link->max_dp_link_rate)
-		link_info->rate = link->max_dp_link_rate;
-
 	/* Limit data lanes from LTTPR capabilities, if any */
-	max_lttpr_lanes = drm_dp_lttpr_max_lane_count(panel->link->lttpr_common_caps);
 	if (max_lttpr_lanes && max_lttpr_lanes < link_info->num_lanes)
 		link_info->num_lanes = max_lttpr_lanes;
 
-	/* Limit link rate from LTTPR capabilities, if any */
-	max_lttpr_rate = drm_dp_lttpr_max_link_rate(panel->link->lttpr_common_caps);
-	if (max_lttpr_rate && max_lttpr_rate < link_info->rate)
-		link_info->rate = max_lttpr_rate;
-
 	drm_dbg_dp(panel->drm_dev, "version: %d.%d\n", major, minor);
 	drm_dbg_dp(panel->drm_dev, "link_rate=%d\n", link_info->rate);
+	drm_dbg_dp(panel->drm_dev, "link_rate_set=%d\n", link_info->rate_set);
+	drm_dbg_dp(panel->drm_dev, "use_rate_set=%d\n", link_info->use_rate_set);
 	drm_dbg_dp(panel->drm_dev, "lane_count=%d\n", link_info->num_lanes);
 
 	if (drm_dp_enhanced_frame_cap(dpcd))

---
base-commit: 7bc29d5fb6faff2f547323c9ee8d3a0790cd2530
change-id: 20251214-drm-msm-edp14-8f4dc65dc34a

Best regards,
-- 
Dale Whinham <daleyo@gmail.com>

Re: [PATCH] drm/msm/dp: Enable support for eDP v1.4+ link rates table
Posted by Dmitry Baryshkov 9 minutes ago
On Sun, Dec 14, 2025 at 08:48:12PM +0000, Dale Whinham wrote:
> The MSM DRM driver currently does not support panels which report their
> supported link rates via the SUPPORTED_LINK_RATES table.
> 
> For panels which do not offer the optional eDP v1.3 fallback via
> MAX_LINK_RATE, this will cause a panel probe failure (e.g. Samsung
> ATNA30DW01-1 as found in Microsoft Surface Pro 11).
> 
> Detect eDP v1.4 panels and parse the SUPPORTED_LINK_RATES table when
> present.
> 
> Additionally, set the rate using LINK_RATE_SET instead of LINK_BW_SET,
> but only if LINK_BW_SET hasn't already been written to.
> 
> Signed-off-by: Dale Whinham <daleyo@gmail.com>
> Tested-by: Jérôme de Bretagne <jerome.debretagne@gmail.com>
> Tested-by: Steev Klimaszewski <threeway@gmail.com>
> ---
>  drivers/gpu/drm/msm/dp/dp_ctrl.c  | 57 +++++++++++++++++-----------
>  drivers/gpu/drm/msm/dp/dp_link.h  |  3 ++
>  drivers/gpu/drm/msm/dp/dp_panel.c | 79 +++++++++++++++++++++++++++++++++------
>  3 files changed, 107 insertions(+), 32 deletions(-)
> 
> diff --git a/drivers/gpu/drm/msm/dp/dp_ctrl.c b/drivers/gpu/drm/msm/dp/dp_ctrl.c
> index cbcc7c2f0ffc..f00456902c10 100644
> --- a/drivers/gpu/drm/msm/dp/dp_ctrl.c
> +++ b/drivers/gpu/drm/msm/dp/dp_ctrl.c
> @@ -175,20 +175,29 @@ static inline void msm_dp_write_link(struct msm_dp_ctrl_private *ctrl,
>  static int msm_dp_aux_link_configure(struct drm_dp_aux *aux,
>  					struct msm_dp_link_info *link)
>  {
> -	u8 values[2];
> +	u8 lane_count, bw_code;
>  	int err;
>  
> -	values[0] = drm_dp_link_rate_to_bw_code(link->rate);
> -	values[1] = link->num_lanes;
> +	lane_count = link->num_lanes;
>  
>  	if (link->capabilities & DP_LINK_CAP_ENHANCED_FRAMING)
> -		values[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
> +		lane_count |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
> +
> +	if (link->use_rate_set) {
> +		DRM_DEBUG_DP("using LINK_RATE_SET: 0x%02x", link->rate_set);
> +		err = drm_dp_dpcd_writeb(aux, DP_LINK_RATE_SET, link->rate_set);
> +	} else {
> +		bw_code = drm_dp_link_rate_to_bw_code(link->rate);
> +		DRM_DEBUG_DP("using LINK_BW_SET: 0x%02x", bw_code);
> +		err = drm_dp_dpcd_writeb(aux, DP_LINK_BW_SET, bw_code);
> +	}
>  
> -	err = drm_dp_dpcd_write(aux, DP_LINK_BW_SET, values, sizeof(values));
>  	if (err < 0)
>  		return err;
>  
> -	return 0;
> +	err = drm_dp_dpcd_writeb(aux, DP_LANE_COUNT_SET, lane_count);

I'd suggest following i915 and writing DP_LANE_COUNT_SET before
DP_LINK_BW_SET.

> +
> +	return err;
>  }
>  
>  /*
> @@ -1474,26 +1483,32 @@ static int msm_dp_ctrl_link_train_1(struct msm_dp_ctrl_private *ctrl,
>  static int msm_dp_ctrl_link_rate_down_shift(struct msm_dp_ctrl_private *ctrl)
>  {
>  	int ret = 0;
> +	struct msm_dp_link_info *link_params = &ctrl->link->link_params;
>  
> -	switch (ctrl->link->link_params.rate) {
> -	case 810000:
> -		ctrl->link->link_params.rate = 540000;
> -		break;
> -	case 540000:
> -		ctrl->link->link_params.rate = 270000;
> -		break;
> -	case 270000:
> -		ctrl->link->link_params.rate = 162000;
> -		break;
> -	case 162000:
> -	default:
> -		ret = -EINVAL;
> -		break;
> +	if (link_params->rate_set) {
> +		--link_params->rate_set;
> +		link_params->rate = link_params->supported_rates[link_params->rate_set];
> +	} else {
> +		switch (link_params->rate) {
> +		case 810000:
> +			link_params->rate = 540000;
> +			break;
> +		case 540000:
> +			link_params->rate = 270000;
> +			break;
> +		case 270000:
> +			link_params->rate = 162000;
> +			break;
> +		case 162000:
> +		default:
> +			ret = -EINVAL;
> +			break;
> +		}
>  	}
>  
>  	if (!ret) {
>  		drm_dbg_dp(ctrl->drm_dev, "new rate=0x%x\n",
> -				ctrl->link->link_params.rate);
> +				link_params->rate);
>  	}
>  
>  	return ret;
> diff --git a/drivers/gpu/drm/msm/dp/dp_link.h b/drivers/gpu/drm/msm/dp/dp_link.h
> index b1eb2de6d2a7..725e08f75574 100644
> --- a/drivers/gpu/drm/msm/dp/dp_link.h
> +++ b/drivers/gpu/drm/msm/dp/dp_link.h
> @@ -17,6 +17,9 @@
>  struct msm_dp_link_info {
>  	unsigned char revision;
>  	unsigned int rate;
> +	unsigned int supported_rates[DP_MAX_SUPPORTED_RATES];
> +	unsigned int rate_set;
> +	bool use_rate_set;
>  	unsigned int num_lanes;
>  	unsigned long capabilities;
>  };
> diff --git a/drivers/gpu/drm/msm/dp/dp_panel.c b/drivers/gpu/drm/msm/dp/dp_panel.c
> index ad5d55bf009d..5f9ccc48ee6c 100644
> --- a/drivers/gpu/drm/msm/dp/dp_panel.c
> +++ b/drivers/gpu/drm/msm/dp/dp_panel.c
> @@ -13,6 +13,8 @@
>  #include <drm/drm_print.h>
>  
>  #include <linux/io.h>
> +#include <linux/types.h>
> +#include <asm/byteorder.h>
>  
>  #define DP_INTF_CONFIG_DATABUS_WIDEN     BIT(4)
>  
> @@ -107,29 +109,84 @@ static int msm_dp_panel_read_dpcd(struct msm_dp_panel *msm_dp_panel)
>  	drm_dbg_dp(panel->drm_dev, "max_lanes=%d max_link_rate=%d\n",
>  		   link->max_dp_lanes, link->max_dp_link_rate);
>  
> -	link_info->rate = drm_dp_max_link_rate(dpcd);
> +	max_lttpr_lanes = drm_dp_lttpr_max_lane_count(link->lttpr_common_caps);
> +	max_lttpr_rate = drm_dp_lttpr_max_link_rate(link->lttpr_common_caps);
> +
> +	/* For eDP v1.4+, parse the SUPPORTED_LINK_RATES table */
> +	if (link_info->revision >= DP_DPCD_REV_14) {

No, eDP has separate versioning register. DP revision != eDP revision.

> +		__le16 rates[DP_MAX_SUPPORTED_RATES];
> +		u8 bw_set;
> +		int i;
> +
> +		rc = drm_dp_dpcd_read_data(panel->aux, DP_SUPPORTED_LINK_RATES,
> +					   rates, sizeof(rates));
> +		if (rc)
> +			return rc;
> +
> +		rc = drm_dp_dpcd_read_byte(panel->aux, DP_LINK_BW_SET, &bw_set);
> +		if (rc)
> +			return rc;
> +
> +		/* Find index of maximum supported link rate that does not exceed dtsi limits */
> +		for (i = 0; i < ARRAY_SIZE(rates); i++) {
> +			/*
> +			 * The value from the DPCD multiplied by 200 gives
> +			 * the link rate in kHz. Divide by 10 to convert to
> +			 * symbol rate, accounting for 8b/10b encoding.
> +			 */
> +			u32 rate = (le16_to_cpu(rates[i]) * 200) / 10;
> +
> +			if (!rate)
> +				break;
> +
> +			drm_dbg_dp(panel->drm_dev,
> +				   "SUPPORTED_LINK_RATES[%d]: %d\n", i, rate);
> +
> +			/* Limit link rate from link-frequencies of endpoint property of dtsi */
> +			if (rate > link->max_dp_link_rate)
> +				break;
> +
> +			/* Limit link rate from LTTPR capabilities, if any */
> +			if (max_lttpr_rate && rate > max_lttpr_rate)
> +				break;
> +
> +			link_info->rate = rate;
> +			link_info->supported_rates[i] = rate;
> +			link_info->rate_set = i;
> +		}
> +
> +		/* Only use LINK_RATE_SET if LINK_BW_SET hasn't already been written to */
> +		if (!bw_set && link_info->rate)
> +			link_info->use_rate_set = true;
> +	}
> +
> +	/* Fall back on MAX_LINK_RATE/LINK_BW_SET (eDP v1.3) */
> +	if (!link_info->rate) {
> +		link_info->rate = drm_dp_max_link_rate(dpcd);
> +
> +		/* Limit link rate from link-frequencies of endpoint property of dtsi */
> +		if (link_info->rate > link->max_dp_link_rate)
> +			link_info->rate = link->max_dp_link_rate;
> +
> +		/* Limit link rate from LTTPR capabilities, if any */
> +		if (max_lttpr_rate && max_lttpr_rate < link_info->rate)
> +			link_info->rate = max_lttpr_rate;
> +	}
> +
>  	link_info->num_lanes = drm_dp_max_lane_count(dpcd);
>  
>  	/* Limit data lanes from data-lanes of endpoint property of dtsi */
>  	if (link_info->num_lanes > link->max_dp_lanes)
>  		link_info->num_lanes = link->max_dp_lanes;
>  
> -	/* Limit link rate from link-frequencies of endpoint property of dtsi */
> -	if (link_info->rate > link->max_dp_link_rate)
> -		link_info->rate = link->max_dp_link_rate;
> -
>  	/* Limit data lanes from LTTPR capabilities, if any */
> -	max_lttpr_lanes = drm_dp_lttpr_max_lane_count(panel->link->lttpr_common_caps);
>  	if (max_lttpr_lanes && max_lttpr_lanes < link_info->num_lanes)
>  		link_info->num_lanes = max_lttpr_lanes;
>  
> -	/* Limit link rate from LTTPR capabilities, if any */
> -	max_lttpr_rate = drm_dp_lttpr_max_link_rate(panel->link->lttpr_common_caps);
> -	if (max_lttpr_rate && max_lttpr_rate < link_info->rate)
> -		link_info->rate = max_lttpr_rate;
> -
>  	drm_dbg_dp(panel->drm_dev, "version: %d.%d\n", major, minor);
>  	drm_dbg_dp(panel->drm_dev, "link_rate=%d\n", link_info->rate);
> +	drm_dbg_dp(panel->drm_dev, "link_rate_set=%d\n", link_info->rate_set);
> +	drm_dbg_dp(panel->drm_dev, "use_rate_set=%d\n", link_info->use_rate_set);
>  	drm_dbg_dp(panel->drm_dev, "lane_count=%d\n", link_info->num_lanes);
>  
>  	if (drm_dp_enhanced_frame_cap(dpcd))
> 
> ---
> base-commit: 7bc29d5fb6faff2f547323c9ee8d3a0790cd2530
> change-id: 20251214-drm-msm-edp14-8f4dc65dc34a
> 
> Best regards,
> -- 
> Dale Whinham <daleyo@gmail.com>
> 

-- 
With best wishes
Dmitry