|
@@ -87,6 +87,8 @@ struct exynos_drm_plane {
|
|
|
* @disable_vblank: specific driver callback for disabling vblank interrupt.
|
|
|
* @wait_for_vblank: wait for vblank interrupt to make sure that
|
|
|
* hardware overlay is updated.
|
|
|
+ * @atomic_begin: prepare a window to receive a update
|
|
|
+ * @atomic_flush: mark the end of a window update
|
|
|
* @update_plane: apply hardware specific overlay data to registers.
|
|
|
* @disable_plane: disable hardware specific overlay.
|
|
|
* @te_handler: trigger to transfer video image at the tearing effect
|
|
@@ -107,10 +109,14 @@ struct exynos_drm_crtc_ops {
|
|
|
int (*enable_vblank)(struct exynos_drm_crtc *crtc);
|
|
|
void (*disable_vblank)(struct exynos_drm_crtc *crtc);
|
|
|
void (*wait_for_vblank)(struct exynos_drm_crtc *crtc);
|
|
|
+ void (*atomic_begin)(struct exynos_drm_crtc *crtc,
|
|
|
+ struct exynos_drm_plane *plane);
|
|
|
void (*update_plane)(struct exynos_drm_crtc *crtc,
|
|
|
struct exynos_drm_plane *plane);
|
|
|
void (*disable_plane)(struct exynos_drm_crtc *crtc,
|
|
|
struct exynos_drm_plane *plane);
|
|
|
+ void (*atomic_flush)(struct exynos_drm_crtc *crtc,
|
|
|
+ struct exynos_drm_plane *plane);
|
|
|
void (*te_handler)(struct exynos_drm_crtc *crtc);
|
|
|
void (*clock_enable)(struct exynos_drm_crtc *crtc, bool enable);
|
|
|
};
|