return dl;
}
+/* This function must be called with the display list manager lock held.*/
+static void __vsp1_dl_list_put(struct vsp1_dl_list *dl)
+{
+ if (!dl)
+ return;
+
+ dl->reg_count = 0;
+
+ 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.
*
- * 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)
{
+ unsigned long flags;
+
if (!dl)
return;
- dl->reg_count = 0;
-
- list_add_tail(&dl->list, &dl->dlm->free);
+ 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)
*/
update = !!(vsp1_read(vsp1, VI6_DL_BODY_SIZE) & VI6_DL_BODY_SIZE_UPD);
if (update) {
- vsp1_dl_list_put(dlm->pending);
+ __vsp1_dl_list_put(dlm->pending);
dlm->pending = dl;
goto done;
}
vsp1_write(vsp1, VI6_DL_BODY_SIZE, VI6_DL_BODY_SIZE_UPD |
(dl->reg_count * 8));
- vsp1_dl_list_put(dlm->queued);
+ __vsp1_dl_list_put(dlm->queued);
dlm->queued = dl;
done:
* processing by the device. The active display list, if any, won't be
* accessed anymore and can be reused.
*/
- vsp1_dl_list_put(dlm->active);
+ __vsp1_dl_list_put(dlm->active);
dlm->active = NULL;
spin_unlock(&dlm->lock);
spin_lock(&dlm->lock);
- vsp1_dl_list_put(dlm->active);
+ __vsp1_dl_list_put(dlm->active);
dlm->active = NULL;
/* Header mode is used for mem-to-mem pipelines only. We don't need to
void vsp1_dlm_reset(struct vsp1_dl_manager *dlm)
{
- vsp1_dl_list_put(dlm->active);
- vsp1_dl_list_put(dlm->queued);
- vsp1_dl_list_put(dlm->pending);
+ unsigned long flags;
+
+ 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->queued = NULL;