Home
last modified time | relevance | path

Searched refs:crtc_funcs (Results 1 – 4 of 4) sorted by relevance

/dragonfly/sys/dev/drm/
H A Ddrm_crtc_helper.c184 if (crtc_funcs->disable) in __drm_helper_disable_unused_functions()
185 (*crtc_funcs->disable)(crtc); in __drm_helper_disable_unused_functions()
338 if (crtc_funcs->mode_fixup) { in drm_crtc_helper_set_mode()
370 crtc_funcs->prepare(crtc); in drm_crtc_helper_set_mode()
398 crtc_funcs->commit(crtc); in drm_crtc_helper_set_mode()
890 if (crtc_funcs->dpms) in drm_helper_connector_dpms()
891 (*crtc_funcs->dpms) (crtc, in drm_helper_connector_dpms()
904 if (crtc_funcs->dpms) in drm_helper_connector_dpms()
905 (*crtc_funcs->dpms) (crtc, in drm_helper_connector_dpms()
975 if (crtc_funcs->dpms) in drm_helper_resume_force_mode()
[all …]
H A Ddrm_plane_helper.c437 const struct drm_crtc_helper_funcs *crtc_funcs[2]; in drm_plane_helper_commit() local
449 crtc_funcs[i] = crtc[i] ? crtc[i]->helper_private : NULL; in drm_plane_helper_commit()
468 if (crtc_funcs[i] && crtc_funcs[i]->atomic_begin) in drm_plane_helper_commit()
469 crtc_funcs[i]->atomic_begin(crtc[i], crtc[i]->state); in drm_plane_helper_commit()
483 if (crtc_funcs[i] && crtc_funcs[i]->atomic_flush) in drm_plane_helper_commit()
484 crtc_funcs[i]->atomic_flush(crtc[i], crtc[i]->state); in drm_plane_helper_commit()
H A Ddrm_probe_helper.c177 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; in drm_crtc_mode_valid() local
179 if (!crtc_funcs || !crtc_funcs->mode_valid) in drm_crtc_mode_valid()
182 return crtc_funcs->mode_valid(crtc, mode); in drm_crtc_mode_valid()
H A Ddrm_atomic_helper.c2202 const struct drm_crtc_helper_funcs *crtc_funcs; in drm_atomic_helper_commit_planes_on_crtc() local
2211 crtc_funcs = crtc->helper_private; in drm_atomic_helper_commit_planes_on_crtc()
2212 if (crtc_funcs && crtc_funcs->atomic_begin) in drm_atomic_helper_commit_planes_on_crtc()
2213 crtc_funcs->atomic_begin(crtc, old_crtc_state); in drm_atomic_helper_commit_planes_on_crtc()
2235 if (crtc_funcs && crtc_funcs->atomic_flush) in drm_atomic_helper_commit_planes_on_crtc()
2236 crtc_funcs->atomic_flush(crtc, old_crtc_state); in drm_atomic_helper_commit_planes_on_crtc()
2261 const struct drm_crtc_helper_funcs *crtc_funcs = in drm_atomic_helper_disable_planes_on_crtc() local
2265 if (atomic && crtc_funcs && crtc_funcs->atomic_begin) in drm_atomic_helper_disable_planes_on_crtc()
2266 crtc_funcs->atomic_begin(crtc, NULL); in drm_atomic_helper_disable_planes_on_crtc()
2280 if (atomic && crtc_funcs && crtc_funcs->atomic_flush) in drm_atomic_helper_disable_planes_on_crtc()
[all …]