Lines Matching refs:crtc
63 struct drm_crtc *crtc,
72 int drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
81 int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
89 void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc);
90 void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
93 drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc);
94 void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
96 void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
131 #define drm_atomic_crtc_for_each_plane(plane, crtc) \ argument
132 drm_for_each_plane_mask(plane, (crtc)->dev, (crtc)->state->plane_mask)
167 WARN_ON((plane->state->crtc == NULL && plane->state->fb != NULL) || in drm_atomic_plane_disabling()
168 (plane->state->crtc != NULL && plane->state->fb == NULL)); in drm_atomic_plane_disabling()
180 return (!old_state || old_state->crtc) && !plane->state->crtc; in drm_atomic_plane_disabling()