Home
last modified time | relevance | path

Searched refs:exynos_crtc (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.4/drivers/gpu/drm/exynos/
Dexynos_drm_crtc.c24 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc); in exynos_drm_crtc_atomic_enable() local
26 if (exynos_crtc->ops->enable) in exynos_drm_crtc_atomic_enable()
27 exynos_crtc->ops->enable(exynos_crtc); in exynos_drm_crtc_atomic_enable()
35 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc); in exynos_drm_crtc_atomic_disable() local
39 if (exynos_crtc->ops->disable) in exynos_drm_crtc_atomic_disable()
40 exynos_crtc->ops->disable(exynos_crtc); in exynos_drm_crtc_atomic_disable()
54 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc); in exynos_crtc_atomic_check() local
59 if (exynos_crtc->ops->atomic_check) in exynos_crtc_atomic_check()
60 return exynos_crtc->ops->atomic_check(exynos_crtc, state); in exynos_crtc_atomic_check()
68 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc); in exynos_crtc_atomic_begin() local
[all …]
Dexynos_drm_crtc.h22 void exynos_drm_crtc_wait_pending_update(struct exynos_drm_crtc *exynos_crtc);
23 void exynos_drm_crtc_finish_update(struct exynos_drm_crtc *exynos_crtc,
40 void exynos_crtc_handle_event(struct exynos_drm_crtc *exynos_crtc);
Dexynos_drm_plane.c256 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(state->crtc); in exynos_plane_atomic_update() local
262 if (exynos_crtc->ops->update_plane) in exynos_plane_atomic_update()
263 exynos_crtc->ops->update_plane(exynos_crtc, exynos_plane); in exynos_plane_atomic_update()
270 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(old_state->crtc); in exynos_plane_atomic_disable() local
275 if (exynos_crtc->ops->disable_plane) in exynos_plane_atomic_disable()
276 exynos_crtc->ops->disable_plane(exynos_crtc, exynos_plane); in exynos_plane_atomic_disable()