Lines Matching defs:connector

103  * drm_mode_probed_add - add a mode to a connector's probed_mode list
104 * @connector: connector the new mode
107 * Add @mode to @connector's probed_mode list for later use. This list should
109 * the hardware moved to the @connector's modes list.
111 void drm_mode_probed_add(struct drm_connector *connector,
114 WARN_ON(!mutex_is_locked(&connector->dev->mode_config.mutex));
116 list_add_tail(&mode->head, &connector->probed_modes);
1690 * limitations of the DRM device/connector. If a mode is too big its status
1714 * @connector: drm connector under action
1724 struct drm_connector *connector)
1726 if (!connector->ycbcr_420_allowed &&
1727 drm_mode_is_420_only(&connector->display_info, mode))
1875 * drm_connector_list_update - update the mode list for the connector
1876 * @connector: the connector to update
1878 * This moves the modes from the @connector probed_modes list
1885 void drm_connector_list_update(struct drm_connector *connector)
1889 WARN_ON(!mutex_is_locked(&connector->dev->mode_config.mutex));
1891 list_for_each_entry_safe(pmode, pt, &connector->probed_modes, head) {
1896 list_for_each_entry(mode, &connector->modes, head) {
1925 drm_mode_destroy(connector->dev, pmode);
1930 list_move_tail(&pmode->head, &connector->modes);
1976 const struct drm_connector *connector,
1999 if ((connector->connector_type != DRM_MODE_CONNECTOR_DVII) &&
2000 (connector->connector_type != DRM_MODE_CONNECTOR_HDMIB))
2027 const struct drm_connector *connector,
2071 connector,
2165 const struct drm_connector *connector,
2336 * drm_mode_parse_command_line_for_connector - parse command line modeline for connector
2337 * @mode_option: optional per connector mode option
2338 * @connector: connector to parse modeline for
2342 * configure the connector.
2360 const struct drm_connector *connector,
2429 connector,
2487 connector, mode);
2495 connector, mode);