[Intel-gfx] [PATCH] drm/i915/dsi: disable lpdt if it is not enabled

Tseng, William william.tseng at intel.com
Tue Nov 9 08:32:38 UTC 2021


Thank you for your consideration. It's my pleasure.

Regards
William

-----Original Message-----
From: Jani Nikula <jani.nikula at linux.intel.com> 
Sent: Tuesday, November 9, 2021 4:05 PM
To: Tseng, William <william.tseng at intel.com>; intel-gfx at lists.freedesktop.org
Cc: Tseng, William <william.tseng at intel.com>; Ville Syrjala <ville.syrjala at linux.intel.com>; Kulkarni, Vandita <vandita.kulkarni at intel.com>; Lee, Shawn C <shawn.c.lee at intel.com>; Chiou, Cooper <cooper.chiou at intel.com>
Subject: Re: [PATCH] drm/i915/dsi: disable lpdt if it is not enabled

On Tue, 09 Nov 2021, William Tseng <william.tseng at intel.com> wrote:
> Avoid setting LP_DATA_TRANSFER when enable_lpdt is false
>
> Cc: Ville Syrjala <ville.syrjala at linux.intel.com>
> Cc: Jani Nikula <jani.nikula at linux.intel.com>
> Cc: Vandita Kulkarni <vandita.kulkarni at intel.com>
> Cc: Lee Shawn C <shawn.c.lee at intel.com>
> Cc: Cooper Chiou <cooper.chiou at intel.com>
> Signed-off-by: William Tseng <william.tseng at intel.com>
> ---
>  drivers/gpu/drm/i915/display/icl_dsi.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c 
> b/drivers/gpu/drm/i915/display/icl_dsi.c
> index 168c84a74d30..31cea17481b1 100644
> --- a/drivers/gpu/drm/i915/display/icl_dsi.c
> +++ b/drivers/gpu/drm/i915/display/icl_dsi.c
> @@ -183,6 +183,8 @@ static int dsi_send_pkt_hdr(struct intel_dsi_host 
> *host,
>  
>  	if (enable_lpdt)
>  		tmp |= LP_DATA_TRANSFER;
> +	else
> +		tmp &= ~LP_DATA_TRANSFER;
>  
>  	tmp &= ~(PARAM_WC_MASK | VC_MASK | DT_MASK);
>  	tmp |= ((packet->header[0] & VC_MASK) << VC_SHIFT);

The read-modify-write we do here is perhaps not the brightnest idea, but the patch at hand probably is the most sensible first fix.

Thanks, pushed to drm-intel-next.

BR,
Jani.



--
Jani Nikula, Intel Open Source Graphics Center


More information about the Intel-gfx mailing list