V4L/DVB: v4l videobuf: remove unused is_mmapped field
[safe/jmp/linux-2.6] / include / media / videobuf-core.h
1 /*
2  * generic helper functions for handling video4linux capture buffers
3  *
4  * (c) 2007 Mauro Carvalho Chehab, <mchehab@infradead.org>
5  *
6  * Highly based on video-buf written originally by:
7  * (c) 2001,02 Gerd Knorr <kraxel@bytesex.org>
8  * (c) 2006 Mauro Carvalho Chehab, <mchehab@infradead.org>
9  * (c) 2006 Ted Walther and John Sokol
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2
14  */
15
16 #ifndef _VIDEOBUF_CORE_H
17 #define _VIDEOBUF_CORE_H
18
19 #include <linux/poll.h>
20 #ifdef CONFIG_VIDEO_V4L1_COMPAT
21 #define __MIN_V4L1
22 #include <linux/videodev.h>
23 #endif
24 #include <linux/videodev2.h>
25
26 #define UNSET (-1U)
27
28
29 struct videobuf_buffer;
30 struct videobuf_queue;
31
32 /* --------------------------------------------------------------------- */
33
34 /*
35  * A small set of helper functions to manage video4linux buffers.
36  *
37  * struct videobuf_buffer holds the data structures used by the helper
38  * functions, additionally some commonly used fields for v4l buffers
39  * (width, height, lists, waitqueue) are in there.  That struct should
40  * be used as first element in the drivers buffer struct.
41  *
42  * about the mmap helpers (videobuf_mmap_*):
43  *
44  * The mmaper function allows to map any subset of contingous buffers.
45  * This includes one mmap() call for all buffers (which the original
46  * video4linux API uses) as well as one mmap() for every single buffer
47  * (which v4l2 uses).
48  *
49  * If there is a valid mapping for a buffer, buffer->baddr/bsize holds
50  * userspace address + size which can be feeded into the
51  * videobuf_dma_init_user function listed above.
52  *
53  */
54
55 struct videobuf_mapping {
56         unsigned int count;
57         unsigned long start;
58         unsigned long end;
59         struct videobuf_queue *q;
60 };
61
62 enum videobuf_state {
63         VIDEOBUF_NEEDS_INIT = 0,
64         VIDEOBUF_PREPARED   = 1,
65         VIDEOBUF_QUEUED     = 2,
66         VIDEOBUF_ACTIVE     = 3,
67         VIDEOBUF_DONE       = 4,
68         VIDEOBUF_ERROR      = 5,
69         VIDEOBUF_IDLE       = 6,
70 };
71
72 struct videobuf_buffer {
73         unsigned int            i;
74         u32                     magic;
75
76         /* info about the buffer */
77         unsigned int            width;
78         unsigned int            height;
79         unsigned int            bytesperline; /* use only if != 0 */
80         unsigned long           size;
81         unsigned int            input;
82         enum v4l2_field         field;
83         enum videobuf_state     state;
84         struct list_head        stream;  /* QBUF/DQBUF list */
85
86         /* touched by irq handler */
87         struct list_head        queue;
88         wait_queue_head_t       done;
89         unsigned int            field_count;
90         struct timeval          ts;
91
92         /* Memory type */
93         enum v4l2_memory        memory;
94
95         /* buffer size */
96         size_t                  bsize;
97
98         /* buffer offset (mmap + overlay) */
99         size_t                  boff;
100
101         /* buffer addr (userland ptr!) */
102         unsigned long           baddr;
103
104         /* for mmap'ed buffers */
105         struct videobuf_mapping *map;
106
107         /* Private pointer to allow specific methods to store their data */
108         int                     privsize;
109         void                    *priv;
110 };
111
112 struct videobuf_queue_ops {
113         int (*buf_setup)(struct videobuf_queue *q,
114                          unsigned int *count, unsigned int *size);
115         int (*buf_prepare)(struct videobuf_queue *q,
116                            struct videobuf_buffer *vb,
117                            enum v4l2_field field);
118         void (*buf_queue)(struct videobuf_queue *q,
119                           struct videobuf_buffer *vb);
120         void (*buf_release)(struct videobuf_queue *q,
121                             struct videobuf_buffer *vb);
122 };
123
124 #define MAGIC_QTYPE_OPS 0x12261003
125
126 /* Helper operations - device type dependent */
127 struct videobuf_qtype_ops {
128         u32                     magic;
129
130         void *(*alloc)          (size_t size);
131         void *(*vmalloc)        (struct videobuf_buffer *buf);
132         int (*iolock)           (struct videobuf_queue *q,
133                                  struct videobuf_buffer *vb,
134                                  struct v4l2_framebuffer *fbuf);
135         int (*sync)             (struct videobuf_queue *q,
136                                  struct videobuf_buffer *buf);
137         int (*video_copy_to_user)(struct videobuf_queue *q,
138                                  char __user *data,
139                                  size_t count,
140                                  int nonblocking);
141         int (*copy_stream)      (struct videobuf_queue *q,
142                                  char __user *data,
143                                  size_t count,
144                                  size_t pos,
145                                  int vbihack,
146                                  int nonblocking);
147         int (*mmap_mapper)      (struct videobuf_queue *q,
148                                 struct vm_area_struct *vma);
149 };
150
151 struct videobuf_queue {
152         struct mutex               vb_lock;
153         spinlock_t                 *irqlock;
154         struct device              *dev;
155
156         wait_queue_head_t          wait; /* wait if queue is empty */
157
158         enum v4l2_buf_type         type;
159         unsigned int               inputs; /* for V4L2_BUF_FLAG_INPUT */
160         unsigned int               msize;
161         enum v4l2_field            field;
162         enum v4l2_field            last;   /* for field=V4L2_FIELD_ALTERNATE */
163         struct videobuf_buffer     *bufs[VIDEO_MAX_FRAME];
164         const struct videobuf_queue_ops  *ops;
165         struct videobuf_qtype_ops  *int_ops;
166
167         unsigned int               streaming:1;
168         unsigned int               reading:1;
169
170         /* capture via mmap() + ioctl(QBUF/DQBUF) */
171         struct list_head           stream;
172
173         /* capture via read() */
174         unsigned int               read_off;
175         struct videobuf_buffer     *read_buf;
176
177         /* driver private data */
178         void                       *priv_data;
179 };
180
181 int videobuf_waiton(struct videobuf_buffer *vb, int non_blocking, int intr);
182 int videobuf_iolock(struct videobuf_queue *q, struct videobuf_buffer *vb,
183                 struct v4l2_framebuffer *fbuf);
184
185 void *videobuf_alloc(struct videobuf_queue* q);
186
187 /* Used on videobuf-dvb */
188 void *videobuf_queue_to_vmalloc(struct videobuf_queue *q,
189                                 struct videobuf_buffer *buf);
190
191 void videobuf_queue_core_init(struct videobuf_queue *q,
192                          const struct videobuf_queue_ops *ops,
193                          struct device *dev,
194                          spinlock_t *irqlock,
195                          enum v4l2_buf_type type,
196                          enum v4l2_field field,
197                          unsigned int msize,
198                          void *priv,
199                          struct videobuf_qtype_ops *int_ops);
200 int  videobuf_queue_is_busy(struct videobuf_queue *q);
201 void videobuf_queue_cancel(struct videobuf_queue *q);
202
203 enum v4l2_field videobuf_next_field(struct videobuf_queue *q);
204 int videobuf_reqbufs(struct videobuf_queue *q,
205                      struct v4l2_requestbuffers *req);
206 int videobuf_querybuf(struct videobuf_queue *q, struct v4l2_buffer *b);
207 int videobuf_qbuf(struct videobuf_queue *q,
208                   struct v4l2_buffer *b);
209 int videobuf_dqbuf(struct videobuf_queue *q,
210                    struct v4l2_buffer *b, int nonblocking);
211 #ifdef CONFIG_VIDEO_V4L1_COMPAT
212 int videobuf_cgmbuf(struct videobuf_queue *q,
213                     struct video_mbuf *mbuf, int count);
214 #endif
215 int videobuf_streamon(struct videobuf_queue *q);
216 int videobuf_streamoff(struct videobuf_queue *q);
217
218 void videobuf_stop(struct videobuf_queue *q);
219
220 int videobuf_read_start(struct videobuf_queue *q);
221 void videobuf_read_stop(struct videobuf_queue *q);
222 ssize_t videobuf_read_stream(struct videobuf_queue *q,
223                              char __user *data, size_t count, loff_t *ppos,
224                              int vbihack, int nonblocking);
225 ssize_t videobuf_read_one(struct videobuf_queue *q,
226                           char __user *data, size_t count, loff_t *ppos,
227                           int nonblocking);
228 unsigned int videobuf_poll_stream(struct file *file,
229                                   struct videobuf_queue *q,
230                                   poll_table *wait);
231
232 int videobuf_mmap_setup(struct videobuf_queue *q,
233                         unsigned int bcount, unsigned int bsize,
234                         enum v4l2_memory memory);
235 int __videobuf_mmap_setup(struct videobuf_queue *q,
236                         unsigned int bcount, unsigned int bsize,
237                         enum v4l2_memory memory);
238 int videobuf_mmap_free(struct videobuf_queue *q);
239 int videobuf_mmap_mapper(struct videobuf_queue *q,
240                          struct vm_area_struct *vma);
241
242 #endif