Lines Matching refs:state
42 struct drm_atomic_state *state);
50 struct drm_atomic_state *state);
52 struct drm_atomic_state *state);
53 void drm_atomic_helper_commit_tail(struct drm_atomic_state *state);
54 void drm_atomic_helper_commit_tail_rpm(struct drm_atomic_state *state);
56 struct drm_atomic_state *state,
59 struct drm_atomic_state *state);
61 struct drm_atomic_state *state);
64 struct drm_atomic_state *state,
78 drm_atomic_helper_calc_timestamping_constants(struct drm_atomic_state *state);
81 struct drm_atomic_state *state);
86 struct drm_atomic_state *state);
92 struct drm_atomic_state *state,
101 int __must_check drm_atomic_helper_swap_state(struct drm_atomic_state *state,
105 int drm_atomic_helper_setup_commit(struct drm_atomic_state *state,
107 void drm_atomic_helper_wait_for_dependencies(struct drm_atomic_state *state);
108 void drm_atomic_helper_fake_vblank(struct drm_atomic_state *state);
109 void drm_atomic_helper_commit_hw_done(struct drm_atomic_state *state);
110 void drm_atomic_helper_commit_cleanup_done(struct drm_atomic_state *state);
133 int drm_atomic_helper_commit_duplicated_state(struct drm_atomic_state *state,
136 struct drm_atomic_state *state);
160 * This iterates over the current state, useful (for example) when applying
161 * atomic state after it has been checked and swapped. To iterate over the
167 drm_for_each_plane_mask(plane, (crtc)->dev, (crtc)->state->plane_mask)
170 * drm_crtc_atomic_state_for_each_plane - iterate over attached planes in new state
172 * @crtc_state: the incoming CRTC state
175 * attached if the specified state is applied. Useful during for example
177 * validate the incoming state.
180 drm_for_each_plane_mask(plane, (crtc_state)->state->dev, (crtc_state)->plane_mask)
183 * drm_crtc_atomic_state_for_each_plane_state - iterate over attached planes in new state
185 * @plane_state: loop cursor for the plane's state, must be const
186 * @crtc_state: the incoming CRTC state
189 * attached if the specified state is applied. Useful during for example
191 * validate the incoming state.
198 drm_for_each_plane_mask(plane, (crtc_state)->state->dev, (crtc_state)->plane_mask) \
200 __drm_atomic_get_current_plane_state((crtc_state)->state, \
205 * @old_plane_state: old atomic plane state
206 * @new_plane_state: new atomic plane state
208 * Checks the atomic state of a plane to determine whether it's being disabled
209 * or not. This also WARNs if it detects an invalid state (both CRTC and FB