HomeSort by: relevance | last modified time | path
    Searched defs:crtc_funcs (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/
drm_crtc_helper.c 194 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; local in function:__drm_helper_disable_unused_functions
197 if (crtc_funcs->disable)
198 (*crtc_funcs->disable)(crtc);
200 (*crtc_funcs->dpms)(crtc, DRM_MODE_DPMS_OFF);
288 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; local in function:drm_crtc_helper_set_mode
345 if (crtc_funcs->mode_fixup) {
346 if (!(ret = crtc_funcs->mode_fixup(crtc, mode,
373 crtc_funcs->prepare(crtc);
378 ret = !crtc_funcs->mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
398 crtc_funcs->commit(crtc)
537 const struct drm_crtc_helper_funcs *crtc_funcs; local in function:drm_crtc_helper_set_config
897 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; local in function:drm_helper_connector_dpms
911 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; local in function:drm_helper_connector_dpms
952 const struct drm_crtc_helper_funcs *crtc_funcs; local in function:drm_helper_resume_force_mode
    [all...]
drm_probe_helper.c 182 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; local in function:drm_crtc_mode_valid
184 if (!crtc_funcs || !crtc_funcs->mode_valid)
187 return crtc_funcs->mode_valid(crtc, mode);
drm_atomic_helper.c 976 * We need to run through the crtc_funcs->disable() function if the CRTC
2576 const struct drm_crtc_helper_funcs *crtc_funcs; local in function:drm_atomic_helper_commit_planes_on_crtc
2587 crtc_funcs = crtc->helper_private;
2588 if (crtc_funcs && crtc_funcs->atomic_begin)
2589 crtc_funcs->atomic_begin(crtc, old_crtc_state);
2614 if (crtc_funcs && crtc_funcs->atomic_flush)
2615 crtc_funcs->atomic_flush(crtc, old_crtc_state);
2640 const struct drm_crtc_helper_funcs *crtc_funcs local in function:drm_atomic_helper_disable_planes_on_crtc
    [all...]

Completed in 16 milliseconds