Lines Matching refs:crtc_funcs
635 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_mode_valid() local
644 if (crtc_funcs->mode_valid) { in display_mode_valid()
645 ret = crtc_funcs->mode_valid(state); in display_mode_valid()
657 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_mode_fixup() local
660 if (crtc_funcs->mode_fixup) { in display_mode_fixup()
661 ret = crtc_funcs->mode_fixup(state); in display_mode_fixup()
675 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_init() local
691 if (!crtc_funcs) { in display_init()
714 if (crtc_funcs->preinit) { in display_init()
715 ret = crtc_funcs->preinit(state); in display_init()
844 if (crtc_funcs->init && state->enabled_at_spl == false) { in display_init()
845 ret = crtc_funcs->init(state); in display_init()
866 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_send_mcu_cmd() local
872 if (crtc_funcs->send_mcu_cmd) { in display_send_mcu_cmd()
873 ret = crtc_funcs->send_mcu_cmd(state, type, val); in display_send_mcu_cmd()
885 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_set_plane() local
891 if (crtc_funcs->set_plane) { in display_set_plane()
892 ret = crtc_funcs->set_plane(state); in display_set_plane()
904 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_enable() local
912 if (crtc_funcs->prepare) in display_enable()
913 crtc_funcs->prepare(state); in display_enable()
918 if (crtc_funcs->enable) in display_enable()
919 crtc_funcs->enable(state); in display_enable()
924 if (crtc_funcs->post_enable) in display_enable()
925 crtc_funcs->post_enable(state); in display_enable()
945 crtc_funcs->apply_soft_te(state); in display_enable()
956 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_disable() local
966 if (crtc_funcs->disable) in display_disable()
967 crtc_funcs->disable(state); in display_disable()
984 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_check() local
996 if (crtc_funcs->check) { in display_check()
997 ret = crtc_funcs->check(state); in display_check()
1002 if (crtc_funcs->plane_check) { in display_check()
1003 ret = crtc_funcs->plane_check(state); in display_check()
1797 const struct rockchip_crtc_funcs *crtc_funcs; in rockchip_vop_dump() local
1805 crtc_funcs = crtc->funcs; in rockchip_vop_dump()
1808 ret = crtc_funcs->active_regs_dump(state); in rockchip_vop_dump()
1810 ret = crtc_funcs->regs_dump(state); in rockchip_vop_dump()
2568 const struct rockchip_crtc_funcs *crtc_funcs; in rockchip_display_fixup() local
2666 crtc_funcs = crtc->funcs; in rockchip_display_fixup()
2667 if (!crtc_funcs) { in rockchip_display_fixup()