DBG("%s", omap_crtc->name);
- dispc_runtime_get();
-
/* Enable all planes associated with the CRTC. */
for (i = 0; i < priv->num_planes; i++) {
struct drm_plane *plane = priv->planes[i];
omap_crtc_flush(crtc);
drm_crtc_vblank_on(crtc);
-
- dispc_runtime_put();
}
static void omap_crtc_disable(struct drm_crtc *crtc)
DBG("%s", omap_crtc->name);
omap_crtc_wait_page_flip(crtc);
- dispc_runtime_get();
drm_crtc_vblank_off(crtc);
/* Disable all planes associated with the CRTC. */
omap_crtc_encoder_setup(crtc, false);
omap_crtc_flush(crtc);
-
- dispc_runtime_put();
}
static void omap_crtc_mode_set_nofb(struct drm_crtc *crtc)
struct drm_device *dev = crtc->dev;
unsigned long flags;
- dispc_runtime_get();
-
if (event) {
WARN_ON(omap_crtc->event);
WARN_ON(drm_crtc_vblank_get(crtc) != 0);
{
omap_crtc_flush(crtc);
- dispc_runtime_put();
-
crtc->invert_dimensions = !!(crtc->primary->state->rotation &
(BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270)));
}
struct drm_atomic_state *old_state = commit->state;
/* Apply the atomic update. */
+ dispc_runtime_get();
+
drm_atomic_helper_commit_modeset_disables(dev, old_state);
drm_atomic_helper_commit_planes(dev, old_state);
drm_atomic_helper_commit_modeset_enables(dev, old_state);
drm_atomic_helper_cleanup_planes(dev, old_state);
+ dispc_runtime_put();
+
drm_atomic_state_free(old_state);
/* Complete the commit, wake up any waiter. */