From: Marek Szyprowski <m.szyprowski@samsung.com>
To: Philipp Zabel <p.zabel@pengutronix.de>, Pawel Osciak <pawel@osciak.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>,
Mauro Carvalho Chehab <m.chehab@samsung.com>,
linux-media@vger.kernel.org
Subject: Re: [PATCH] [media] videobuf2-dma-contig: allow to vmap contiguous dma buffers
Date: Thu, 29 May 2014 15:14:58 +0200 [thread overview]
Message-ID: <538732D2.8020205@samsung.com> (raw)
In-Reply-To: <1401113852-27318-1-git-send-email-p.zabel@pengutronix.de>
Hello,
On 2014-05-26 16:17, Philipp Zabel wrote:
> This allows drivers to vmap contiguous dma buffers so they can inspect the
> buffer contents with the CPU. This will be needed for the CODA driver's JPEG
> handling. On CODA960, the header parsing has to be done on the CPU. The
> hardware modules can only process the entropy coded segment after all
> registers and tables are set up.
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Acked-by: Marek Szyprowski <m.szyprowski@samsung.com>
> ---
> drivers/media/v4l2-core/videobuf2-dma-contig.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/media/v4l2-core/videobuf2-dma-contig.c b/drivers/media/v4l2-core/videobuf2-dma-contig.c
> index 880be07..6b254b8 100644
> --- a/drivers/media/v4l2-core/videobuf2-dma-contig.c
> +++ b/drivers/media/v4l2-core/videobuf2-dma-contig.c
> @@ -98,6 +98,9 @@ static void *vb2_dc_vaddr(void *buf_priv)
> {
> struct vb2_dc_buf *buf = buf_priv;
>
> + if (!buf->vaddr && buf->db_attach)
> + buf->vaddr = dma_buf_vmap(buf->db_attach->dmabuf);
> +
> return buf->vaddr;
> }
>
> @@ -735,6 +738,7 @@ static int vb2_dc_map_dmabuf(void *mem_priv)
>
> buf->dma_addr = sg_dma_address(sgt->sgl);
> buf->dma_sgt = sgt;
> + buf->vaddr = NULL;
>
> return 0;
> }
> @@ -754,6 +758,10 @@ static void vb2_dc_unmap_dmabuf(void *mem_priv)
> return;
> }
>
> + if (buf->vaddr) {
> + dma_buf_vunmap(buf->db_attach->dmabuf, buf->vaddr);
> + buf->vaddr = NULL;
> + }
> dma_buf_unmap_attachment(buf->db_attach, sgt, buf->dma_dir);
>
> buf->dma_addr = 0;
Best regards
--
Marek Szyprowski, PhD
Samsung R&D Institute Poland
prev parent reply other threads:[~2014-05-29 13:14 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-26 14:17 [PATCH] [media] videobuf2-dma-contig: allow to vmap contiguous dma buffers Philipp Zabel
2014-05-29 13:14 ` Marek Szyprowski [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=538732D2.8020205@samsung.com \
--to=m.szyprowski@samsung.com \
--cc=kyungmin.park@samsung.com \
--cc=linux-media@vger.kernel.org \
--cc=m.chehab@samsung.com \
--cc=p.zabel@pengutronix.de \
--cc=pawel@osciak.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).