Lines Matching defs:connector
43 container_of(x, struct vmw_screen_target_display_unit, base.connector)
374 conn_state = stdu->base.connector.state;
935 * vmwgfx cleans up crtc/encoder/connector all at the same time so technically
958 * @connector: used to get the containing STDU
960 * vmwgfx cleans up crtc/encoder/connector all at the same time so technically
965 static void vmw_stdu_connector_destroy(struct drm_connector *connector)
967 vmw_stdu_destroy(vmw_connector_to_stdu(connector));
1711 * out encoder and connector, they are represented as part of the STDU as well.
1717 struct drm_connector *connector;
1731 connector = &stdu->base.connector;
1768 ret = drm_connector_init(dev, connector, &vmw_stdu_connector_funcs,
1771 DRM_ERROR("Failed to initialize connector\n");
1775 drm_connector_helper_add(connector, &vmw_stdu_connector_helper_funcs);
1776 connector->status = vmw_du_connector_detect(connector, false);
1785 (void) drm_connector_attach_encoder(connector, encoder);
1789 ret = drm_connector_register(connector);
1791 DRM_ERROR("Failed to register connector\n");
1807 drm_object_attach_property(&connector->base,
1809 drm_object_attach_property(&connector->base,
1811 drm_object_attach_property(&connector->base,
1816 drm_connector_unregister(connector);
1820 drm_connector_cleanup(connector);