lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Mon, 25 May 2015 10:35:28 +0530
From:	Archit Taneja <architt@...eaurora.org>
To:	Hai Li <hali@...eaurora.org>, dri-devel@...ts.freedesktop.org
CC:	linux-arm-msm@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] drm/msm/mdp5: Always generate active-high sync signals
 for DSI


On 05/22/2015 07:46 PM, Hai Li wrote:
> DSI video mode engine can only take active-high sync signals. This
> change prevents MDP5 sending active-low sync signals to DSI in any
> case.
>
> Signed-off-by: Hai Li <hali@...eaurora.org>

Tested-by: Archit Taneja <architt@...eaurora.org>

> ---
>   drivers/gpu/drm/msm/mdp/mdp5/mdp5_encoder.c | 12 ++++++++----
>   1 file changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_encoder.c b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_encoder.c
> index 53bb1f7..2e98ce0 100644
> --- a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_encoder.c
> +++ b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_encoder.c
> @@ -144,10 +144,14 @@ static void mdp5_encoder_mode_set(struct drm_encoder *encoder,
>   			mode->type, mode->flags);
>
>   	ctrl_pol = 0;
> -	if (mode->flags & DRM_MODE_FLAG_NHSYNC)
> -		ctrl_pol |= MDP5_INTF_POLARITY_CTL_HSYNC_LOW;
> -	if (mode->flags & DRM_MODE_FLAG_NVSYNC)
> -		ctrl_pol |= MDP5_INTF_POLARITY_CTL_VSYNC_LOW;
> +
> +	/* DSI controller cannot handle active-low sync signals. */
> +	if (mdp5_encoder->intf.type != INTF_DSI) {
> +		if (mode->flags & DRM_MODE_FLAG_NHSYNC)
> +			ctrl_pol |= MDP5_INTF_POLARITY_CTL_HSYNC_LOW;
> +		if (mode->flags & DRM_MODE_FLAG_NVSYNC)
> +			ctrl_pol |= MDP5_INTF_POLARITY_CTL_VSYNC_LOW;
> +	}
>   	/* probably need to get DATA_EN polarity from panel.. */
>
>   	dtv_hsync_skew = 0;  /* get this from panel? */
>

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ