Lines Matching refs:set
98 struct drm_mode_set set = {
104 return drm_mode_set_config_internal(&set);
213 * Atomic property for setting the power state of the CRTC. When set to 1
214 * the CRTC will actively display content. When set to 0 the CRTC will be
229 * user-space must set this property to 0.
445 static int __drm_mode_set_config_internal(struct drm_mode_set *set,
448 struct drm_crtc *crtc = set->crtc;
466 fb = set->fb;
468 ret = crtc->funcs->set_config(set, ctx);
491 * @set: modeset config to set
502 int drm_mode_set_config_internal(struct drm_mode_set *set)
504 WARN_ON(drm_drv_uses_atomic_modeset(set->crtc->dev));
506 return __drm_mode_set_config_internal(set, NULL);
540 * drm_mode_setcrtc - set CRTC configuration
562 struct drm_mode_set set;
595 /* If we pass -1, set the mode with the currently bound fb */
674 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
680 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
727 set.crtc = crtc;
728 set.x = crtc_req->x;
729 set.y = crtc_req->y;
730 set.mode = mode;
731 set.connectors = connector_set;
732 set.num_connectors = num_connectors;
733 set.fb = fb;
736 ret = crtc->funcs->set_config(&set, &ctx);
738 ret = __drm_mode_set_config_internal(&set, &ctx);