]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blobdiff - releases/4.14.111/media-s5p-jpeg-correct-return-type-for-mem2mem-buffe.patch
Linux 4.14.111
[thirdparty/kernel/stable-queue.git] / releases / 4.14.111 / media-s5p-jpeg-correct-return-type-for-mem2mem-buffe.patch
diff --git a/releases/4.14.111/media-s5p-jpeg-correct-return-type-for-mem2mem-buffe.patch b/releases/4.14.111/media-s5p-jpeg-correct-return-type-for-mem2mem-buffe.patch
new file mode 100644 (file)
index 0000000..d0640e7
--- /dev/null
@@ -0,0 +1,199 @@
+From a694a6aab0c7cd6ecdc9a1a949aa30afc725bc2c Mon Sep 17 00:00:00 2001
+From: Ezequiel Garcia <ezequiel@collabora.com>
+Date: Fri, 8 Feb 2019 11:17:45 -0500
+Subject: media: s5p-jpeg: Correct return type for mem2mem buffer helpers
+
+[ Upstream commit 4a88f89885c7cf65c62793f385261a6e3315178a ]
+
+Fix the assigned type of mem2mem buffer handling API.
+Namely, these functions:
+
+ v4l2_m2m_next_buf
+ v4l2_m2m_last_buf
+ v4l2_m2m_buf_remove
+ v4l2_m2m_next_src_buf
+ v4l2_m2m_next_dst_buf
+ v4l2_m2m_last_src_buf
+ v4l2_m2m_last_dst_buf
+ v4l2_m2m_src_buf_remove
+ v4l2_m2m_dst_buf_remove
+
+return a struct vb2_v4l2_buffer, and not a struct vb2_buffer.
+
+Fixing this is necessary to fix the mem2mem buffer handling API,
+changing the return to the correct struct vb2_v4l2_buffer instead
+of a void pointer.
+
+Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com>
+Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
+Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
+Signed-off-by: Sasha Levin <sashal@kernel.org>
+---
+ drivers/media/platform/s5p-jpeg/jpeg-core.c | 38 ++++++++++-----------
+ 1 file changed, 19 insertions(+), 19 deletions(-)
+
+diff --git a/drivers/media/platform/s5p-jpeg/jpeg-core.c b/drivers/media/platform/s5p-jpeg/jpeg-core.c
+index faac8161b683..d7679e4585fd 100644
+--- a/drivers/media/platform/s5p-jpeg/jpeg-core.c
++++ b/drivers/media/platform/s5p-jpeg/jpeg-core.c
+@@ -793,14 +793,14 @@ static void skip(struct s5p_jpeg_buffer *buf, long len);
+ static void exynos4_jpeg_parse_decode_h_tbl(struct s5p_jpeg_ctx *ctx)
+ {
+       struct s5p_jpeg *jpeg = ctx->jpeg;
+-      struct vb2_buffer *vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
++      struct vb2_v4l2_buffer *vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
+       struct s5p_jpeg_buffer jpeg_buffer;
+       unsigned int word;
+       int c, x, components;
+       jpeg_buffer.size = 2; /* Ls */
+       jpeg_buffer.data =
+-              (unsigned long)vb2_plane_vaddr(vb, 0) + ctx->out_q.sos + 2;
++              (unsigned long)vb2_plane_vaddr(&vb->vb2_buf, 0) + ctx->out_q.sos + 2;
+       jpeg_buffer.curr = 0;
+       word = 0;
+@@ -830,14 +830,14 @@ static void exynos4_jpeg_parse_decode_h_tbl(struct s5p_jpeg_ctx *ctx)
+ static void exynos4_jpeg_parse_huff_tbl(struct s5p_jpeg_ctx *ctx)
+ {
+       struct s5p_jpeg *jpeg = ctx->jpeg;
+-      struct vb2_buffer *vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
++      struct vb2_v4l2_buffer *vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
+       struct s5p_jpeg_buffer jpeg_buffer;
+       unsigned int word;
+       int c, i, n, j;
+       for (j = 0; j < ctx->out_q.dht.n; ++j) {
+               jpeg_buffer.size = ctx->out_q.dht.len[j];
+-              jpeg_buffer.data = (unsigned long)vb2_plane_vaddr(vb, 0) +
++              jpeg_buffer.data = (unsigned long)vb2_plane_vaddr(&vb->vb2_buf, 0) +
+                                  ctx->out_q.dht.marker[j];
+               jpeg_buffer.curr = 0;
+@@ -889,13 +889,13 @@ static void exynos4_jpeg_parse_huff_tbl(struct s5p_jpeg_ctx *ctx)
+ static void exynos4_jpeg_parse_decode_q_tbl(struct s5p_jpeg_ctx *ctx)
+ {
+       struct s5p_jpeg *jpeg = ctx->jpeg;
+-      struct vb2_buffer *vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
++      struct vb2_v4l2_buffer *vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
+       struct s5p_jpeg_buffer jpeg_buffer;
+       int c, x, components;
+       jpeg_buffer.size = ctx->out_q.sof_len;
+       jpeg_buffer.data =
+-              (unsigned long)vb2_plane_vaddr(vb, 0) + ctx->out_q.sof;
++              (unsigned long)vb2_plane_vaddr(&vb->vb2_buf, 0) + ctx->out_q.sof;
+       jpeg_buffer.curr = 0;
+       skip(&jpeg_buffer, 5); /* P, Y, X */
+@@ -920,14 +920,14 @@ static void exynos4_jpeg_parse_decode_q_tbl(struct s5p_jpeg_ctx *ctx)
+ static void exynos4_jpeg_parse_q_tbl(struct s5p_jpeg_ctx *ctx)
+ {
+       struct s5p_jpeg *jpeg = ctx->jpeg;
+-      struct vb2_buffer *vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
++      struct vb2_v4l2_buffer *vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
+       struct s5p_jpeg_buffer jpeg_buffer;
+       unsigned int word;
+       int c, i, j;
+       for (j = 0; j < ctx->out_q.dqt.n; ++j) {
+               jpeg_buffer.size = ctx->out_q.dqt.len[j];
+-              jpeg_buffer.data = (unsigned long)vb2_plane_vaddr(vb, 0) +
++              jpeg_buffer.data = (unsigned long)vb2_plane_vaddr(&vb->vb2_buf, 0) +
+                                  ctx->out_q.dqt.marker[j];
+               jpeg_buffer.curr = 0;
+@@ -2072,15 +2072,15 @@ static void s5p_jpeg_device_run(void *priv)
+ {
+       struct s5p_jpeg_ctx *ctx = priv;
+       struct s5p_jpeg *jpeg = ctx->jpeg;
+-      struct vb2_buffer *src_buf, *dst_buf;
++      struct vb2_v4l2_buffer *src_buf, *dst_buf;
+       unsigned long src_addr, dst_addr, flags;
+       spin_lock_irqsave(&ctx->jpeg->slock, flags);
+       src_buf = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
+       dst_buf = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
+-      src_addr = vb2_dma_contig_plane_dma_addr(src_buf, 0);
+-      dst_addr = vb2_dma_contig_plane_dma_addr(dst_buf, 0);
++      src_addr = vb2_dma_contig_plane_dma_addr(&src_buf->vb2_buf, 0);
++      dst_addr = vb2_dma_contig_plane_dma_addr(&dst_buf->vb2_buf, 0);
+       s5p_jpeg_reset(jpeg->regs);
+       s5p_jpeg_poweron(jpeg->regs);
+@@ -2153,7 +2153,7 @@ static void exynos4_jpeg_set_img_addr(struct s5p_jpeg_ctx *ctx)
+ {
+       struct s5p_jpeg *jpeg = ctx->jpeg;
+       struct s5p_jpeg_fmt *fmt;
+-      struct vb2_buffer *vb;
++      struct vb2_v4l2_buffer *vb;
+       struct s5p_jpeg_addr jpeg_addr = {};
+       u32 pix_size, padding_bytes = 0;
+@@ -2172,7 +2172,7 @@ static void exynos4_jpeg_set_img_addr(struct s5p_jpeg_ctx *ctx)
+               vb = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
+       }
+-      jpeg_addr.y = vb2_dma_contig_plane_dma_addr(vb, 0);
++      jpeg_addr.y = vb2_dma_contig_plane_dma_addr(&vb->vb2_buf, 0);
+       if (fmt->colplanes == 2) {
+               jpeg_addr.cb = jpeg_addr.y + pix_size - padding_bytes;
+@@ -2190,7 +2190,7 @@ static void exynos4_jpeg_set_img_addr(struct s5p_jpeg_ctx *ctx)
+ static void exynos4_jpeg_set_jpeg_addr(struct s5p_jpeg_ctx *ctx)
+ {
+       struct s5p_jpeg *jpeg = ctx->jpeg;
+-      struct vb2_buffer *vb;
++      struct vb2_v4l2_buffer *vb;
+       unsigned int jpeg_addr = 0;
+       if (ctx->mode == S5P_JPEG_ENCODE)
+@@ -2198,7 +2198,7 @@ static void exynos4_jpeg_set_jpeg_addr(struct s5p_jpeg_ctx *ctx)
+       else
+               vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
+-      jpeg_addr = vb2_dma_contig_plane_dma_addr(vb, 0);
++      jpeg_addr = vb2_dma_contig_plane_dma_addr(&vb->vb2_buf, 0);
+       if (jpeg->variant->version == SJPEG_EXYNOS5433 &&
+           ctx->mode == S5P_JPEG_DECODE)
+               jpeg_addr += ctx->out_q.sos;
+@@ -2314,7 +2314,7 @@ static void exynos3250_jpeg_set_img_addr(struct s5p_jpeg_ctx *ctx)
+ {
+       struct s5p_jpeg *jpeg = ctx->jpeg;
+       struct s5p_jpeg_fmt *fmt;
+-      struct vb2_buffer *vb;
++      struct vb2_v4l2_buffer *vb;
+       struct s5p_jpeg_addr jpeg_addr = {};
+       u32 pix_size;
+@@ -2328,7 +2328,7 @@ static void exynos3250_jpeg_set_img_addr(struct s5p_jpeg_ctx *ctx)
+               fmt = ctx->cap_q.fmt;
+       }
+-      jpeg_addr.y = vb2_dma_contig_plane_dma_addr(vb, 0);
++      jpeg_addr.y = vb2_dma_contig_plane_dma_addr(&vb->vb2_buf, 0);
+       if (fmt->colplanes == 2) {
+               jpeg_addr.cb = jpeg_addr.y + pix_size;
+@@ -2346,7 +2346,7 @@ static void exynos3250_jpeg_set_img_addr(struct s5p_jpeg_ctx *ctx)
+ static void exynos3250_jpeg_set_jpeg_addr(struct s5p_jpeg_ctx *ctx)
+ {
+       struct s5p_jpeg *jpeg = ctx->jpeg;
+-      struct vb2_buffer *vb;
++      struct vb2_v4l2_buffer *vb;
+       unsigned int jpeg_addr = 0;
+       if (ctx->mode == S5P_JPEG_ENCODE)
+@@ -2354,7 +2354,7 @@ static void exynos3250_jpeg_set_jpeg_addr(struct s5p_jpeg_ctx *ctx)
+       else
+               vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
+-      jpeg_addr = vb2_dma_contig_plane_dma_addr(vb, 0);
++      jpeg_addr = vb2_dma_contig_plane_dma_addr(&vb->vb2_buf, 0);
+       exynos3250_jpeg_jpgadr(jpeg->regs, jpeg_addr);
+ }
+-- 
+2.19.1
+