Lines Matching refs:crtc_funcs
580 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_mode_valid() local
589 if (crtc_funcs->mode_valid) { in display_mode_valid()
590 ret = crtc_funcs->mode_valid(state); in display_mode_valid()
602 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_mode_fixup() local
605 if (crtc_funcs->mode_fixup) { in display_mode_fixup()
606 ret = crtc_funcs->mode_fixup(state); in display_mode_fixup()
620 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_init() local
636 if (!crtc_funcs) { in display_init()
659 if (crtc_funcs->preinit) { in display_init()
660 ret = crtc_funcs->preinit(state); in display_init()
789 if (crtc_funcs->init && state->enabled_at_spl == false) { in display_init()
790 ret = crtc_funcs->init(state); in display_init()
811 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_send_mcu_cmd() local
817 if (crtc_funcs->send_mcu_cmd) { in display_send_mcu_cmd()
818 ret = crtc_funcs->send_mcu_cmd(state, type, val); in display_send_mcu_cmd()
830 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_set_plane() local
836 if (crtc_funcs->set_plane) { in display_set_plane()
837 ret = crtc_funcs->set_plane(state); in display_set_plane()
849 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_enable() local
857 if (crtc_funcs->prepare) in display_enable()
858 crtc_funcs->prepare(state); in display_enable()
863 if (crtc_funcs->enable) in display_enable()
864 crtc_funcs->enable(state); in display_enable()
870 crtc_funcs->apply_soft_te(state); in display_enable()
881 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_disable() local
891 if (crtc_funcs->disable) in display_disable()
892 crtc_funcs->disable(state); in display_disable()
909 const struct rockchip_crtc_funcs *crtc_funcs = crtc->funcs; in display_check() local
921 if (crtc_funcs->check) { in display_check()
922 ret = crtc_funcs->check(state); in display_check()
927 if (crtc_funcs->plane_check) { in display_check()
928 ret = crtc_funcs->plane_check(state); in display_check()
1306 const struct rockchip_crtc_funcs *crtc_funcs; in rockchip_vop_dump() local
1314 crtc_funcs = crtc->funcs; in rockchip_vop_dump()
1317 ret = crtc_funcs->active_regs_dump(state); in rockchip_vop_dump()
1319 ret = crtc_funcs->regs_dump(state); in rockchip_vop_dump()
1949 const struct rockchip_crtc_funcs *crtc_funcs; in rockchip_display_fixup() local
2032 crtc_funcs = crtc->funcs; in rockchip_display_fixup()
2033 if (!crtc_funcs) { in rockchip_display_fixup()