diff mbox series

[v3,7/8] drm/i915/dp: Write the source OUI during connector detection

Message ID 20241016132405.2231744-8-imre.deak@intel.com (mailing list archive)
State New, archived
Headers show
Series drm/i915: Write source OUI for non-eDP sinks | expand

Commit Message

Imre Deak Oct. 16, 2024, 1:24 p.m. UTC
The DP sink's capabilities, like DSC, may depend on the source OUI
written to the sink. On eDP this OUI value could have been reset before
the detection started if the panel power on it got disabled. Make sure
the OUI is re-written at the beginning of detection in this case, before
the sink capabilities are read out.

Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Ville Syrjälä Oct. 23, 2024, 12:46 p.m. UTC | #1
On Wed, Oct 16, 2024 at 04:24:04PM +0300, Imre Deak wrote:
> The DP sink's capabilities, like DSC, may depend on the source OUI
> written to the sink. On eDP this OUI value could have been reset before
> the detection started if the panel power on it got disabled. Make sure
> the OUI is re-written at the beginning of detection in this case, before
> the sink capabilities are read out.
> 
> Signed-off-by: Imre Deak <imre.deak@intel.com>

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

> ---
>  drivers/gpu/drm/i915/display/intel_dp.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index 520cc6f50a126..063fe92d43786 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -5669,6 +5669,8 @@ intel_dp_detect(struct drm_connector *connector,
>  		goto out_unset_edid;
>  	}
>  
> +	intel_dp_init_source_oui(intel_dp);
> +
>  	ret = intel_dp_tunnel_detect(intel_dp, ctx);
>  	if (ret == -EDEADLK) {
>  		status = ret;
> -- 
> 2.44.2
diff mbox series

Patch

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 520cc6f50a126..063fe92d43786 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -5669,6 +5669,8 @@  intel_dp_detect(struct drm_connector *connector,
 		goto out_unset_edid;
 	}
 
+	intel_dp_init_source_oui(intel_dp);
+
 	ret = intel_dp_tunnel_detect(intel_dp, ctx);
 	if (ret == -EDEADLK) {
 		status = ret;