drm: mali-dp: Call drm_crtc_vblank_reset on device init
authorAlexandru Gheorghe <[email protected]>
Mon, 16 Jul 2018 10:07:07 +0000 (11:07 +0100)
committerLiviu Dudau <[email protected]>
Tue, 2 Oct 2018 10:54:26 +0000 (11:54 +0100)
Currently, if userspace calls drm_wait_vblank before the crtc is
activated the crtc vblank_enable hook is called, which in case of
malidp driver triggers some warninngs. This happens because on
device init we don't inform the drm core about the vblank state
by calling drm_crtc_vblank_on/off/reset which together with
drm_vblank_get have some magic that prevents calling drm_vblank_enable
when crtc is off.

Signed-off-by: Alexandru Gheorghe <[email protected]>
Acked-by: Liviu Dudau <[email protected]>
Signed-off-by: Liviu Dudau <[email protected]>
drivers/gpu/drm/arm/malidp_drv.c

index 3171ffaadd77e6c240e918cefe0ffae18186a5a0..34eec1a22428012f4f25dde61647da8501251ee2 100644 (file)
@@ -752,6 +752,7 @@ static int malidp_bind(struct device *dev)
        drm->irq_enabled = true;
 
        ret = drm_vblank_init(drm, drm->mode_config.num_crtc);
+       drm_crtc_vblank_reset(&malidp->crtc);
        if (ret < 0) {
                DRM_ERROR("failed to initialise vblank\n");
                goto vblank_fail;