Lines Matching full:manager

90 	/* If true, a display is enabled using this manager */
166 * Initialize some of the lcd_config fields for TV manager, this lets in apply_init_priv()
167 * us prevent checking if the manager is LCD or TV at some places in apply_init_priv()
177 * A LCD manager's stallmode decides whether it is in manual or auto update. TV
178 * manager is always auto update, stallmode field for TV manager is false by
183 struct mgr_priv_data *mp = get_mgr_priv(ovl->manager); in ovl_manual_update()
233 * check manager and overlay settings using overlay_info from data->info
241 * check manager and overlay settings using overlay_info from ovl->info if
284 * managers, once the manager is enabled, the extra_info in need_isr()
285 * related manager changes will be taken in by HW. in need_isr()
432 return ovl->manager ? dss_mgr_get_device(ovl->manager) : NULL; in dss_ovl_get_device()
547 if (!ovl->manager) in dss_mgr_wait_for_go_ovl()
550 mp = get_mgr_priv(ovl->manager); in dss_mgr_wait_for_go_ovl()
570 irq = dispc_mgr_get_vsync_irq(ovl->manager->id); in dss_mgr_wait_for_go_ovl()
629 mp = get_mgr_priv(ovl->manager); in dss_ovl_write_regs()
668 mp = get_mgr_priv(ovl->manager); in dss_ovl_write_regs_extra()
740 DSSERR("cannot write registers for manager %s: " in dss_write_regs()
984 /* Configure manager */ in omap_dss_mgr_apply()
1079 DSSERR("failed to enable manager %d: check_settings failed\n", in dss_mgr_enable_compat()
1180 DSSERR("manager %s is already connected to an output\n", in dss_mgr_set_output()
1187 DSSERR("output does not support manager %s\n", in dss_mgr_set_output()
1193 output->manager = mgr; in dss_mgr_set_output()
1221 DSSERR("output can't be unset when manager is enabled\n"); in dss_mgr_unset_output()
1228 mgr->output->manager = NULL; in dss_mgr_unset_output()
1260 DSSERR("cannot set timings for %s: manager needs to be disabled\n", in dss_mgr_set_timings_compat()
1288 DSSERR("cannot apply lcd config for %s: manager needs to be disabled\n", in dss_mgr_set_lcd_config_compat()
1344 if (ovl->manager) { in dss_ovl_set_manager()
1345 DSSERR("overlay '%s' already has a manager '%s'\n", in dss_ovl_set_manager()
1346 ovl->name, ovl->manager->name); in dss_ovl_set_manager()
1359 DSSERR("overlay has to be disabled to change the manager\n"); in dss_ovl_set_manager()
1366 ovl->manager = mgr; in dss_ovl_set_manager()
1392 if (!ovl->manager) { in dss_ovl_unset_manager()
1393 DSSERR("failed to detach overlay: manager not set\n"); in dss_ovl_unset_manager()
1402 DSSERR("overlay has to be disabled to unset the manager\n"); in dss_ovl_unset_manager()
1415 * manager before the configurations can go in. Return an error if the in dss_ovl_unset_manager()
1416 * overlay needed an update from the manager. in dss_ovl_unset_manager()
1418 * TODO: Instead of returning an error, try to do a dummy manager update in dss_ovl_unset_manager()
1426 DSSERR("need an update to change the manager\n"); in dss_ovl_unset_manager()
1431 ovl->manager = NULL; in dss_ovl_unset_manager()
1472 if (ovl->manager == NULL || ovl->manager->output == NULL) { in dss_ovl_enable()
1481 r = dss_check_settings(ovl->manager); in dss_ovl_enable()
1522 if (ovl->manager == NULL || ovl->manager->output == NULL) { in dss_ovl_disable()