Lines Matching full:manager
90 /* If true, a display is enabled using this manager */
168 * Initialize some of the lcd_config fields for TV manager, this lets in apply_init_priv()
169 * us prevent checking if the manager is LCD or TV at some places in apply_init_priv()
179 * A LCD manager's stallmode decides whether it is in manual or auto update. TV
180 * manager is always auto update, stallmode field for TV manager is false by
185 struct mgr_priv_data *mp = get_mgr_priv(ovl->manager); in ovl_manual_update()
235 * check manager and overlay settings using overlay_info from data->info
243 * check manager and overlay settings using overlay_info from ovl->info if
286 * managers, once the manager is enabled, the extra_info in need_isr()
287 * related manager changes will be taken in by HW. in need_isr()
434 return ovl->manager ? dss_mgr_get_device(ovl->manager) : NULL; in dss_ovl_get_device()
549 if (!ovl->manager) in dss_mgr_wait_for_go_ovl()
552 mp = get_mgr_priv(ovl->manager); in dss_mgr_wait_for_go_ovl()
572 irq = dispc_mgr_get_vsync_irq(ovl->manager->id); in dss_mgr_wait_for_go_ovl()
631 mp = get_mgr_priv(ovl->manager); in dss_ovl_write_regs()
670 mp = get_mgr_priv(ovl->manager); in dss_ovl_write_regs_extra()
742 DSSERR("cannot write registers for manager %s: " in dss_write_regs()
986 /* Configure manager */ in omap_dss_mgr_apply()
1081 DSSERR("failed to enable manager %d: check_settings failed\n", in dss_mgr_enable_compat()
1182 DSSERR("manager %s is already connected to an output\n", in dss_mgr_set_output()
1189 DSSERR("output does not support manager %s\n", in dss_mgr_set_output()
1195 output->manager = mgr; in dss_mgr_set_output()
1223 DSSERR("output can't be unset when manager is enabled\n"); in dss_mgr_unset_output()
1230 mgr->output->manager = NULL; in dss_mgr_unset_output()
1262 DSSERR("cannot set timings for %s: manager needs to be disabled\n", in dss_mgr_set_timings_compat()
1290 DSSERR("cannot apply lcd config for %s: manager needs to be disabled\n", in dss_mgr_set_lcd_config_compat()
1346 if (ovl->manager) { in dss_ovl_set_manager()
1347 DSSERR("overlay '%s' already has a manager '%s'\n", in dss_ovl_set_manager()
1348 ovl->name, ovl->manager->name); in dss_ovl_set_manager()
1361 DSSERR("overlay has to be disabled to change the manager\n"); in dss_ovl_set_manager()
1368 ovl->manager = mgr; in dss_ovl_set_manager()
1394 if (!ovl->manager) { in dss_ovl_unset_manager()
1395 DSSERR("failed to detach overlay: manager not set\n"); in dss_ovl_unset_manager()
1404 DSSERR("overlay has to be disabled to unset the manager\n"); in dss_ovl_unset_manager()
1417 * manager before the configurations can go in. Return an error if the in dss_ovl_unset_manager()
1418 * overlay needed an update from the manager. in dss_ovl_unset_manager()
1420 * TODO: Instead of returning an error, try to do a dummy manager update in dss_ovl_unset_manager()
1428 DSSERR("need an update to change the manager\n"); in dss_ovl_unset_manager()
1433 ovl->manager = NULL; in dss_ovl_unset_manager()
1474 if (ovl->manager == NULL || ovl->manager->output == NULL) { in dss_ovl_enable()
1483 r = dss_check_settings(ovl->manager); in dss_ovl_enable()
1524 if (ovl->manager == NULL || ovl->manager->output == NULL) { in dss_ovl_disable()