blob: 82968017a2532ba373bf87fb97374efd9a015fe7 [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
Julian Scheel16427fa2012-10-04 10:04:28 -030052#define TM6000_NUM_URB_BUF 8
53
Stefan Ringel5a4b55e2010-05-19 13:58:27 -030054#define TM6000_MAX_ISO_PACKETS 46 /* Max number of ISO packets */
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -030055
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030056/* Declare static vars that will be used as parameters */
57static unsigned int vid_limit = 16; /* Video memory limit, in Mb */
58static int video_nr = -1; /* /dev/videoN, -1 for autodetect */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -030059static int radio_nr = -1; /* /dev/radioN, -1 for autodetect */
Julian Scheel16427fa2012-10-04 10:04:28 -030060static int keep_urb; /* keep urb buffers allocated */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030061
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030062/* Debug level */
63int tm6000_debug;
Mauro Carvalho Chehabfaa7c132010-06-04 21:08:25 -030064EXPORT_SYMBOL_GPL(tm6000_debug);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030065
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -030066static const struct v4l2_queryctrl no_ctrl = {
67 .name = "42",
68 .flags = V4L2_CTRL_FLAG_DISABLED,
69};
70
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030071/* supported controls */
72static struct v4l2_queryctrl tm6000_qctrl[] = {
73 {
74 .id = V4L2_CID_BRIGHTNESS,
75 .type = V4L2_CTRL_TYPE_INTEGER,
76 .name = "Brightness",
77 .minimum = 0,
78 .maximum = 255,
79 .step = 1,
80 .default_value = 54,
81 .flags = 0,
82 }, {
83 .id = V4L2_CID_CONTRAST,
84 .type = V4L2_CTRL_TYPE_INTEGER,
85 .name = "Contrast",
86 .minimum = 0,
87 .maximum = 255,
88 .step = 0x1,
89 .default_value = 119,
90 .flags = 0,
91 }, {
92 .id = V4L2_CID_SATURATION,
93 .type = V4L2_CTRL_TYPE_INTEGER,
94 .name = "Saturation",
95 .minimum = 0,
96 .maximum = 255,
97 .step = 0x1,
98 .default_value = 112,
99 .flags = 0,
100 }, {
101 .id = V4L2_CID_HUE,
102 .type = V4L2_CTRL_TYPE_INTEGER,
103 .name = "Hue",
104 .minimum = -128,
105 .maximum = 127,
106 .step = 0x1,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300107 .default_value = 0,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300108 .flags = 0,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300109 },
110 /* --- audio --- */
111 {
112 .id = V4L2_CID_AUDIO_MUTE,
113 .name = "Mute",
114 .minimum = 0,
115 .maximum = 1,
116 .type = V4L2_CTRL_TYPE_BOOLEAN,
117 }, {
118 .id = V4L2_CID_AUDIO_VOLUME,
119 .name = "Volume",
120 .minimum = -15,
121 .maximum = 15,
122 .step = 1,
123 .default_value = 0,
124 .type = V4L2_CTRL_TYPE_INTEGER,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300125 }
126};
127
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300128static const unsigned int CTRLS = ARRAY_SIZE(tm6000_qctrl);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300129static int qctl_regs[ARRAY_SIZE(tm6000_qctrl)];
130
131static struct tm6000_fmt format[] = {
132 {
133 .name = "4:2:2, packed, YVY2",
134 .fourcc = V4L2_PIX_FMT_YUYV,
135 .depth = 16,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300136 }, {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300137 .name = "4:2:2, packed, UYVY",
138 .fourcc = V4L2_PIX_FMT_UYVY,
139 .depth = 16,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300140 }, {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300141 .name = "A/V + VBI mux packet",
142 .fourcc = V4L2_PIX_FMT_TM6000,
143 .depth = 16,
144 }
145};
146
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300147static const struct v4l2_queryctrl *ctrl_by_id(unsigned int id)
148{
149 unsigned int i;
150
151 for (i = 0; i < CTRLS; i++)
152 if (tm6000_qctrl[i].id == id)
153 return tm6000_qctrl+i;
154 return NULL;
155}
156
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300157/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300158 * DMA and thread functions
159 * ------------------------------------------------------------------
160 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300161
162#define norm_maxw(a) 720
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -0300163#define norm_maxh(a) 576
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300164
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300165#define norm_minw(a) norm_maxw(a)
166#define norm_minh(a) norm_maxh(a)
167
168/*
169 * video-buf generic routine to get the next available buffer
170 */
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300171static inline void get_next_buf(struct tm6000_dmaqueue *dma_q,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300172 struct tm6000_buffer **buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300173{
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300174 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300175
176 if (list_empty(&dma_q->active)) {
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300177 dprintk(dev, V4L2_DEBUG_QUEUE, "No active queue to serve\n");
Mauro Carvalho Chehab1f9305b2008-11-28 06:44:06 -0300178 *buf = NULL;
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300179 return;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300180 }
181
182 *buf = list_entry(dma_q->active.next,
183 struct tm6000_buffer, vb.queue);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300184}
185
186/*
187 * Announces that a buffer were filled and request the next
188 */
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300189static inline void buffer_filled(struct tm6000_core *dev,
190 struct tm6000_dmaqueue *dma_q,
191 struct tm6000_buffer *buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300192{
193 /* Advice that buffer was filled */
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300194 dprintk(dev, V4L2_DEBUG_ISOC, "[%p/%d] wakeup\n", buf, buf->vb.i);
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300195 buf->vb.state = VIDEOBUF_DONE;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300196 buf->vb.field_count++;
197 do_gettimeofday(&buf->vb.ts);
198
199 list_del(&buf->vb.queue);
200 wake_up(&buf->vb.done);
201}
202
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300203/*
204 * Identify the tm5600/6000 buffer header type and properly handles
205 */
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300206static int copy_streams(u8 *data, unsigned long len,
207 struct urb *urb)
Mauro Carvalho Chehabe2c95002007-09-19 15:39:22 -0300208{
209 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300210 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Hans Verkuil81730902012-04-20 07:30:48 -0300211 u8 *ptr = data, *endp = data+len;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300212 unsigned long header = 0;
213 int rc = 0;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300214 unsigned int cmd, cpysize, pktsize, size, field, block, line, pos = 0;
Jarod Wilsoncc73b4b2011-04-11 18:49:24 -0300215 struct tm6000_buffer *vbuf = NULL;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300216 char *voutp = NULL;
217 unsigned int linewidth;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300218
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300219 if (!dev->radio) {
220 /* get video buffer */
221 get_next_buf(dma_q, &vbuf);
222
223 if (!vbuf)
224 return rc;
225 voutp = videobuf_to_vmalloc(&vbuf->vb);
226
227 if (!voutp)
228 return 0;
229 }
Mauro Carvalho Chehabe2c95002007-09-19 15:39:22 -0300230
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300231 for (ptr = data; ptr < endp;) {
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300232 if (!dev->isoc_ctl.cmd) {
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300233 /* Header */
234 if (dev->isoc_ctl.tmp_buf_len > 0) {
235 /* from last urb or packet */
236 header = dev->isoc_ctl.tmp_buf;
237 if (4 - dev->isoc_ctl.tmp_buf_len > 0) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300238 memcpy((u8 *)&header +
Mauro Carvalho Chehab801dd3b2010-05-02 17:14:33 -0300239 dev->isoc_ctl.tmp_buf_len,
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300240 ptr,
Mauro Carvalho Chehab801dd3b2010-05-02 17:14:33 -0300241 4 - dev->isoc_ctl.tmp_buf_len);
242 ptr += 4 - dev->isoc_ctl.tmp_buf_len;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300243 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300244 dev->isoc_ctl.tmp_buf_len = 0;
245 } else {
246 if (ptr + 3 >= endp) {
247 /* have incomplete header */
248 dev->isoc_ctl.tmp_buf_len = endp - ptr;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300249 memcpy(&dev->isoc_ctl.tmp_buf, ptr,
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300250 dev->isoc_ctl.tmp_buf_len);
251 return rc;
252 }
253 /* Seek for sync */
254 for (; ptr < endp - 3; ptr++) {
255 if (*(ptr + 3) == 0x47)
256 break;
257 }
258 /* Get message header */
259 header = *(unsigned long *)ptr;
260 ptr += 4;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300261 }
Mauro Carvalho Chehab23ba9462010-06-07 11:57:28 -0300262
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300263 /* split the header fields */
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300264 size = ((header & 0x7e) << 1);
265 if (size > 0)
266 size -= 4;
267 block = (header >> 7) & 0xf;
268 field = (header >> 11) & 0x1;
269 line = (header >> 12) & 0x1ff;
270 cmd = (header >> 21) & 0x7;
271 /* Validates haeder fields */
272 if (size > TM6000_URB_MSG_LEN)
273 size = TM6000_URB_MSG_LEN;
274 pktsize = TM6000_URB_MSG_LEN;
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300275 /*
276 * calculate position in buffer and change the buffer
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300277 */
278 switch (cmd) {
279 case TM6000_URB_MSG_VIDEO:
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300280 if (!dev->radio) {
281 if ((dev->isoc_ctl.vfield != field) &&
282 (field == 1)) {
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300283 /*
284 * Announces that a new buffer
285 * were filled
286 */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300287 buffer_filled(dev, dma_q, vbuf);
288 dprintk(dev, V4L2_DEBUG_ISOC,
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300289 "new buffer filled\n");
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300290 get_next_buf(dma_q, &vbuf);
291 if (!vbuf)
292 return rc;
293 voutp = videobuf_to_vmalloc(&vbuf->vb);
294 if (!voutp)
295 return rc;
296 memset(voutp, 0, vbuf->vb.size);
297 }
298 linewidth = vbuf->vb.width << 1;
299 pos = ((line << 1) - field - 1) *
300 linewidth + block * TM6000_URB_MSG_LEN;
301 /* Don't allow to write out of the buffer */
302 if (pos + size > vbuf->vb.size)
303 cmd = TM6000_URB_MSG_ERR;
304 dev->isoc_ctl.vfield = field;
Jarod Wilsoncc73b4b2011-04-11 18:49:24 -0300305 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300306 break;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300307 case TM6000_URB_MSG_VBI:
Mauro Carvalho Chehab23ba9462010-06-07 11:57:28 -0300308 break;
309 case TM6000_URB_MSG_AUDIO:
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300310 case TM6000_URB_MSG_PTS:
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300311 size = pktsize; /* Size is always 180 bytes */
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300312 break;
Mauro Carvalho Chehabcc6c60d2007-09-19 16:24:05 -0300313 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300314 } else {
315 /* Continue the last copy */
316 cmd = dev->isoc_ctl.cmd;
317 size = dev->isoc_ctl.size;
318 pos = dev->isoc_ctl.pos;
319 pktsize = dev->isoc_ctl.pktsize;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300320 field = dev->isoc_ctl.field;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300321 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300322 cpysize = (endp - ptr > size) ? size : endp - ptr;
323 if (cpysize) {
324 /* copy data in different buffers */
325 switch (cmd) {
326 case TM6000_URB_MSG_VIDEO:
327 /* Fills video buffer */
328 if (vbuf)
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300329 memcpy(&voutp[pos], ptr, cpysize);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300330 break;
Stefan Ringel7ecff8c2011-05-09 16:54:00 -0300331 case TM6000_URB_MSG_AUDIO: {
332 int i;
333 for (i = 0; i < cpysize; i += 2)
334 swab16s((u16 *)(ptr + i));
Dmitri Belimov73f4d262010-09-20 17:07:15 -0300335
Mauro Carvalho Chehabb17b8692010-06-03 17:16:28 -0300336 tm6000_call_fillbuf(dev, TM6000_AUDIO, ptr, cpysize);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300337 break;
Stefan Ringel7ecff8c2011-05-09 16:54:00 -0300338 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300339 case TM6000_URB_MSG_VBI:
340 /* Need some code to copy vbi buffer */
341 break;
Stefan Ringel2f349da2011-05-09 16:54:02 -0300342 case TM6000_URB_MSG_PTS: {
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300343 /* Need some code to copy pts */
Stefan Ringel2f349da2011-05-09 16:54:02 -0300344 u32 pts;
345 pts = *(u32 *)ptr;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300346 dprintk(dev, V4L2_DEBUG_ISOC, "field %d, PTS %x",
347 field, pts);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300348 break;
349 }
Stefan Ringel2f349da2011-05-09 16:54:02 -0300350 }
Mauro Carvalho Chehaba2286182007-09-22 02:06:25 -0300351 }
Mauro Carvalho Chehabccfb3022010-06-30 17:24:28 -0300352 if (ptr + pktsize > endp) {
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300353 /*
354 * End of URB packet, but cmd processing is not
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300355 * complete. Preserve the state for a next packet
356 */
357 dev->isoc_ctl.pos = pos + cpysize;
358 dev->isoc_ctl.size = size - cpysize;
359 dev->isoc_ctl.cmd = cmd;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300360 dev->isoc_ctl.field = field;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300361 dev->isoc_ctl.pktsize = pktsize - (endp - ptr);
Mauro Carvalho Chehabccfb3022010-06-30 17:24:28 -0300362 ptr += endp - ptr;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300363 } else {
364 dev->isoc_ctl.cmd = 0;
365 ptr += pktsize;
366 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300367 }
Mauro Carvalho Chehaba2286182007-09-22 02:06:25 -0300368 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300369}
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300370
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300371/*
372 * Identify the tm5600/6000 buffer header type and properly handles
373 */
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300374static int copy_multiplexed(u8 *ptr, unsigned long len,
375 struct urb *urb)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300376{
377 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300378 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
379 unsigned int pos = dev->isoc_ctl.pos, cpysize;
380 int rc = 1;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300381 struct tm6000_buffer *buf;
382 char *outp = NULL;
383
384 get_next_buf(dma_q, &buf);
385 if (buf)
386 outp = videobuf_to_vmalloc(&buf->vb);
387
388 if (!outp)
389 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300390
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300391 while (len > 0) {
392 cpysize = min(len, buf->vb.size-pos);
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300393 memcpy(&outp[pos], ptr, cpysize);
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300394 pos += cpysize;
395 ptr += cpysize;
396 len -= cpysize;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300397 if (pos >= buf->vb.size) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300398 pos = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300399 /* Announces that a new buffer were filled */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300400 buffer_filled(dev, dma_q, buf);
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300401 dprintk(dev, V4L2_DEBUG_ISOC, "new buffer filled\n");
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300402 get_next_buf(dma_q, &buf);
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300403 if (!buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300404 break;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300405 outp = videobuf_to_vmalloc(&(buf->vb));
406 if (!outp)
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300407 return rc;
408 pos = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300409 }
410 }
411
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300412 dev->isoc_ctl.pos = pos;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300413 return rc;
414}
415
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300416static inline void print_err_status(struct tm6000_core *dev,
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300417 int packet, int status)
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300418{
419 char *errmsg = "Unknown";
420
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300421 switch (status) {
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300422 case -ENOENT:
423 errmsg = "unlinked synchronuously";
424 break;
425 case -ECONNRESET:
426 errmsg = "unlinked asynchronuously";
427 break;
428 case -ENOSR:
429 errmsg = "Buffer error (overrun)";
430 break;
431 case -EPIPE:
432 errmsg = "Stalled (device not responding)";
433 break;
434 case -EOVERFLOW:
435 errmsg = "Babble (bad cable?)";
436 break;
437 case -EPROTO:
438 errmsg = "Bit-stuff error (bad cable?)";
439 break;
440 case -EILSEQ:
441 errmsg = "CRC/Timeout (could be anything)";
442 break;
443 case -ETIME:
444 errmsg = "Device does not respond";
445 break;
446 }
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300447 if (packet < 0) {
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300448 dprintk(dev, V4L2_DEBUG_QUEUE, "URB status %d [%s].\n",
449 status, errmsg);
450 } else {
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300451 dprintk(dev, V4L2_DEBUG_QUEUE, "URB packet %d, status %d [%s].\n",
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300452 packet, status, errmsg);
453 }
454}
455
456
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300457/*
458 * Controls the isoc copy of each urb packet
459 */
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300460static inline int tm6000_isoc_copy(struct urb *urb)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300461{
462 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300463 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
464 int i, len = 0, rc = 1, status;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300465 char *p;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300466
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300467 if (urb->status < 0) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300468 print_err_status(dev, -1, urb->status);
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300469 return 0;
470 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300471
472 for (i = 0; i < urb->number_of_packets; i++) {
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300473 status = urb->iso_frame_desc[i].status;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300474
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300475 if (status < 0) {
476 print_err_status(dev, i, status);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300477 continue;
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300478 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300479
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300480 len = urb->iso_frame_desc[i].actual_length;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300481
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300482 if (len > 0) {
483 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300484 if (!urb->iso_frame_desc[i].status) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300485 if ((dev->fourcc) == V4L2_PIX_FMT_TM6000) {
486 rc = copy_multiplexed(p, len, urb);
487 if (rc <= 0)
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300488 return rc;
489 } else {
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300490 copy_streams(p, len, urb);
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300491 }
492 }
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300493 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300494 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300495 return rc;
496}
497
498/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300499 * URB control
500 * ------------------------------------------------------------------
501 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300502
503/*
504 * IRQ callback, called by URB callback
505 */
506static void tm6000_irq_callback(struct urb *urb)
507{
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300508 struct tm6000_dmaqueue *dma_q = urb->context;
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300509 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300510 int i;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300511
Thierry Reding14f09152011-08-04 04:14:06 -0300512 switch (urb->status) {
513 case 0:
514 case -ETIMEDOUT:
515 break;
516
517 case -ECONNRESET:
518 case -ENOENT:
519 case -ESHUTDOWN:
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300520 return;
521
Thierry Reding14f09152011-08-04 04:14:06 -0300522 default:
523 tm6000_err("urb completion error %d.\n", urb->status);
524 break;
525 }
526
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300527 spin_lock(&dev->slock);
528 tm6000_isoc_copy(urb);
529 spin_unlock(&dev->slock);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300530
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300531 /* Reset urb buffers */
532 for (i = 0; i < urb->number_of_packets; i++) {
533 urb->iso_frame_desc[i].status = 0;
534 urb->iso_frame_desc[i].actual_length = 0;
535 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300536
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300537 urb->status = usb_submit_urb(urb, GFP_ATOMIC);
538 if (urb->status)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300539 tm6000_err("urb resubmit failed (error=%i)\n",
540 urb->status);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300541}
542
543/*
Julian Scheel16427fa2012-10-04 10:04:28 -0300544 * Allocate URB buffers
545 */
546static int tm6000_alloc_urb_buffers(struct tm6000_core *dev)
547{
548 int num_bufs = TM6000_NUM_URB_BUF;
549 int i;
550
551 if (dev->urb_buffer != NULL)
552 return 0;
553
554 dev->urb_buffer = kmalloc(sizeof(void *)*num_bufs, GFP_KERNEL);
555 if (!dev->urb_buffer) {
556 tm6000_err("cannot allocate memory for urb buffers\n");
557 return -ENOMEM;
558 }
559
560 dev->urb_dma = kmalloc(sizeof(dma_addr_t *)*num_bufs, GFP_KERNEL);
561 if (!dev->urb_dma) {
562 tm6000_err("cannot allocate memory for urb dma pointers\n");
563 return -ENOMEM;
564 }
565
566 for (i = 0; i < num_bufs; i++) {
567 dev->urb_buffer[i] = usb_alloc_coherent(
568 dev->udev, dev->urb_size,
569 GFP_KERNEL, &dev->urb_dma[i]);
570 if (!dev->urb_buffer[i]) {
571 tm6000_err("unable to allocate %i bytes for transfer buffer %i\n",
572 dev->urb_size, i);
573 return -ENOMEM;
574 }
575 memset(dev->urb_buffer[i], 0, dev->urb_size);
576 }
577
578 return 0;
579}
580
581/*
582 * Free URB buffers
583 */
584static int tm6000_free_urb_buffers(struct tm6000_core *dev)
585{
586 int i;
587
588 if (dev->urb_buffer == NULL)
589 return 0;
590
591 for (i = 0; i < TM6000_NUM_URB_BUF; i++) {
592 if (dev->urb_buffer[i]) {
593 usb_free_coherent(dev->udev,
594 dev->urb_size,
595 dev->urb_buffer[i],
596 dev->urb_dma[i]);
597 dev->urb_buffer[i] = NULL;
598 }
599 }
600 kfree(dev->urb_buffer);
601 kfree(dev->urb_dma);
602 dev->urb_buffer = NULL;
603 dev->urb_dma = NULL;
604
605 return 0;
606}
607
608/*
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300609 * Stop and Deallocate URBs
610 */
611static void tm6000_uninit_isoc(struct tm6000_core *dev)
612{
613 struct urb *urb;
614 int i;
615
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300616 dev->isoc_ctl.buf = NULL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300617 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300618 urb = dev->isoc_ctl.urb[i];
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300619 if (urb) {
620 usb_kill_urb(urb);
621 usb_unlink_urb(urb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300622 usb_free_urb(urb);
623 dev->isoc_ctl.urb[i] = NULL;
624 }
625 dev->isoc_ctl.transfer_buffer[i] = NULL;
626 }
627
Julian Scheel16427fa2012-10-04 10:04:28 -0300628 if (!keep_urb)
629 tm6000_free_urb_buffers(dev);
630
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300631 kfree(dev->isoc_ctl.urb);
632 kfree(dev->isoc_ctl.transfer_buffer);
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300633
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300634 dev->isoc_ctl.urb = NULL;
635 dev->isoc_ctl.transfer_buffer = NULL;
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300636 dev->isoc_ctl.num_bufs = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300637}
638
639/*
Julian Scheel16427fa2012-10-04 10:04:28 -0300640 * Assign URBs and start IRQ
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300641 */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300642static int tm6000_prepare_isoc(struct tm6000_core *dev)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300643{
644 struct tm6000_dmaqueue *dma_q = &dev->vidq;
Julian Scheel16427fa2012-10-04 10:04:28 -0300645 int i, j, sb_size, pipe, size, max_packets;
646 int num_bufs = TM6000_NUM_URB_BUF;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300647 struct urb *urb;
Mauro Carvalho Chehab204193d2008-01-09 18:12:39 -0300648
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300649 /* De-allocates all pending stuff */
650 tm6000_uninit_isoc(dev);
Dmitri Belimov641d2112010-12-22 05:57:46 -0300651 /* Stop interrupt USB pipe */
652 tm6000_ir_int_stop(dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300653
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300654 usb_set_interface(dev->udev,
655 dev->isoc_in.bInterfaceNumber,
656 dev->isoc_in.bAlternateSetting);
657
Dmitri Belimov641d2112010-12-22 05:57:46 -0300658 /* Start interrupt USB pipe */
659 tm6000_ir_int_start(dev);
660
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300661 pipe = usb_rcvisocpipe(dev->udev,
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300662 dev->isoc_in.endp->desc.bEndpointAddress &
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300663 USB_ENDPOINT_NUMBER_MASK);
664
665 size = usb_maxpacket(dev->udev, pipe, usb_pipeout(pipe));
666
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300667 if (size > dev->isoc_in.maxsize)
668 size = dev->isoc_in.maxsize;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300669
670 dev->isoc_ctl.max_pkt_size = size;
671
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300672 max_packets = TM6000_MAX_ISO_PACKETS;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300673 sb_size = max_packets * size;
Julian Scheel16427fa2012-10-04 10:04:28 -0300674 dev->urb_size = sb_size;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300675
676 dev->isoc_ctl.num_bufs = num_bufs;
677
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300678 dev->isoc_ctl.urb = kmalloc(sizeof(void *)*num_bufs, GFP_KERNEL);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300679 if (!dev->isoc_ctl.urb) {
680 tm6000_err("cannot alloc memory for usb buffers\n");
681 return -ENOMEM;
682 }
683
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300684 dev->isoc_ctl.transfer_buffer = kmalloc(sizeof(void *)*num_bufs,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300685 GFP_KERNEL);
Julia Lawallf8960ee2010-02-11 03:30:30 -0300686 if (!dev->isoc_ctl.transfer_buffer) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300687 tm6000_err("cannot allocate memory for usbtransfer\n");
688 kfree(dev->isoc_ctl.urb);
689 return -ENOMEM;
690 }
691
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300692 dprintk(dev, V4L2_DEBUG_QUEUE, "Allocating %d x %d packets"
693 " (%d bytes) of %d bytes each to handle %u size\n",
694 max_packets, num_bufs, sb_size,
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300695 dev->isoc_in.maxsize, size);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300696
Julian Scheel16427fa2012-10-04 10:04:28 -0300697
698 if (!dev->urb_buffer && tm6000_alloc_urb_buffers(dev) < 0) {
699 tm6000_err("cannot allocate memory for urb buffers\n");
700
701 /* call free, as some buffers might have been allocated */
702 tm6000_free_urb_buffers(dev);
703 kfree(dev->isoc_ctl.urb);
704 kfree(dev->isoc_ctl.transfer_buffer);
705 return -ENOMEM;
706 }
707
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300708 /* allocate urbs and transfer buffers */
709 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
710 urb = usb_alloc_urb(max_packets, GFP_KERNEL);
711 if (!urb) {
712 tm6000_err("cannot alloc isoc_ctl.urb %i\n", i);
713 tm6000_uninit_isoc(dev);
Mauro Carvalho Chehabc1a16412007-10-15 15:43:50 -0300714 usb_free_urb(urb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300715 return -ENOMEM;
716 }
717 dev->isoc_ctl.urb[i] = urb;
718
Julian Scheel16427fa2012-10-04 10:04:28 -0300719 urb->transfer_dma = dev->urb_dma[i];
720 dev->isoc_ctl.transfer_buffer[i] = dev->urb_buffer[i];
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300721
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300722 usb_fill_bulk_urb(urb, dev->udev, pipe,
723 dev->isoc_ctl.transfer_buffer[i], sb_size,
724 tm6000_irq_callback, dma_q);
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300725 urb->interval = dev->isoc_in.endp->desc.bInterval;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300726 urb->number_of_packets = max_packets;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300727 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300728
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300729 for (j = 0; j < max_packets; j++) {
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300730 urb->iso_frame_desc[j].offset = size * j;
731 urb->iso_frame_desc[j].length = size;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300732 }
733 }
734
735 return 0;
736}
737
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300738static int tm6000_start_thread(struct tm6000_core *dev)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300739{
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300740 struct tm6000_dmaqueue *dma_q = &dev->vidq;
741 int i;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300742
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300743 dma_q->frame = 0;
744 dma_q->ini_jiffies = jiffies;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300745
746 init_waitqueue_head(&dma_q->wq);
747
748 /* submit urbs and enables IRQ */
749 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300750 int rc = usb_submit_urb(dev->isoc_ctl.urb[i], GFP_ATOMIC);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300751 if (rc) {
752 tm6000_err("submit of urb %i failed (error=%i)\n", i,
753 rc);
754 tm6000_uninit_isoc(dev);
755 return rc;
756 }
757 }
758
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300759 return 0;
760}
761
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300762/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300763 * Videobuf operations
764 * ------------------------------------------------------------------
765 */
Michel Ludwig95a83822007-07-24 08:06:45 -0300766
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300767static int
768buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
769{
770 struct tm6000_fh *fh = vq->priv_data;
771
772 *size = fh->fmt->depth * fh->width * fh->height >> 3;
773 if (0 == *count)
Michel Ludwig95a83822007-07-24 08:06:45 -0300774 *count = TM6000_DEF_BUF;
775
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300776 if (*count < TM6000_MIN_BUF)
777 *count = TM6000_MIN_BUF;
Michel Ludwig95a83822007-07-24 08:06:45 -0300778
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300779 while (*size * *count > vid_limit * 1024 * 1024)
780 (*count)--;
Michel Ludwig95a83822007-07-24 08:06:45 -0300781
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300782 return 0;
783}
784
785static void free_buffer(struct videobuf_queue *vq, struct tm6000_buffer *buf)
786{
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300787 struct tm6000_fh *fh = vq->priv_data;
788 struct tm6000_core *dev = fh->dev;
789 unsigned long flags;
790
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300791 if (in_interrupt())
792 BUG();
793
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300794 /* We used to wait for the buffer to finish here, but this didn't work
795 because, as we were keeping the state as VIDEOBUF_QUEUED,
796 videobuf_queue_cancel marked it as finished for us.
797 (Also, it could wedge forever if the hardware was misconfigured.)
798
799 This should be safe; by the time we get here, the buffer isn't
800 queued anymore. If we ever start marking the buffers as
801 VIDEOBUF_ACTIVE, it won't be, though.
802 */
803 spin_lock_irqsave(&dev->slock, flags);
804 if (dev->isoc_ctl.buf == buf)
805 dev->isoc_ctl.buf = NULL;
806 spin_unlock_irqrestore(&dev->slock, flags);
807
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300808 videobuf_vmalloc_free(&buf->vb);
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300809 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300810}
811
812static int
813buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
814 enum v4l2_field field)
815{
816 struct tm6000_fh *fh = vq->priv_data;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300817 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300818 struct tm6000_core *dev = fh->dev;
Thierry Reding88e834a2011-08-04 04:14:12 -0300819 int rc = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300820
821 BUG_ON(NULL == fh->fmt);
822
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300823
824 /* FIXME: It assumes depth=2 */
825 /* The only currently supported format is 16 bits/pixel */
826 buf->vb.size = fh->fmt->depth*fh->width*fh->height >> 3;
827 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
828 return -EINVAL;
829
830 if (buf->fmt != fh->fmt ||
831 buf->vb.width != fh->width ||
832 buf->vb.height != fh->height ||
833 buf->vb.field != field) {
834 buf->fmt = fh->fmt;
835 buf->vb.width = fh->width;
836 buf->vb.height = fh->height;
837 buf->vb.field = field;
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300838 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300839 }
840
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300841 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Curtis McEnroeed7c2212011-06-01 22:21:56 -0400842 rc = videobuf_iolock(vq, &buf->vb, NULL);
843 if (rc != 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300844 goto fail;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300845 }
846
Thierry Reding88e834a2011-08-04 04:14:12 -0300847 if (!dev->isoc_ctl.num_bufs) {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300848 rc = tm6000_prepare_isoc(dev);
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300849 if (rc < 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300850 goto fail;
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300851
852 rc = tm6000_start_thread(dev);
853 if (rc < 0)
854 goto fail;
855
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300856 }
857
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300858 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300859 return 0;
860
861fail:
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300862 free_buffer(vq, buf);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300863 return rc;
864}
865
866static void
867buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
868{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300869 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300870 struct tm6000_fh *fh = vq->priv_data;
871 struct tm6000_core *dev = fh->dev;
872 struct tm6000_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300873
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300874 buf->vb.state = VIDEOBUF_QUEUED;
875 list_add_tail(&buf->vb.queue, &vidq->active);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300876}
877
878static void buffer_release(struct videobuf_queue *vq, struct videobuf_buffer *vb)
879{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300880 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300881
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300882 free_buffer(vq, buf);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300883}
884
885static struct videobuf_queue_ops tm6000_video_qops = {
886 .buf_setup = buffer_setup,
887 .buf_prepare = buffer_prepare,
888 .buf_queue = buffer_queue,
889 .buf_release = buffer_release,
890};
891
892/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300893 * IOCTL handling
894 * ------------------------------------------------------------------
895 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300896
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300897static bool is_res_read(struct tm6000_core *dev, struct tm6000_fh *fh)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300898{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300899 /* Is the current fh handling it? if so, that's OK */
900 if (dev->resources == fh && dev->is_res_read)
901 return true;
902
903 return false;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300904}
905
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300906static bool is_res_streaming(struct tm6000_core *dev, struct tm6000_fh *fh)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300907{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300908 /* Is the current fh handling it? if so, that's OK */
909 if (dev->resources == fh)
910 return true;
911
912 return false;
913}
914
915static bool res_get(struct tm6000_core *dev, struct tm6000_fh *fh,
916 bool is_res_read)
917{
918 /* Is the current fh handling it? if so, that's OK */
919 if (dev->resources == fh && dev->is_res_read == is_res_read)
920 return true;
921
922 /* is it free? */
923 if (dev->resources)
924 return false;
925
926 /* grab it */
927 dev->resources = fh;
928 dev->is_res_read = is_res_read;
929 dprintk(dev, V4L2_DEBUG_RES_LOCK, "res: get\n");
930 return true;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300931}
932
933static void res_free(struct tm6000_core *dev, struct tm6000_fh *fh)
934{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300935 /* Is the current fh handling it? if so, that's OK */
936 if (dev->resources != fh)
937 return;
938
939 dev->resources = NULL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300940 dprintk(dev, V4L2_DEBUG_RES_LOCK, "res: put\n");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300941}
942
943/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300944 * IOCTL vidioc handling
945 * ------------------------------------------------------------------
946 */
947static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300948 struct v4l2_capability *cap)
949{
Stefan Ringel886a3c02011-05-09 16:53:50 -0300950 struct tm6000_core *dev = ((struct tm6000_fh *)priv)->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300951
952 strlcpy(cap->driver, "tm6000", sizeof(cap->driver));
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300953 strlcpy(cap->card, "Trident TVMaster TM5600/6000/6010", sizeof(cap->card));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300954 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
955 V4L2_CAP_STREAMING |
Stefan Ringel886a3c02011-05-09 16:53:50 -0300956 V4L2_CAP_AUDIO |
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300957 V4L2_CAP_READWRITE;
Stefan Ringel886a3c02011-05-09 16:53:50 -0300958
959 if (dev->tuner_type != TUNER_ABSENT)
960 cap->capabilities |= V4L2_CAP_TUNER;
961
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300962 return 0;
963}
964
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300965static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300966 struct v4l2_fmtdesc *f)
967{
968 if (unlikely(f->index >= ARRAY_SIZE(format)))
969 return -EINVAL;
970
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300971 strlcpy(f->description, format[f->index].name, sizeof(f->description));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300972 f->pixelformat = format[f->index].fourcc;
973 return 0;
974}
975
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300976static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300977 struct v4l2_format *f)
978{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300979 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300980
981 f->fmt.pix.width = fh->width;
982 f->fmt.pix.height = fh->height;
983 f->fmt.pix.field = fh->vb_vidq.field;
984 f->fmt.pix.pixelformat = fh->fmt->fourcc;
985 f->fmt.pix.bytesperline =
986 (f->fmt.pix.width * fh->fmt->depth) >> 3;
987 f->fmt.pix.sizeimage =
988 f->fmt.pix.height * f->fmt.pix.bytesperline;
989
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300990 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300991}
992
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300993static struct tm6000_fmt *format_by_fourcc(unsigned int fourcc)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300994{
995 unsigned int i;
996
997 for (i = 0; i < ARRAY_SIZE(format); i++)
998 if (format[i].fourcc == fourcc)
999 return format+i;
1000 return NULL;
1001}
1002
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001003static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001004 struct v4l2_format *f)
1005{
1006 struct tm6000_core *dev = ((struct tm6000_fh *)priv)->dev;
1007 struct tm6000_fmt *fmt;
1008 enum v4l2_field field;
1009
1010 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1011 if (NULL == fmt) {
1012 dprintk(dev, V4L2_DEBUG_IOCTL_ARG, "Fourcc format (0x%08x)"
1013 " invalid.\n", f->fmt.pix.pixelformat);
1014 return -EINVAL;
1015 }
1016
1017 field = f->fmt.pix.field;
1018
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001019 if (field == V4L2_FIELD_ANY)
1020 field = V4L2_FIELD_SEQ_TB;
1021 else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001022 dprintk(dev, V4L2_DEBUG_IOCTL_ARG, "Field type invalid.\n");
1023 return -EINVAL;
1024 }
1025
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001026 tm6000_get_std_res(dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001027
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -03001028 f->fmt.pix.width = dev->width;
1029 f->fmt.pix.height = dev->height;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001030
1031 f->fmt.pix.width &= ~0x01;
1032
1033 f->fmt.pix.field = field;
1034
1035 f->fmt.pix.bytesperline =
1036 (f->fmt.pix.width * fmt->depth) >> 3;
1037 f->fmt.pix.sizeimage =
1038 f->fmt.pix.height * f->fmt.pix.bytesperline;
1039
1040 return 0;
1041}
1042
1043/*FIXME: This seems to be generic enough to be at videodev2 */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001044static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001045 struct v4l2_format *f)
1046{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001047 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001048 struct tm6000_core *dev = fh->dev;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001049 int ret = vidioc_try_fmt_vid_cap(file, fh, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001050 if (ret < 0)
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001051 return ret;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001052
1053 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1054 fh->width = f->fmt.pix.width;
1055 fh->height = f->fmt.pix.height;
1056 fh->vb_vidq.field = f->fmt.pix.field;
1057 fh->type = f->type;
1058
1059 dev->fourcc = f->fmt.pix.pixelformat;
1060
1061 tm6000_set_fourcc_format(dev);
1062
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001063 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001064}
1065
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001066static int vidioc_reqbufs(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001067 struct v4l2_requestbuffers *p)
1068{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001069 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001070
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001071 return videobuf_reqbufs(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001072}
1073
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001074static int vidioc_querybuf(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001075 struct v4l2_buffer *p)
1076{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001077 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001078
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001079 return videobuf_querybuf(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001080}
1081
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001082static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001083{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001084 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001085
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001086 return videobuf_qbuf(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001087}
1088
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001089static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001090{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001091 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001092
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001093 return videobuf_dqbuf(&fh->vb_vidq, p,
1094 file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001095}
1096
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001097static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
1098{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001099 struct tm6000_fh *fh = priv;
1100 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001101
1102 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1103 return -EINVAL;
1104 if (i != fh->type)
1105 return -EINVAL;
1106
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001107 if (!res_get(dev, fh, false))
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001108 return -EBUSY;
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001109 return videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001110}
1111
1112static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1113{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001114 struct tm6000_fh *fh = priv;
1115 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001116
1117 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1118 return -EINVAL;
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001119
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001120 if (i != fh->type)
1121 return -EINVAL;
1122
1123 videobuf_streamoff(&fh->vb_vidq);
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001124 res_free(dev, fh);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001125
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001126 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001127}
1128
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001129static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001130{
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001131 int rc = 0;
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001132 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001133 struct tm6000_core *dev = fh->dev;
1134
Stefan Ringel4f526102010-10-27 16:48:05 -03001135 dev->norm = *norm;
Mauro Carvalho Chehab709944e2010-10-07 02:28:24 -03001136 rc = tm6000_init_analog_mode(dev);
Mauro Carvalho Chehab71e7cfa2007-09-06 20:12:10 -03001137
1138 fh->width = dev->width;
1139 fh->height = dev->height;
1140
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001141 if (rc < 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001142 return rc;
1143
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -03001144 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_std, dev->norm);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001145
1146 return 0;
1147}
1148
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001149static const char *iname[] = {
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001150 [TM6000_INPUT_TV] = "Television",
1151 [TM6000_INPUT_COMPOSITE1] = "Composite 1",
1152 [TM6000_INPUT_COMPOSITE2] = "Composite 2",
1153 [TM6000_INPUT_SVIDEO] = "S-Video",
1154};
1155
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001156static int vidioc_enum_input(struct file *file, void *priv,
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001157 struct v4l2_input *i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001158{
Dmitri Belimov2aefbc12011-03-17 21:08:55 -03001159 struct tm6000_fh *fh = priv;
1160 struct tm6000_core *dev = fh->dev;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001161 unsigned int n;
Dmitri Belimov2aefbc12011-03-17 21:08:55 -03001162
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001163 n = i->index;
1164 if (n >= 3)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001165 return -EINVAL;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001166
1167 if (!dev->vinput[n].type)
1168 return -EINVAL;
1169
1170 i->index = n;
1171
1172 if (dev->vinput[n].type == TM6000_INPUT_TV)
1173 i->type = V4L2_INPUT_TYPE_TUNER;
1174 else
1175 i->type = V4L2_INPUT_TYPE_CAMERA;
1176
1177 strcpy(i->name, iname[dev->vinput[n].type]);
1178
1179 i->std = TM6000_STD;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001180
1181 return 0;
1182}
1183
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001184static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001185{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001186 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001187 struct tm6000_core *dev = fh->dev;
1188
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001189 *i = dev->input;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001190
1191 return 0;
1192}
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001193
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001194static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001195{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001196 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001197 struct tm6000_core *dev = fh->dev;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001198 int rc = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001199
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001200 if (i >= 3)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001201 return -EINVAL;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001202 if (!dev->vinput[i].type)
1203 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001204
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001205 dev->input = i;
1206
1207 rc = vidioc_s_std(file, priv, &dev->vfd->current_norm);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001208
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001209 return rc;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001210}
1211
Stefan Ringel886a3c02011-05-09 16:53:50 -03001212/* --- controls ---------------------------------------------- */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001213static int vidioc_queryctrl(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001214 struct v4l2_queryctrl *qc)
1215{
1216 int i;
1217
1218 for (i = 0; i < ARRAY_SIZE(tm6000_qctrl); i++)
1219 if (qc->id && qc->id == tm6000_qctrl[i].id) {
1220 memcpy(qc, &(tm6000_qctrl[i]),
1221 sizeof(*qc));
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001222 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001223 }
1224
1225 return -EINVAL;
1226}
1227
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001228static int vidioc_g_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001229 struct v4l2_control *ctrl)
1230{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001231 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001232 struct tm6000_core *dev = fh->dev;
1233 int val;
1234
1235 /* FIXME: Probably, those won't work! Maybe we need shadow regs */
1236 switch (ctrl->id) {
1237 case V4L2_CID_CONTRAST:
Mauro Carvalho Chehab9afec492010-03-11 10:26:46 -03001238 val = tm6000_get_reg(dev, TM6010_REQ07_R08_LUMA_CONTRAST_ADJ, 0);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001239 break;
1240 case V4L2_CID_BRIGHTNESS:
Mauro Carvalho Chehab9afec492010-03-11 10:26:46 -03001241 val = tm6000_get_reg(dev, TM6010_REQ07_R09_LUMA_BRIGHTNESS_ADJ, 0);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001242 return 0;
1243 case V4L2_CID_SATURATION:
Mauro Carvalho Chehab9afec492010-03-11 10:26:46 -03001244 val = tm6000_get_reg(dev, TM6010_REQ07_R0A_CHROMA_SATURATION_ADJ, 0);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001245 return 0;
1246 case V4L2_CID_HUE:
Mauro Carvalho Chehab9afec492010-03-11 10:26:46 -03001247 val = tm6000_get_reg(dev, TM6010_REQ07_R0B_CHROMA_HUE_PHASE_ADJ, 0);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001248 return 0;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001249 case V4L2_CID_AUDIO_MUTE:
1250 val = dev->ctl_mute;
1251 return 0;
1252 case V4L2_CID_AUDIO_VOLUME:
1253 val = dev->ctl_volume;
1254 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001255 default:
1256 return -EINVAL;
1257 }
1258
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001259 if (val < 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001260 return val;
1261
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001262 ctrl->value = val;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001263
1264 return 0;
1265}
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001266static int vidioc_s_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001267 struct v4l2_control *ctrl)
1268{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001269 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001270 struct tm6000_core *dev = fh->dev;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001271 u8 val = ctrl->value;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001272
1273 switch (ctrl->id) {
1274 case V4L2_CID_CONTRAST:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001275 tm6000_set_reg(dev, TM6010_REQ07_R08_LUMA_CONTRAST_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001276 return 0;
1277 case V4L2_CID_BRIGHTNESS:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001278 tm6000_set_reg(dev, TM6010_REQ07_R09_LUMA_BRIGHTNESS_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001279 return 0;
1280 case V4L2_CID_SATURATION:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001281 tm6000_set_reg(dev, TM6010_REQ07_R0A_CHROMA_SATURATION_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001282 return 0;
1283 case V4L2_CID_HUE:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001284 tm6000_set_reg(dev, TM6010_REQ07_R0B_CHROMA_HUE_PHASE_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001285 return 0;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001286 case V4L2_CID_AUDIO_MUTE:
1287 dev->ctl_mute = val;
1288 tm6000_tvaudio_set_mute(dev, val);
1289 return 0;
1290 case V4L2_CID_AUDIO_VOLUME:
1291 dev->ctl_volume = val;
1292 tm6000_set_volume(dev, val);
1293 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001294 }
1295 return -EINVAL;
1296}
1297
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001298static int vidioc_g_tuner(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001299 struct v4l2_tuner *t)
1300{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001301 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001302 struct tm6000_core *dev = fh->dev;
1303
1304 if (unlikely(UNSET == dev->tuner_type))
1305 return -EINVAL;
1306 if (0 != t->index)
1307 return -EINVAL;
1308
1309 strcpy(t->name, "Television");
1310 t->type = V4L2_TUNER_ANALOG_TV;
1311 t->capability = V4L2_TUNER_CAP_NORM;
1312 t->rangehigh = 0xffffffffUL;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001313 t->rxsubchans = V4L2_TUNER_SUB_STEREO;
1314
1315 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
1316
1317 t->audmode = dev->amode;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001318
1319 return 0;
1320}
1321
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001322static int vidioc_s_tuner(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001323 struct v4l2_tuner *t)
1324{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001325 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001326 struct tm6000_core *dev = fh->dev;
1327
1328 if (UNSET == dev->tuner_type)
1329 return -EINVAL;
1330 if (0 != t->index)
1331 return -EINVAL;
1332
Stefan Ringel886a3c02011-05-09 16:53:50 -03001333 dev->amode = t->audmode;
1334 dprintk(dev, 3, "audio mode: %x\n", t->audmode);
1335
1336 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Stefan Ringel0f6040e2011-05-09 16:53:53 -03001337
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001338 return 0;
1339}
1340
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001341static int vidioc_g_frequency(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001342 struct v4l2_frequency *f)
1343{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001344 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001345 struct tm6000_core *dev = fh->dev;
1346
1347 if (unlikely(UNSET == dev->tuner_type))
1348 return -EINVAL;
1349
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001350 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001351 f->frequency = dev->freq;
1352
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -03001353 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_frequency, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001354
1355 return 0;
1356}
1357
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001358static int vidioc_s_frequency(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001359 struct v4l2_frequency *f)
1360{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001361 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001362 struct tm6000_core *dev = fh->dev;
1363
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001364 if (unlikely(UNSET == dev->tuner_type))
1365 return -EINVAL;
1366 if (unlikely(f->tuner != 0))
1367 return -EINVAL;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001368 if (0 == fh->radio && V4L2_TUNER_ANALOG_TV != f->type)
1369 return -EINVAL;
1370 if (1 == fh->radio && V4L2_TUNER_RADIO != f->type)
1371 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001372
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001373 dev->freq = f->frequency;
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001374 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001375
1376 return 0;
1377}
1378
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001379static int radio_querycap(struct file *file, void *priv,
1380 struct v4l2_capability *cap)
1381{
1382 struct tm6000_fh *fh = file->private_data;
1383 struct tm6000_core *dev = fh->dev;
1384
1385 strcpy(cap->driver, "tm6000");
1386 strlcpy(cap->card, dev->name, sizeof(dev->name));
1387 sprintf(cap->bus_info, "USB%04x:%04x",
1388 le16_to_cpu(dev->udev->descriptor.idVendor),
1389 le16_to_cpu(dev->udev->descriptor.idProduct));
1390 cap->version = dev->dev_type;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001391 cap->capabilities = V4L2_CAP_TUNER |
1392 V4L2_CAP_AUDIO |
1393 V4L2_CAP_RADIO |
1394 V4L2_CAP_READWRITE |
1395 V4L2_CAP_STREAMING;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001396
1397 return 0;
1398}
1399
1400static int radio_g_tuner(struct file *file, void *priv,
1401 struct v4l2_tuner *t)
1402{
1403 struct tm6000_fh *fh = file->private_data;
1404 struct tm6000_core *dev = fh->dev;
1405
1406 if (0 != t->index)
1407 return -EINVAL;
1408
1409 memset(t, 0, sizeof(*t));
1410 strcpy(t->name, "Radio");
1411 t->type = V4L2_TUNER_RADIO;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001412 t->rxsubchans = V4L2_TUNER_SUB_STEREO;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001413
1414 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
1415
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001416 return 0;
1417}
1418
1419static int radio_s_tuner(struct file *file, void *priv,
1420 struct v4l2_tuner *t)
1421{
1422 struct tm6000_fh *fh = file->private_data;
1423 struct tm6000_core *dev = fh->dev;
1424
1425 if (0 != t->index)
1426 return -EINVAL;
1427
1428 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
1429
1430 return 0;
1431}
1432
1433static int radio_enum_input(struct file *file, void *priv,
1434 struct v4l2_input *i)
1435{
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001436 struct tm6000_fh *fh = priv;
1437 struct tm6000_core *dev = fh->dev;
1438
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001439 if (i->index != 0)
1440 return -EINVAL;
1441
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001442 if (!dev->rinput.type)
1443 return -EINVAL;
1444
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001445 strcpy(i->name, "Radio");
1446 i->type = V4L2_INPUT_TYPE_TUNER;
1447
1448 return 0;
1449}
1450
1451static int radio_g_input(struct file *filp, void *priv, unsigned int *i)
1452{
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001453 struct tm6000_fh *fh = priv;
1454 struct tm6000_core *dev = fh->dev;
1455
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001456 if (dev->input != 5)
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001457 return -EINVAL;
1458
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001459 *i = dev->input - 5;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001460
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001461 return 0;
1462}
1463
1464static int radio_g_audio(struct file *file, void *priv,
1465 struct v4l2_audio *a)
1466{
1467 memset(a, 0, sizeof(*a));
1468 strcpy(a->name, "Radio");
1469 return 0;
1470}
1471
1472static int radio_s_audio(struct file *file, void *priv,
Hans Verkuil0e8025b92012-09-04 11:59:31 -03001473 const struct v4l2_audio *a)
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001474{
1475 return 0;
1476}
1477
1478static int radio_s_input(struct file *filp, void *priv, unsigned int i)
1479{
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001480 struct tm6000_fh *fh = priv;
1481 struct tm6000_core *dev = fh->dev;
1482
1483 if (i)
1484 return -EINVAL;
1485
1486 if (!dev->rinput.type)
1487 return -EINVAL;
1488
1489 dev->input = i + 5;
1490
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001491 return 0;
1492}
1493
1494static int radio_s_std(struct file *file, void *fh, v4l2_std_id *norm)
1495{
1496 return 0;
1497}
1498
1499static int radio_queryctrl(struct file *file, void *priv,
1500 struct v4l2_queryctrl *c)
1501{
1502 const struct v4l2_queryctrl *ctrl;
1503
1504 if (c->id < V4L2_CID_BASE ||
1505 c->id >= V4L2_CID_LASTP1)
1506 return -EINVAL;
1507 if (c->id == V4L2_CID_AUDIO_MUTE) {
1508 ctrl = ctrl_by_id(c->id);
1509 *c = *ctrl;
1510 } else
1511 *c = no_ctrl;
1512
1513 return 0;
1514}
1515
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001516/* ------------------------------------------------------------------
1517 File operations for the device
1518 ------------------------------------------------------------------*/
1519
Hans Verkuil14a09da2012-06-24 07:26:46 -03001520static int __tm6000_open(struct file *file)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001521{
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001522 struct video_device *vdev = video_devdata(file);
1523 struct tm6000_core *dev = video_drvdata(file);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001524 struct tm6000_fh *fh;
Mauro Carvalho Chehabe8d04162010-05-18 04:27:27 -03001525 enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001526 int i, rc;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001527 int radio = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001528
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001529 dprintk(dev, V4L2_DEBUG_OPEN, "tm6000: open called (dev=%s)\n",
1530 video_device_node_name(vdev));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001531
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001532 switch (vdev->vfl_type) {
1533 case VFL_TYPE_GRABBER:
1534 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1535 break;
1536 case VFL_TYPE_VBI:
1537 type = V4L2_BUF_TYPE_VBI_CAPTURE;
1538 break;
1539 case VFL_TYPE_RADIO:
1540 radio = 1;
1541 break;
1542 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001543
1544 /* If more than one user, mutex should be added */
1545 dev->users++;
1546
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001547 dprintk(dev, V4L2_DEBUG_OPEN, "open dev=%s type=%s users=%d\n",
1548 video_device_node_name(vdev), v4l2_type_names[type],
1549 dev->users);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001550
1551 /* allocate + initialize per filehandle data */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001552 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001553 if (NULL == fh) {
1554 dev->users--;
1555 return -ENOMEM;
1556 }
1557
1558 file->private_data = fh;
1559 fh->dev = dev;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001560 fh->radio = radio;
1561 dev->radio = radio;
1562 fh->type = type;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001563 dev->fourcc = format[0].fourcc;
1564
1565 fh->fmt = format_by_fourcc(dev->fourcc);
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -03001566
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001567 tm6000_get_std_res(dev);
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -03001568
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001569 fh->width = dev->width;
1570 fh->height = dev->height;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001571
1572 dprintk(dev, V4L2_DEBUG_OPEN, "Open: fh=0x%08lx, dev=0x%08lx, "
1573 "dev->vidq=0x%08lx\n",
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001574 (unsigned long)fh, (unsigned long)dev,
1575 (unsigned long)&dev->vidq);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001576 dprintk(dev, V4L2_DEBUG_OPEN, "Open: list_empty "
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001577 "queued=%d\n", list_empty(&dev->vidq.queued));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001578 dprintk(dev, V4L2_DEBUG_OPEN, "Open: list_empty "
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001579 "active=%d\n", list_empty(&dev->vidq.active));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001580
1581 /* initialize hardware on analog mode */
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001582 rc = tm6000_init_analog_mode(dev);
1583 if (rc < 0)
1584 return rc;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001585
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001586 if (dev->mode != TM6000_MODE_ANALOG) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001587 /* Put all controls at a sane state */
1588 for (i = 0; i < ARRAY_SIZE(tm6000_qctrl); i++)
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001589 qctl_regs[i] = tm6000_qctrl[i].default_value;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001590
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001591 dev->mode = TM6000_MODE_ANALOG;
1592 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001593
Thierry Redingaa4a5832011-08-04 04:14:15 -03001594 if (!fh->radio) {
1595 videobuf_queue_vmalloc_init(&fh->vb_vidq, &tm6000_video_qops,
1596 NULL, &dev->slock,
1597 fh->type,
1598 V4L2_FIELD_INTERLACED,
1599 sizeof(struct tm6000_buffer), fh, &dev->lock);
1600 } else {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001601 dprintk(dev, V4L2_DEBUG_OPEN, "video_open: setting radio device\n");
Stefan Ringel0f6040e2011-05-09 16:53:53 -03001602 dev->input = 5;
1603 tm6000_set_audio_rinput(dev);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001604 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_radio);
1605 tm6000_prepare_isoc(dev);
1606 tm6000_start_thread(dev);
1607 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001608
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001609 return 0;
1610}
1611
Hans Verkuil14a09da2012-06-24 07:26:46 -03001612static int tm6000_open(struct file *file)
1613{
1614 struct video_device *vdev = video_devdata(file);
1615 int res;
1616
1617 mutex_lock(vdev->lock);
1618 res = __tm6000_open(file);
1619 mutex_unlock(vdev->lock);
1620 return res;
1621}
1622
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001623static ssize_t
1624tm6000_read(struct file *file, char __user *data, size_t count, loff_t *pos)
1625{
Hans Verkuil14a09da2012-06-24 07:26:46 -03001626 struct tm6000_fh *fh = file->private_data;
1627 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001628
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001629 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Hans Verkuil14a09da2012-06-24 07:26:46 -03001630 int res;
1631
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001632 if (!res_get(fh->dev, fh, true))
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001633 return -EBUSY;
1634
Hans Verkuil14a09da2012-06-24 07:26:46 -03001635 if (mutex_lock_interruptible(&dev->lock))
1636 return -ERESTARTSYS;
1637 res = videobuf_read_stream(&fh->vb_vidq, data, count, pos, 0,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001638 file->f_flags & O_NONBLOCK);
Hans Verkuil14a09da2012-06-24 07:26:46 -03001639 mutex_unlock(&dev->lock);
1640 return res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001641 }
1642 return 0;
1643}
1644
1645static unsigned int
Hans Verkuil14a09da2012-06-24 07:26:46 -03001646__tm6000_poll(struct file *file, struct poll_table_struct *wait)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001647{
1648 struct tm6000_fh *fh = file->private_data;
1649 struct tm6000_buffer *buf;
1650
1651 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1652 return POLLERR;
1653
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001654 if (!!is_res_streaming(fh->dev, fh))
1655 return POLLERR;
1656
1657 if (!is_res_read(fh->dev, fh)) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001658 /* streaming capture */
1659 if (list_empty(&fh->vb_vidq.stream))
1660 return POLLERR;
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001661 buf = list_entry(fh->vb_vidq.stream.next, struct tm6000_buffer, vb.stream);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001662 } else {
1663 /* read() capture */
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001664 return videobuf_poll_stream(file, &fh->vb_vidq, wait);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001665 }
1666 poll_wait(file, &buf->vb.done, wait);
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -03001667 if (buf->vb.state == VIDEOBUF_DONE ||
1668 buf->vb.state == VIDEOBUF_ERROR)
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001669 return POLLIN | POLLRDNORM;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001670 return 0;
1671}
1672
Hans Verkuil14a09da2012-06-24 07:26:46 -03001673static unsigned int tm6000_poll(struct file *file, struct poll_table_struct *wait)
1674{
1675 struct tm6000_fh *fh = file->private_data;
1676 struct tm6000_core *dev = fh->dev;
1677 unsigned int res;
1678
1679 mutex_lock(&dev->lock);
1680 res = __tm6000_poll(file, wait);
1681 mutex_unlock(&dev->lock);
1682 return res;
1683}
1684
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001685static int tm6000_release(struct file *file)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001686{
1687 struct tm6000_fh *fh = file->private_data;
1688 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001689 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001690
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001691 dprintk(dev, V4L2_DEBUG_OPEN, "tm6000: close called (dev=%s, users=%d)\n",
1692 video_device_node_name(vdev), dev->users);
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001693
Hans Verkuil14a09da2012-06-24 07:26:46 -03001694 mutex_lock(&dev->lock);
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001695 dev->users--;
1696
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001697 res_free(dev, fh);
Thierry Redingdd0c8ab2011-08-04 04:14:13 -03001698
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001699 if (!dev->users) {
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -03001700 tm6000_uninit_isoc(dev);
Thierry Redingaa4a5832011-08-04 04:14:15 -03001701
Stefan Ringel8159c182011-11-28 15:46:18 -03001702 /* Stop interrupt USB pipe */
1703 tm6000_ir_int_stop(dev);
1704
1705 usb_reset_configuration(dev->udev);
1706
Thierry Reding4be9c8f2011-12-06 09:39:35 -03001707 if (dev->int_in.endp)
Stefan Ringel8159c182011-11-28 15:46:18 -03001708 usb_set_interface(dev->udev,
Thierry Reding875f0e32011-12-06 09:39:36 -03001709 dev->isoc_in.bInterfaceNumber, 2);
Stefan Ringel8159c182011-11-28 15:46:18 -03001710 else
1711 usb_set_interface(dev->udev,
Thierry Reding875f0e32011-12-06 09:39:36 -03001712 dev->isoc_in.bInterfaceNumber, 0);
Stefan Ringel8159c182011-11-28 15:46:18 -03001713
1714 /* Start interrupt USB pipe */
1715 tm6000_ir_int_start(dev);
1716
Thierry Redingaa4a5832011-08-04 04:14:15 -03001717 if (!fh->radio)
1718 videobuf_mmap_free(&fh->vb_vidq);
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001719 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001720
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001721 kfree(fh);
Hans Verkuil14a09da2012-06-24 07:26:46 -03001722 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001723
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001724 return 0;
1725}
1726
1727static int tm6000_mmap(struct file *file, struct vm_area_struct * vma)
1728{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001729 struct tm6000_fh *fh = file->private_data;
Hans Verkuil14a09da2012-06-24 07:26:46 -03001730 struct tm6000_core *dev = fh->dev;
1731 int res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001732
Hans Verkuil14a09da2012-06-24 07:26:46 -03001733 if (mutex_lock_interruptible(&dev->lock))
1734 return -ERESTARTSYS;
1735 res = videobuf_mmap_mapper(&fh->vb_vidq, vma);
1736 mutex_unlock(&dev->lock);
1737 return res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001738}
1739
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001740static struct v4l2_file_operations tm6000_fops = {
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001741 .owner = THIS_MODULE,
1742 .open = tm6000_open,
1743 .release = tm6000_release,
1744 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
1745 .read = tm6000_read,
1746 .poll = tm6000_poll,
1747 .mmap = tm6000_mmap,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001748};
1749
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001750static const struct v4l2_ioctl_ops video_ioctl_ops = {
1751 .vidioc_querycap = vidioc_querycap,
1752 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1753 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1754 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1755 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1756 .vidioc_s_std = vidioc_s_std,
1757 .vidioc_enum_input = vidioc_enum_input,
1758 .vidioc_g_input = vidioc_g_input,
1759 .vidioc_s_input = vidioc_s_input,
1760 .vidioc_queryctrl = vidioc_queryctrl,
1761 .vidioc_g_ctrl = vidioc_g_ctrl,
1762 .vidioc_s_ctrl = vidioc_s_ctrl,
1763 .vidioc_g_tuner = vidioc_g_tuner,
1764 .vidioc_s_tuner = vidioc_s_tuner,
1765 .vidioc_g_frequency = vidioc_g_frequency,
1766 .vidioc_s_frequency = vidioc_s_frequency,
1767 .vidioc_streamon = vidioc_streamon,
1768 .vidioc_streamoff = vidioc_streamoff,
1769 .vidioc_reqbufs = vidioc_reqbufs,
1770 .vidioc_querybuf = vidioc_querybuf,
1771 .vidioc_qbuf = vidioc_qbuf,
1772 .vidioc_dqbuf = vidioc_dqbuf,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001773};
1774
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001775static struct video_device tm6000_template = {
1776 .name = "tm6000",
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001777 .fops = &tm6000_fops,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001778 .ioctl_ops = &video_ioctl_ops,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001779 .release = video_device_release,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001780 .tvnorms = TM6000_STD,
1781 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001782};
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001783
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001784static const struct v4l2_file_operations radio_fops = {
Stefan Ringel1f385712011-05-09 16:54:01 -03001785 .owner = THIS_MODULE,
1786 .open = tm6000_open,
1787 .release = tm6000_release,
1788 .unlocked_ioctl = video_ioctl2,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001789};
1790
1791static const struct v4l2_ioctl_ops radio_ioctl_ops = {
1792 .vidioc_querycap = radio_querycap,
1793 .vidioc_g_tuner = radio_g_tuner,
1794 .vidioc_enum_input = radio_enum_input,
1795 .vidioc_g_audio = radio_g_audio,
1796 .vidioc_s_tuner = radio_s_tuner,
1797 .vidioc_s_audio = radio_s_audio,
1798 .vidioc_s_input = radio_s_input,
1799 .vidioc_s_std = radio_s_std,
1800 .vidioc_queryctrl = radio_queryctrl,
1801 .vidioc_g_input = radio_g_input,
1802 .vidioc_g_ctrl = vidioc_g_ctrl,
1803 .vidioc_s_ctrl = vidioc_s_ctrl,
1804 .vidioc_g_frequency = vidioc_g_frequency,
1805 .vidioc_s_frequency = vidioc_s_frequency,
1806};
1807
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001808static struct video_device tm6000_radio_template = {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001809 .name = "tm6000",
1810 .fops = &radio_fops,
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001811 .ioctl_ops = &radio_ioctl_ops,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001812};
1813
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001814/* -----------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001815 * Initialization and module stuff
1816 * ------------------------------------------------------------------
1817 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001818
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001819static struct video_device *vdev_init(struct tm6000_core *dev,
1820 const struct video_device
1821 *template, const char *type_name)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001822{
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001823 struct video_device *vfd;
1824
1825 vfd = video_device_alloc();
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001826 if (NULL == vfd)
1827 return NULL;
1828
1829 *vfd = *template;
1830 vfd->v4l2_dev = &dev->v4l2_dev;
1831 vfd->release = video_device_release;
1832 vfd->debug = tm6000_debug;
1833 vfd->lock = &dev->lock;
1834
1835 snprintf(vfd->name, sizeof(vfd->name), "%s %s", dev->name, type_name);
1836
1837 video_set_drvdata(vfd, dev);
1838 return vfd;
1839}
1840
1841int tm6000_v4l2_register(struct tm6000_core *dev)
1842{
1843 int ret = -1;
1844
1845 dev->vfd = vdev_init(dev, &tm6000_template, "video");
1846
1847 if (!dev->vfd) {
1848 printk(KERN_INFO "%s: can't register video device\n",
1849 dev->name);
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001850 return -ENOMEM;
1851 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001852
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001853 /* init video dma queues */
1854 INIT_LIST_HEAD(&dev->vidq.active);
1855 INIT_LIST_HEAD(&dev->vidq.queued);
1856
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001857 ret = video_register_device(dev->vfd, VFL_TYPE_GRABBER, video_nr);
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001858
1859 if (ret < 0) {
1860 printk(KERN_INFO "%s: can't register video device\n",
1861 dev->name);
1862 return ret;
1863 }
1864
1865 printk(KERN_INFO "%s: registered device %s\n",
1866 dev->name, video_device_node_name(dev->vfd));
1867
Stefan Ringel14169102011-05-09 16:53:49 -03001868 if (dev->caps.has_radio) {
1869 dev->radio_dev = vdev_init(dev, &tm6000_radio_template,
1870 "radio");
1871 if (!dev->radio_dev) {
1872 printk(KERN_INFO "%s: can't register radio device\n",
1873 dev->name);
Peter Senna Tschudin97b55f62012-09-06 11:23:49 -03001874 ret = -ENXIO;
Stefan Ringel14169102011-05-09 16:53:49 -03001875 return ret; /* FIXME release resource */
1876 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001877
Stefan Ringel14169102011-05-09 16:53:49 -03001878 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
1879 radio_nr);
1880 if (ret < 0) {
1881 printk(KERN_INFO "%s: can't register radio device\n",
1882 dev->name);
1883 return ret; /* FIXME release resource */
1884 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001885
Stefan Ringel14169102011-05-09 16:53:49 -03001886 printk(KERN_INFO "%s: registered device %s\n",
1887 dev->name, video_device_node_name(dev->radio_dev));
1888 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001889
Dmitri Belimove28f49b2010-02-22 06:32:15 -03001890 printk(KERN_INFO "Trident TVMaster TM5600/TM6000/TM6010 USB2 board (Load status: %d)\n", ret);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001891 return ret;
1892}
1893
1894int tm6000_v4l2_unregister(struct tm6000_core *dev)
1895{
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001896 video_unregister_device(dev->vfd);
Michel Ludwig22927e82007-06-14 17:19:59 -03001897
Julian Scheel16427fa2012-10-04 10:04:28 -03001898 /* if URB buffers are still allocated free them now */
1899 tm6000_free_urb_buffers(dev);
1900
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001901 if (dev->radio_dev) {
1902 if (video_is_registered(dev->radio_dev))
1903 video_unregister_device(dev->radio_dev);
1904 else
1905 video_device_release(dev->radio_dev);
1906 dev->radio_dev = NULL;
1907 }
1908
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001909 return 0;
1910}
1911
1912int tm6000_v4l2_exit(void)
1913{
1914 return 0;
1915}
1916
1917module_param(video_nr, int, 0);
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001918MODULE_PARM_DESC(video_nr, "Allow changing video device number");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001919
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001920module_param_named(debug, tm6000_debug, int, 0444);
1921MODULE_PARM_DESC(debug, "activates debug info");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001922
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001923module_param(vid_limit, int, 0644);
1924MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001925
Julian Scheel16427fa2012-10-04 10:04:28 -03001926module_param(keep_urb, bool, 0);
1927MODULE_PARM_DESC(keep_urb, "Keep urb buffers allocated even when the device is closed by the user");