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))
1873 * drm_connector_list_update - update the mode list for the connector
1874 * @connector: the connector to update
1876 * This moves the modes from the @connector probed_modes list
1883 void drm_connector_list_update(struct drm_connector *connector)
1887 WARN_ON(!mutex_is_locked(&connector->dev->mode_config.mutex));
1889 list_for_each_entry_safe(pmode, pt, &connector->probed_modes, head) {
1894 list_for_each_entry(mode, &connector->modes, head) {
1923 drm_mode_destroy(connector->dev, pmode);
1928 list_move_tail(&pmode->head, &connector->modes);
1974 const struct drm_connector *connector,
1997 if ((connector->connector_type != DRM_MODE_CONNECTOR_DVII) &&
1998 (connector->connector_type != DRM_MODE_CONNECTOR_HDMIB))
2025 const struct drm_connector *connector,
2069 connector,
2163 const struct drm_connector *connector,
2334 * drm_mode_parse_command_line_for_connector - parse command line modeline for connector
2335 * @mode_option: optional per connector mode option
2336 * @connector: connector to parse modeline for
2340 * configure the connector.
2358 const struct drm_connector *connector,
2427 connector,
2485 connector, mode);
2493 connector, mode);
2755 * drm_set_preferred_mode - Sets the preferred mode of a connector
2756 * @connector: connector whose mode list should be processed
2763 void drm_set_preferred_mode(struct drm_connector *connector,
2768 list_for_each_entry(mode, &connector->probed_modes, head) {