[PATCH] drm/hisilicon: Fix ADE vblank on/off handling
Daniel Vetter
daniel at ffwll.ch
Tue Jul 12 12:17:13 UTC 2016
On Thu, Jun 30, 2016 at 05:23:00PM +0800, Xinliang Liu wrote:
> Vblank turn on should be called in crtc's enable callback.
> And turn off called in crtc's disable callback.
>
> Thanks to Daniel Vetter, this bug is reported by him.
>
> Reported-by: Daniel Vetter <daniel.vetter at intel.com>
> Signed-off-by: Xinliang Liu <xinliang.liu at linaro.org>
Applied to drm-misc.
-Daniel
> ---
> drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c b/drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c
> index ed76baad525f..805f4326fafe 100644
> --- a/drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c
> +++ b/drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c
> @@ -487,6 +487,7 @@ static void ade_crtc_enable(struct drm_crtc *crtc)
> ade_set_medianoc_qos(acrtc);
> ade_display_enable(acrtc);
> ade_dump_regs(ctx->base);
> + drm_crtc_vblank_on(crtc);
> acrtc->enable = true;
> }
>
> @@ -498,6 +499,7 @@ static void ade_crtc_disable(struct drm_crtc *crtc)
> if (!acrtc->enable)
> return;
>
> + drm_crtc_vblank_off(crtc);
> ade_power_down(ctx);
> acrtc->enable = false;
> }
> --
> 2.8.3
>
> _______________________________________________
> dri-devel mailing list
> dri-devel at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
More information about the dri-devel
mailing list