Name

struct drm_connector_helper_funcs — helper operations for connectors

Synopsis

struct drm_connector_helper_funcs {
  int (* get_modes) (struct drm_connector *connector);
  enum drm_mode_status (* mode_valid) (struct drm_connector *connector,struct drm_display_mode *mode);
  struct drm_encoder *(* best_encoder) (struct drm_connector *connector);
};  

Members

get_modes

get mode list for this connector

mode_valid

is this mode valid on the given connector? (optional)

best_encoder

return the preferred encoder for this connector

Description

The helper operations are called by the mid-layer CRTC helper.