blob: 375f26abd9161b500038f4ba8ff8e2f89b51f323 [file] [log] [blame]
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001/*
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03002 * tm6000-video.c - driver for TM5600/TM6000/TM6010 USB video capture devices
3 *
4 * Copyright (C) 2006-2007 Mauro Carvalho Chehab <mchehab@infradead.org>
5 *
6 * Copyright (C) 2007 Michel Ludwig <michel.ludwig@gmail.com>
7 * - Fixed module load/unload
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation version 2
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030021 */
Thierry Reding3d1a51d2011-08-04 04:14:01 -030022
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030023#include <linux/module.h>
24#include <linux/delay.h>
25#include <linux/errno.h>
26#include <linux/fs.h>
27#include <linux/kernel.h>
28#include <linux/slab.h>
29#include <linux/mm.h>
30#include <linux/ioport.h>
31#include <linux/init.h>
32#include <linux/sched.h>
33#include <linux/random.h>
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030034#include <linux/usb.h>
35#include <linux/videodev2.h>
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -030036#include <media/v4l2-ioctl.h>
Stefan Ringel886a3c02011-05-09 16:53:50 -030037#include <media/tuner.h>
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030038#include <linux/interrupt.h>
39#include <linux/kthread.h>
40#include <linux/highmem.h>
41#include <linux/freezer.h>
42
43#include "tm6000-regs.h"
44#include "tm6000.h"
45
46#define BUFFER_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
47
Michel Ludwig95a83822007-07-24 08:06:45 -030048/* Limits minimum and default number of buffers */
49#define TM6000_MIN_BUF 4
50#define TM6000_DEF_BUF 8
51
Stefan Ringel5a4b55e2010-05-19 13:58:27 -030052#define TM6000_MAX_ISO_PACKETS 46 /* Max number of ISO packets */
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -030053
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030054/* Declare static vars that will be used as parameters */
55static unsigned int vid_limit = 16; /* Video memory limit, in Mb */
56static int video_nr = -1; /* /dev/videoN, -1 for autodetect */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -030057static int radio_nr = -1; /* /dev/radioN, -1 for autodetect */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030058
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030059/* Debug level */
60int tm6000_debug;
Mauro Carvalho Chehabfaa7c132010-06-04 21:08:25 -030061EXPORT_SYMBOL_GPL(tm6000_debug);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030062
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -030063static const struct v4l2_queryctrl no_ctrl = {
64 .name = "42",
65 .flags = V4L2_CTRL_FLAG_DISABLED,
66};
67
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030068/* supported controls */
69static struct v4l2_queryctrl tm6000_qctrl[] = {
70 {
71 .id = V4L2_CID_BRIGHTNESS,
72 .type = V4L2_CTRL_TYPE_INTEGER,
73 .name = "Brightness",
74 .minimum = 0,
75 .maximum = 255,
76 .step = 1,
77 .default_value = 54,
78 .flags = 0,
79 }, {
80 .id = V4L2_CID_CONTRAST,
81 .type = V4L2_CTRL_TYPE_INTEGER,
82 .name = "Contrast",
83 .minimum = 0,
84 .maximum = 255,
85 .step = 0x1,
86 .default_value = 119,
87 .flags = 0,
88 }, {
89 .id = V4L2_CID_SATURATION,
90 .type = V4L2_CTRL_TYPE_INTEGER,
91 .name = "Saturation",
92 .minimum = 0,
93 .maximum = 255,
94 .step = 0x1,
95 .default_value = 112,
96 .flags = 0,
97 }, {
98 .id = V4L2_CID_HUE,
99 .type = V4L2_CTRL_TYPE_INTEGER,
100 .name = "Hue",
101 .minimum = -128,
102 .maximum = 127,
103 .step = 0x1,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300104 .default_value = 0,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300105 .flags = 0,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300106 },
107 /* --- audio --- */
108 {
109 .id = V4L2_CID_AUDIO_MUTE,
110 .name = "Mute",
111 .minimum = 0,
112 .maximum = 1,
113 .type = V4L2_CTRL_TYPE_BOOLEAN,
114 }, {
115 .id = V4L2_CID_AUDIO_VOLUME,
116 .name = "Volume",
117 .minimum = -15,
118 .maximum = 15,
119 .step = 1,
120 .default_value = 0,
121 .type = V4L2_CTRL_TYPE_INTEGER,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300122 }
123};
124
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300125static const unsigned int CTRLS = ARRAY_SIZE(tm6000_qctrl);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300126static int qctl_regs[ARRAY_SIZE(tm6000_qctrl)];
127
128static struct tm6000_fmt format[] = {
129 {
130 .name = "4:2:2, packed, YVY2",
131 .fourcc = V4L2_PIX_FMT_YUYV,
132 .depth = 16,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300133 }, {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300134 .name = "4:2:2, packed, UYVY",
135 .fourcc = V4L2_PIX_FMT_UYVY,
136 .depth = 16,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300137 }, {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300138 .name = "A/V + VBI mux packet",
139 .fourcc = V4L2_PIX_FMT_TM6000,
140 .depth = 16,
141 }
142};
143
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300144static const struct v4l2_queryctrl *ctrl_by_id(unsigned int id)
145{
146 unsigned int i;
147
148 for (i = 0; i < CTRLS; i++)
149 if (tm6000_qctrl[i].id == id)
150 return tm6000_qctrl+i;
151 return NULL;
152}
153
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300154/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300155 * DMA and thread functions
156 * ------------------------------------------------------------------
157 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300158
159#define norm_maxw(a) 720
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -0300160#define norm_maxh(a) 576
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300161
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300162#define norm_minw(a) norm_maxw(a)
163#define norm_minh(a) norm_maxh(a)
164
165/*
166 * video-buf generic routine to get the next available buffer
167 */
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300168static inline void get_next_buf(struct tm6000_dmaqueue *dma_q,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300169 struct tm6000_buffer **buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300170{
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300171 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300172 char *outp;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300173
174 if (list_empty(&dma_q->active)) {
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300175 dprintk(dev, V4L2_DEBUG_QUEUE, "No active queue to serve\n");
Mauro Carvalho Chehab1f9305b2008-11-28 06:44:06 -0300176 *buf = NULL;
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300177 return;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300178 }
179
180 *buf = list_entry(dma_q->active.next,
181 struct tm6000_buffer, vb.queue);
182
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300183 /* Cleans up buffer - Useful for testing for frame/URB loss */
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300184 outp = videobuf_to_vmalloc(&(*buf)->vb);
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300185
186 return;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300187}
188
189/*
190 * Announces that a buffer were filled and request the next
191 */
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300192static inline void buffer_filled(struct tm6000_core *dev,
193 struct tm6000_dmaqueue *dma_q,
194 struct tm6000_buffer *buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300195{
196 /* Advice that buffer was filled */
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300197 dprintk(dev, V4L2_DEBUG_ISOC, "[%p/%d] wakeup\n", buf, buf->vb.i);
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300198 buf->vb.state = VIDEOBUF_DONE;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300199 buf->vb.field_count++;
200 do_gettimeofday(&buf->vb.ts);
201
202 list_del(&buf->vb.queue);
203 wake_up(&buf->vb.done);
204}
205
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300206/*
207 * Identify the tm5600/6000 buffer header type and properly handles
208 */
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300209static int copy_streams(u8 *data, unsigned long len,
210 struct urb *urb)
Mauro Carvalho Chehabe2c95002007-09-19 15:39:22 -0300211{
212 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300213 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
214 u8 *ptr = data, *endp = data+len, c;
215 unsigned long header = 0;
216 int rc = 0;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300217 unsigned int cmd, cpysize, pktsize, size, field, block, line, pos = 0;
Jarod Wilsoncc73b4b2011-04-11 18:49:24 -0300218 struct tm6000_buffer *vbuf = NULL;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300219 char *voutp = NULL;
220 unsigned int linewidth;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300221
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300222 if (!dev->radio) {
223 /* get video buffer */
224 get_next_buf(dma_q, &vbuf);
225
226 if (!vbuf)
227 return rc;
228 voutp = videobuf_to_vmalloc(&vbuf->vb);
229
230 if (!voutp)
231 return 0;
232 }
Mauro Carvalho Chehabe2c95002007-09-19 15:39:22 -0300233
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300234 for (ptr = data; ptr < endp;) {
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300235 if (!dev->isoc_ctl.cmd) {
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300236 /* Header */
237 if (dev->isoc_ctl.tmp_buf_len > 0) {
238 /* from last urb or packet */
239 header = dev->isoc_ctl.tmp_buf;
240 if (4 - dev->isoc_ctl.tmp_buf_len > 0) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300241 memcpy((u8 *)&header +
Mauro Carvalho Chehab801dd3b2010-05-02 17:14:33 -0300242 dev->isoc_ctl.tmp_buf_len,
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300243 ptr,
Mauro Carvalho Chehab801dd3b2010-05-02 17:14:33 -0300244 4 - dev->isoc_ctl.tmp_buf_len);
245 ptr += 4 - dev->isoc_ctl.tmp_buf_len;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300246 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300247 dev->isoc_ctl.tmp_buf_len = 0;
248 } else {
249 if (ptr + 3 >= endp) {
250 /* have incomplete header */
251 dev->isoc_ctl.tmp_buf_len = endp - ptr;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300252 memcpy(&dev->isoc_ctl.tmp_buf, ptr,
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300253 dev->isoc_ctl.tmp_buf_len);
254 return rc;
255 }
256 /* Seek for sync */
257 for (; ptr < endp - 3; ptr++) {
258 if (*(ptr + 3) == 0x47)
259 break;
260 }
261 /* Get message header */
262 header = *(unsigned long *)ptr;
263 ptr += 4;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300264 }
Mauro Carvalho Chehab23ba9462010-06-07 11:57:28 -0300265
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300266 /* split the header fields */
267 c = (header >> 24) & 0xff;
268 size = ((header & 0x7e) << 1);
269 if (size > 0)
270 size -= 4;
271 block = (header >> 7) & 0xf;
272 field = (header >> 11) & 0x1;
273 line = (header >> 12) & 0x1ff;
274 cmd = (header >> 21) & 0x7;
275 /* Validates haeder fields */
276 if (size > TM6000_URB_MSG_LEN)
277 size = TM6000_URB_MSG_LEN;
278 pktsize = TM6000_URB_MSG_LEN;
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300279 /*
280 * calculate position in buffer and change the buffer
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300281 */
282 switch (cmd) {
283 case TM6000_URB_MSG_VIDEO:
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300284 if (!dev->radio) {
285 if ((dev->isoc_ctl.vfield != field) &&
286 (field == 1)) {
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300287 /*
288 * Announces that a new buffer
289 * were filled
290 */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300291 buffer_filled(dev, dma_q, vbuf);
292 dprintk(dev, V4L2_DEBUG_ISOC,
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300293 "new buffer filled\n");
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300294 get_next_buf(dma_q, &vbuf);
295 if (!vbuf)
296 return rc;
297 voutp = videobuf_to_vmalloc(&vbuf->vb);
298 if (!voutp)
299 return rc;
300 memset(voutp, 0, vbuf->vb.size);
301 }
302 linewidth = vbuf->vb.width << 1;
303 pos = ((line << 1) - field - 1) *
304 linewidth + block * TM6000_URB_MSG_LEN;
305 /* Don't allow to write out of the buffer */
306 if (pos + size > vbuf->vb.size)
307 cmd = TM6000_URB_MSG_ERR;
308 dev->isoc_ctl.vfield = field;
Jarod Wilsoncc73b4b2011-04-11 18:49:24 -0300309 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300310 break;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300311 case TM6000_URB_MSG_VBI:
Mauro Carvalho Chehab23ba9462010-06-07 11:57:28 -0300312 break;
313 case TM6000_URB_MSG_AUDIO:
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300314 case TM6000_URB_MSG_PTS:
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300315 size = pktsize; /* Size is always 180 bytes */
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300316 break;
Mauro Carvalho Chehabcc6c60d2007-09-19 16:24:05 -0300317 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300318 } else {
319 /* Continue the last copy */
320 cmd = dev->isoc_ctl.cmd;
321 size = dev->isoc_ctl.size;
322 pos = dev->isoc_ctl.pos;
323 pktsize = dev->isoc_ctl.pktsize;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300324 field = dev->isoc_ctl.field;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300325 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300326 cpysize = (endp - ptr > size) ? size : endp - ptr;
327 if (cpysize) {
328 /* copy data in different buffers */
329 switch (cmd) {
330 case TM6000_URB_MSG_VIDEO:
331 /* Fills video buffer */
332 if (vbuf)
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300333 memcpy(&voutp[pos], ptr, cpysize);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300334 break;
Stefan Ringel7ecff8c2011-05-09 16:54:00 -0300335 case TM6000_URB_MSG_AUDIO: {
336 int i;
337 for (i = 0; i < cpysize; i += 2)
338 swab16s((u16 *)(ptr + i));
Dmitri Belimov73f4d262010-09-20 17:07:15 -0300339
Mauro Carvalho Chehabb17b8692010-06-03 17:16:28 -0300340 tm6000_call_fillbuf(dev, TM6000_AUDIO, ptr, cpysize);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300341 break;
Stefan Ringel7ecff8c2011-05-09 16:54:00 -0300342 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300343 case TM6000_URB_MSG_VBI:
344 /* Need some code to copy vbi buffer */
345 break;
Stefan Ringel2f349da2011-05-09 16:54:02 -0300346 case TM6000_URB_MSG_PTS: {
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300347 /* Need some code to copy pts */
Stefan Ringel2f349da2011-05-09 16:54:02 -0300348 u32 pts;
349 pts = *(u32 *)ptr;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300350 dprintk(dev, V4L2_DEBUG_ISOC, "field %d, PTS %x",
351 field, pts);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300352 break;
353 }
Stefan Ringel2f349da2011-05-09 16:54:02 -0300354 }
Mauro Carvalho Chehaba2286182007-09-22 02:06:25 -0300355 }
Mauro Carvalho Chehabccfb3022010-06-30 17:24:28 -0300356 if (ptr + pktsize > endp) {
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300357 /*
358 * End of URB packet, but cmd processing is not
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300359 * complete. Preserve the state for a next packet
360 */
361 dev->isoc_ctl.pos = pos + cpysize;
362 dev->isoc_ctl.size = size - cpysize;
363 dev->isoc_ctl.cmd = cmd;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300364 dev->isoc_ctl.field = field;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300365 dev->isoc_ctl.pktsize = pktsize - (endp - ptr);
Mauro Carvalho Chehabccfb3022010-06-30 17:24:28 -0300366 ptr += endp - ptr;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300367 } else {
368 dev->isoc_ctl.cmd = 0;
369 ptr += pktsize;
370 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300371 }
Mauro Carvalho Chehaba2286182007-09-22 02:06:25 -0300372 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300373}
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300374
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300375/*
376 * Identify the tm5600/6000 buffer header type and properly handles
377 */
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300378static int copy_multiplexed(u8 *ptr, unsigned long len,
379 struct urb *urb)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300380{
381 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300382 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
383 unsigned int pos = dev->isoc_ctl.pos, cpysize;
384 int rc = 1;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300385 struct tm6000_buffer *buf;
386 char *outp = NULL;
387
388 get_next_buf(dma_q, &buf);
389 if (buf)
390 outp = videobuf_to_vmalloc(&buf->vb);
391
392 if (!outp)
393 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300394
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300395 while (len > 0) {
396 cpysize = min(len, buf->vb.size-pos);
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300397 memcpy(&outp[pos], ptr, cpysize);
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300398 pos += cpysize;
399 ptr += cpysize;
400 len -= cpysize;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300401 if (pos >= buf->vb.size) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300402 pos = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300403 /* Announces that a new buffer were filled */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300404 buffer_filled(dev, dma_q, buf);
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300405 dprintk(dev, V4L2_DEBUG_ISOC, "new buffer filled\n");
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300406 get_next_buf(dma_q, &buf);
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300407 if (!buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300408 break;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300409 outp = videobuf_to_vmalloc(&(buf->vb));
410 if (!outp)
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300411 return rc;
412 pos = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300413 }
414 }
415
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300416 dev->isoc_ctl.pos = pos;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300417 return rc;
418}
419
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300420static inline void print_err_status(struct tm6000_core *dev,
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300421 int packet, int status)
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300422{
423 char *errmsg = "Unknown";
424
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300425 switch (status) {
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300426 case -ENOENT:
427 errmsg = "unlinked synchronuously";
428 break;
429 case -ECONNRESET:
430 errmsg = "unlinked asynchronuously";
431 break;
432 case -ENOSR:
433 errmsg = "Buffer error (overrun)";
434 break;
435 case -EPIPE:
436 errmsg = "Stalled (device not responding)";
437 break;
438 case -EOVERFLOW:
439 errmsg = "Babble (bad cable?)";
440 break;
441 case -EPROTO:
442 errmsg = "Bit-stuff error (bad cable?)";
443 break;
444 case -EILSEQ:
445 errmsg = "CRC/Timeout (could be anything)";
446 break;
447 case -ETIME:
448 errmsg = "Device does not respond";
449 break;
450 }
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300451 if (packet < 0) {
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300452 dprintk(dev, V4L2_DEBUG_QUEUE, "URB status %d [%s].\n",
453 status, errmsg);
454 } else {
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300455 dprintk(dev, V4L2_DEBUG_QUEUE, "URB packet %d, status %d [%s].\n",
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300456 packet, status, errmsg);
457 }
458}
459
460
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300461/*
462 * Controls the isoc copy of each urb packet
463 */
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300464static inline int tm6000_isoc_copy(struct urb *urb)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300465{
466 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300467 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
468 int i, len = 0, rc = 1, status;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300469 char *p;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300470
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300471 if (urb->status < 0) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300472 print_err_status(dev, -1, urb->status);
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300473 return 0;
474 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300475
476 for (i = 0; i < urb->number_of_packets; i++) {
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300477 status = urb->iso_frame_desc[i].status;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300478
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300479 if (status < 0) {
480 print_err_status(dev, i, status);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300481 continue;
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300482 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300483
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300484 len = urb->iso_frame_desc[i].actual_length;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300485
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300486 if (len > 0) {
487 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300488 if (!urb->iso_frame_desc[i].status) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300489 if ((dev->fourcc) == V4L2_PIX_FMT_TM6000) {
490 rc = copy_multiplexed(p, len, urb);
491 if (rc <= 0)
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300492 return rc;
493 } else {
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300494 copy_streams(p, len, urb);
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300495 }
496 }
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300497 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300498 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300499 return rc;
500}
501
502/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300503 * URB control
504 * ------------------------------------------------------------------
505 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300506
507/*
508 * IRQ callback, called by URB callback
509 */
510static void tm6000_irq_callback(struct urb *urb)
511{
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300512 struct tm6000_dmaqueue *dma_q = urb->context;
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300513 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300514 int i;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300515
Thierry Reding14f09152011-08-04 04:14:06 -0300516 switch (urb->status) {
517 case 0:
518 case -ETIMEDOUT:
519 break;
520
521 case -ECONNRESET:
522 case -ENOENT:
523 case -ESHUTDOWN:
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300524 return;
525
Thierry Reding14f09152011-08-04 04:14:06 -0300526 default:
527 tm6000_err("urb completion error %d.\n", urb->status);
528 break;
529 }
530
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300531 spin_lock(&dev->slock);
532 tm6000_isoc_copy(urb);
533 spin_unlock(&dev->slock);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300534
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300535 /* Reset urb buffers */
536 for (i = 0; i < urb->number_of_packets; i++) {
537 urb->iso_frame_desc[i].status = 0;
538 urb->iso_frame_desc[i].actual_length = 0;
539 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300540
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300541 urb->status = usb_submit_urb(urb, GFP_ATOMIC);
542 if (urb->status)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300543 tm6000_err("urb resubmit failed (error=%i)\n",
544 urb->status);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300545}
546
547/*
548 * Stop and Deallocate URBs
549 */
550static void tm6000_uninit_isoc(struct tm6000_core *dev)
551{
552 struct urb *urb;
553 int i;
554
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300555 dev->isoc_ctl.buf = NULL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300556 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300557 urb = dev->isoc_ctl.urb[i];
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300558 if (urb) {
559 usb_kill_urb(urb);
560 usb_unlink_urb(urb);
561 if (dev->isoc_ctl.transfer_buffer[i]) {
Mauro Carvalho Chehab5a11b6f2010-05-03 15:17:57 -0300562 usb_free_coherent(dev->udev,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300563 urb->transfer_buffer_length,
564 dev->isoc_ctl.transfer_buffer[i],
565 urb->transfer_dma);
566 }
567 usb_free_urb(urb);
568 dev->isoc_ctl.urb[i] = NULL;
569 }
570 dev->isoc_ctl.transfer_buffer[i] = NULL;
571 }
572
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300573 kfree(dev->isoc_ctl.urb);
574 kfree(dev->isoc_ctl.transfer_buffer);
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300575
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300576 dev->isoc_ctl.urb = NULL;
577 dev->isoc_ctl.transfer_buffer = NULL;
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300578 dev->isoc_ctl.num_bufs = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300579}
580
581/*
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300582 * Allocate URBs and start IRQ
583 */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300584static int tm6000_prepare_isoc(struct tm6000_core *dev)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300585{
586 struct tm6000_dmaqueue *dma_q = &dev->vidq;
Stefan Ringel5a4b55e2010-05-19 13:58:27 -0300587 int i, j, sb_size, pipe, size, max_packets, num_bufs = 8;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300588 struct urb *urb;
Mauro Carvalho Chehab204193d2008-01-09 18:12:39 -0300589
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300590 /* De-allocates all pending stuff */
591 tm6000_uninit_isoc(dev);
Dmitri Belimov641d2112010-12-22 05:57:46 -0300592 /* Stop interrupt USB pipe */
593 tm6000_ir_int_stop(dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300594
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300595 usb_set_interface(dev->udev,
596 dev->isoc_in.bInterfaceNumber,
597 dev->isoc_in.bAlternateSetting);
598
Dmitri Belimov641d2112010-12-22 05:57:46 -0300599 /* Start interrupt USB pipe */
600 tm6000_ir_int_start(dev);
601
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300602 pipe = usb_rcvisocpipe(dev->udev,
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300603 dev->isoc_in.endp->desc.bEndpointAddress &
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300604 USB_ENDPOINT_NUMBER_MASK);
605
606 size = usb_maxpacket(dev->udev, pipe, usb_pipeout(pipe));
607
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300608 if (size > dev->isoc_in.maxsize)
609 size = dev->isoc_in.maxsize;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300610
611 dev->isoc_ctl.max_pkt_size = size;
612
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300613 max_packets = TM6000_MAX_ISO_PACKETS;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300614 sb_size = max_packets * size;
615
616 dev->isoc_ctl.num_bufs = num_bufs;
617
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300618 dev->isoc_ctl.urb = kmalloc(sizeof(void *)*num_bufs, GFP_KERNEL);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300619 if (!dev->isoc_ctl.urb) {
620 tm6000_err("cannot alloc memory for usb buffers\n");
621 return -ENOMEM;
622 }
623
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300624 dev->isoc_ctl.transfer_buffer = kmalloc(sizeof(void *)*num_bufs,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300625 GFP_KERNEL);
Julia Lawallf8960ee2010-02-11 03:30:30 -0300626 if (!dev->isoc_ctl.transfer_buffer) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300627 tm6000_err("cannot allocate memory for usbtransfer\n");
628 kfree(dev->isoc_ctl.urb);
629 return -ENOMEM;
630 }
631
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300632 dprintk(dev, V4L2_DEBUG_QUEUE, "Allocating %d x %d packets"
633 " (%d bytes) of %d bytes each to handle %u size\n",
634 max_packets, num_bufs, sb_size,
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300635 dev->isoc_in.maxsize, size);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300636
637 /* allocate urbs and transfer buffers */
638 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
639 urb = usb_alloc_urb(max_packets, GFP_KERNEL);
640 if (!urb) {
641 tm6000_err("cannot alloc isoc_ctl.urb %i\n", i);
642 tm6000_uninit_isoc(dev);
Mauro Carvalho Chehabc1a16412007-10-15 15:43:50 -0300643 usb_free_urb(urb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300644 return -ENOMEM;
645 }
646 dev->isoc_ctl.urb[i] = urb;
647
Mauro Carvalho Chehab5a11b6f2010-05-03 15:17:57 -0300648 dev->isoc_ctl.transfer_buffer[i] = usb_alloc_coherent(dev->udev,
Mauro Carvalho Chehabc13dd702007-09-19 07:36:34 -0300649 sb_size, GFP_KERNEL, &urb->transfer_dma);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300650 if (!dev->isoc_ctl.transfer_buffer[i]) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300651 tm6000_err("unable to allocate %i bytes for transfer"
Mauro Carvalho Chehaba2286182007-09-22 02:06:25 -0300652 " buffer %i%s\n",
653 sb_size, i,
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300654 in_interrupt() ? " while in int" : "");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300655 tm6000_uninit_isoc(dev);
656 return -ENOMEM;
657 }
658 memset(dev->isoc_ctl.transfer_buffer[i], 0, sb_size);
659
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300660 usb_fill_bulk_urb(urb, dev->udev, pipe,
661 dev->isoc_ctl.transfer_buffer[i], sb_size,
662 tm6000_irq_callback, dma_q);
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300663 urb->interval = dev->isoc_in.endp->desc.bInterval;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300664 urb->number_of_packets = max_packets;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300665 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300666
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300667 for (j = 0; j < max_packets; j++) {
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300668 urb->iso_frame_desc[j].offset = size * j;
669 urb->iso_frame_desc[j].length = size;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300670 }
671 }
672
673 return 0;
674}
675
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300676static int tm6000_start_thread(struct tm6000_core *dev)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300677{
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300678 struct tm6000_dmaqueue *dma_q = &dev->vidq;
679 int i;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300680
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300681 dma_q->frame = 0;
682 dma_q->ini_jiffies = jiffies;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300683
684 init_waitqueue_head(&dma_q->wq);
685
686 /* submit urbs and enables IRQ */
687 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300688 int rc = usb_submit_urb(dev->isoc_ctl.urb[i], GFP_ATOMIC);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300689 if (rc) {
690 tm6000_err("submit of urb %i failed (error=%i)\n", i,
691 rc);
692 tm6000_uninit_isoc(dev);
693 return rc;
694 }
695 }
696
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300697 return 0;
698}
699
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300700/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300701 * Videobuf operations
702 * ------------------------------------------------------------------
703 */
Michel Ludwig95a83822007-07-24 08:06:45 -0300704
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300705static int
706buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
707{
708 struct tm6000_fh *fh = vq->priv_data;
709
710 *size = fh->fmt->depth * fh->width * fh->height >> 3;
711 if (0 == *count)
Michel Ludwig95a83822007-07-24 08:06:45 -0300712 *count = TM6000_DEF_BUF;
713
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300714 if (*count < TM6000_MIN_BUF)
715 *count = TM6000_MIN_BUF;
Michel Ludwig95a83822007-07-24 08:06:45 -0300716
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300717 while (*size * *count > vid_limit * 1024 * 1024)
718 (*count)--;
Michel Ludwig95a83822007-07-24 08:06:45 -0300719
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300720 return 0;
721}
722
723static void free_buffer(struct videobuf_queue *vq, struct tm6000_buffer *buf)
724{
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300725 struct tm6000_fh *fh = vq->priv_data;
726 struct tm6000_core *dev = fh->dev;
727 unsigned long flags;
728
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300729 if (in_interrupt())
730 BUG();
731
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300732 /* We used to wait for the buffer to finish here, but this didn't work
733 because, as we were keeping the state as VIDEOBUF_QUEUED,
734 videobuf_queue_cancel marked it as finished for us.
735 (Also, it could wedge forever if the hardware was misconfigured.)
736
737 This should be safe; by the time we get here, the buffer isn't
738 queued anymore. If we ever start marking the buffers as
739 VIDEOBUF_ACTIVE, it won't be, though.
740 */
741 spin_lock_irqsave(&dev->slock, flags);
742 if (dev->isoc_ctl.buf == buf)
743 dev->isoc_ctl.buf = NULL;
744 spin_unlock_irqrestore(&dev->slock, flags);
745
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300746 videobuf_vmalloc_free(&buf->vb);
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300747 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300748}
749
750static int
751buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
752 enum v4l2_field field)
753{
754 struct tm6000_fh *fh = vq->priv_data;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300755 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300756 struct tm6000_core *dev = fh->dev;
Thierry Reding88e834a2011-08-04 04:14:12 -0300757 int rc = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300758
759 BUG_ON(NULL == fh->fmt);
760
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300761
762 /* FIXME: It assumes depth=2 */
763 /* The only currently supported format is 16 bits/pixel */
764 buf->vb.size = fh->fmt->depth*fh->width*fh->height >> 3;
765 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
766 return -EINVAL;
767
768 if (buf->fmt != fh->fmt ||
769 buf->vb.width != fh->width ||
770 buf->vb.height != fh->height ||
771 buf->vb.field != field) {
772 buf->fmt = fh->fmt;
773 buf->vb.width = fh->width;
774 buf->vb.height = fh->height;
775 buf->vb.field = field;
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300776 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300777 }
778
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300779 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Curtis McEnroeed7c2212011-06-01 22:21:56 -0400780 rc = videobuf_iolock(vq, &buf->vb, NULL);
781 if (rc != 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300782 goto fail;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300783 }
784
Thierry Reding88e834a2011-08-04 04:14:12 -0300785 if (!dev->isoc_ctl.num_bufs) {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300786 rc = tm6000_prepare_isoc(dev);
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300787 if (rc < 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300788 goto fail;
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300789
790 rc = tm6000_start_thread(dev);
791 if (rc < 0)
792 goto fail;
793
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300794 }
795
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300796 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300797 return 0;
798
799fail:
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300800 free_buffer(vq, buf);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300801 return rc;
802}
803
804static void
805buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
806{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300807 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300808 struct tm6000_fh *fh = vq->priv_data;
809 struct tm6000_core *dev = fh->dev;
810 struct tm6000_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300811
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300812 buf->vb.state = VIDEOBUF_QUEUED;
813 list_add_tail(&buf->vb.queue, &vidq->active);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300814}
815
816static void buffer_release(struct videobuf_queue *vq, struct videobuf_buffer *vb)
817{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300818 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300819
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300820 free_buffer(vq, buf);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300821}
822
823static struct videobuf_queue_ops tm6000_video_qops = {
824 .buf_setup = buffer_setup,
825 .buf_prepare = buffer_prepare,
826 .buf_queue = buffer_queue,
827 .buf_release = buffer_release,
828};
829
830/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300831 * IOCTL handling
832 * ------------------------------------------------------------------
833 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300834
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300835static bool is_res_read(struct tm6000_core *dev, struct tm6000_fh *fh)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300836{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300837 /* Is the current fh handling it? if so, that's OK */
838 if (dev->resources == fh && dev->is_res_read)
839 return true;
840
841 return false;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300842}
843
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300844static bool is_res_streaming(struct tm6000_core *dev, struct tm6000_fh *fh)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300845{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300846 /* Is the current fh handling it? if so, that's OK */
847 if (dev->resources == fh)
848 return true;
849
850 return false;
851}
852
853static bool res_get(struct tm6000_core *dev, struct tm6000_fh *fh,
854 bool is_res_read)
855{
856 /* Is the current fh handling it? if so, that's OK */
857 if (dev->resources == fh && dev->is_res_read == is_res_read)
858 return true;
859
860 /* is it free? */
861 if (dev->resources)
862 return false;
863
864 /* grab it */
865 dev->resources = fh;
866 dev->is_res_read = is_res_read;
867 dprintk(dev, V4L2_DEBUG_RES_LOCK, "res: get\n");
868 return true;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300869}
870
871static void res_free(struct tm6000_core *dev, struct tm6000_fh *fh)
872{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300873 /* Is the current fh handling it? if so, that's OK */
874 if (dev->resources != fh)
875 return;
876
877 dev->resources = NULL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300878 dprintk(dev, V4L2_DEBUG_RES_LOCK, "res: put\n");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300879}
880
881/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300882 * IOCTL vidioc handling
883 * ------------------------------------------------------------------
884 */
885static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300886 struct v4l2_capability *cap)
887{
Stefan Ringel886a3c02011-05-09 16:53:50 -0300888 struct tm6000_core *dev = ((struct tm6000_fh *)priv)->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300889
890 strlcpy(cap->driver, "tm6000", sizeof(cap->driver));
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300891 strlcpy(cap->card, "Trident TVMaster TM5600/6000/6010", sizeof(cap->card));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300892 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
893 V4L2_CAP_STREAMING |
Stefan Ringel886a3c02011-05-09 16:53:50 -0300894 V4L2_CAP_AUDIO |
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300895 V4L2_CAP_READWRITE;
Stefan Ringel886a3c02011-05-09 16:53:50 -0300896
897 if (dev->tuner_type != TUNER_ABSENT)
898 cap->capabilities |= V4L2_CAP_TUNER;
899
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300900 return 0;
901}
902
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300903static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300904 struct v4l2_fmtdesc *f)
905{
906 if (unlikely(f->index >= ARRAY_SIZE(format)))
907 return -EINVAL;
908
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300909 strlcpy(f->description, format[f->index].name, sizeof(f->description));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300910 f->pixelformat = format[f->index].fourcc;
911 return 0;
912}
913
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300914static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300915 struct v4l2_format *f)
916{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300917 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300918
919 f->fmt.pix.width = fh->width;
920 f->fmt.pix.height = fh->height;
921 f->fmt.pix.field = fh->vb_vidq.field;
922 f->fmt.pix.pixelformat = fh->fmt->fourcc;
923 f->fmt.pix.bytesperline =
924 (f->fmt.pix.width * fh->fmt->depth) >> 3;
925 f->fmt.pix.sizeimage =
926 f->fmt.pix.height * f->fmt.pix.bytesperline;
927
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300928 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300929}
930
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300931static struct tm6000_fmt *format_by_fourcc(unsigned int fourcc)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300932{
933 unsigned int i;
934
935 for (i = 0; i < ARRAY_SIZE(format); i++)
936 if (format[i].fourcc == fourcc)
937 return format+i;
938 return NULL;
939}
940
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300941static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300942 struct v4l2_format *f)
943{
944 struct tm6000_core *dev = ((struct tm6000_fh *)priv)->dev;
945 struct tm6000_fmt *fmt;
946 enum v4l2_field field;
947
948 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
949 if (NULL == fmt) {
950 dprintk(dev, V4L2_DEBUG_IOCTL_ARG, "Fourcc format (0x%08x)"
951 " invalid.\n", f->fmt.pix.pixelformat);
952 return -EINVAL;
953 }
954
955 field = f->fmt.pix.field;
956
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300957 if (field == V4L2_FIELD_ANY)
958 field = V4L2_FIELD_SEQ_TB;
959 else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300960 dprintk(dev, V4L2_DEBUG_IOCTL_ARG, "Field type invalid.\n");
961 return -EINVAL;
962 }
963
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300964 tm6000_get_std_res(dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300965
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -0300966 f->fmt.pix.width = dev->width;
967 f->fmt.pix.height = dev->height;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300968
969 f->fmt.pix.width &= ~0x01;
970
971 f->fmt.pix.field = field;
972
973 f->fmt.pix.bytesperline =
974 (f->fmt.pix.width * fmt->depth) >> 3;
975 f->fmt.pix.sizeimage =
976 f->fmt.pix.height * f->fmt.pix.bytesperline;
977
978 return 0;
979}
980
981/*FIXME: This seems to be generic enough to be at videodev2 */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300982static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300983 struct v4l2_format *f)
984{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300985 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300986 struct tm6000_core *dev = fh->dev;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300987 int ret = vidioc_try_fmt_vid_cap(file, fh, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300988 if (ret < 0)
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300989 return ret;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300990
991 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
992 fh->width = f->fmt.pix.width;
993 fh->height = f->fmt.pix.height;
994 fh->vb_vidq.field = f->fmt.pix.field;
995 fh->type = f->type;
996
997 dev->fourcc = f->fmt.pix.pixelformat;
998
999 tm6000_set_fourcc_format(dev);
1000
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001001 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001002}
1003
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001004static int vidioc_reqbufs(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001005 struct v4l2_requestbuffers *p)
1006{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001007 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001008
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001009 return videobuf_reqbufs(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001010}
1011
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001012static int vidioc_querybuf(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001013 struct v4l2_buffer *p)
1014{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001015 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001016
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001017 return videobuf_querybuf(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001018}
1019
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001020static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001021{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001022 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001023
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001024 return videobuf_qbuf(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001025}
1026
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001027static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001028{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001029 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001030
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001031 return videobuf_dqbuf(&fh->vb_vidq, p,
1032 file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001033}
1034
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001035static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
1036{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001037 struct tm6000_fh *fh = priv;
1038 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001039
1040 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1041 return -EINVAL;
1042 if (i != fh->type)
1043 return -EINVAL;
1044
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001045 if (!res_get(dev, fh, false))
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001046 return -EBUSY;
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001047 return videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001048}
1049
1050static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1051{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001052 struct tm6000_fh *fh = priv;
1053 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001054
1055 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1056 return -EINVAL;
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001057
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001058 if (i != fh->type)
1059 return -EINVAL;
1060
1061 videobuf_streamoff(&fh->vb_vidq);
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001062 res_free(dev, fh);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001063
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001064 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001065}
1066
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001067static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001068{
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001069 int rc = 0;
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001070 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001071 struct tm6000_core *dev = fh->dev;
1072
Stefan Ringel4f526102010-10-27 16:48:05 -03001073 dev->norm = *norm;
Mauro Carvalho Chehab709944e2010-10-07 02:28:24 -03001074 rc = tm6000_init_analog_mode(dev);
Mauro Carvalho Chehab71e7cfa2007-09-06 20:12:10 -03001075
1076 fh->width = dev->width;
1077 fh->height = dev->height;
1078
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001079 if (rc < 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001080 return rc;
1081
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -03001082 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_std, dev->norm);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001083
1084 return 0;
1085}
1086
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001087static const char *iname[] = {
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001088 [TM6000_INPUT_TV] = "Television",
1089 [TM6000_INPUT_COMPOSITE1] = "Composite 1",
1090 [TM6000_INPUT_COMPOSITE2] = "Composite 2",
1091 [TM6000_INPUT_SVIDEO] = "S-Video",
1092};
1093
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001094static int vidioc_enum_input(struct file *file, void *priv,
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001095 struct v4l2_input *i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001096{
Dmitri Belimov2aefbc12011-03-17 21:08:55 -03001097 struct tm6000_fh *fh = priv;
1098 struct tm6000_core *dev = fh->dev;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001099 unsigned int n;
Dmitri Belimov2aefbc12011-03-17 21:08:55 -03001100
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001101 n = i->index;
1102 if (n >= 3)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001103 return -EINVAL;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001104
1105 if (!dev->vinput[n].type)
1106 return -EINVAL;
1107
1108 i->index = n;
1109
1110 if (dev->vinput[n].type == TM6000_INPUT_TV)
1111 i->type = V4L2_INPUT_TYPE_TUNER;
1112 else
1113 i->type = V4L2_INPUT_TYPE_CAMERA;
1114
1115 strcpy(i->name, iname[dev->vinput[n].type]);
1116
1117 i->std = TM6000_STD;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001118
1119 return 0;
1120}
1121
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001122static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001123{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001124 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001125 struct tm6000_core *dev = fh->dev;
1126
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001127 *i = dev->input;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001128
1129 return 0;
1130}
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001131
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001132static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001133{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001134 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001135 struct tm6000_core *dev = fh->dev;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001136 int rc = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001137
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001138 if (i >= 3)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001139 return -EINVAL;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001140 if (!dev->vinput[i].type)
1141 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001142
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001143 dev->input = i;
1144
1145 rc = vidioc_s_std(file, priv, &dev->vfd->current_norm);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001146
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001147 return rc;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001148}
1149
Stefan Ringel886a3c02011-05-09 16:53:50 -03001150/* --- controls ---------------------------------------------- */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001151static int vidioc_queryctrl(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001152 struct v4l2_queryctrl *qc)
1153{
1154 int i;
1155
1156 for (i = 0; i < ARRAY_SIZE(tm6000_qctrl); i++)
1157 if (qc->id && qc->id == tm6000_qctrl[i].id) {
1158 memcpy(qc, &(tm6000_qctrl[i]),
1159 sizeof(*qc));
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001160 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001161 }
1162
1163 return -EINVAL;
1164}
1165
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001166static int vidioc_g_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001167 struct v4l2_control *ctrl)
1168{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001169 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001170 struct tm6000_core *dev = fh->dev;
1171 int val;
1172
1173 /* FIXME: Probably, those won't work! Maybe we need shadow regs */
1174 switch (ctrl->id) {
1175 case V4L2_CID_CONTRAST:
Mauro Carvalho Chehab9afec492010-03-11 10:26:46 -03001176 val = tm6000_get_reg(dev, TM6010_REQ07_R08_LUMA_CONTRAST_ADJ, 0);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001177 break;
1178 case V4L2_CID_BRIGHTNESS:
Mauro Carvalho Chehab9afec492010-03-11 10:26:46 -03001179 val = tm6000_get_reg(dev, TM6010_REQ07_R09_LUMA_BRIGHTNESS_ADJ, 0);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001180 return 0;
1181 case V4L2_CID_SATURATION:
Mauro Carvalho Chehab9afec492010-03-11 10:26:46 -03001182 val = tm6000_get_reg(dev, TM6010_REQ07_R0A_CHROMA_SATURATION_ADJ, 0);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001183 return 0;
1184 case V4L2_CID_HUE:
Mauro Carvalho Chehab9afec492010-03-11 10:26:46 -03001185 val = tm6000_get_reg(dev, TM6010_REQ07_R0B_CHROMA_HUE_PHASE_ADJ, 0);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001186 return 0;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001187 case V4L2_CID_AUDIO_MUTE:
1188 val = dev->ctl_mute;
1189 return 0;
1190 case V4L2_CID_AUDIO_VOLUME:
1191 val = dev->ctl_volume;
1192 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001193 default:
1194 return -EINVAL;
1195 }
1196
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001197 if (val < 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001198 return val;
1199
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001200 ctrl->value = val;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001201
1202 return 0;
1203}
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001204static int vidioc_s_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001205 struct v4l2_control *ctrl)
1206{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001207 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001208 struct tm6000_core *dev = fh->dev;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001209 u8 val = ctrl->value;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001210
1211 switch (ctrl->id) {
1212 case V4L2_CID_CONTRAST:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001213 tm6000_set_reg(dev, TM6010_REQ07_R08_LUMA_CONTRAST_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001214 return 0;
1215 case V4L2_CID_BRIGHTNESS:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001216 tm6000_set_reg(dev, TM6010_REQ07_R09_LUMA_BRIGHTNESS_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001217 return 0;
1218 case V4L2_CID_SATURATION:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001219 tm6000_set_reg(dev, TM6010_REQ07_R0A_CHROMA_SATURATION_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001220 return 0;
1221 case V4L2_CID_HUE:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001222 tm6000_set_reg(dev, TM6010_REQ07_R0B_CHROMA_HUE_PHASE_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001223 return 0;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001224 case V4L2_CID_AUDIO_MUTE:
1225 dev->ctl_mute = val;
1226 tm6000_tvaudio_set_mute(dev, val);
1227 return 0;
1228 case V4L2_CID_AUDIO_VOLUME:
1229 dev->ctl_volume = val;
1230 tm6000_set_volume(dev, val);
1231 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001232 }
1233 return -EINVAL;
1234}
1235
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001236static int vidioc_g_tuner(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001237 struct v4l2_tuner *t)
1238{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001239 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001240 struct tm6000_core *dev = fh->dev;
1241
1242 if (unlikely(UNSET == dev->tuner_type))
1243 return -EINVAL;
1244 if (0 != t->index)
1245 return -EINVAL;
1246
1247 strcpy(t->name, "Television");
1248 t->type = V4L2_TUNER_ANALOG_TV;
1249 t->capability = V4L2_TUNER_CAP_NORM;
1250 t->rangehigh = 0xffffffffUL;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001251 t->rxsubchans = V4L2_TUNER_SUB_STEREO;
1252
1253 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
1254
1255 t->audmode = dev->amode;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001256
1257 return 0;
1258}
1259
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001260static int vidioc_s_tuner(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001261 struct v4l2_tuner *t)
1262{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001263 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001264 struct tm6000_core *dev = fh->dev;
1265
1266 if (UNSET == dev->tuner_type)
1267 return -EINVAL;
1268 if (0 != t->index)
1269 return -EINVAL;
1270
Stefan Ringel886a3c02011-05-09 16:53:50 -03001271 dev->amode = t->audmode;
1272 dprintk(dev, 3, "audio mode: %x\n", t->audmode);
1273
1274 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Stefan Ringel0f6040e2011-05-09 16:53:53 -03001275
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001276 return 0;
1277}
1278
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001279static int vidioc_g_frequency(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001280 struct v4l2_frequency *f)
1281{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001282 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001283 struct tm6000_core *dev = fh->dev;
1284
1285 if (unlikely(UNSET == dev->tuner_type))
1286 return -EINVAL;
1287
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001288 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001289 f->frequency = dev->freq;
1290
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -03001291 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_frequency, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001292
1293 return 0;
1294}
1295
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001296static int vidioc_s_frequency(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001297 struct v4l2_frequency *f)
1298{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001299 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001300 struct tm6000_core *dev = fh->dev;
1301
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001302 if (unlikely(UNSET == dev->tuner_type))
1303 return -EINVAL;
1304 if (unlikely(f->tuner != 0))
1305 return -EINVAL;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001306 if (0 == fh->radio && V4L2_TUNER_ANALOG_TV != f->type)
1307 return -EINVAL;
1308 if (1 == fh->radio && V4L2_TUNER_RADIO != f->type)
1309 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001310
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001311 dev->freq = f->frequency;
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001312 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001313
1314 return 0;
1315}
1316
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001317static int radio_querycap(struct file *file, void *priv,
1318 struct v4l2_capability *cap)
1319{
1320 struct tm6000_fh *fh = file->private_data;
1321 struct tm6000_core *dev = fh->dev;
1322
1323 strcpy(cap->driver, "tm6000");
1324 strlcpy(cap->card, dev->name, sizeof(dev->name));
1325 sprintf(cap->bus_info, "USB%04x:%04x",
1326 le16_to_cpu(dev->udev->descriptor.idVendor),
1327 le16_to_cpu(dev->udev->descriptor.idProduct));
1328 cap->version = dev->dev_type;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001329 cap->capabilities = V4L2_CAP_TUNER |
1330 V4L2_CAP_AUDIO |
1331 V4L2_CAP_RADIO |
1332 V4L2_CAP_READWRITE |
1333 V4L2_CAP_STREAMING;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001334
1335 return 0;
1336}
1337
1338static int radio_g_tuner(struct file *file, void *priv,
1339 struct v4l2_tuner *t)
1340{
1341 struct tm6000_fh *fh = file->private_data;
1342 struct tm6000_core *dev = fh->dev;
1343
1344 if (0 != t->index)
1345 return -EINVAL;
1346
1347 memset(t, 0, sizeof(*t));
1348 strcpy(t->name, "Radio");
1349 t->type = V4L2_TUNER_RADIO;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001350 t->rxsubchans = V4L2_TUNER_SUB_STEREO;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001351
1352 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
1353
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001354 return 0;
1355}
1356
1357static int radio_s_tuner(struct file *file, void *priv,
1358 struct v4l2_tuner *t)
1359{
1360 struct tm6000_fh *fh = file->private_data;
1361 struct tm6000_core *dev = fh->dev;
1362
1363 if (0 != t->index)
1364 return -EINVAL;
1365
1366 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
1367
1368 return 0;
1369}
1370
1371static int radio_enum_input(struct file *file, void *priv,
1372 struct v4l2_input *i)
1373{
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001374 struct tm6000_fh *fh = priv;
1375 struct tm6000_core *dev = fh->dev;
1376
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001377 if (i->index != 0)
1378 return -EINVAL;
1379
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001380 if (!dev->rinput.type)
1381 return -EINVAL;
1382
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001383 strcpy(i->name, "Radio");
1384 i->type = V4L2_INPUT_TYPE_TUNER;
1385
1386 return 0;
1387}
1388
1389static int radio_g_input(struct file *filp, void *priv, unsigned int *i)
1390{
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001391 struct tm6000_fh *fh = priv;
1392 struct tm6000_core *dev = fh->dev;
1393
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001394 if (dev->input != 5)
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001395 return -EINVAL;
1396
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001397 *i = dev->input - 5;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001398
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001399 return 0;
1400}
1401
1402static int radio_g_audio(struct file *file, void *priv,
1403 struct v4l2_audio *a)
1404{
1405 memset(a, 0, sizeof(*a));
1406 strcpy(a->name, "Radio");
1407 return 0;
1408}
1409
1410static int radio_s_audio(struct file *file, void *priv,
1411 struct v4l2_audio *a)
1412{
1413 return 0;
1414}
1415
1416static int radio_s_input(struct file *filp, void *priv, unsigned int i)
1417{
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001418 struct tm6000_fh *fh = priv;
1419 struct tm6000_core *dev = fh->dev;
1420
1421 if (i)
1422 return -EINVAL;
1423
1424 if (!dev->rinput.type)
1425 return -EINVAL;
1426
1427 dev->input = i + 5;
1428
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001429 return 0;
1430}
1431
1432static int radio_s_std(struct file *file, void *fh, v4l2_std_id *norm)
1433{
1434 return 0;
1435}
1436
1437static int radio_queryctrl(struct file *file, void *priv,
1438 struct v4l2_queryctrl *c)
1439{
1440 const struct v4l2_queryctrl *ctrl;
1441
1442 if (c->id < V4L2_CID_BASE ||
1443 c->id >= V4L2_CID_LASTP1)
1444 return -EINVAL;
1445 if (c->id == V4L2_CID_AUDIO_MUTE) {
1446 ctrl = ctrl_by_id(c->id);
1447 *c = *ctrl;
1448 } else
1449 *c = no_ctrl;
1450
1451 return 0;
1452}
1453
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001454/* ------------------------------------------------------------------
1455 File operations for the device
1456 ------------------------------------------------------------------*/
1457
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001458static int tm6000_open(struct file *file)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001459{
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001460 struct video_device *vdev = video_devdata(file);
1461 struct tm6000_core *dev = video_drvdata(file);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001462 struct tm6000_fh *fh;
Mauro Carvalho Chehabe8d04162010-05-18 04:27:27 -03001463 enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001464 int i, rc;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001465 int radio = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001466
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001467 dprintk(dev, V4L2_DEBUG_OPEN, "tm6000: open called (dev=%s)\n",
1468 video_device_node_name(vdev));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001469
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001470 switch (vdev->vfl_type) {
1471 case VFL_TYPE_GRABBER:
1472 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1473 break;
1474 case VFL_TYPE_VBI:
1475 type = V4L2_BUF_TYPE_VBI_CAPTURE;
1476 break;
1477 case VFL_TYPE_RADIO:
1478 radio = 1;
1479 break;
1480 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001481
1482 /* If more than one user, mutex should be added */
1483 dev->users++;
1484
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001485 dprintk(dev, V4L2_DEBUG_OPEN, "open dev=%s type=%s users=%d\n",
1486 video_device_node_name(vdev), v4l2_type_names[type],
1487 dev->users);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001488
1489 /* allocate + initialize per filehandle data */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001490 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001491 if (NULL == fh) {
1492 dev->users--;
1493 return -ENOMEM;
1494 }
1495
1496 file->private_data = fh;
1497 fh->dev = dev;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001498 fh->radio = radio;
1499 dev->radio = radio;
1500 fh->type = type;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001501 dev->fourcc = format[0].fourcc;
1502
1503 fh->fmt = format_by_fourcc(dev->fourcc);
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -03001504
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001505 tm6000_get_std_res(dev);
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -03001506
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001507 fh->width = dev->width;
1508 fh->height = dev->height;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001509
1510 dprintk(dev, V4L2_DEBUG_OPEN, "Open: fh=0x%08lx, dev=0x%08lx, "
1511 "dev->vidq=0x%08lx\n",
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001512 (unsigned long)fh, (unsigned long)dev,
1513 (unsigned long)&dev->vidq);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001514 dprintk(dev, V4L2_DEBUG_OPEN, "Open: list_empty "
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001515 "queued=%d\n", list_empty(&dev->vidq.queued));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001516 dprintk(dev, V4L2_DEBUG_OPEN, "Open: list_empty "
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001517 "active=%d\n", list_empty(&dev->vidq.active));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001518
1519 /* initialize hardware on analog mode */
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001520 rc = tm6000_init_analog_mode(dev);
1521 if (rc < 0)
1522 return rc;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001523
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001524 if (dev->mode != TM6000_MODE_ANALOG) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001525 /* Put all controls at a sane state */
1526 for (i = 0; i < ARRAY_SIZE(tm6000_qctrl); i++)
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001527 qctl_regs[i] = tm6000_qctrl[i].default_value;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001528
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001529 dev->mode = TM6000_MODE_ANALOG;
1530 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001531
Thierry Redingaa4a5832011-08-04 04:14:15 -03001532 if (!fh->radio) {
1533 videobuf_queue_vmalloc_init(&fh->vb_vidq, &tm6000_video_qops,
1534 NULL, &dev->slock,
1535 fh->type,
1536 V4L2_FIELD_INTERLACED,
1537 sizeof(struct tm6000_buffer), fh, &dev->lock);
1538 } else {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001539 dprintk(dev, V4L2_DEBUG_OPEN, "video_open: setting radio device\n");
Stefan Ringel0f6040e2011-05-09 16:53:53 -03001540 dev->input = 5;
1541 tm6000_set_audio_rinput(dev);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001542 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_radio);
1543 tm6000_prepare_isoc(dev);
1544 tm6000_start_thread(dev);
1545 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001546
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001547 return 0;
1548}
1549
1550static ssize_t
1551tm6000_read(struct file *file, char __user *data, size_t count, loff_t *pos)
1552{
1553 struct tm6000_fh *fh = file->private_data;
1554
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001555 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001556 if (!res_get(fh->dev, fh, true))
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001557 return -EBUSY;
1558
1559 return videobuf_read_stream(&fh->vb_vidq, data, count, pos, 0,
1560 file->f_flags & O_NONBLOCK);
1561 }
1562 return 0;
1563}
1564
1565static unsigned int
1566tm6000_poll(struct file *file, struct poll_table_struct *wait)
1567{
1568 struct tm6000_fh *fh = file->private_data;
1569 struct tm6000_buffer *buf;
1570
1571 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1572 return POLLERR;
1573
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001574 if (!!is_res_streaming(fh->dev, fh))
1575 return POLLERR;
1576
1577 if (!is_res_read(fh->dev, fh)) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001578 /* streaming capture */
1579 if (list_empty(&fh->vb_vidq.stream))
1580 return POLLERR;
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001581 buf = list_entry(fh->vb_vidq.stream.next, struct tm6000_buffer, vb.stream);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001582 } else {
1583 /* read() capture */
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001584 return videobuf_poll_stream(file, &fh->vb_vidq, wait);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001585 }
1586 poll_wait(file, &buf->vb.done, wait);
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -03001587 if (buf->vb.state == VIDEOBUF_DONE ||
1588 buf->vb.state == VIDEOBUF_ERROR)
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001589 return POLLIN | POLLRDNORM;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001590 return 0;
1591}
1592
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001593static int tm6000_release(struct file *file)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001594{
1595 struct tm6000_fh *fh = file->private_data;
1596 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001597 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001598
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001599 dprintk(dev, V4L2_DEBUG_OPEN, "tm6000: close called (dev=%s, users=%d)\n",
1600 video_device_node_name(vdev), dev->users);
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001601
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001602 dev->users--;
1603
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001604 res_free(dev, fh);
Thierry Redingdd0c8ab2011-08-04 04:14:13 -03001605
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001606 if (!dev->users) {
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -03001607 tm6000_uninit_isoc(dev);
Thierry Redingaa4a5832011-08-04 04:14:15 -03001608
Stefan Ringel8159c182011-11-28 15:46:18 -03001609 /* Stop interrupt USB pipe */
1610 tm6000_ir_int_stop(dev);
1611
1612 usb_reset_configuration(dev->udev);
1613
Thierry Reding4be9c8f2011-12-06 09:39:35 -03001614 if (dev->int_in.endp)
Stefan Ringel8159c182011-11-28 15:46:18 -03001615 usb_set_interface(dev->udev,
Thierry Reding875f0e32011-12-06 09:39:36 -03001616 dev->isoc_in.bInterfaceNumber, 2);
Stefan Ringel8159c182011-11-28 15:46:18 -03001617 else
1618 usb_set_interface(dev->udev,
Thierry Reding875f0e32011-12-06 09:39:36 -03001619 dev->isoc_in.bInterfaceNumber, 0);
Stefan Ringel8159c182011-11-28 15:46:18 -03001620
1621 /* Start interrupt USB pipe */
1622 tm6000_ir_int_start(dev);
1623
Thierry Redingaa4a5832011-08-04 04:14:15 -03001624 if (!fh->radio)
1625 videobuf_mmap_free(&fh->vb_vidq);
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001626 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001627
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001628 kfree(fh);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001629
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001630 return 0;
1631}
1632
1633static int tm6000_mmap(struct file *file, struct vm_area_struct * vma)
1634{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001635 struct tm6000_fh *fh = file->private_data;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001636
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001637 return videobuf_mmap_mapper(&fh->vb_vidq, vma);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001638}
1639
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001640static struct v4l2_file_operations tm6000_fops = {
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001641 .owner = THIS_MODULE,
1642 .open = tm6000_open,
1643 .release = tm6000_release,
1644 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
1645 .read = tm6000_read,
1646 .poll = tm6000_poll,
1647 .mmap = tm6000_mmap,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001648};
1649
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001650static const struct v4l2_ioctl_ops video_ioctl_ops = {
1651 .vidioc_querycap = vidioc_querycap,
1652 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1653 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1654 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1655 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1656 .vidioc_s_std = vidioc_s_std,
1657 .vidioc_enum_input = vidioc_enum_input,
1658 .vidioc_g_input = vidioc_g_input,
1659 .vidioc_s_input = vidioc_s_input,
1660 .vidioc_queryctrl = vidioc_queryctrl,
1661 .vidioc_g_ctrl = vidioc_g_ctrl,
1662 .vidioc_s_ctrl = vidioc_s_ctrl,
1663 .vidioc_g_tuner = vidioc_g_tuner,
1664 .vidioc_s_tuner = vidioc_s_tuner,
1665 .vidioc_g_frequency = vidioc_g_frequency,
1666 .vidioc_s_frequency = vidioc_s_frequency,
1667 .vidioc_streamon = vidioc_streamon,
1668 .vidioc_streamoff = vidioc_streamoff,
1669 .vidioc_reqbufs = vidioc_reqbufs,
1670 .vidioc_querybuf = vidioc_querybuf,
1671 .vidioc_qbuf = vidioc_qbuf,
1672 .vidioc_dqbuf = vidioc_dqbuf,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001673};
1674
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001675static struct video_device tm6000_template = {
1676 .name = "tm6000",
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001677 .fops = &tm6000_fops,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001678 .ioctl_ops = &video_ioctl_ops,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001679 .release = video_device_release,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001680 .tvnorms = TM6000_STD,
1681 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001682};
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001683
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001684static const struct v4l2_file_operations radio_fops = {
Stefan Ringel1f385712011-05-09 16:54:01 -03001685 .owner = THIS_MODULE,
1686 .open = tm6000_open,
1687 .release = tm6000_release,
1688 .unlocked_ioctl = video_ioctl2,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001689};
1690
1691static const struct v4l2_ioctl_ops radio_ioctl_ops = {
1692 .vidioc_querycap = radio_querycap,
1693 .vidioc_g_tuner = radio_g_tuner,
1694 .vidioc_enum_input = radio_enum_input,
1695 .vidioc_g_audio = radio_g_audio,
1696 .vidioc_s_tuner = radio_s_tuner,
1697 .vidioc_s_audio = radio_s_audio,
1698 .vidioc_s_input = radio_s_input,
1699 .vidioc_s_std = radio_s_std,
1700 .vidioc_queryctrl = radio_queryctrl,
1701 .vidioc_g_input = radio_g_input,
1702 .vidioc_g_ctrl = vidioc_g_ctrl,
1703 .vidioc_s_ctrl = vidioc_s_ctrl,
1704 .vidioc_g_frequency = vidioc_g_frequency,
1705 .vidioc_s_frequency = vidioc_s_frequency,
1706};
1707
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001708static struct video_device tm6000_radio_template = {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001709 .name = "tm6000",
1710 .fops = &radio_fops,
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001711 .ioctl_ops = &radio_ioctl_ops,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001712};
1713
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001714/* -----------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001715 * Initialization and module stuff
1716 * ------------------------------------------------------------------
1717 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001718
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001719static struct video_device *vdev_init(struct tm6000_core *dev,
1720 const struct video_device
1721 *template, const char *type_name)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001722{
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001723 struct video_device *vfd;
1724
1725 vfd = video_device_alloc();
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001726 if (NULL == vfd)
1727 return NULL;
1728
1729 *vfd = *template;
1730 vfd->v4l2_dev = &dev->v4l2_dev;
1731 vfd->release = video_device_release;
1732 vfd->debug = tm6000_debug;
1733 vfd->lock = &dev->lock;
Hans Verkuil5126f252012-05-10 04:57:22 -03001734 /* Locking in file operations other than ioctl should be done
1735 by the driver, not the V4L2 core.
1736 This driver needs auditing so that this flag can be removed. */
1737 set_bit(V4L2_FL_LOCK_ALL_FOPS, &vfd->flags);
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001738
1739 snprintf(vfd->name, sizeof(vfd->name), "%s %s", dev->name, type_name);
1740
1741 video_set_drvdata(vfd, dev);
1742 return vfd;
1743}
1744
1745int tm6000_v4l2_register(struct tm6000_core *dev)
1746{
1747 int ret = -1;
1748
1749 dev->vfd = vdev_init(dev, &tm6000_template, "video");
1750
1751 if (!dev->vfd) {
1752 printk(KERN_INFO "%s: can't register video device\n",
1753 dev->name);
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001754 return -ENOMEM;
1755 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001756
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001757 /* init video dma queues */
1758 INIT_LIST_HEAD(&dev->vidq.active);
1759 INIT_LIST_HEAD(&dev->vidq.queued);
1760
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001761 ret = video_register_device(dev->vfd, VFL_TYPE_GRABBER, video_nr);
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001762
1763 if (ret < 0) {
1764 printk(KERN_INFO "%s: can't register video device\n",
1765 dev->name);
1766 return ret;
1767 }
1768
1769 printk(KERN_INFO "%s: registered device %s\n",
1770 dev->name, video_device_node_name(dev->vfd));
1771
Stefan Ringel14169102011-05-09 16:53:49 -03001772 if (dev->caps.has_radio) {
1773 dev->radio_dev = vdev_init(dev, &tm6000_radio_template,
1774 "radio");
1775 if (!dev->radio_dev) {
1776 printk(KERN_INFO "%s: can't register radio device\n",
1777 dev->name);
1778 return ret; /* FIXME release resource */
1779 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001780
Stefan Ringel14169102011-05-09 16:53:49 -03001781 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
1782 radio_nr);
1783 if (ret < 0) {
1784 printk(KERN_INFO "%s: can't register radio device\n",
1785 dev->name);
1786 return ret; /* FIXME release resource */
1787 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001788
Stefan Ringel14169102011-05-09 16:53:49 -03001789 printk(KERN_INFO "%s: registered device %s\n",
1790 dev->name, video_device_node_name(dev->radio_dev));
1791 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001792
Dmitri Belimove28f49b2010-02-22 06:32:15 -03001793 printk(KERN_INFO "Trident TVMaster TM5600/TM6000/TM6010 USB2 board (Load status: %d)\n", ret);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001794 return ret;
1795}
1796
1797int tm6000_v4l2_unregister(struct tm6000_core *dev)
1798{
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001799 video_unregister_device(dev->vfd);
Michel Ludwig22927e82007-06-14 17:19:59 -03001800
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001801 if (dev->radio_dev) {
1802 if (video_is_registered(dev->radio_dev))
1803 video_unregister_device(dev->radio_dev);
1804 else
1805 video_device_release(dev->radio_dev);
1806 dev->radio_dev = NULL;
1807 }
1808
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001809 return 0;
1810}
1811
1812int tm6000_v4l2_exit(void)
1813{
1814 return 0;
1815}
1816
1817module_param(video_nr, int, 0);
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001818MODULE_PARM_DESC(video_nr, "Allow changing video device number");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001819
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001820module_param_named(debug, tm6000_debug, int, 0444);
1821MODULE_PARM_DESC(debug, "activates debug info");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001822
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001823module_param(vid_limit, int, 0644);
1824MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001825