blob: 1a6857929c15716aa4bcd516e97b2b0726948336 [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>
Hans Verkuil770056c2012-09-11 11:50:37 -030037#include <media/v4l2-event.h>
Stefan Ringel886a3c02011-05-09 16:53:50 -030038#include <media/tuner.h>
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030039#include <linux/interrupt.h>
40#include <linux/kthread.h>
41#include <linux/highmem.h>
42#include <linux/freezer.h>
43
44#include "tm6000-regs.h"
45#include "tm6000.h"
46
47#define BUFFER_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
48
Michel Ludwig95a83822007-07-24 08:06:45 -030049/* Limits minimum and default number of buffers */
50#define TM6000_MIN_BUF 4
51#define TM6000_DEF_BUF 8
52
Julian Scheel16427fa2012-10-04 10:04:28 -030053#define TM6000_NUM_URB_BUF 8
54
Stefan Ringel5a4b55e2010-05-19 13:58:27 -030055#define TM6000_MAX_ISO_PACKETS 46 /* Max number of ISO packets */
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -030056
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030057/* Declare static vars that will be used as parameters */
58static unsigned int vid_limit = 16; /* Video memory limit, in Mb */
59static int video_nr = -1; /* /dev/videoN, -1 for autodetect */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -030060static int radio_nr = -1; /* /dev/radioN, -1 for autodetect */
Mauro Carvalho Chehabb391b0e2012-12-20 15:21:23 -020061static bool keep_urb; /* keep urb buffers allocated */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030062
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030063/* Debug level */
64int tm6000_debug;
Mauro Carvalho Chehabfaa7c132010-06-04 21:08:25 -030065EXPORT_SYMBOL_GPL(tm6000_debug);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030066
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030067static struct tm6000_fmt format[] = {
68 {
69 .name = "4:2:2, packed, YVY2",
70 .fourcc = V4L2_PIX_FMT_YUYV,
71 .depth = 16,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -030072 }, {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030073 .name = "4:2:2, packed, UYVY",
74 .fourcc = V4L2_PIX_FMT_UYVY,
75 .depth = 16,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -030076 }, {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030077 .name = "A/V + VBI mux packet",
78 .fourcc = V4L2_PIX_FMT_TM6000,
79 .depth = 16,
80 }
81};
82
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030083/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -030084 * DMA and thread functions
85 * ------------------------------------------------------------------
86 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030087
88#define norm_maxw(a) 720
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -030089#define norm_maxh(a) 576
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030090
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030091#define norm_minw(a) norm_maxw(a)
92#define norm_minh(a) norm_maxh(a)
93
94/*
95 * video-buf generic routine to get the next available buffer
96 */
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -030097static inline void get_next_buf(struct tm6000_dmaqueue *dma_q,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -030098 struct tm6000_buffer **buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030099{
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300100 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300101
102 if (list_empty(&dma_q->active)) {
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300103 dprintk(dev, V4L2_DEBUG_QUEUE, "No active queue to serve\n");
Mauro Carvalho Chehab1f9305b2008-11-28 06:44:06 -0300104 *buf = NULL;
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300105 return;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300106 }
107
108 *buf = list_entry(dma_q->active.next,
109 struct tm6000_buffer, vb.queue);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300110}
111
112/*
113 * Announces that a buffer were filled and request the next
114 */
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300115static inline void buffer_filled(struct tm6000_core *dev,
116 struct tm6000_dmaqueue *dma_q,
117 struct tm6000_buffer *buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300118{
119 /* Advice that buffer was filled */
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300120 dprintk(dev, V4L2_DEBUG_ISOC, "[%p/%d] wakeup\n", buf, buf->vb.i);
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300121 buf->vb.state = VIDEOBUF_DONE;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300122 buf->vb.field_count++;
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300123 v4l2_get_timestamp(&buf->vb.ts);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300124
125 list_del(&buf->vb.queue);
126 wake_up(&buf->vb.done);
127}
128
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300129/*
130 * Identify the tm5600/6000 buffer header type and properly handles
131 */
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300132static int copy_streams(u8 *data, unsigned long len,
133 struct urb *urb)
Mauro Carvalho Chehabe2c95002007-09-19 15:39:22 -0300134{
135 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300136 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Hans Verkuil81730902012-04-20 07:30:48 -0300137 u8 *ptr = data, *endp = data+len;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300138 unsigned long header = 0;
139 int rc = 0;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300140 unsigned int cmd, cpysize, pktsize, size, field, block, line, pos = 0;
Jarod Wilsoncc73b4b2011-04-11 18:49:24 -0300141 struct tm6000_buffer *vbuf = NULL;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300142 char *voutp = NULL;
143 unsigned int linewidth;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300144
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300145 if (!dev->radio) {
146 /* get video buffer */
147 get_next_buf(dma_q, &vbuf);
148
149 if (!vbuf)
150 return rc;
151 voutp = videobuf_to_vmalloc(&vbuf->vb);
152
153 if (!voutp)
154 return 0;
155 }
Mauro Carvalho Chehabe2c95002007-09-19 15:39:22 -0300156
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300157 for (ptr = data; ptr < endp;) {
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300158 if (!dev->isoc_ctl.cmd) {
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300159 /* Header */
160 if (dev->isoc_ctl.tmp_buf_len > 0) {
161 /* from last urb or packet */
162 header = dev->isoc_ctl.tmp_buf;
163 if (4 - dev->isoc_ctl.tmp_buf_len > 0) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300164 memcpy((u8 *)&header +
Mauro Carvalho Chehab801dd3b2010-05-02 17:14:33 -0300165 dev->isoc_ctl.tmp_buf_len,
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300166 ptr,
Mauro Carvalho Chehab801dd3b2010-05-02 17:14:33 -0300167 4 - dev->isoc_ctl.tmp_buf_len);
168 ptr += 4 - dev->isoc_ctl.tmp_buf_len;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300169 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300170 dev->isoc_ctl.tmp_buf_len = 0;
171 } else {
172 if (ptr + 3 >= endp) {
173 /* have incomplete header */
174 dev->isoc_ctl.tmp_buf_len = endp - ptr;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300175 memcpy(&dev->isoc_ctl.tmp_buf, ptr,
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300176 dev->isoc_ctl.tmp_buf_len);
177 return rc;
178 }
179 /* Seek for sync */
180 for (; ptr < endp - 3; ptr++) {
181 if (*(ptr + 3) == 0x47)
182 break;
183 }
184 /* Get message header */
185 header = *(unsigned long *)ptr;
186 ptr += 4;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300187 }
Mauro Carvalho Chehab23ba9462010-06-07 11:57:28 -0300188
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300189 /* split the header fields */
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300190 size = ((header & 0x7e) << 1);
191 if (size > 0)
192 size -= 4;
193 block = (header >> 7) & 0xf;
194 field = (header >> 11) & 0x1;
195 line = (header >> 12) & 0x1ff;
196 cmd = (header >> 21) & 0x7;
197 /* Validates haeder fields */
198 if (size > TM6000_URB_MSG_LEN)
199 size = TM6000_URB_MSG_LEN;
200 pktsize = TM6000_URB_MSG_LEN;
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300201 /*
202 * calculate position in buffer and change the buffer
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300203 */
204 switch (cmd) {
205 case TM6000_URB_MSG_VIDEO:
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300206 if (!dev->radio) {
207 if ((dev->isoc_ctl.vfield != field) &&
208 (field == 1)) {
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300209 /*
210 * Announces that a new buffer
211 * were filled
212 */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300213 buffer_filled(dev, dma_q, vbuf);
214 dprintk(dev, V4L2_DEBUG_ISOC,
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300215 "new buffer filled\n");
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300216 get_next_buf(dma_q, &vbuf);
217 if (!vbuf)
218 return rc;
219 voutp = videobuf_to_vmalloc(&vbuf->vb);
220 if (!voutp)
221 return rc;
222 memset(voutp, 0, vbuf->vb.size);
223 }
224 linewidth = vbuf->vb.width << 1;
225 pos = ((line << 1) - field - 1) *
226 linewidth + block * TM6000_URB_MSG_LEN;
227 /* Don't allow to write out of the buffer */
228 if (pos + size > vbuf->vb.size)
229 cmd = TM6000_URB_MSG_ERR;
230 dev->isoc_ctl.vfield = field;
Jarod Wilsoncc73b4b2011-04-11 18:49:24 -0300231 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300232 break;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300233 case TM6000_URB_MSG_VBI:
Mauro Carvalho Chehab23ba9462010-06-07 11:57:28 -0300234 break;
235 case TM6000_URB_MSG_AUDIO:
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300236 case TM6000_URB_MSG_PTS:
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300237 size = pktsize; /* Size is always 180 bytes */
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300238 break;
Mauro Carvalho Chehabcc6c60d2007-09-19 16:24:05 -0300239 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300240 } else {
241 /* Continue the last copy */
242 cmd = dev->isoc_ctl.cmd;
243 size = dev->isoc_ctl.size;
244 pos = dev->isoc_ctl.pos;
245 pktsize = dev->isoc_ctl.pktsize;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300246 field = dev->isoc_ctl.field;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300247 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300248 cpysize = (endp - ptr > size) ? size : endp - ptr;
249 if (cpysize) {
250 /* copy data in different buffers */
251 switch (cmd) {
252 case TM6000_URB_MSG_VIDEO:
253 /* Fills video buffer */
254 if (vbuf)
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300255 memcpy(&voutp[pos], ptr, cpysize);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300256 break;
Stefan Ringel7ecff8c2011-05-09 16:54:00 -0300257 case TM6000_URB_MSG_AUDIO: {
258 int i;
259 for (i = 0; i < cpysize; i += 2)
260 swab16s((u16 *)(ptr + i));
Dmitri Belimov73f4d262010-09-20 17:07:15 -0300261
Mauro Carvalho Chehabb17b8692010-06-03 17:16:28 -0300262 tm6000_call_fillbuf(dev, TM6000_AUDIO, ptr, cpysize);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300263 break;
Stefan Ringel7ecff8c2011-05-09 16:54:00 -0300264 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300265 case TM6000_URB_MSG_VBI:
266 /* Need some code to copy vbi buffer */
267 break;
Stefan Ringel2f349da2011-05-09 16:54:02 -0300268 case TM6000_URB_MSG_PTS: {
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300269 /* Need some code to copy pts */
Stefan Ringel2f349da2011-05-09 16:54:02 -0300270 u32 pts;
271 pts = *(u32 *)ptr;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300272 dprintk(dev, V4L2_DEBUG_ISOC, "field %d, PTS %x",
273 field, pts);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300274 break;
275 }
Stefan Ringel2f349da2011-05-09 16:54:02 -0300276 }
Mauro Carvalho Chehaba2286182007-09-22 02:06:25 -0300277 }
Mauro Carvalho Chehabccfb3022010-06-30 17:24:28 -0300278 if (ptr + pktsize > endp) {
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300279 /*
280 * End of URB packet, but cmd processing is not
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300281 * complete. Preserve the state for a next packet
282 */
283 dev->isoc_ctl.pos = pos + cpysize;
284 dev->isoc_ctl.size = size - cpysize;
285 dev->isoc_ctl.cmd = cmd;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300286 dev->isoc_ctl.field = field;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300287 dev->isoc_ctl.pktsize = pktsize - (endp - ptr);
Mauro Carvalho Chehabccfb3022010-06-30 17:24:28 -0300288 ptr += endp - ptr;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300289 } else {
290 dev->isoc_ctl.cmd = 0;
291 ptr += pktsize;
292 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300293 }
Mauro Carvalho Chehaba2286182007-09-22 02:06:25 -0300294 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300295}
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300296
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300297/*
298 * Identify the tm5600/6000 buffer header type and properly handles
299 */
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300300static int copy_multiplexed(u8 *ptr, unsigned long len,
301 struct urb *urb)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300302{
303 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300304 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
305 unsigned int pos = dev->isoc_ctl.pos, cpysize;
306 int rc = 1;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300307 struct tm6000_buffer *buf;
308 char *outp = NULL;
309
310 get_next_buf(dma_q, &buf);
311 if (buf)
312 outp = videobuf_to_vmalloc(&buf->vb);
313
314 if (!outp)
315 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300316
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300317 while (len > 0) {
318 cpysize = min(len, buf->vb.size-pos);
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300319 memcpy(&outp[pos], ptr, cpysize);
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300320 pos += cpysize;
321 ptr += cpysize;
322 len -= cpysize;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300323 if (pos >= buf->vb.size) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300324 pos = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300325 /* Announces that a new buffer were filled */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300326 buffer_filled(dev, dma_q, buf);
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300327 dprintk(dev, V4L2_DEBUG_ISOC, "new buffer filled\n");
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300328 get_next_buf(dma_q, &buf);
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300329 if (!buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300330 break;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300331 outp = videobuf_to_vmalloc(&(buf->vb));
332 if (!outp)
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300333 return rc;
334 pos = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300335 }
336 }
337
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300338 dev->isoc_ctl.pos = pos;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300339 return rc;
340}
341
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300342static inline void print_err_status(struct tm6000_core *dev,
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300343 int packet, int status)
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300344{
345 char *errmsg = "Unknown";
346
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300347 switch (status) {
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300348 case -ENOENT:
349 errmsg = "unlinked synchronuously";
350 break;
351 case -ECONNRESET:
352 errmsg = "unlinked asynchronuously";
353 break;
354 case -ENOSR:
355 errmsg = "Buffer error (overrun)";
356 break;
357 case -EPIPE:
358 errmsg = "Stalled (device not responding)";
359 break;
360 case -EOVERFLOW:
361 errmsg = "Babble (bad cable?)";
362 break;
363 case -EPROTO:
364 errmsg = "Bit-stuff error (bad cable?)";
365 break;
366 case -EILSEQ:
367 errmsg = "CRC/Timeout (could be anything)";
368 break;
369 case -ETIME:
370 errmsg = "Device does not respond";
371 break;
372 }
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300373 if (packet < 0) {
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300374 dprintk(dev, V4L2_DEBUG_QUEUE, "URB status %d [%s].\n",
375 status, errmsg);
376 } else {
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300377 dprintk(dev, V4L2_DEBUG_QUEUE, "URB packet %d, status %d [%s].\n",
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300378 packet, status, errmsg);
379 }
380}
381
382
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300383/*
384 * Controls the isoc copy of each urb packet
385 */
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300386static inline int tm6000_isoc_copy(struct urb *urb)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300387{
388 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300389 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
390 int i, len = 0, rc = 1, status;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300391 char *p;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300392
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300393 if (urb->status < 0) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300394 print_err_status(dev, -1, urb->status);
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300395 return 0;
396 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300397
398 for (i = 0; i < urb->number_of_packets; i++) {
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300399 status = urb->iso_frame_desc[i].status;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300400
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300401 if (status < 0) {
402 print_err_status(dev, i, status);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300403 continue;
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300404 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300405
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300406 len = urb->iso_frame_desc[i].actual_length;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300407
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300408 if (len > 0) {
409 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300410 if (!urb->iso_frame_desc[i].status) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300411 if ((dev->fourcc) == V4L2_PIX_FMT_TM6000) {
412 rc = copy_multiplexed(p, len, urb);
413 if (rc <= 0)
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300414 return rc;
415 } else {
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300416 copy_streams(p, len, urb);
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300417 }
418 }
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300419 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300420 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300421 return rc;
422}
423
424/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300425 * URB control
426 * ------------------------------------------------------------------
427 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300428
429/*
430 * IRQ callback, called by URB callback
431 */
432static void tm6000_irq_callback(struct urb *urb)
433{
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300434 struct tm6000_dmaqueue *dma_q = urb->context;
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300435 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300436 int i;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300437
Thierry Reding14f09152011-08-04 04:14:06 -0300438 switch (urb->status) {
439 case 0:
440 case -ETIMEDOUT:
441 break;
442
443 case -ECONNRESET:
444 case -ENOENT:
445 case -ESHUTDOWN:
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300446 return;
447
Thierry Reding14f09152011-08-04 04:14:06 -0300448 default:
449 tm6000_err("urb completion error %d.\n", urb->status);
450 break;
451 }
452
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300453 spin_lock(&dev->slock);
454 tm6000_isoc_copy(urb);
455 spin_unlock(&dev->slock);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300456
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300457 /* Reset urb buffers */
458 for (i = 0; i < urb->number_of_packets; i++) {
459 urb->iso_frame_desc[i].status = 0;
460 urb->iso_frame_desc[i].actual_length = 0;
461 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300462
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300463 urb->status = usb_submit_urb(urb, GFP_ATOMIC);
464 if (urb->status)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300465 tm6000_err("urb resubmit failed (error=%i)\n",
466 urb->status);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300467}
468
469/*
Julian Scheel16427fa2012-10-04 10:04:28 -0300470 * Allocate URB buffers
471 */
472static int tm6000_alloc_urb_buffers(struct tm6000_core *dev)
473{
474 int num_bufs = TM6000_NUM_URB_BUF;
475 int i;
476
477 if (dev->urb_buffer != NULL)
478 return 0;
479
480 dev->urb_buffer = kmalloc(sizeof(void *)*num_bufs, GFP_KERNEL);
481 if (!dev->urb_buffer) {
482 tm6000_err("cannot allocate memory for urb buffers\n");
483 return -ENOMEM;
484 }
485
486 dev->urb_dma = kmalloc(sizeof(dma_addr_t *)*num_bufs, GFP_KERNEL);
487 if (!dev->urb_dma) {
488 tm6000_err("cannot allocate memory for urb dma pointers\n");
489 return -ENOMEM;
490 }
491
492 for (i = 0; i < num_bufs; i++) {
493 dev->urb_buffer[i] = usb_alloc_coherent(
494 dev->udev, dev->urb_size,
495 GFP_KERNEL, &dev->urb_dma[i]);
496 if (!dev->urb_buffer[i]) {
497 tm6000_err("unable to allocate %i bytes for transfer buffer %i\n",
498 dev->urb_size, i);
499 return -ENOMEM;
500 }
501 memset(dev->urb_buffer[i], 0, dev->urb_size);
502 }
503
504 return 0;
505}
506
507/*
508 * Free URB buffers
509 */
510static int tm6000_free_urb_buffers(struct tm6000_core *dev)
511{
512 int i;
513
514 if (dev->urb_buffer == NULL)
515 return 0;
516
517 for (i = 0; i < TM6000_NUM_URB_BUF; i++) {
518 if (dev->urb_buffer[i]) {
519 usb_free_coherent(dev->udev,
520 dev->urb_size,
521 dev->urb_buffer[i],
522 dev->urb_dma[i]);
523 dev->urb_buffer[i] = NULL;
524 }
525 }
526 kfree(dev->urb_buffer);
527 kfree(dev->urb_dma);
528 dev->urb_buffer = NULL;
529 dev->urb_dma = NULL;
530
531 return 0;
532}
533
534/*
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300535 * Stop and Deallocate URBs
536 */
537static void tm6000_uninit_isoc(struct tm6000_core *dev)
538{
539 struct urb *urb;
540 int i;
541
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300542 dev->isoc_ctl.buf = NULL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300543 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300544 urb = dev->isoc_ctl.urb[i];
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300545 if (urb) {
546 usb_kill_urb(urb);
547 usb_unlink_urb(urb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300548 usb_free_urb(urb);
549 dev->isoc_ctl.urb[i] = NULL;
550 }
551 dev->isoc_ctl.transfer_buffer[i] = NULL;
552 }
553
Julian Scheel16427fa2012-10-04 10:04:28 -0300554 if (!keep_urb)
555 tm6000_free_urb_buffers(dev);
556
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300557 kfree(dev->isoc_ctl.urb);
558 kfree(dev->isoc_ctl.transfer_buffer);
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300559
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300560 dev->isoc_ctl.urb = NULL;
561 dev->isoc_ctl.transfer_buffer = NULL;
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300562 dev->isoc_ctl.num_bufs = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300563}
564
565/*
Julian Scheel16427fa2012-10-04 10:04:28 -0300566 * Assign URBs and start IRQ
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300567 */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300568static int tm6000_prepare_isoc(struct tm6000_core *dev)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300569{
570 struct tm6000_dmaqueue *dma_q = &dev->vidq;
Julian Scheel16427fa2012-10-04 10:04:28 -0300571 int i, j, sb_size, pipe, size, max_packets;
572 int num_bufs = TM6000_NUM_URB_BUF;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300573 struct urb *urb;
Mauro Carvalho Chehab204193d2008-01-09 18:12:39 -0300574
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300575 /* De-allocates all pending stuff */
576 tm6000_uninit_isoc(dev);
Dmitri Belimov641d2112010-12-22 05:57:46 -0300577 /* Stop interrupt USB pipe */
578 tm6000_ir_int_stop(dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300579
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300580 usb_set_interface(dev->udev,
581 dev->isoc_in.bInterfaceNumber,
582 dev->isoc_in.bAlternateSetting);
583
Dmitri Belimov641d2112010-12-22 05:57:46 -0300584 /* Start interrupt USB pipe */
585 tm6000_ir_int_start(dev);
586
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300587 pipe = usb_rcvisocpipe(dev->udev,
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300588 dev->isoc_in.endp->desc.bEndpointAddress &
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300589 USB_ENDPOINT_NUMBER_MASK);
590
591 size = usb_maxpacket(dev->udev, pipe, usb_pipeout(pipe));
592
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300593 if (size > dev->isoc_in.maxsize)
594 size = dev->isoc_in.maxsize;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300595
596 dev->isoc_ctl.max_pkt_size = size;
597
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300598 max_packets = TM6000_MAX_ISO_PACKETS;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300599 sb_size = max_packets * size;
Julian Scheel16427fa2012-10-04 10:04:28 -0300600 dev->urb_size = sb_size;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300601
602 dev->isoc_ctl.num_bufs = num_bufs;
603
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300604 dev->isoc_ctl.urb = kmalloc(sizeof(void *)*num_bufs, GFP_KERNEL);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300605 if (!dev->isoc_ctl.urb) {
606 tm6000_err("cannot alloc memory for usb buffers\n");
607 return -ENOMEM;
608 }
609
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300610 dev->isoc_ctl.transfer_buffer = kmalloc(sizeof(void *)*num_bufs,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300611 GFP_KERNEL);
Julia Lawallf8960ee2010-02-11 03:30:30 -0300612 if (!dev->isoc_ctl.transfer_buffer) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300613 tm6000_err("cannot allocate memory for usbtransfer\n");
614 kfree(dev->isoc_ctl.urb);
615 return -ENOMEM;
616 }
617
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300618 dprintk(dev, V4L2_DEBUG_QUEUE, "Allocating %d x %d packets"
619 " (%d bytes) of %d bytes each to handle %u size\n",
620 max_packets, num_bufs, sb_size,
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300621 dev->isoc_in.maxsize, size);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300622
Julian Scheel16427fa2012-10-04 10:04:28 -0300623
624 if (!dev->urb_buffer && tm6000_alloc_urb_buffers(dev) < 0) {
625 tm6000_err("cannot allocate memory for urb buffers\n");
626
627 /* call free, as some buffers might have been allocated */
628 tm6000_free_urb_buffers(dev);
629 kfree(dev->isoc_ctl.urb);
630 kfree(dev->isoc_ctl.transfer_buffer);
631 return -ENOMEM;
632 }
633
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300634 /* allocate urbs and transfer buffers */
635 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
636 urb = usb_alloc_urb(max_packets, GFP_KERNEL);
637 if (!urb) {
638 tm6000_err("cannot alloc isoc_ctl.urb %i\n", i);
639 tm6000_uninit_isoc(dev);
Mauro Carvalho Chehabc1a16412007-10-15 15:43:50 -0300640 usb_free_urb(urb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300641 return -ENOMEM;
642 }
643 dev->isoc_ctl.urb[i] = urb;
644
Julian Scheel16427fa2012-10-04 10:04:28 -0300645 urb->transfer_dma = dev->urb_dma[i];
646 dev->isoc_ctl.transfer_buffer[i] = dev->urb_buffer[i];
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300647
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300648 usb_fill_bulk_urb(urb, dev->udev, pipe,
649 dev->isoc_ctl.transfer_buffer[i], sb_size,
650 tm6000_irq_callback, dma_q);
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300651 urb->interval = dev->isoc_in.endp->desc.bInterval;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300652 urb->number_of_packets = max_packets;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300653 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300654
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300655 for (j = 0; j < max_packets; j++) {
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300656 urb->iso_frame_desc[j].offset = size * j;
657 urb->iso_frame_desc[j].length = size;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300658 }
659 }
660
661 return 0;
662}
663
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300664static int tm6000_start_thread(struct tm6000_core *dev)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300665{
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300666 struct tm6000_dmaqueue *dma_q = &dev->vidq;
667 int i;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300668
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300669 dma_q->frame = 0;
670 dma_q->ini_jiffies = jiffies;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300671
672 init_waitqueue_head(&dma_q->wq);
673
674 /* submit urbs and enables IRQ */
675 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300676 int rc = usb_submit_urb(dev->isoc_ctl.urb[i], GFP_ATOMIC);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300677 if (rc) {
678 tm6000_err("submit of urb %i failed (error=%i)\n", i,
679 rc);
680 tm6000_uninit_isoc(dev);
681 return rc;
682 }
683 }
684
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300685 return 0;
686}
687
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300688/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300689 * Videobuf operations
690 * ------------------------------------------------------------------
691 */
Michel Ludwig95a83822007-07-24 08:06:45 -0300692
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300693static int
694buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
695{
696 struct tm6000_fh *fh = vq->priv_data;
697
698 *size = fh->fmt->depth * fh->width * fh->height >> 3;
699 if (0 == *count)
Michel Ludwig95a83822007-07-24 08:06:45 -0300700 *count = TM6000_DEF_BUF;
701
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300702 if (*count < TM6000_MIN_BUF)
703 *count = TM6000_MIN_BUF;
Michel Ludwig95a83822007-07-24 08:06:45 -0300704
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300705 while (*size * *count > vid_limit * 1024 * 1024)
706 (*count)--;
Michel Ludwig95a83822007-07-24 08:06:45 -0300707
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300708 return 0;
709}
710
711static void free_buffer(struct videobuf_queue *vq, struct tm6000_buffer *buf)
712{
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300713 struct tm6000_fh *fh = vq->priv_data;
714 struct tm6000_core *dev = fh->dev;
715 unsigned long flags;
716
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300717 if (in_interrupt())
718 BUG();
719
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300720 /* We used to wait for the buffer to finish here, but this didn't work
721 because, as we were keeping the state as VIDEOBUF_QUEUED,
722 videobuf_queue_cancel marked it as finished for us.
723 (Also, it could wedge forever if the hardware was misconfigured.)
724
725 This should be safe; by the time we get here, the buffer isn't
726 queued anymore. If we ever start marking the buffers as
727 VIDEOBUF_ACTIVE, it won't be, though.
728 */
729 spin_lock_irqsave(&dev->slock, flags);
730 if (dev->isoc_ctl.buf == buf)
731 dev->isoc_ctl.buf = NULL;
732 spin_unlock_irqrestore(&dev->slock, flags);
733
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300734 videobuf_vmalloc_free(&buf->vb);
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300735 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300736}
737
738static int
739buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
740 enum v4l2_field field)
741{
742 struct tm6000_fh *fh = vq->priv_data;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300743 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300744 struct tm6000_core *dev = fh->dev;
Thierry Reding88e834a2011-08-04 04:14:12 -0300745 int rc = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300746
747 BUG_ON(NULL == fh->fmt);
748
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300749
750 /* FIXME: It assumes depth=2 */
751 /* The only currently supported format is 16 bits/pixel */
752 buf->vb.size = fh->fmt->depth*fh->width*fh->height >> 3;
753 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
754 return -EINVAL;
755
756 if (buf->fmt != fh->fmt ||
757 buf->vb.width != fh->width ||
758 buf->vb.height != fh->height ||
759 buf->vb.field != field) {
760 buf->fmt = fh->fmt;
761 buf->vb.width = fh->width;
762 buf->vb.height = fh->height;
763 buf->vb.field = field;
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300764 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300765 }
766
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300767 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Curtis McEnroeed7c2212011-06-01 22:21:56 -0400768 rc = videobuf_iolock(vq, &buf->vb, NULL);
769 if (rc != 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300770 goto fail;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300771 }
772
Thierry Reding88e834a2011-08-04 04:14:12 -0300773 if (!dev->isoc_ctl.num_bufs) {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300774 rc = tm6000_prepare_isoc(dev);
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300775 if (rc < 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300776 goto fail;
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300777
778 rc = tm6000_start_thread(dev);
779 if (rc < 0)
780 goto fail;
781
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300782 }
783
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300784 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300785 return 0;
786
787fail:
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300788 free_buffer(vq, buf);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300789 return rc;
790}
791
792static void
793buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
794{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300795 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300796 struct tm6000_fh *fh = vq->priv_data;
797 struct tm6000_core *dev = fh->dev;
798 struct tm6000_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300799
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300800 buf->vb.state = VIDEOBUF_QUEUED;
801 list_add_tail(&buf->vb.queue, &vidq->active);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300802}
803
804static void buffer_release(struct videobuf_queue *vq, struct videobuf_buffer *vb)
805{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300806 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300807
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300808 free_buffer(vq, buf);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300809}
810
811static struct videobuf_queue_ops tm6000_video_qops = {
812 .buf_setup = buffer_setup,
813 .buf_prepare = buffer_prepare,
814 .buf_queue = buffer_queue,
815 .buf_release = buffer_release,
816};
817
818/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300819 * IOCTL handling
820 * ------------------------------------------------------------------
821 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300822
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300823static bool is_res_read(struct tm6000_core *dev, struct tm6000_fh *fh)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300824{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300825 /* Is the current fh handling it? if so, that's OK */
826 if (dev->resources == fh && dev->is_res_read)
827 return true;
828
829 return false;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300830}
831
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300832static bool is_res_streaming(struct tm6000_core *dev, struct tm6000_fh *fh)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300833{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300834 /* Is the current fh handling it? if so, that's OK */
835 if (dev->resources == fh)
836 return true;
837
838 return false;
839}
840
841static bool res_get(struct tm6000_core *dev, struct tm6000_fh *fh,
842 bool is_res_read)
843{
844 /* Is the current fh handling it? if so, that's OK */
845 if (dev->resources == fh && dev->is_res_read == is_res_read)
846 return true;
847
848 /* is it free? */
849 if (dev->resources)
850 return false;
851
852 /* grab it */
853 dev->resources = fh;
854 dev->is_res_read = is_res_read;
855 dprintk(dev, V4L2_DEBUG_RES_LOCK, "res: get\n");
856 return true;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300857}
858
859static void res_free(struct tm6000_core *dev, struct tm6000_fh *fh)
860{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300861 /* Is the current fh handling it? if so, that's OK */
862 if (dev->resources != fh)
863 return;
864
865 dev->resources = NULL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300866 dprintk(dev, V4L2_DEBUG_RES_LOCK, "res: put\n");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300867}
868
869/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300870 * IOCTL vidioc handling
871 * ------------------------------------------------------------------
872 */
873static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300874 struct v4l2_capability *cap)
875{
Stefan Ringel886a3c02011-05-09 16:53:50 -0300876 struct tm6000_core *dev = ((struct tm6000_fh *)priv)->dev;
Hans Verkuil2c2a0532012-09-11 07:35:30 -0300877 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300878
879 strlcpy(cap->driver, "tm6000", sizeof(cap->driver));
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300880 strlcpy(cap->card, "Trident TVMaster TM5600/6000/6010", sizeof(cap->card));
Hans Verkuil2c2a0532012-09-11 07:35:30 -0300881 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
Stefan Ringel886a3c02011-05-09 16:53:50 -0300882 if (dev->tuner_type != TUNER_ABSENT)
Hans Verkuil2c2a0532012-09-11 07:35:30 -0300883 cap->device_caps |= V4L2_CAP_TUNER;
884 if (vdev->vfl_type == VFL_TYPE_GRABBER)
885 cap->device_caps |= V4L2_CAP_VIDEO_CAPTURE |
886 V4L2_CAP_STREAMING |
887 V4L2_CAP_READWRITE;
888 else
889 cap->device_caps |= V4L2_CAP_RADIO;
890 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS |
891 V4L2_CAP_RADIO | V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE;
Stefan Ringel886a3c02011-05-09 16:53:50 -0300892
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300893 return 0;
894}
895
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300896static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300897 struct v4l2_fmtdesc *f)
898{
Hans Verkuil2c2a0532012-09-11 07:35:30 -0300899 if (f->index >= ARRAY_SIZE(format))
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300900 return -EINVAL;
901
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300902 strlcpy(f->description, format[f->index].name, sizeof(f->description));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300903 f->pixelformat = format[f->index].fourcc;
904 return 0;
905}
906
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300907static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300908 struct v4l2_format *f)
909{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300910 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300911
912 f->fmt.pix.width = fh->width;
913 f->fmt.pix.height = fh->height;
914 f->fmt.pix.field = fh->vb_vidq.field;
915 f->fmt.pix.pixelformat = fh->fmt->fourcc;
Hans Verkuile6185782012-09-11 11:51:02 -0300916 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300917 f->fmt.pix.bytesperline =
918 (f->fmt.pix.width * fh->fmt->depth) >> 3;
919 f->fmt.pix.sizeimage =
920 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuiled572562013-02-01 09:08:46 -0300921 f->fmt.pix.priv = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300922
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300923 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300924}
925
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300926static struct tm6000_fmt *format_by_fourcc(unsigned int fourcc)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300927{
928 unsigned int i;
929
930 for (i = 0; i < ARRAY_SIZE(format); i++)
931 if (format[i].fourcc == fourcc)
932 return format+i;
933 return NULL;
934}
935
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300936static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300937 struct v4l2_format *f)
938{
939 struct tm6000_core *dev = ((struct tm6000_fh *)priv)->dev;
940 struct tm6000_fmt *fmt;
941 enum v4l2_field field;
942
943 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
944 if (NULL == fmt) {
945 dprintk(dev, V4L2_DEBUG_IOCTL_ARG, "Fourcc format (0x%08x)"
946 " invalid.\n", f->fmt.pix.pixelformat);
947 return -EINVAL;
948 }
949
950 field = f->fmt.pix.field;
951
Hans Verkuiled572562013-02-01 09:08:46 -0300952 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300953
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300954 tm6000_get_std_res(dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300955
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -0300956 f->fmt.pix.width = dev->width;
957 f->fmt.pix.height = dev->height;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300958
959 f->fmt.pix.width &= ~0x01;
960
961 f->fmt.pix.field = field;
Hans Verkuiled572562013-02-01 09:08:46 -0300962 f->fmt.pix.priv = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300963
964 f->fmt.pix.bytesperline =
965 (f->fmt.pix.width * fmt->depth) >> 3;
966 f->fmt.pix.sizeimage =
967 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuile6185782012-09-11 11:51:02 -0300968 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300969
970 return 0;
971}
972
973/*FIXME: This seems to be generic enough to be at videodev2 */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300974static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300975 struct v4l2_format *f)
976{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300977 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300978 struct tm6000_core *dev = fh->dev;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300979 int ret = vidioc_try_fmt_vid_cap(file, fh, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300980 if (ret < 0)
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300981 return ret;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300982
983 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
984 fh->width = f->fmt.pix.width;
985 fh->height = f->fmt.pix.height;
986 fh->vb_vidq.field = f->fmt.pix.field;
987 fh->type = f->type;
988
989 dev->fourcc = f->fmt.pix.pixelformat;
990
991 tm6000_set_fourcc_format(dev);
992
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300993 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300994}
995
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300996static int vidioc_reqbufs(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300997 struct v4l2_requestbuffers *p)
998{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300999 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001000
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001001 return videobuf_reqbufs(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001002}
1003
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001004static int vidioc_querybuf(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001005 struct v4l2_buffer *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_querybuf(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001010}
1011
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001012static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001013{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001014 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001015
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001016 return videobuf_qbuf(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001017}
1018
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001019static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001020{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001021 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001022
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001023 return videobuf_dqbuf(&fh->vb_vidq, p,
1024 file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001025}
1026
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001027static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
1028{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001029 struct tm6000_fh *fh = priv;
1030 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001031
1032 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1033 return -EINVAL;
1034 if (i != fh->type)
1035 return -EINVAL;
1036
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001037 if (!res_get(dev, fh, false))
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001038 return -EBUSY;
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001039 return videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001040}
1041
1042static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1043{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001044 struct tm6000_fh *fh = priv;
1045 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001046
1047 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1048 return -EINVAL;
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001049
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001050 if (i != fh->type)
1051 return -EINVAL;
1052
1053 videobuf_streamoff(&fh->vb_vidq);
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001054 res_free(dev, fh);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001055
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001056 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001057}
1058
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001059static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001060{
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001061 int rc = 0;
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001062 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001063 struct tm6000_core *dev = fh->dev;
1064
Stefan Ringel4f526102010-10-27 16:48:05 -03001065 dev->norm = *norm;
Mauro Carvalho Chehab709944e2010-10-07 02:28:24 -03001066 rc = tm6000_init_analog_mode(dev);
Mauro Carvalho Chehab71e7cfa2007-09-06 20:12:10 -03001067
1068 fh->width = dev->width;
1069 fh->height = dev->height;
1070
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001071 if (rc < 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001072 return rc;
1073
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -03001074 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_std, dev->norm);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001075
1076 return 0;
1077}
1078
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001079static const char *iname[] = {
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001080 [TM6000_INPUT_TV] = "Television",
1081 [TM6000_INPUT_COMPOSITE1] = "Composite 1",
1082 [TM6000_INPUT_COMPOSITE2] = "Composite 2",
1083 [TM6000_INPUT_SVIDEO] = "S-Video",
1084};
1085
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001086static int vidioc_enum_input(struct file *file, void *priv,
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001087 struct v4l2_input *i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001088{
Dmitri Belimov2aefbc12011-03-17 21:08:55 -03001089 struct tm6000_fh *fh = priv;
1090 struct tm6000_core *dev = fh->dev;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001091 unsigned int n;
Dmitri Belimov2aefbc12011-03-17 21:08:55 -03001092
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001093 n = i->index;
1094 if (n >= 3)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001095 return -EINVAL;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001096
1097 if (!dev->vinput[n].type)
1098 return -EINVAL;
1099
1100 i->index = n;
1101
1102 if (dev->vinput[n].type == TM6000_INPUT_TV)
1103 i->type = V4L2_INPUT_TYPE_TUNER;
1104 else
1105 i->type = V4L2_INPUT_TYPE_CAMERA;
1106
1107 strcpy(i->name, iname[dev->vinput[n].type]);
1108
1109 i->std = TM6000_STD;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001110
1111 return 0;
1112}
1113
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001114static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001115{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001116 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001117 struct tm6000_core *dev = fh->dev;
1118
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001119 *i = dev->input;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001120
1121 return 0;
1122}
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001123
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001124static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001125{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001126 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001127 struct tm6000_core *dev = fh->dev;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001128 int rc = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001129
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001130 if (i >= 3)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001131 return -EINVAL;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001132 if (!dev->vinput[i].type)
1133 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001134
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001135 dev->input = i;
1136
1137 rc = vidioc_s_std(file, priv, &dev->vfd->current_norm);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001138
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001139 return rc;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001140}
1141
Stefan Ringel886a3c02011-05-09 16:53:50 -03001142/* --- controls ---------------------------------------------- */
Hans Verkuil9f747352013-01-31 08:23:01 -03001143
1144static int tm6000_s_ctrl(struct v4l2_ctrl *ctrl)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001145{
Hans Verkuil9f747352013-01-31 08:23:01 -03001146 struct tm6000_core *dev = container_of(ctrl->handler, struct tm6000_core, ctrl_handler);
1147 u8 val = ctrl->val;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001148
1149 switch (ctrl->id) {
1150 case V4L2_CID_CONTRAST:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001151 tm6000_set_reg(dev, TM6010_REQ07_R08_LUMA_CONTRAST_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001152 return 0;
1153 case V4L2_CID_BRIGHTNESS:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001154 tm6000_set_reg(dev, TM6010_REQ07_R09_LUMA_BRIGHTNESS_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001155 return 0;
1156 case V4L2_CID_SATURATION:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001157 tm6000_set_reg(dev, TM6010_REQ07_R0A_CHROMA_SATURATION_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001158 return 0;
1159 case V4L2_CID_HUE:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001160 tm6000_set_reg(dev, TM6010_REQ07_R0B_CHROMA_HUE_PHASE_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001161 return 0;
Hans Verkuil9f747352013-01-31 08:23:01 -03001162 }
1163 return -EINVAL;
1164}
1165
1166static const struct v4l2_ctrl_ops tm6000_ctrl_ops = {
1167 .s_ctrl = tm6000_s_ctrl,
1168};
1169
1170static int tm6000_radio_s_ctrl(struct v4l2_ctrl *ctrl)
1171{
1172 struct tm6000_core *dev = container_of(ctrl->handler,
1173 struct tm6000_core, radio_ctrl_handler);
1174 u8 val = ctrl->val;
1175
1176 switch (ctrl->id) {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001177 case V4L2_CID_AUDIO_MUTE:
1178 dev->ctl_mute = val;
1179 tm6000_tvaudio_set_mute(dev, val);
1180 return 0;
1181 case V4L2_CID_AUDIO_VOLUME:
1182 dev->ctl_volume = val;
1183 tm6000_set_volume(dev, val);
1184 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001185 }
1186 return -EINVAL;
1187}
1188
Hans Verkuil9f747352013-01-31 08:23:01 -03001189static const struct v4l2_ctrl_ops tm6000_radio_ctrl_ops = {
1190 .s_ctrl = tm6000_radio_s_ctrl,
1191};
1192
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001193static int vidioc_g_tuner(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001194 struct v4l2_tuner *t)
1195{
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;
1198
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001199 if (UNSET == dev->tuner_type)
1200 return -ENOTTY;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001201 if (0 != t->index)
1202 return -EINVAL;
1203
1204 strcpy(t->name, "Television");
1205 t->type = V4L2_TUNER_ANALOG_TV;
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001206 t->capability = V4L2_TUNER_CAP_NORM | V4L2_TUNER_CAP_STEREO;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001207 t->rangehigh = 0xffffffffUL;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001208 t->rxsubchans = V4L2_TUNER_SUB_STEREO;
1209
1210 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
1211
1212 t->audmode = dev->amode;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001213
1214 return 0;
1215}
1216
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001217static int vidioc_s_tuner(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001218 struct v4l2_tuner *t)
1219{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001220 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001221 struct tm6000_core *dev = fh->dev;
1222
1223 if (UNSET == dev->tuner_type)
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001224 return -ENOTTY;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001225 if (0 != t->index)
1226 return -EINVAL;
1227
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001228 if (t->audmode > V4L2_TUNER_MODE_STEREO)
1229 dev->amode = V4L2_TUNER_MODE_STEREO;
1230 else
1231 dev->amode = t->audmode;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001232 dprintk(dev, 3, "audio mode: %x\n", t->audmode);
1233
1234 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Stefan Ringel0f6040e2011-05-09 16:53:53 -03001235
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001236 return 0;
1237}
1238
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001239static int vidioc_g_frequency(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001240 struct v4l2_frequency *f)
1241{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001242 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001243 struct tm6000_core *dev = fh->dev;
1244
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001245 if (UNSET == dev->tuner_type)
1246 return -ENOTTY;
1247 if (f->tuner)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001248 return -EINVAL;
1249
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001250 f->frequency = dev->freq;
1251
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -03001252 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_frequency, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001253
1254 return 0;
1255}
1256
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001257static int vidioc_s_frequency(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001258 struct v4l2_frequency *f)
1259{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001260 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001261 struct tm6000_core *dev = fh->dev;
1262
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001263 if (UNSET == dev->tuner_type)
1264 return -ENOTTY;
1265 if (f->tuner != 0)
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001266 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001267
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001268 dev->freq = f->frequency;
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001269 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001270
1271 return 0;
1272}
1273
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001274static int radio_g_tuner(struct file *file, void *priv,
1275 struct v4l2_tuner *t)
1276{
1277 struct tm6000_fh *fh = file->private_data;
1278 struct tm6000_core *dev = fh->dev;
1279
1280 if (0 != t->index)
1281 return -EINVAL;
1282
1283 memset(t, 0, sizeof(*t));
1284 strcpy(t->name, "Radio");
1285 t->type = V4L2_TUNER_RADIO;
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001286 t->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001287 t->rxsubchans = V4L2_TUNER_SUB_STEREO;
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001288 t->audmode = V4L2_TUNER_MODE_STEREO;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001289
1290 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
1291
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001292 return 0;
1293}
1294
1295static int radio_s_tuner(struct file *file, void *priv,
1296 struct v4l2_tuner *t)
1297{
1298 struct tm6000_fh *fh = file->private_data;
1299 struct tm6000_core *dev = fh->dev;
1300
1301 if (0 != t->index)
1302 return -EINVAL;
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001303 if (t->audmode > V4L2_TUNER_MODE_STEREO)
1304 t->audmode = V4L2_TUNER_MODE_STEREO;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001305
1306 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
1307
1308 return 0;
1309}
1310
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001311/* ------------------------------------------------------------------
1312 File operations for the device
1313 ------------------------------------------------------------------*/
1314
Hans Verkuil14a09da2012-06-24 07:26:46 -03001315static int __tm6000_open(struct file *file)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001316{
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001317 struct video_device *vdev = video_devdata(file);
1318 struct tm6000_core *dev = video_drvdata(file);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001319 struct tm6000_fh *fh;
Mauro Carvalho Chehabe8d04162010-05-18 04:27:27 -03001320 enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Hans Verkuil9f747352013-01-31 08:23:01 -03001321 int rc;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001322 int radio = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001323
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001324 dprintk(dev, V4L2_DEBUG_OPEN, "tm6000: open called (dev=%s)\n",
1325 video_device_node_name(vdev));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001326
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001327 switch (vdev->vfl_type) {
1328 case VFL_TYPE_GRABBER:
1329 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1330 break;
1331 case VFL_TYPE_VBI:
1332 type = V4L2_BUF_TYPE_VBI_CAPTURE;
1333 break;
1334 case VFL_TYPE_RADIO:
1335 radio = 1;
1336 break;
1337 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001338
1339 /* If more than one user, mutex should be added */
1340 dev->users++;
1341
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001342 dprintk(dev, V4L2_DEBUG_OPEN, "open dev=%s type=%s users=%d\n",
1343 video_device_node_name(vdev), v4l2_type_names[type],
1344 dev->users);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001345
1346 /* allocate + initialize per filehandle data */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001347 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001348 if (NULL == fh) {
1349 dev->users--;
1350 return -ENOMEM;
1351 }
1352
Hans Verkuil770056c2012-09-11 11:50:37 -03001353 v4l2_fh_init(&fh->fh, vdev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001354 file->private_data = fh;
1355 fh->dev = dev;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001356 fh->radio = radio;
1357 dev->radio = radio;
1358 fh->type = type;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001359 dev->fourcc = format[0].fourcc;
1360
1361 fh->fmt = format_by_fourcc(dev->fourcc);
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -03001362
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001363 tm6000_get_std_res(dev);
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -03001364
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001365 fh->width = dev->width;
1366 fh->height = dev->height;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001367
1368 dprintk(dev, V4L2_DEBUG_OPEN, "Open: fh=0x%08lx, dev=0x%08lx, "
1369 "dev->vidq=0x%08lx\n",
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001370 (unsigned long)fh, (unsigned long)dev,
1371 (unsigned long)&dev->vidq);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001372 dprintk(dev, V4L2_DEBUG_OPEN, "Open: list_empty "
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001373 "queued=%d\n", list_empty(&dev->vidq.queued));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001374 dprintk(dev, V4L2_DEBUG_OPEN, "Open: list_empty "
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001375 "active=%d\n", list_empty(&dev->vidq.active));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001376
1377 /* initialize hardware on analog mode */
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001378 rc = tm6000_init_analog_mode(dev);
1379 if (rc < 0)
1380 return rc;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001381
Hans Verkuil9f747352013-01-31 08:23:01 -03001382 dev->mode = TM6000_MODE_ANALOG;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001383
Thierry Redingaa4a5832011-08-04 04:14:15 -03001384 if (!fh->radio) {
1385 videobuf_queue_vmalloc_init(&fh->vb_vidq, &tm6000_video_qops,
1386 NULL, &dev->slock,
1387 fh->type,
1388 V4L2_FIELD_INTERLACED,
1389 sizeof(struct tm6000_buffer), fh, &dev->lock);
1390 } else {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001391 dprintk(dev, V4L2_DEBUG_OPEN, "video_open: setting radio device\n");
Stefan Ringel0f6040e2011-05-09 16:53:53 -03001392 tm6000_set_audio_rinput(dev);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001393 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_radio);
1394 tm6000_prepare_isoc(dev);
1395 tm6000_start_thread(dev);
1396 }
Hans Verkuil770056c2012-09-11 11:50:37 -03001397 v4l2_fh_add(&fh->fh);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001398
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001399 return 0;
1400}
1401
Hans Verkuil14a09da2012-06-24 07:26:46 -03001402static int tm6000_open(struct file *file)
1403{
1404 struct video_device *vdev = video_devdata(file);
1405 int res;
1406
1407 mutex_lock(vdev->lock);
1408 res = __tm6000_open(file);
1409 mutex_unlock(vdev->lock);
1410 return res;
1411}
1412
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001413static ssize_t
1414tm6000_read(struct file *file, char __user *data, size_t count, loff_t *pos)
1415{
Hans Verkuil14a09da2012-06-24 07:26:46 -03001416 struct tm6000_fh *fh = file->private_data;
1417 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001418
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001419 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Hans Verkuil14a09da2012-06-24 07:26:46 -03001420 int res;
1421
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001422 if (!res_get(fh->dev, fh, true))
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001423 return -EBUSY;
1424
Hans Verkuil14a09da2012-06-24 07:26:46 -03001425 if (mutex_lock_interruptible(&dev->lock))
1426 return -ERESTARTSYS;
1427 res = videobuf_read_stream(&fh->vb_vidq, data, count, pos, 0,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001428 file->f_flags & O_NONBLOCK);
Hans Verkuil14a09da2012-06-24 07:26:46 -03001429 mutex_unlock(&dev->lock);
1430 return res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001431 }
1432 return 0;
1433}
1434
1435static unsigned int
Hans Verkuil14a09da2012-06-24 07:26:46 -03001436__tm6000_poll(struct file *file, struct poll_table_struct *wait)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001437{
Hans Verkuil770056c2012-09-11 11:50:37 -03001438 unsigned long req_events = poll_requested_events(wait);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001439 struct tm6000_fh *fh = file->private_data;
1440 struct tm6000_buffer *buf;
Hans Verkuil770056c2012-09-11 11:50:37 -03001441 int res = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001442
Hans Verkuil770056c2012-09-11 11:50:37 -03001443 if (v4l2_event_pending(&fh->fh))
1444 res = POLLPRI;
1445 else if (req_events & POLLPRI)
1446 poll_wait(file, &fh->fh.wait, wait);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001447 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
Hans Verkuil770056c2012-09-11 11:50:37 -03001448 return res | POLLERR;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001449
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001450 if (!!is_res_streaming(fh->dev, fh))
Hans Verkuil770056c2012-09-11 11:50:37 -03001451 return res | POLLERR;
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001452
1453 if (!is_res_read(fh->dev, fh)) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001454 /* streaming capture */
1455 if (list_empty(&fh->vb_vidq.stream))
Hans Verkuil770056c2012-09-11 11:50:37 -03001456 return res | POLLERR;
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001457 buf = list_entry(fh->vb_vidq.stream.next, struct tm6000_buffer, vb.stream);
Hans Verkuil82f0efb2013-02-07 07:05:43 -03001458 poll_wait(file, &buf->vb.done, wait);
1459 if (buf->vb.state == VIDEOBUF_DONE ||
1460 buf->vb.state == VIDEOBUF_ERROR)
1461 return res | POLLIN | POLLRDNORM;
Hans Verkuil770056c2012-09-11 11:50:37 -03001462 } else if (req_events & (POLLIN | POLLRDNORM)) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001463 /* read() capture */
Hans Verkuil770056c2012-09-11 11:50:37 -03001464 return res | videobuf_poll_stream(file, &fh->vb_vidq, wait);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001465 }
Hans Verkuil770056c2012-09-11 11:50:37 -03001466 return res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001467}
1468
Hans Verkuil14a09da2012-06-24 07:26:46 -03001469static unsigned int tm6000_poll(struct file *file, struct poll_table_struct *wait)
1470{
1471 struct tm6000_fh *fh = file->private_data;
1472 struct tm6000_core *dev = fh->dev;
1473 unsigned int res;
1474
1475 mutex_lock(&dev->lock);
1476 res = __tm6000_poll(file, wait);
1477 mutex_unlock(&dev->lock);
1478 return res;
1479}
1480
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001481static int tm6000_release(struct file *file)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001482{
1483 struct tm6000_fh *fh = file->private_data;
1484 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001485 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001486
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001487 dprintk(dev, V4L2_DEBUG_OPEN, "tm6000: close called (dev=%s, users=%d)\n",
1488 video_device_node_name(vdev), dev->users);
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001489
Hans Verkuil14a09da2012-06-24 07:26:46 -03001490 mutex_lock(&dev->lock);
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001491 dev->users--;
1492
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001493 res_free(dev, fh);
Thierry Redingdd0c8ab2011-08-04 04:14:13 -03001494
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001495 if (!dev->users) {
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -03001496 tm6000_uninit_isoc(dev);
Thierry Redingaa4a5832011-08-04 04:14:15 -03001497
Stefan Ringel8159c182011-11-28 15:46:18 -03001498 /* Stop interrupt USB pipe */
1499 tm6000_ir_int_stop(dev);
1500
1501 usb_reset_configuration(dev->udev);
1502
Thierry Reding4be9c8f2011-12-06 09:39:35 -03001503 if (dev->int_in.endp)
Stefan Ringel8159c182011-11-28 15:46:18 -03001504 usb_set_interface(dev->udev,
Thierry Reding875f0e32011-12-06 09:39:36 -03001505 dev->isoc_in.bInterfaceNumber, 2);
Stefan Ringel8159c182011-11-28 15:46:18 -03001506 else
1507 usb_set_interface(dev->udev,
Thierry Reding875f0e32011-12-06 09:39:36 -03001508 dev->isoc_in.bInterfaceNumber, 0);
Stefan Ringel8159c182011-11-28 15:46:18 -03001509
1510 /* Start interrupt USB pipe */
1511 tm6000_ir_int_start(dev);
1512
Thierry Redingaa4a5832011-08-04 04:14:15 -03001513 if (!fh->radio)
1514 videobuf_mmap_free(&fh->vb_vidq);
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001515 }
Hans Verkuil770056c2012-09-11 11:50:37 -03001516 v4l2_fh_del(&fh->fh);
1517 v4l2_fh_exit(&fh->fh);
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001518 kfree(fh);
Hans Verkuil14a09da2012-06-24 07:26:46 -03001519 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001520
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001521 return 0;
1522}
1523
1524static int tm6000_mmap(struct file *file, struct vm_area_struct * vma)
1525{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001526 struct tm6000_fh *fh = file->private_data;
Hans Verkuil14a09da2012-06-24 07:26:46 -03001527 struct tm6000_core *dev = fh->dev;
1528 int res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001529
Hans Verkuil14a09da2012-06-24 07:26:46 -03001530 if (mutex_lock_interruptible(&dev->lock))
1531 return -ERESTARTSYS;
1532 res = videobuf_mmap_mapper(&fh->vb_vidq, vma);
1533 mutex_unlock(&dev->lock);
1534 return res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001535}
1536
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001537static struct v4l2_file_operations tm6000_fops = {
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001538 .owner = THIS_MODULE,
1539 .open = tm6000_open,
1540 .release = tm6000_release,
1541 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
1542 .read = tm6000_read,
1543 .poll = tm6000_poll,
1544 .mmap = tm6000_mmap,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001545};
1546
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001547static const struct v4l2_ioctl_ops video_ioctl_ops = {
1548 .vidioc_querycap = vidioc_querycap,
1549 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1550 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1551 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1552 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1553 .vidioc_s_std = vidioc_s_std,
1554 .vidioc_enum_input = vidioc_enum_input,
1555 .vidioc_g_input = vidioc_g_input,
1556 .vidioc_s_input = vidioc_s_input,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001557 .vidioc_g_tuner = vidioc_g_tuner,
1558 .vidioc_s_tuner = vidioc_s_tuner,
1559 .vidioc_g_frequency = vidioc_g_frequency,
1560 .vidioc_s_frequency = vidioc_s_frequency,
1561 .vidioc_streamon = vidioc_streamon,
1562 .vidioc_streamoff = vidioc_streamoff,
1563 .vidioc_reqbufs = vidioc_reqbufs,
1564 .vidioc_querybuf = vidioc_querybuf,
1565 .vidioc_qbuf = vidioc_qbuf,
1566 .vidioc_dqbuf = vidioc_dqbuf,
Hans Verkuil770056c2012-09-11 11:50:37 -03001567 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1568 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001569};
1570
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001571static struct video_device tm6000_template = {
1572 .name = "tm6000",
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001573 .fops = &tm6000_fops,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001574 .ioctl_ops = &video_ioctl_ops,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001575 .release = video_device_release,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001576 .tvnorms = TM6000_STD,
1577 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001578};
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001579
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001580static const struct v4l2_file_operations radio_fops = {
Stefan Ringel1f385712011-05-09 16:54:01 -03001581 .owner = THIS_MODULE,
1582 .open = tm6000_open,
Hans Verkuil52dec542012-09-11 11:53:51 -03001583 .poll = v4l2_ctrl_poll,
Stefan Ringel1f385712011-05-09 16:54:01 -03001584 .release = tm6000_release,
1585 .unlocked_ioctl = video_ioctl2,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001586};
1587
1588static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001589 .vidioc_querycap = vidioc_querycap,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001590 .vidioc_g_tuner = radio_g_tuner,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001591 .vidioc_s_tuner = radio_s_tuner,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001592 .vidioc_g_frequency = vidioc_g_frequency,
1593 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuil770056c2012-09-11 11:50:37 -03001594 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1595 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001596};
1597
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001598static struct video_device tm6000_radio_template = {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001599 .name = "tm6000",
1600 .fops = &radio_fops,
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001601 .ioctl_ops = &radio_ioctl_ops,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001602};
1603
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001604/* -----------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001605 * Initialization and module stuff
1606 * ------------------------------------------------------------------
1607 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001608
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001609static struct video_device *vdev_init(struct tm6000_core *dev,
1610 const struct video_device
1611 *template, const char *type_name)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001612{
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001613 struct video_device *vfd;
1614
1615 vfd = video_device_alloc();
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001616 if (NULL == vfd)
1617 return NULL;
1618
1619 *vfd = *template;
1620 vfd->v4l2_dev = &dev->v4l2_dev;
1621 vfd->release = video_device_release;
1622 vfd->debug = tm6000_debug;
1623 vfd->lock = &dev->lock;
Hans Verkuil770056c2012-09-11 11:50:37 -03001624 set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001625
1626 snprintf(vfd->name, sizeof(vfd->name), "%s %s", dev->name, type_name);
1627
1628 video_set_drvdata(vfd, dev);
1629 return vfd;
1630}
1631
1632int tm6000_v4l2_register(struct tm6000_core *dev)
1633{
Hans Verkuil9f747352013-01-31 08:23:01 -03001634 int ret = 0;
1635
1636 v4l2_ctrl_handler_init(&dev->ctrl_handler, 6);
1637 v4l2_ctrl_handler_init(&dev->radio_ctrl_handler, 2);
1638 v4l2_ctrl_new_std(&dev->radio_ctrl_handler, &tm6000_radio_ctrl_ops,
1639 V4L2_CID_AUDIO_MUTE, 0, 1, 1, 0);
1640 v4l2_ctrl_new_std(&dev->radio_ctrl_handler, &tm6000_radio_ctrl_ops,
1641 V4L2_CID_AUDIO_VOLUME, -15, 15, 1, 0);
1642 v4l2_ctrl_new_std(&dev->ctrl_handler, &tm6000_ctrl_ops,
1643 V4L2_CID_BRIGHTNESS, 0, 255, 1, 54);
1644 v4l2_ctrl_new_std(&dev->ctrl_handler, &tm6000_ctrl_ops,
1645 V4L2_CID_CONTRAST, 0, 255, 1, 119);
1646 v4l2_ctrl_new_std(&dev->ctrl_handler, &tm6000_ctrl_ops,
1647 V4L2_CID_SATURATION, 0, 255, 1, 112);
1648 v4l2_ctrl_new_std(&dev->ctrl_handler, &tm6000_ctrl_ops,
1649 V4L2_CID_HUE, -128, 127, 1, 0);
1650 v4l2_ctrl_add_handler(&dev->ctrl_handler,
1651 &dev->radio_ctrl_handler, NULL);
1652
1653 if (dev->radio_ctrl_handler.error)
1654 ret = dev->radio_ctrl_handler.error;
1655 if (!ret && dev->ctrl_handler.error)
1656 ret = dev->ctrl_handler.error;
1657 if (ret)
1658 goto free_ctrl;
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001659
1660 dev->vfd = vdev_init(dev, &tm6000_template, "video");
1661
1662 if (!dev->vfd) {
1663 printk(KERN_INFO "%s: can't register video device\n",
1664 dev->name);
Hans Verkuil9f747352013-01-31 08:23:01 -03001665 ret = -ENOMEM;
1666 goto free_ctrl;
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001667 }
Hans Verkuil9f747352013-01-31 08:23:01 -03001668 dev->vfd->ctrl_handler = &dev->ctrl_handler;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001669
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001670 /* init video dma queues */
1671 INIT_LIST_HEAD(&dev->vidq.active);
1672 INIT_LIST_HEAD(&dev->vidq.queued);
1673
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001674 ret = video_register_device(dev->vfd, VFL_TYPE_GRABBER, video_nr);
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001675
1676 if (ret < 0) {
1677 printk(KERN_INFO "%s: can't register video device\n",
1678 dev->name);
Hans Verkuil9f747352013-01-31 08:23:01 -03001679 video_device_release(dev->vfd);
1680 dev->vfd = NULL;
1681 goto free_ctrl;
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001682 }
1683
1684 printk(KERN_INFO "%s: registered device %s\n",
1685 dev->name, video_device_node_name(dev->vfd));
1686
Stefan Ringel14169102011-05-09 16:53:49 -03001687 if (dev->caps.has_radio) {
1688 dev->radio_dev = vdev_init(dev, &tm6000_radio_template,
1689 "radio");
1690 if (!dev->radio_dev) {
1691 printk(KERN_INFO "%s: can't register radio device\n",
1692 dev->name);
Peter Senna Tschudin97b55f62012-09-06 11:23:49 -03001693 ret = -ENXIO;
Hans Verkuil9f747352013-01-31 08:23:01 -03001694 goto unreg_video;
Stefan Ringel14169102011-05-09 16:53:49 -03001695 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001696
Hans Verkuil9f747352013-01-31 08:23:01 -03001697 dev->radio_dev->ctrl_handler = &dev->radio_ctrl_handler;
Stefan Ringel14169102011-05-09 16:53:49 -03001698 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
1699 radio_nr);
1700 if (ret < 0) {
1701 printk(KERN_INFO "%s: can't register radio device\n",
1702 dev->name);
Hans Verkuil9f747352013-01-31 08:23:01 -03001703 video_device_release(dev->radio_dev);
1704 goto unreg_video;
Stefan Ringel14169102011-05-09 16:53:49 -03001705 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001706
Stefan Ringel14169102011-05-09 16:53:49 -03001707 printk(KERN_INFO "%s: registered device %s\n",
1708 dev->name, video_device_node_name(dev->radio_dev));
1709 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001710
Dmitri Belimove28f49b2010-02-22 06:32:15 -03001711 printk(KERN_INFO "Trident TVMaster TM5600/TM6000/TM6010 USB2 board (Load status: %d)\n", ret);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001712 return ret;
Hans Verkuil9f747352013-01-31 08:23:01 -03001713
1714unreg_video:
1715 video_unregister_device(dev->vfd);
1716free_ctrl:
1717 v4l2_ctrl_handler_free(&dev->ctrl_handler);
1718 v4l2_ctrl_handler_free(&dev->radio_ctrl_handler);
1719 return ret;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001720}
1721
1722int tm6000_v4l2_unregister(struct tm6000_core *dev)
1723{
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001724 video_unregister_device(dev->vfd);
Michel Ludwig22927e82007-06-14 17:19:59 -03001725
Julian Scheel16427fa2012-10-04 10:04:28 -03001726 /* if URB buffers are still allocated free them now */
1727 tm6000_free_urb_buffers(dev);
1728
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001729 if (dev->radio_dev) {
1730 if (video_is_registered(dev->radio_dev))
1731 video_unregister_device(dev->radio_dev);
1732 else
1733 video_device_release(dev->radio_dev);
1734 dev->radio_dev = NULL;
1735 }
1736
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001737 return 0;
1738}
1739
1740int tm6000_v4l2_exit(void)
1741{
1742 return 0;
1743}
1744
1745module_param(video_nr, int, 0);
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001746MODULE_PARM_DESC(video_nr, "Allow changing video device number");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001747
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001748module_param_named(debug, tm6000_debug, int, 0444);
1749MODULE_PARM_DESC(debug, "activates debug info");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001750
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001751module_param(vid_limit, int, 0644);
1752MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001753
Julian Scheel16427fa2012-10-04 10:04:28 -03001754module_param(keep_urb, bool, 0);
1755MODULE_PARM_DESC(keep_urb, "Keep urb buffers allocated even when the device is closed by the user");