blob: d8b27854e3bf1b90f273bb19529f9d6d4a44d20e [file] [log] [blame]
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -03001/*
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002 * helper functions for SG DMA video4linux capture buffers
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -03003 *
Magnus Damm5d6aaf52008-07-16 21:27:49 -03004 * The functions expect the hardware being able to scatter gather
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -03005 * (i.e. the buffers are not linear in physical memory, but fragmented
6 * into PAGE_SIZE chunks). They also assume the driver does not need
7 * to touch the video data.
8 *
9 * (c) 2007 Mauro Carvalho Chehab, <mchehab@infradead.org>
10 *
11 * Highly based on video-buf written originally by:
12 * (c) 2001,02 Gerd Knorr <kraxel@bytesex.org>
13 * (c) 2006 Mauro Carvalho Chehab, <mchehab@infradead.org>
14 * (c) 2006 Ted Walther and John Sokol
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2
19 */
Pawel Osciak7a022642010-03-17 04:01:04 -030020#ifndef _VIDEOBUF_DMA_SG_H
21#define _VIDEOBUF_DMA_SG_H
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030022
23#include <media/videobuf-core.h>
24
25/* --------------------------------------------------------------------- */
26
27/*
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030028 * A small set of helper functions to manage buffers (both userland
29 * and kernel) for DMA.
30 *
31 * videobuf_dma_init_*()
32 * creates a buffer. The userland version takes a userspace
33 * pointer + length. The kernel version just wants the size and
34 * does memory allocation too using vmalloc_32().
35 *
36 * videobuf_dma_*()
Paul Bolle395cf962011-08-15 02:02:26 +020037 * see Documentation/DMA-API-HOWTO.txt, these functions to
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030038 * basically the same. The map function does also build a
39 * scatterlist for the buffer (and unmap frees it ...)
40 *
41 * videobuf_dma_free()
42 * no comment ...
43 *
44 */
45
46struct videobuf_dmabuf {
47 u32 magic;
48
49 /* for userland buffer */
50 int offset;
Hans Verkuil2fc11532010-09-07 06:10:45 -030051 size_t size;
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030052 struct page **pages;
53
54 /* for kernel buffers */
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -030055 void *vaddr;
James Harper7b4eeed2014-06-12 06:53:38 -030056 struct page **vaddr_pages;
57 dma_addr_t *dma_addr;
58 struct device *dev;
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030059
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030060 /* for overlay buffers (pci-pci dma) */
61 dma_addr_t bus_addr;
62
63 /* common */
64 struct scatterlist *sglist;
65 int sglen;
66 int nr_pages;
67 int direction;
68};
69
Pawel Osciak7a022642010-03-17 04:01:04 -030070struct videobuf_dma_sg_memory {
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030071 u32 magic;
72
73 /* for mmap'ed buffers */
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030074 struct videobuf_dmabuf dma;
75};
76
Laurent Pinchart95268402010-05-11 10:36:30 -030077/*
78 * Scatter-gather DMA buffer API.
79 *
80 * These functions provide a simple way to create a page list and a
81 * scatter-gather list from a kernel, userspace of physical address and map the
82 * memory for DMA operation.
83 *
84 * Despite the name, this is totally unrelated to videobuf, except that
85 * videobuf-dma-sg uses the same API internally.
86 */
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030087int videobuf_dma_free(struct videobuf_dmabuf *dma);
88
Laurent Pinchart95268402010-05-11 10:36:30 -030089int videobuf_dma_unmap(struct device *dev, struct videobuf_dmabuf *dma);
Pawel Osciak7a022642010-03-17 04:01:04 -030090struct videobuf_dmabuf *videobuf_to_dma(struct videobuf_buffer *buf);
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030091
Guennadi Liakhovetski07051352008-04-22 14:42:13 -030092void *videobuf_sg_alloc(size_t size);
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030093
Pawel Osciak7a022642010-03-17 04:01:04 -030094void videobuf_queue_sg_init(struct videobuf_queue *q,
Jonathan Corbet38a54f32009-11-17 19:43:41 -030095 const struct videobuf_queue_ops *ops,
Guennadi Liakhovetski07051352008-04-22 14:42:13 -030096 struct device *dev,
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -030097 spinlock_t *irqlock,
98 enum v4l2_buf_type type,
99 enum v4l2_field field,
100 unsigned int msize,
Hans Verkuil08bff032010-09-20 17:39:46 -0300101 void *priv,
102 struct mutex *ext_lock);
Mauro Carvalho Chehab7a7d9a892007-08-23 16:26:14 -0300103
Pawel Osciak7a022642010-03-17 04:01:04 -0300104#endif /* _VIDEOBUF_DMA_SG_H */
105