summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2017-02-16 13:09:28 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2017-02-16 13:09:28 -0800
commit7066afbbe98876327824a305c9d0737114136baa (patch)
tree342f7fac33f535956b15581316d293087c4a8be3 /drivers
parentf44d9e364a517b521ea9081af73e85e78289c0dd (diff)
parent1e7116212955d57cd93d39c40c25546e645438a7 (diff)
Merge "drm/msm/sde: signal pending PAGE_FLIP events"
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/msm/sde/sde_crtc.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/drivers/gpu/drm/msm/sde/sde_crtc.c b/drivers/gpu/drm/msm/sde/sde_crtc.c
index 05e6da14cec0..82da4c1bc86c 100644
--- a/drivers/gpu/drm/msm/sde/sde_crtc.c
+++ b/drivers/gpu/drm/msm/sde/sde_crtc.c
@@ -358,7 +358,17 @@ bool sde_crtc_is_rt(struct drm_crtc *crtc)
return to_sde_crtc_state(crtc->state)->is_rt;
}
-/* if file!=NULL, this is preclose potential cancel-flip path */
+/**
+ * _sde_crtc_complete_flip - signal pending page_flip events
+ * Any pending vblank events are added to the vblank_event_list
+ * so that the next vblank interrupt shall signal them.
+ * However PAGE_FLIP events are not handled through the vblank_event_list.
+ * This API signals any pending PAGE_FLIP events requested through
+ * DRM_IOCTL_MODE_PAGE_FLIP and are cached in the sde_crtc->event.
+ * if file!=NULL, this is preclose potential cancel-flip path
+ * @crtc: Pointer to drm crtc structure
+ * @file: Pointer to drm file
+ */
static void _sde_crtc_complete_flip(struct drm_crtc *crtc,
struct drm_file *file)
{
@@ -395,7 +405,7 @@ static void sde_crtc_vblank_cb(void *data)
sde_crtc->vblank_cb_time = ktime_get();
else
sde_crtc->vblank_cb_count++;
-
+ _sde_crtc_complete_flip(crtc, NULL);
drm_crtc_handle_vblank(crtc);
DRM_DEBUG_VBL("crtc%d\n", crtc->base.id);
SDE_EVT32_IRQ(DRMID(crtc));