[media] v4l: vsp1: dl: Fix race conditions
The vsp1_dl_list_put() function expects to be called with the display list manager lock held. This assumption is correct for calls from within the vsp1_dl.c file, but not for the external calls. Fix it by taking the lock inside the function and providing an unlocked version for the internal callers. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Родитель
b25854e134
Коммит
d2c1b028db
|
@ -163,18 +163,8 @@ struct vsp1_dl_list *vsp1_dl_list_get(struct vsp1_dl_manager *dlm)
|
||||||
return dl;
|
return dl;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/* This function must be called with the display list manager lock held.*/
|
||||||
* vsp1_dl_list_put - Release a display list
|
static void __vsp1_dl_list_put(struct vsp1_dl_list *dl)
|
||||||
* @dl: The display list
|
|
||||||
*
|
|
||||||
* Release the display list and return it to the pool of free lists.
|
|
||||||
*
|
|
||||||
* This function must be called with the display list manager lock held.
|
|
||||||
*
|
|
||||||
* Passing a NULL pointer to this function is safe, in that case no operation
|
|
||||||
* will be performed.
|
|
||||||
*/
|
|
||||||
void vsp1_dl_list_put(struct vsp1_dl_list *dl)
|
|
||||||
{
|
{
|
||||||
if (!dl)
|
if (!dl)
|
||||||
return;
|
return;
|
||||||
|
@ -184,6 +174,27 @@ void vsp1_dl_list_put(struct vsp1_dl_list *dl)
|
||||||
list_add_tail(&dl->list, &dl->dlm->free);
|
list_add_tail(&dl->list, &dl->dlm->free);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* vsp1_dl_list_put - Release a display list
|
||||||
|
* @dl: The display list
|
||||||
|
*
|
||||||
|
* Release the display list and return it to the pool of free lists.
|
||||||
|
*
|
||||||
|
* Passing a NULL pointer to this function is safe, in that case no operation
|
||||||
|
* will be performed.
|
||||||
|
*/
|
||||||
|
void vsp1_dl_list_put(struct vsp1_dl_list *dl)
|
||||||
|
{
|
||||||
|
unsigned long flags;
|
||||||
|
|
||||||
|
if (!dl)
|
||||||
|
return;
|
||||||
|
|
||||||
|
spin_lock_irqsave(&dl->dlm->lock, flags);
|
||||||
|
__vsp1_dl_list_put(dl);
|
||||||
|
spin_unlock_irqrestore(&dl->dlm->lock, flags);
|
||||||
|
}
|
||||||
|
|
||||||
void vsp1_dl_list_write(struct vsp1_dl_list *dl, u32 reg, u32 data)
|
void vsp1_dl_list_write(struct vsp1_dl_list *dl, u32 reg, u32 data)
|
||||||
{
|
{
|
||||||
dl->body[dl->reg_count].addr = reg;
|
dl->body[dl->reg_count].addr = reg;
|
||||||
|
@ -219,7 +230,7 @@ void vsp1_dl_list_commit(struct vsp1_dl_list *dl)
|
||||||
*/
|
*/
|
||||||
update = !!(vsp1_read(vsp1, VI6_DL_BODY_SIZE) & VI6_DL_BODY_SIZE_UPD);
|
update = !!(vsp1_read(vsp1, VI6_DL_BODY_SIZE) & VI6_DL_BODY_SIZE_UPD);
|
||||||
if (update) {
|
if (update) {
|
||||||
vsp1_dl_list_put(dlm->pending);
|
__vsp1_dl_list_put(dlm->pending);
|
||||||
dlm->pending = dl;
|
dlm->pending = dl;
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
@ -232,7 +243,7 @@ void vsp1_dl_list_commit(struct vsp1_dl_list *dl)
|
||||||
vsp1_write(vsp1, VI6_DL_BODY_SIZE, VI6_DL_BODY_SIZE_UPD |
|
vsp1_write(vsp1, VI6_DL_BODY_SIZE, VI6_DL_BODY_SIZE_UPD |
|
||||||
(dl->reg_count * 8));
|
(dl->reg_count * 8));
|
||||||
|
|
||||||
vsp1_dl_list_put(dlm->queued);
|
__vsp1_dl_list_put(dlm->queued);
|
||||||
dlm->queued = dl;
|
dlm->queued = dl;
|
||||||
|
|
||||||
done:
|
done:
|
||||||
|
@ -252,7 +263,7 @@ void vsp1_dlm_irq_display_start(struct vsp1_dl_manager *dlm)
|
||||||
* processing by the device. The active display list, if any, won't be
|
* processing by the device. The active display list, if any, won't be
|
||||||
* accessed anymore and can be reused.
|
* accessed anymore and can be reused.
|
||||||
*/
|
*/
|
||||||
vsp1_dl_list_put(dlm->active);
|
__vsp1_dl_list_put(dlm->active);
|
||||||
dlm->active = NULL;
|
dlm->active = NULL;
|
||||||
|
|
||||||
spin_unlock(&dlm->lock);
|
spin_unlock(&dlm->lock);
|
||||||
|
@ -264,7 +275,7 @@ void vsp1_dlm_irq_frame_end(struct vsp1_dl_manager *dlm)
|
||||||
|
|
||||||
spin_lock(&dlm->lock);
|
spin_lock(&dlm->lock);
|
||||||
|
|
||||||
vsp1_dl_list_put(dlm->active);
|
__vsp1_dl_list_put(dlm->active);
|
||||||
dlm->active = NULL;
|
dlm->active = NULL;
|
||||||
|
|
||||||
/* Header mode is used for mem-to-mem pipelines only. We don't need to
|
/* Header mode is used for mem-to-mem pipelines only. We don't need to
|
||||||
|
@ -327,9 +338,15 @@ void vsp1_dlm_setup(struct vsp1_device *vsp1)
|
||||||
|
|
||||||
void vsp1_dlm_reset(struct vsp1_dl_manager *dlm)
|
void vsp1_dlm_reset(struct vsp1_dl_manager *dlm)
|
||||||
{
|
{
|
||||||
vsp1_dl_list_put(dlm->active);
|
unsigned long flags;
|
||||||
vsp1_dl_list_put(dlm->queued);
|
|
||||||
vsp1_dl_list_put(dlm->pending);
|
spin_lock_irqsave(&dlm->lock, flags);
|
||||||
|
|
||||||
|
__vsp1_dl_list_put(dlm->active);
|
||||||
|
__vsp1_dl_list_put(dlm->queued);
|
||||||
|
__vsp1_dl_list_put(dlm->pending);
|
||||||
|
|
||||||
|
spin_unlock_irqrestore(&dlm->lock, flags);
|
||||||
|
|
||||||
dlm->active = NULL;
|
dlm->active = NULL;
|
||||||
dlm->queued = NULL;
|
dlm->queued = NULL;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче