diff mbox series

[3/7] drm/i915/hdcp: Remove additional timing for reading mst hdcp message

Message ID 20240112074120.159797-4-suraj.kandpal@intel.com (mailing list archive)
State New, archived
Headers show
Series HDCP Type1 MST fixes | expand

Commit Message

Suraj Kandpal Jan. 12, 2024, 7:41 a.m. UTC
Now that we have moved back to direct reads the additional timing
is not required hence this can be removed.

Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

Comments

Ankit Nautiyal Jan. 30, 2024, 8:53 a.m. UTC | #1
On 1/12/2024 1:11 PM, Suraj Kandpal wrote:
> Now that we have moved back to direct reads the additional timing
> is not required hence this can be removed.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>

Add fixes tag. With that this is,

Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>

> ---
>   drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 9 ++-------
>   1 file changed, 2 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> index 90b027ba3302..cde42b756f6a 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> @@ -561,13 +561,8 @@ int intel_dp_hdcp2_read_msg(struct intel_connector *connector,
>   
>   		/* Entire msg read timeout since initiate of msg read */
>   		if (bytes_to_recv == size - 1 && hdcp2_msg_data->msg_read_timeout > 0) {
> -			if (intel_encoder_is_mst(connector->encoder))
> -				msg_end = ktime_add_ms(ktime_get_raw(),
> -						       hdcp2_msg_data->msg_read_timeout *
> -						       connector->port->parent->num_ports);
> -			else
> -				msg_end = ktime_add_ms(ktime_get_raw(),
> -						       hdcp2_msg_data->msg_read_timeout);
> +			msg_end = ktime_add_ms(ktime_get_raw(),
> +					       hdcp2_msg_data->msg_read_timeout);
>   		}
>   
>   		ret = drm_dp_dpcd_read(aux, offset,
diff mbox series

Patch

diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
index 90b027ba3302..cde42b756f6a 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
@@ -561,13 +561,8 @@  int intel_dp_hdcp2_read_msg(struct intel_connector *connector,
 
 		/* Entire msg read timeout since initiate of msg read */
 		if (bytes_to_recv == size - 1 && hdcp2_msg_data->msg_read_timeout > 0) {
-			if (intel_encoder_is_mst(connector->encoder))
-				msg_end = ktime_add_ms(ktime_get_raw(),
-						       hdcp2_msg_data->msg_read_timeout *
-						       connector->port->parent->num_ports);
-			else
-				msg_end = ktime_add_ms(ktime_get_raw(),
-						       hdcp2_msg_data->msg_read_timeout);
+			msg_end = ktime_add_ms(ktime_get_raw(),
+					       hdcp2_msg_data->msg_read_timeout);
 		}
 
 		ret = drm_dp_dpcd_read(aux, offset,