Lines Matching full:atomic
37 * This structure is used to track pending modeset changes and atomic commit on
45 * atomic commit thread hardware
61 * clean up atomic state
68 * drm_atomic_helper_setup_commit() from the atomic helper library.
200 * struct drm_private_state_funcs - atomic state functions for private objects
202 * These hooks are used by atomic helpers to create, swap and destroy states of
205 * added to the atomic states is expected to have an implementation of these
218 * Duplicated atomic state or NULL when obj->state is not
245 * struct drm_private_obj - base struct for driver private atomic object
299 * @state: Current atomic state for this driver private object.
327 * Currently only contains a backpointer to the overall atomic update,
349 * struct drm_atomic_state - the global state object for atomic updates
359 * @acquire_ctx: acquire context for this atomic modeset state update
361 * States are added to an atomic update by calling drm_atomic_get_crtc_state(),
373 * Allow full modeset. This is used by the ATOMIC IOCTL handler to
378 * - Drivers must not consult @allow_modeset in the atomic commit path.
389 * - Drivers may consult @allow_modeset in the atomic check path, if
414 * Indicates whether or not this atomic state was duplicated using
415 * drm_atomic_helper_duplicate_state(). Drivers and atomic helpers
434 * to preserve linearity to prevent the atomic states from being freed to early.
486 * drm_atomic_state_get - acquire a reference to the atomic state
487 * @state: The atomic state
501 * drm_atomic_state_put - release a reference to the atomic state
502 * @state: The atomic state
559 * @state: global atomic state object
563 * if the CRTC is not part of the global atomic state.
577 * @state: global atomic state object
581 * NULL if the CRTC is not part of the global atomic state.
591 * @state: global atomic state object
595 * NULL if the CRTC is not part of the global atomic state.
606 * @state: global atomic state object
610 * if the plane is not part of the global atomic state.
624 * @state: global atomic state object
628 * NULL if the plane is not part of the global atomic state.
639 * @state: global atomic state object
643 * NULL if the plane is not part of the global atomic state.
654 * @state: global atomic state object
658 * or NULL if the connector is not part of the global atomic state.
677 * @state: global atomic state object
681 * or NULL if the connector is not part of the global atomic state.
697 * @state: global atomic state object
701 * or NULL if the connector is not part of the global atomic state.
717 * @state: global atomic state object
721 * @state, or if the plane isn't part of the atomic state update, from @plane.
722 * This is useful in atomic check callbacks, when drivers need to peek at, but
768 * for_each_oldnew_connector_in_state - iterate over all connectors in an atomic update
777 * This iterates over all connectors in an atomic update, tracking both old and
779 * considered, for example in atomic check functions.
792 * for_each_old_connector_in_state - iterate over all connectors in an atomic update
799 * This iterates over all connectors in an atomic update, tracking only the old
813 * for_each_new_connector_in_state - iterate over all connectors in an atomic update
820 * This iterates over all connectors in an atomic update, tracking only the new
822 * hardware should be in when the atomic commit operation has completed.
835 * for_each_oldnew_crtc_in_state - iterate over all CRTCs in an atomic update
842 * This iterates over all CRTCs in an atomic update, tracking both old and
844 * considered, for example in atomic check functions.
859 * for_each_old_crtc_in_state - iterate over all CRTCs in an atomic update
865 * This iterates over all CRTCs in an atomic update, tracking only the old
879 * for_each_new_crtc_in_state - iterate over all CRTCs in an atomic update
885 * This iterates over all CRTCs in an atomic update, tracking only the new
887 * hardware should be in when the atomic commit operation has completed.
900 * for_each_oldnew_plane_in_state - iterate over all planes in an atomic update
907 * This iterates over all planes in an atomic update, tracking both old and
909 * considered, for example in atomic check functions.
922 * for_each_oldnew_plane_in_state_reverse - iterate over all planes in an atomic
930 * This iterates over all planes in an atomic update in reverse order,
932 * state delta needs to be considered, for example in atomic check functions.
960 * for_each_old_plane_in_state - iterate over all planes in an atomic update
966 * This iterates over all planes in an atomic update, tracking only the old
978 * for_each_new_plane_in_state - iterate over all planes in an atomic update
984 * This iterates over all planes in an atomic update, tracking only the new
986 * hardware should be in when the atomic commit operation has completed.
999 * for_each_oldnew_private_obj_in_state - iterate over all private objects in an atomic update
1006 * This iterates over all private objects in an atomic update, tracking both
1008 * to be considered, for example in atomic check functions.
1019 * for_each_old_private_obj_in_state - iterate over all private objects in an atomic update
1025 * This iterates over all private objects in an atomic update, tracking only
1037 * for_each_new_private_obj_in_state - iterate over all private objects in an atomic update
1043 * This iterates over all private objects in an atomic update, tracking only
1045 * hardware should be in when the atomic commit operation has completed.
1064 * The atomic helper code sets these booleans, but drivers can and should
1129 * struct drm_bridge_state - Atomic bridge state object