/linux-6.3-rc2/drivers/gpu/drm/ |
A D | drm_crtc_helper.c | 203 if (crtc_funcs->disable) in __drm_helper_disable_unused_functions() 204 (*crtc_funcs->disable)(crtc); in __drm_helper_disable_unused_functions() 347 if (crtc_funcs->mode_fixup) { in drm_crtc_helper_set_mode() 375 crtc_funcs->prepare(crtc); in drm_crtc_helper_set_mode() 400 crtc_funcs->commit(crtc); in drm_crtc_helper_set_mode() 927 if (crtc_funcs->dpms) in drm_helper_connector_dpms() 928 (*crtc_funcs->dpms) (crtc, in drm_helper_connector_dpms() 942 if (crtc_funcs->dpms) in drm_helper_connector_dpms() 943 (*crtc_funcs->dpms) (crtc, in drm_helper_connector_dpms() 1015 if (crtc_funcs->dpms) in drm_helper_resume_force_mode() [all …]
|
A D | drm_atomic_helper.c | 2744 const struct drm_crtc_helper_funcs *crtc_funcs; in drm_atomic_helper_commit_planes_on_crtc() local 2755 crtc_funcs = crtc->helper_private; in drm_atomic_helper_commit_planes_on_crtc() 2756 if (crtc_funcs && crtc_funcs->atomic_begin) in drm_atomic_helper_commit_planes_on_crtc() 2757 crtc_funcs->atomic_begin(crtc, old_state); in drm_atomic_helper_commit_planes_on_crtc() 2782 if (crtc_funcs && crtc_funcs->atomic_flush) in drm_atomic_helper_commit_planes_on_crtc() 2783 crtc_funcs->atomic_flush(crtc, old_state); in drm_atomic_helper_commit_planes_on_crtc() 2808 const struct drm_crtc_helper_funcs *crtc_funcs = in drm_atomic_helper_disable_planes_on_crtc() local 2812 if (atomic && crtc_funcs && crtc_funcs->atomic_begin) in drm_atomic_helper_disable_planes_on_crtc() 2813 crtc_funcs->atomic_begin(crtc, NULL); in drm_atomic_helper_disable_planes_on_crtc() 2827 if (atomic && crtc_funcs && crtc_funcs->atomic_flush) in drm_atomic_helper_disable_planes_on_crtc() [all …]
|
A D | drm_probe_helper.c | 182 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; in drm_crtc_mode_valid() local 184 if (!crtc_funcs || !crtc_funcs->mode_valid) in drm_crtc_mode_valid() 187 return crtc_funcs->mode_valid(crtc, mode); in drm_crtc_mode_valid()
|
/linux-6.3-rc2/drivers/gpu/drm/gma500/ |
A D | gma_display.c | 476 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; in gma_crtc_prepare() local 477 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF); in gma_crtc_prepare() 482 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; in gma_crtc_commit() local 483 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON); in gma_crtc_commit() 489 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; in gma_crtc_disable() local 491 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF); in gma_crtc_disable() 520 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; in gma_crtc_page_flip() local 525 if (!crtc_funcs->mode_set_base) in gma_crtc_page_flip() 540 ret = crtc_funcs->mode_set_base(crtc, crtc->x, crtc->y, old_fb); in gma_crtc_page_flip() 550 ret = crtc_funcs->mode_set_base(crtc, crtc->x, crtc->y, old_fb); in gma_crtc_page_flip()
|
A D | psb_intel_display.c | 102 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; in psb_intel_crtc_mode_set() local 116 crtc_funcs->mode_set_base(crtc, x, y, old_fb); in psb_intel_crtc_mode_set() 295 crtc_funcs->mode_set_base(crtc, x, y, old_fb); in psb_intel_crtc_mode_set()
|
A D | oaktrail_crtc.c | 482 const struct drm_crtc_helper_funcs *crtc_funcs = in oaktrail_crtc_mode_set() local 484 crtc_funcs->mode_set_base(crtc, x, y, old_fb); in oaktrail_crtc_mode_set()
|
A D | oaktrail_hdmi.c | 354 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; in oaktrail_crtc_hdmi_mode_set() local 355 crtc_funcs->mode_set_base(crtc, x, y, old_fb); in oaktrail_crtc_hdmi_mode_set()
|
A D | cdv_intel_display.c | 812 const struct drm_crtc_helper_funcs *crtc_funcs = in cdv_intel_crtc_mode_set() local 814 crtc_funcs->mode_set_base(crtc, x, y, old_fb); in cdv_intel_crtc_mode_set()
|
/linux-6.3-rc2/drivers/gpu/drm/hisilicon/kirin/ |
A D | kirin_drm_drv.h | 45 const struct drm_crtc_funcs *crtc_funcs; member
|
A D | dw_drm_dsi.c | 645 const struct drm_crtc_helper_funcs *crtc_funcs = NULL; in dsi_encoder_mode_valid() local 663 crtc_funcs = crtc->helper_private; in dsi_encoder_mode_valid() 664 if (crtc_funcs && crtc_funcs->mode_fixup) in dsi_encoder_mode_valid() 665 if (!crtc_funcs->mode_fixup(crtc, mode, &adj_mode)) in dsi_encoder_mode_valid()
|
A D | kirin_drm_drv.c | 59 driver_data->crtc_funcs, NULL); in kirin_drm_crtc_init()
|
A D | kirin_drm_ade.c | 944 .crtc_funcs = &ade_crtc_funcs,
|
/linux-6.3-rc2/drivers/gpu/drm/vc4/ |
A D | vc4_crtc.c | 1320 const struct drm_crtc_funcs *crtc_funcs, in __vc4_crtc_init() argument 1334 crtc_funcs, data->name); in __vc4_crtc_init() 1363 const struct drm_crtc_funcs *crtc_funcs, in vc4_crtc_init() argument 1382 crtc_funcs, crtc_helper_funcs, feeds_txp); in vc4_crtc_init()
|
A D | vc4_drv.h | 940 const struct drm_crtc_funcs *crtc_funcs, 945 const struct drm_crtc_funcs *crtc_funcs,
|
/linux-6.3-rc2/drivers/gpu/drm/shmobile/ |
A D | shmob_drm_crtc.c | 472 static const struct drm_crtc_funcs crtc_funcs = { variable 487 ret = drm_crtc_init(sdev->ddev, crtc, &crtc_funcs); in shmob_drm_crtc_create()
|