Lines Matching defs:connector
316 * @connectors: pointer to array of structures with per-connector data
363 * When a connector or plane is not bound to any CRTC, it's still important
453 struct drm_connector *connector);
574 * drm_atomic_get_existing_connector_state - get connector state, if it exists
576 * @connector: connector to grab
578 * This function returns the connector state for the given connector,
579 * or NULL if the connector is not part of the global atomic state.
586 struct drm_connector *connector)
588 int index = drm_connector_index(connector);
597 * drm_atomic_get_old_connector_state - get connector state, if it exists
599 * @connector: connector to grab
601 * This function returns the old connector state for the given connector,
602 * or NULL if the connector is not part of the global atomic state.
606 struct drm_connector *connector)
608 int index = drm_connector_index(connector);
617 * drm_atomic_get_new_connector_state - get connector state, if it exists
619 * @connector: connector to grab
621 * This function returns the new connector state for the given connector,
622 * or NULL if the connector is not part of the global atomic state.
626 struct drm_connector *connector)
628 int index = drm_connector_index(connector);
691 * @connector: &struct drm_connector iteration cursor
702 #define for_each_oldnew_connector_in_state(__state, connector, old_connector_state, new_connector_state, __i) \
707 ((connector) = (__state)->connectors[__i].ptr, \
708 (void)(connector) /* Only to avoid unused-but-set-variable warning */, \
715 * @connector: &struct drm_connector iteration cursor
724 #define for_each_old_connector_in_state(__state, connector, old_connector_state, __i) \
729 ((connector) = (__state)->connectors[__i].ptr, \
730 (void)(connector) /* Only to avoid unused-but-set-variable warning */, \
736 * @connector: &struct drm_connector iteration cursor
745 #define for_each_new_connector_in_state(__state, connector, new_connector_state, __i) \
750 ((connector) = (__state)->connectors[__i].ptr, \
751 (void)(connector) /* Only to avoid unused-but-set-variable warning */, \
1003 * and a bridge, or a bridge and a connector.