OMAPDSS: gracefully disable overlay at error
Disable overlay via ovl->disable() interface, which will properly set flags in cache and GO bits for managers. This allows overlay user to re-enable it on next frame, thus recovering from FIFO underflows. Signed-off-by: Sergey Kibrik <sergiikibrik@ti.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
b0e449ce65
commit
595470a785
|
@ -360,8 +360,7 @@ static void dispc_error_worker(struct work_struct *work)
|
||||||
if (bit & errors) {
|
if (bit & errors) {
|
||||||
DSSERR("FIFO UNDERFLOW on %s, disabling the overlay\n",
|
DSSERR("FIFO UNDERFLOW on %s, disabling the overlay\n",
|
||||||
ovl->name);
|
ovl->name);
|
||||||
dispc_ovl_enable(ovl->id, false);
|
ovl->disable(ovl);
|
||||||
dispc_mgr_go(ovl->manager->id);
|
|
||||||
msleep(50);
|
msleep(50);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue