Commit 28a202c5 authored by Ezequiel Garcia's avatar Ezequiel Garcia Committed by Mauro Carvalho Chehab

media: hantro: Use v4l2_m2m_buf_done_and_job_finish

Let the core sort out the nuances of returning buffers
to userspace, by using the v4l2_m2m_buf_done_and_job_finish
helper.
Signed-off-by: default avatarEzequiel Garcia <ezequiel@collabora.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 6837e43e
...@@ -101,8 +101,8 @@ static void hantro_job_finish(struct hantro_dev *vpu, ...@@ -101,8 +101,8 @@ static void hantro_job_finish(struct hantro_dev *vpu,
pm_runtime_put_autosuspend(vpu->dev); pm_runtime_put_autosuspend(vpu->dev);
clk_bulk_disable(vpu->variant->num_clocks, vpu->clocks); clk_bulk_disable(vpu->variant->num_clocks, vpu->clocks);
src = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx); src = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
dst = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx); dst = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
if (WARN_ON(!src)) if (WARN_ON(!src))
return; return;
...@@ -112,14 +112,14 @@ static void hantro_job_finish(struct hantro_dev *vpu, ...@@ -112,14 +112,14 @@ static void hantro_job_finish(struct hantro_dev *vpu,
src->sequence = ctx->sequence_out++; src->sequence = ctx->sequence_out++;
dst->sequence = ctx->sequence_cap++; dst->sequence = ctx->sequence_cap++;
if (ctx->buf_finish) {
ret = ctx->buf_finish(ctx, &dst->vb2_buf, bytesused); ret = ctx->buf_finish(ctx, &dst->vb2_buf, bytesused);
if (ret) if (ret)
result = VB2_BUF_STATE_ERROR; result = VB2_BUF_STATE_ERROR;
}
v4l2_m2m_buf_done(src, result); v4l2_m2m_buf_done_and_job_finish(ctx->dev->m2m_dev, ctx->fh.m2m_ctx,
v4l2_m2m_buf_done(dst, result); result);
v4l2_m2m_job_finish(vpu->m2m_dev, ctx->fh.m2m_ctx);
} }
void hantro_irq_done(struct hantro_dev *vpu, unsigned int bytesused, void hantro_irq_done(struct hantro_dev *vpu, unsigned int bytesused,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment