Lines Matching defs:set
101 struct drm_mode_set set = {
107 return drm_mode_set_config_internal(&set);
216 * Atomic property for setting the power state of the CRTC. When set to 1
217 * the CRTC will actively display content. When set to 0 the CRTC will be
232 * user-space must set this property to 0.
598 static int __drm_mode_set_config_internal(struct drm_mode_set *set,
601 struct drm_crtc *crtc = set->crtc;
619 fb = set->fb;
621 ret = crtc->funcs->set_config(set, ctx);
644 * @set: modeset config to set
655 int drm_mode_set_config_internal(struct drm_mode_set *set)
657 WARN_ON(drm_drv_uses_atomic_modeset(set->crtc->dev));
659 return __drm_mode_set_config_internal(set, NULL);
693 * drm_mode_setcrtc - set CRTC configuration
715 struct drm_mode_set set;
748 /* If we pass -1, set the mode with the currently bound fb */
824 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
830 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
877 set.crtc = crtc;
878 set.x = crtc_req->x;
879 set.y = crtc_req->y;
880 set.mode = mode;
881 set.connectors = connector_set;
882 set.num_connectors = num_connectors;
883 set.fb = fb;
886 ret = crtc->funcs->set_config(&set, &ctx);
888 ret = __drm_mode_set_config_internal(&set, &ctx);