blob: aa85fe31c8353c2a0953808c0a276ff580804a61 [file] [log] [blame]
Mauro Carvalho Chehab75d1e3e2017-12-01 08:47:10 -05001// SPDX-License-Identifier: GPL-2.0
2// tm6000-video.c - driver for TM5600/TM6000/TM6010 USB video capture devices
3//
Mauro Carvalho Chehab32590812018-04-25 05:34:48 -04004// Copyright (c) 2006-2007 Mauro Carvalho Chehab <mchehab@kernel.org>
Mauro Carvalho Chehab75d1e3e2017-12-01 08:47:10 -05005//
6// Copyright (c) 2007 Michel Ludwig <michel.ludwig@gmail.com>
7// - Fixed module load/unload
Thierry Reding3d1a51d2011-08-04 04:14:01 -03008
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03009#include <linux/module.h>
10#include <linux/delay.h>
11#include <linux/errno.h>
12#include <linux/fs.h>
13#include <linux/kernel.h>
14#include <linux/slab.h>
15#include <linux/mm.h>
16#include <linux/ioport.h>
17#include <linux/init.h>
18#include <linux/sched.h>
19#include <linux/random.h>
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030020#include <linux/usb.h>
21#include <linux/videodev2.h>
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -030022#include <media/v4l2-ioctl.h>
Hans Verkuil770056c2012-09-11 11:50:37 -030023#include <media/v4l2-event.h>
Stefan Ringel886a3c02011-05-09 16:53:50 -030024#include <media/tuner.h>
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030025#include <linux/interrupt.h>
26#include <linux/kthread.h>
27#include <linux/highmem.h>
28#include <linux/freezer.h>
29
30#include "tm6000-regs.h"
31#include "tm6000.h"
32
33#define BUFFER_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
34
Michel Ludwig95a83822007-07-24 08:06:45 -030035/* Limits minimum and default number of buffers */
36#define TM6000_MIN_BUF 4
37#define TM6000_DEF_BUF 8
38
Julian Scheel16427fa2012-10-04 10:04:28 -030039#define TM6000_NUM_URB_BUF 8
40
Stefan Ringel5a4b55e2010-05-19 13:58:27 -030041#define TM6000_MAX_ISO_PACKETS 46 /* Max number of ISO packets */
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -030042
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030043/* Declare static vars that will be used as parameters */
44static unsigned int vid_limit = 16; /* Video memory limit, in Mb */
45static int video_nr = -1; /* /dev/videoN, -1 for autodetect */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -030046static int radio_nr = -1; /* /dev/radioN, -1 for autodetect */
Mauro Carvalho Chehabb391b0e2012-12-20 15:21:23 -020047static bool keep_urb; /* keep urb buffers allocated */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030048
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030049/* Debug level */
50int tm6000_debug;
Mauro Carvalho Chehabfaa7c132010-06-04 21:08:25 -030051EXPORT_SYMBOL_GPL(tm6000_debug);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030052
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030053static struct tm6000_fmt format[] = {
54 {
55 .name = "4:2:2, packed, YVY2",
56 .fourcc = V4L2_PIX_FMT_YUYV,
57 .depth = 16,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -030058 }, {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030059 .name = "4:2:2, packed, UYVY",
60 .fourcc = V4L2_PIX_FMT_UYVY,
61 .depth = 16,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -030062 }, {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030063 .name = "A/V + VBI mux packet",
64 .fourcc = V4L2_PIX_FMT_TM6000,
65 .depth = 16,
66 }
67};
68
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030069/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -030070 * DMA and thread functions
71 * ------------------------------------------------------------------
72 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030073
74#define norm_maxw(a) 720
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -030075#define norm_maxh(a) 576
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030076
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030077#define norm_minw(a) norm_maxw(a)
78#define norm_minh(a) norm_maxh(a)
79
80/*
81 * video-buf generic routine to get the next available buffer
82 */
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -030083static inline void get_next_buf(struct tm6000_dmaqueue *dma_q,
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -030084 struct tm6000_buffer **buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030085{
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -030086 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030087
88 if (list_empty(&dma_q->active)) {
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -030089 dprintk(dev, V4L2_DEBUG_QUEUE, "No active queue to serve\n");
Mauro Carvalho Chehab1f9305b2008-11-28 06:44:06 -030090 *buf = NULL;
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -030091 return;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030092 }
93
94 *buf = list_entry(dma_q->active.next,
95 struct tm6000_buffer, vb.queue);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030096}
97
98/*
99 * Announces that a buffer were filled and request the next
100 */
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300101static inline void buffer_filled(struct tm6000_core *dev,
102 struct tm6000_dmaqueue *dma_q,
103 struct tm6000_buffer *buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300104{
105 /* Advice that buffer was filled */
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300106 dprintk(dev, V4L2_DEBUG_ISOC, "[%p/%d] wakeup\n", buf, buf->vb.i);
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300107 buf->vb.state = VIDEOBUF_DONE;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300108 buf->vb.field_count++;
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300109 v4l2_get_timestamp(&buf->vb.ts);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300110
111 list_del(&buf->vb.queue);
112 wake_up(&buf->vb.done);
113}
114
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300115/*
116 * Identify the tm5600/6000 buffer header type and properly handles
117 */
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300118static int copy_streams(u8 *data, unsigned long len,
119 struct urb *urb)
Mauro Carvalho Chehabe2c95002007-09-19 15:39:22 -0300120{
121 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300122 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Hans Verkuil81730902012-04-20 07:30:48 -0300123 u8 *ptr = data, *endp = data+len;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300124 unsigned long header = 0;
125 int rc = 0;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300126 unsigned int cmd, cpysize, pktsize, size, field, block, line, pos = 0;
Jarod Wilsoncc73b4b2011-04-11 18:49:24 -0300127 struct tm6000_buffer *vbuf = NULL;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300128 char *voutp = NULL;
129 unsigned int linewidth;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300130
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300131 if (!dev->radio) {
132 /* get video buffer */
133 get_next_buf(dma_q, &vbuf);
134
135 if (!vbuf)
136 return rc;
137 voutp = videobuf_to_vmalloc(&vbuf->vb);
138
139 if (!voutp)
140 return 0;
141 }
Mauro Carvalho Chehabe2c95002007-09-19 15:39:22 -0300142
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300143 for (ptr = data; ptr < endp;) {
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300144 if (!dev->isoc_ctl.cmd) {
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300145 /* Header */
146 if (dev->isoc_ctl.tmp_buf_len > 0) {
147 /* from last urb or packet */
148 header = dev->isoc_ctl.tmp_buf;
149 if (4 - dev->isoc_ctl.tmp_buf_len > 0) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300150 memcpy((u8 *)&header +
Mauro Carvalho Chehab801dd3b2010-05-02 17:14:33 -0300151 dev->isoc_ctl.tmp_buf_len,
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300152 ptr,
Mauro Carvalho Chehab801dd3b2010-05-02 17:14:33 -0300153 4 - dev->isoc_ctl.tmp_buf_len);
154 ptr += 4 - dev->isoc_ctl.tmp_buf_len;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300155 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300156 dev->isoc_ctl.tmp_buf_len = 0;
157 } else {
158 if (ptr + 3 >= endp) {
159 /* have incomplete header */
160 dev->isoc_ctl.tmp_buf_len = endp - ptr;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300161 memcpy(&dev->isoc_ctl.tmp_buf, ptr,
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300162 dev->isoc_ctl.tmp_buf_len);
163 return rc;
164 }
165 /* Seek for sync */
166 for (; ptr < endp - 3; ptr++) {
167 if (*(ptr + 3) == 0x47)
168 break;
169 }
170 /* Get message header */
171 header = *(unsigned long *)ptr;
172 ptr += 4;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300173 }
Mauro Carvalho Chehab23ba9462010-06-07 11:57:28 -0300174
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300175 /* split the header fields */
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300176 size = ((header & 0x7e) << 1);
177 if (size > 0)
178 size -= 4;
179 block = (header >> 7) & 0xf;
180 field = (header >> 11) & 0x1;
181 line = (header >> 12) & 0x1ff;
182 cmd = (header >> 21) & 0x7;
183 /* Validates haeder fields */
184 if (size > TM6000_URB_MSG_LEN)
185 size = TM6000_URB_MSG_LEN;
186 pktsize = TM6000_URB_MSG_LEN;
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300187 /*
188 * calculate position in buffer and change the buffer
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300189 */
190 switch (cmd) {
191 case TM6000_URB_MSG_VIDEO:
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300192 if (!dev->radio) {
193 if ((dev->isoc_ctl.vfield != field) &&
194 (field == 1)) {
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300195 /*
196 * Announces that a new buffer
197 * were filled
198 */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300199 buffer_filled(dev, dma_q, vbuf);
200 dprintk(dev, V4L2_DEBUG_ISOC,
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300201 "new buffer filled\n");
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300202 get_next_buf(dma_q, &vbuf);
203 if (!vbuf)
204 return rc;
205 voutp = videobuf_to_vmalloc(&vbuf->vb);
206 if (!voutp)
207 return rc;
208 memset(voutp, 0, vbuf->vb.size);
209 }
210 linewidth = vbuf->vb.width << 1;
211 pos = ((line << 1) - field - 1) *
212 linewidth + block * TM6000_URB_MSG_LEN;
213 /* Don't allow to write out of the buffer */
214 if (pos + size > vbuf->vb.size)
215 cmd = TM6000_URB_MSG_ERR;
216 dev->isoc_ctl.vfield = field;
Jarod Wilsoncc73b4b2011-04-11 18:49:24 -0300217 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300218 break;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300219 case TM6000_URB_MSG_VBI:
Mauro Carvalho Chehab23ba9462010-06-07 11:57:28 -0300220 break;
221 case TM6000_URB_MSG_AUDIO:
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300222 case TM6000_URB_MSG_PTS:
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300223 size = pktsize; /* Size is always 180 bytes */
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300224 break;
Mauro Carvalho Chehabcc6c60d2007-09-19 16:24:05 -0300225 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300226 } else {
227 /* Continue the last copy */
228 cmd = dev->isoc_ctl.cmd;
229 size = dev->isoc_ctl.size;
230 pos = dev->isoc_ctl.pos;
231 pktsize = dev->isoc_ctl.pktsize;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300232 field = dev->isoc_ctl.field;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300233 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300234 cpysize = (endp - ptr > size) ? size : endp - ptr;
235 if (cpysize) {
236 /* copy data in different buffers */
237 switch (cmd) {
238 case TM6000_URB_MSG_VIDEO:
239 /* Fills video buffer */
240 if (vbuf)
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300241 memcpy(&voutp[pos], ptr, cpysize);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300242 break;
Stefan Ringel7ecff8c2011-05-09 16:54:00 -0300243 case TM6000_URB_MSG_AUDIO: {
244 int i;
245 for (i = 0; i < cpysize; i += 2)
246 swab16s((u16 *)(ptr + i));
Dmitri Belimov73f4d262010-09-20 17:07:15 -0300247
Mauro Carvalho Chehabb17b8692010-06-03 17:16:28 -0300248 tm6000_call_fillbuf(dev, TM6000_AUDIO, ptr, cpysize);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300249 break;
Stefan Ringel7ecff8c2011-05-09 16:54:00 -0300250 }
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300251 case TM6000_URB_MSG_VBI:
252 /* Need some code to copy vbi buffer */
253 break;
Stefan Ringel2f349da2011-05-09 16:54:02 -0300254 case TM6000_URB_MSG_PTS: {
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300255 /* Need some code to copy pts */
Stefan Ringel2f349da2011-05-09 16:54:02 -0300256 u32 pts;
257 pts = *(u32 *)ptr;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300258 dprintk(dev, V4L2_DEBUG_ISOC, "field %d, PTS %x",
259 field, pts);
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300260 break;
261 }
Stefan Ringel2f349da2011-05-09 16:54:02 -0300262 }
Mauro Carvalho Chehaba2286182007-09-22 02:06:25 -0300263 }
Mauro Carvalho Chehabccfb3022010-06-30 17:24:28 -0300264 if (ptr + pktsize > endp) {
Thierry Reding3d1a51d2011-08-04 04:14:01 -0300265 /*
266 * End of URB packet, but cmd processing is not
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300267 * complete. Preserve the state for a next packet
268 */
269 dev->isoc_ctl.pos = pos + cpysize;
270 dev->isoc_ctl.size = size - cpysize;
271 dev->isoc_ctl.cmd = cmd;
Stefan Ringel423c79e2011-05-21 03:05:38 -0300272 dev->isoc_ctl.field = field;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300273 dev->isoc_ctl.pktsize = pktsize - (endp - ptr);
Mauro Carvalho Chehabccfb3022010-06-30 17:24:28 -0300274 ptr += endp - ptr;
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300275 } else {
276 dev->isoc_ctl.cmd = 0;
277 ptr += pktsize;
278 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300279 }
Mauro Carvalho Chehaba2286182007-09-22 02:06:25 -0300280 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300281}
Stefan Ringel83cb9a52010-06-01 12:47:42 -0300282
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300283/*
284 * Identify the tm5600/6000 buffer header type and properly handles
285 */
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300286static int copy_multiplexed(u8 *ptr, unsigned long len,
287 struct urb *urb)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300288{
289 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300290 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
291 unsigned int pos = dev->isoc_ctl.pos, cpysize;
292 int rc = 1;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300293 struct tm6000_buffer *buf;
294 char *outp = NULL;
295
296 get_next_buf(dma_q, &buf);
297 if (buf)
298 outp = videobuf_to_vmalloc(&buf->vb);
299
300 if (!outp)
301 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300302
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300303 while (len > 0) {
304 cpysize = min(len, buf->vb.size-pos);
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300305 memcpy(&outp[pos], ptr, cpysize);
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300306 pos += cpysize;
307 ptr += cpysize;
308 len -= cpysize;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300309 if (pos >= buf->vb.size) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300310 pos = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300311 /* Announces that a new buffer were filled */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300312 buffer_filled(dev, dma_q, buf);
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300313 dprintk(dev, V4L2_DEBUG_ISOC, "new buffer filled\n");
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300314 get_next_buf(dma_q, &buf);
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300315 if (!buf)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300316 break;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300317 outp = videobuf_to_vmalloc(&(buf->vb));
318 if (!outp)
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300319 return rc;
320 pos = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300321 }
322 }
323
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300324 dev->isoc_ctl.pos = pos;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300325 return rc;
326}
327
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300328static inline void print_err_status(struct tm6000_core *dev,
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300329 int packet, int status)
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300330{
331 char *errmsg = "Unknown";
332
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300333 switch (status) {
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300334 case -ENOENT:
Colin Ian Kingb436e262017-11-02 06:11:53 -0400335 errmsg = "unlinked synchronously";
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300336 break;
337 case -ECONNRESET:
Colin Ian Kingb436e262017-11-02 06:11:53 -0400338 errmsg = "unlinked asynchronously";
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300339 break;
340 case -ENOSR:
341 errmsg = "Buffer error (overrun)";
342 break;
343 case -EPIPE:
344 errmsg = "Stalled (device not responding)";
345 break;
346 case -EOVERFLOW:
347 errmsg = "Babble (bad cable?)";
348 break;
349 case -EPROTO:
350 errmsg = "Bit-stuff error (bad cable?)";
351 break;
352 case -EILSEQ:
353 errmsg = "CRC/Timeout (could be anything)";
354 break;
355 case -ETIME:
356 errmsg = "Device does not respond";
357 break;
358 }
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300359 if (packet < 0) {
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300360 dprintk(dev, V4L2_DEBUG_QUEUE, "URB status %d [%s].\n",
361 status, errmsg);
362 } else {
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300363 dprintk(dev, V4L2_DEBUG_QUEUE, "URB packet %d, status %d [%s].\n",
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300364 packet, status, errmsg);
365 }
366}
367
368
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300369/*
370 * Controls the isoc copy of each urb packet
371 */
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300372static inline int tm6000_isoc_copy(struct urb *urb)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300373{
374 struct tm6000_dmaqueue *dma_q = urb->context;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300375 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
376 int i, len = 0, rc = 1, status;
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300377 char *p;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300378
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300379 if (urb->status < 0) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300380 print_err_status(dev, -1, urb->status);
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300381 return 0;
382 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300383
384 for (i = 0; i < urb->number_of_packets; i++) {
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300385 status = urb->iso_frame_desc[i].status;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300386
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300387 if (status < 0) {
388 print_err_status(dev, i, status);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300389 continue;
Mauro Carvalho Chehab5f796752007-08-27 07:55:05 -0300390 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300391
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300392 len = urb->iso_frame_desc[i].actual_length;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300393
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300394 if (len > 0) {
395 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300396 if (!urb->iso_frame_desc[i].status) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300397 if ((dev->fourcc) == V4L2_PIX_FMT_TM6000) {
398 rc = copy_multiplexed(p, len, urb);
399 if (rc <= 0)
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300400 return rc;
401 } else {
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300402 copy_streams(p, len, urb);
Mauro Carvalho Chehabed0236a2008-04-09 08:07:20 -0300403 }
404 }
Stefan Ringel4b6ed9f2010-05-19 13:58:26 -0300405 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300406 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300407 return rc;
408}
409
410/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300411 * URB control
412 * ------------------------------------------------------------------
413 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300414
415/*
416 * IRQ callback, called by URB callback
417 */
418static void tm6000_irq_callback(struct urb *urb)
419{
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300420 struct tm6000_dmaqueue *dma_q = urb->context;
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300421 struct tm6000_core *dev = container_of(dma_q, struct tm6000_core, vidq);
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300422 int i;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300423
Thierry Reding14f09152011-08-04 04:14:06 -0300424 switch (urb->status) {
425 case 0:
426 case -ETIMEDOUT:
427 break;
428
429 case -ECONNRESET:
430 case -ENOENT:
431 case -ESHUTDOWN:
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300432 return;
433
Thierry Reding14f09152011-08-04 04:14:06 -0300434 default:
435 tm6000_err("urb completion error %d.\n", urb->status);
436 break;
437 }
438
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300439 spin_lock(&dev->slock);
440 tm6000_isoc_copy(urb);
441 spin_unlock(&dev->slock);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300442
Mauro Carvalho Chehabe8a48452008-11-28 07:39:00 -0300443 /* Reset urb buffers */
444 for (i = 0; i < urb->number_of_packets; i++) {
445 urb->iso_frame_desc[i].status = 0;
446 urb->iso_frame_desc[i].actual_length = 0;
447 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300448
Mauro Carvalho Chehabc4acf482008-01-09 22:44:51 -0300449 urb->status = usb_submit_urb(urb, GFP_ATOMIC);
450 if (urb->status)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300451 tm6000_err("urb resubmit failed (error=%i)\n",
452 urb->status);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300453}
454
455/*
Julian Scheel16427fa2012-10-04 10:04:28 -0300456 * Allocate URB buffers
457 */
458static int tm6000_alloc_urb_buffers(struct tm6000_core *dev)
459{
460 int num_bufs = TM6000_NUM_URB_BUF;
461 int i;
462
Markus Elfring7e11d502017-09-14 14:34:39 +0200463 if (dev->urb_buffer)
Julian Scheel16427fa2012-10-04 10:04:28 -0300464 return 0;
465
466 dev->urb_buffer = kmalloc(sizeof(void *)*num_bufs, GFP_KERNEL);
Markus Elfring7e11d502017-09-14 14:34:39 +0200467 if (!dev->urb_buffer)
Julian Scheel16427fa2012-10-04 10:04:28 -0300468 return -ENOMEM;
Julian Scheel16427fa2012-10-04 10:04:28 -0300469
470 dev->urb_dma = kmalloc(sizeof(dma_addr_t *)*num_bufs, GFP_KERNEL);
Markus Elfring7e11d502017-09-14 14:34:39 +0200471 if (!dev->urb_dma)
Julian Scheel16427fa2012-10-04 10:04:28 -0300472 return -ENOMEM;
Julian Scheel16427fa2012-10-04 10:04:28 -0300473
474 for (i = 0; i < num_bufs; i++) {
475 dev->urb_buffer[i] = usb_alloc_coherent(
476 dev->udev, dev->urb_size,
477 GFP_KERNEL, &dev->urb_dma[i]);
478 if (!dev->urb_buffer[i]) {
479 tm6000_err("unable to allocate %i bytes for transfer buffer %i\n",
480 dev->urb_size, i);
481 return -ENOMEM;
482 }
483 memset(dev->urb_buffer[i], 0, dev->urb_size);
484 }
485
486 return 0;
487}
488
489/*
490 * Free URB buffers
491 */
492static int tm6000_free_urb_buffers(struct tm6000_core *dev)
493{
494 int i;
495
Markus Elfring7e11d502017-09-14 14:34:39 +0200496 if (!dev->urb_buffer)
Julian Scheel16427fa2012-10-04 10:04:28 -0300497 return 0;
498
499 for (i = 0; i < TM6000_NUM_URB_BUF; i++) {
500 if (dev->urb_buffer[i]) {
501 usb_free_coherent(dev->udev,
502 dev->urb_size,
503 dev->urb_buffer[i],
504 dev->urb_dma[i]);
505 dev->urb_buffer[i] = NULL;
506 }
507 }
508 kfree(dev->urb_buffer);
509 kfree(dev->urb_dma);
510 dev->urb_buffer = NULL;
511 dev->urb_dma = NULL;
512
513 return 0;
514}
515
516/*
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300517 * Stop and Deallocate URBs
518 */
519static void tm6000_uninit_isoc(struct tm6000_core *dev)
520{
521 struct urb *urb;
522 int i;
523
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300524 dev->isoc_ctl.buf = NULL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300525 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300526 urb = dev->isoc_ctl.urb[i];
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300527 if (urb) {
528 usb_kill_urb(urb);
529 usb_unlink_urb(urb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300530 usb_free_urb(urb);
531 dev->isoc_ctl.urb[i] = NULL;
532 }
533 dev->isoc_ctl.transfer_buffer[i] = NULL;
534 }
535
Julian Scheel16427fa2012-10-04 10:04:28 -0300536 if (!keep_urb)
537 tm6000_free_urb_buffers(dev);
538
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300539 kfree(dev->isoc_ctl.urb);
540 kfree(dev->isoc_ctl.transfer_buffer);
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300541
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300542 dev->isoc_ctl.urb = NULL;
543 dev->isoc_ctl.transfer_buffer = NULL;
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300544 dev->isoc_ctl.num_bufs = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300545}
546
547/*
Julian Scheel16427fa2012-10-04 10:04:28 -0300548 * Assign URBs and start IRQ
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300549 */
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300550static int tm6000_prepare_isoc(struct tm6000_core *dev)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300551{
552 struct tm6000_dmaqueue *dma_q = &dev->vidq;
Julian Scheel16427fa2012-10-04 10:04:28 -0300553 int i, j, sb_size, pipe, size, max_packets;
554 int num_bufs = TM6000_NUM_URB_BUF;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300555 struct urb *urb;
Mauro Carvalho Chehab204193d2008-01-09 18:12:39 -0300556
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300557 /* De-allocates all pending stuff */
558 tm6000_uninit_isoc(dev);
Dmitri Belimov641d2112010-12-22 05:57:46 -0300559 /* Stop interrupt USB pipe */
560 tm6000_ir_int_stop(dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300561
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300562 usb_set_interface(dev->udev,
563 dev->isoc_in.bInterfaceNumber,
564 dev->isoc_in.bAlternateSetting);
565
Dmitri Belimov641d2112010-12-22 05:57:46 -0300566 /* Start interrupt USB pipe */
567 tm6000_ir_int_start(dev);
568
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300569 pipe = usb_rcvisocpipe(dev->udev,
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300570 dev->isoc_in.endp->desc.bEndpointAddress &
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300571 USB_ENDPOINT_NUMBER_MASK);
572
573 size = usb_maxpacket(dev->udev, pipe, usb_pipeout(pipe));
574
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300575 if (size > dev->isoc_in.maxsize)
576 size = dev->isoc_in.maxsize;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300577
578 dev->isoc_ctl.max_pkt_size = size;
579
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300580 max_packets = TM6000_MAX_ISO_PACKETS;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300581 sb_size = max_packets * size;
Julian Scheel16427fa2012-10-04 10:04:28 -0300582 dev->urb_size = sb_size;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300583
584 dev->isoc_ctl.num_bufs = num_bufs;
585
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300586 dev->isoc_ctl.urb = kmalloc(sizeof(void *)*num_bufs, GFP_KERNEL);
Markus Elfring7e11d502017-09-14 14:34:39 +0200587 if (!dev->isoc_ctl.urb)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300588 return -ENOMEM;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300589
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300590 dev->isoc_ctl.transfer_buffer = kmalloc(sizeof(void *)*num_bufs,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300591 GFP_KERNEL);
Julia Lawallf8960ee2010-02-11 03:30:30 -0300592 if (!dev->isoc_ctl.transfer_buffer) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300593 kfree(dev->isoc_ctl.urb);
594 return -ENOMEM;
595 }
596
Mauro Carvalho Chehab68616502016-10-18 17:44:19 -0200597 dprintk(dev, V4L2_DEBUG_QUEUE, "Allocating %d x %d packets (%d bytes) of %d bytes each to handle %u size\n",
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300598 max_packets, num_bufs, sb_size,
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300599 dev->isoc_in.maxsize, size);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300600
Julian Scheel16427fa2012-10-04 10:04:28 -0300601
Mauro Carvalho Chehab485bdbb2015-06-05 09:33:44 -0300602 if (tm6000_alloc_urb_buffers(dev) < 0) {
Julian Scheel16427fa2012-10-04 10:04:28 -0300603 tm6000_err("cannot allocate memory for urb buffers\n");
604
605 /* call free, as some buffers might have been allocated */
606 tm6000_free_urb_buffers(dev);
607 kfree(dev->isoc_ctl.urb);
608 kfree(dev->isoc_ctl.transfer_buffer);
609 return -ENOMEM;
610 }
611
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300612 /* allocate urbs and transfer buffers */
613 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
614 urb = usb_alloc_urb(max_packets, GFP_KERNEL);
615 if (!urb) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300616 tm6000_uninit_isoc(dev);
Christophe JAILLETf81a18d2017-02-22 19:32:19 -0300617 tm6000_free_urb_buffers(dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300618 return -ENOMEM;
619 }
620 dev->isoc_ctl.urb[i] = urb;
621
Julian Scheel16427fa2012-10-04 10:04:28 -0300622 urb->transfer_dma = dev->urb_dma[i];
623 dev->isoc_ctl.transfer_buffer[i] = dev->urb_buffer[i];
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300624
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300625 usb_fill_bulk_urb(urb, dev->udev, pipe,
626 dev->isoc_ctl.transfer_buffer[i], sb_size,
627 tm6000_irq_callback, dma_q);
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300628 urb->interval = dev->isoc_in.endp->desc.bInterval;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300629 urb->number_of_packets = max_packets;
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300630 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300631
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300632 for (j = 0; j < max_packets; j++) {
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300633 urb->iso_frame_desc[j].offset = size * j;
634 urb->iso_frame_desc[j].length = size;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300635 }
636 }
637
638 return 0;
639}
640
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300641static int tm6000_start_thread(struct tm6000_core *dev)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300642{
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300643 struct tm6000_dmaqueue *dma_q = &dev->vidq;
644 int i;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300645
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300646 dma_q->frame = 0;
647 dma_q->ini_jiffies = jiffies;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300648
649 init_waitqueue_head(&dma_q->wq);
650
651 /* submit urbs and enables IRQ */
652 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300653 int rc = usb_submit_urb(dev->isoc_ctl.urb[i], GFP_ATOMIC);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300654 if (rc) {
655 tm6000_err("submit of urb %i failed (error=%i)\n", i,
656 rc);
657 tm6000_uninit_isoc(dev);
658 return rc;
659 }
660 }
661
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300662 return 0;
663}
664
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300665/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300666 * Videobuf operations
667 * ------------------------------------------------------------------
668 */
Michel Ludwig95a83822007-07-24 08:06:45 -0300669
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300670static int
671buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
672{
673 struct tm6000_fh *fh = vq->priv_data;
674
675 *size = fh->fmt->depth * fh->width * fh->height >> 3;
676 if (0 == *count)
Michel Ludwig95a83822007-07-24 08:06:45 -0300677 *count = TM6000_DEF_BUF;
678
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300679 if (*count < TM6000_MIN_BUF)
680 *count = TM6000_MIN_BUF;
Michel Ludwig95a83822007-07-24 08:06:45 -0300681
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300682 while (*size * *count > vid_limit * 1024 * 1024)
683 (*count)--;
Michel Ludwig95a83822007-07-24 08:06:45 -0300684
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300685 return 0;
686}
687
688static void free_buffer(struct videobuf_queue *vq, struct tm6000_buffer *buf)
689{
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300690 struct tm6000_fh *fh = vq->priv_data;
691 struct tm6000_core *dev = fh->dev;
692 unsigned long flags;
693
Mauro Carvalho Chehab09f20822015-05-19 08:00:56 -0300694 BUG_ON(in_interrupt());
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300695
Mauro Carvalho Chehab721f5072008-10-26 09:18:53 -0300696 /* We used to wait for the buffer to finish here, but this didn't work
697 because, as we were keeping the state as VIDEOBUF_QUEUED,
698 videobuf_queue_cancel marked it as finished for us.
699 (Also, it could wedge forever if the hardware was misconfigured.)
700
701 This should be safe; by the time we get here, the buffer isn't
702 queued anymore. If we ever start marking the buffers as
703 VIDEOBUF_ACTIVE, it won't be, though.
704 */
705 spin_lock_irqsave(&dev->slock, flags);
706 if (dev->isoc_ctl.buf == buf)
707 dev->isoc_ctl.buf = NULL;
708 spin_unlock_irqrestore(&dev->slock, flags);
709
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300710 videobuf_vmalloc_free(&buf->vb);
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300711 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300712}
713
714static int
715buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
716 enum v4l2_field field)
717{
718 struct tm6000_fh *fh = vq->priv_data;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300719 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300720 struct tm6000_core *dev = fh->dev;
Thierry Reding88e834a2011-08-04 04:14:12 -0300721 int rc = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300722
723 BUG_ON(NULL == fh->fmt);
724
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300725
726 /* FIXME: It assumes depth=2 */
727 /* The only currently supported format is 16 bits/pixel */
728 buf->vb.size = fh->fmt->depth*fh->width*fh->height >> 3;
729 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
730 return -EINVAL;
731
732 if (buf->fmt != fh->fmt ||
733 buf->vb.width != fh->width ||
734 buf->vb.height != fh->height ||
735 buf->vb.field != field) {
736 buf->fmt = fh->fmt;
737 buf->vb.width = fh->width;
738 buf->vb.height = fh->height;
739 buf->vb.field = field;
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300740 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300741 }
742
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300743 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Curtis McEnroeed7c2212011-06-01 22:21:56 -0400744 rc = videobuf_iolock(vq, &buf->vb, NULL);
745 if (rc != 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300746 goto fail;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300747 }
748
Thierry Reding88e834a2011-08-04 04:14:12 -0300749 if (!dev->isoc_ctl.num_bufs) {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300750 rc = tm6000_prepare_isoc(dev);
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300751 if (rc < 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300752 goto fail;
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300753
754 rc = tm6000_start_thread(dev);
755 if (rc < 0)
756 goto fail;
757
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300758 }
759
Mauro Carvalho Chehab47878f12007-11-15 16:37:35 -0300760 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300761 return 0;
762
763fail:
Mauro Carvalho Chehabee1fc072008-01-10 17:27:26 -0300764 free_buffer(vq, buf);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300765 return rc;
766}
767
768static void
769buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
770{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300771 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300772 struct tm6000_fh *fh = vq->priv_data;
773 struct tm6000_core *dev = fh->dev;
774 struct tm6000_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300775
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -0300776 buf->vb.state = VIDEOBUF_QUEUED;
777 list_add_tail(&buf->vb.queue, &vidq->active);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300778}
779
780static void buffer_release(struct videobuf_queue *vq, struct videobuf_buffer *vb)
781{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300782 struct tm6000_buffer *buf = container_of(vb, struct tm6000_buffer, vb);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300783
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300784 free_buffer(vq, buf);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300785}
786
Julia Lawall63f2ec62017-08-04 08:09:47 -0400787static const struct videobuf_queue_ops tm6000_video_qops = {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300788 .buf_setup = buffer_setup,
789 .buf_prepare = buffer_prepare,
790 .buf_queue = buffer_queue,
791 .buf_release = buffer_release,
792};
793
794/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300795 * IOCTL handling
796 * ------------------------------------------------------------------
797 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300798
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300799static bool is_res_read(struct tm6000_core *dev, struct tm6000_fh *fh)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300800{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300801 /* Is the current fh handling it? if so, that's OK */
802 if (dev->resources == fh && dev->is_res_read)
803 return true;
804
805 return false;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300806}
807
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300808static bool is_res_streaming(struct tm6000_core *dev, struct tm6000_fh *fh)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300809{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300810 /* Is the current fh handling it? if so, that's OK */
811 if (dev->resources == fh)
812 return true;
813
814 return false;
815}
816
817static bool res_get(struct tm6000_core *dev, struct tm6000_fh *fh,
818 bool is_res_read)
819{
820 /* Is the current fh handling it? if so, that's OK */
821 if (dev->resources == fh && dev->is_res_read == is_res_read)
822 return true;
823
824 /* is it free? */
825 if (dev->resources)
826 return false;
827
828 /* grab it */
829 dev->resources = fh;
830 dev->is_res_read = is_res_read;
831 dprintk(dev, V4L2_DEBUG_RES_LOCK, "res: get\n");
832 return true;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300833}
834
835static void res_free(struct tm6000_core *dev, struct tm6000_fh *fh)
836{
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300837 /* Is the current fh handling it? if so, that's OK */
838 if (dev->resources != fh)
839 return;
840
841 dev->resources = NULL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300842 dprintk(dev, V4L2_DEBUG_RES_LOCK, "res: put\n");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300843}
844
845/* ------------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300846 * IOCTL vidioc handling
847 * ------------------------------------------------------------------
848 */
849static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300850 struct v4l2_capability *cap)
851{
Stefan Ringel886a3c02011-05-09 16:53:50 -0300852 struct tm6000_core *dev = ((struct tm6000_fh *)priv)->dev;
Hans Verkuil2c2a0532012-09-11 07:35:30 -0300853 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300854
855 strlcpy(cap->driver, "tm6000", sizeof(cap->driver));
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300856 strlcpy(cap->card, "Trident TVMaster TM5600/6000/6010", sizeof(cap->card));
Hans Verkuil2c2a0532012-09-11 07:35:30 -0300857 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
Stefan Ringel886a3c02011-05-09 16:53:50 -0300858 if (dev->tuner_type != TUNER_ABSENT)
Hans Verkuil2c2a0532012-09-11 07:35:30 -0300859 cap->device_caps |= V4L2_CAP_TUNER;
860 if (vdev->vfl_type == VFL_TYPE_GRABBER)
861 cap->device_caps |= V4L2_CAP_VIDEO_CAPTURE |
862 V4L2_CAP_STREAMING |
863 V4L2_CAP_READWRITE;
864 else
865 cap->device_caps |= V4L2_CAP_RADIO;
866 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS |
867 V4L2_CAP_RADIO | V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE;
Stefan Ringel886a3c02011-05-09 16:53:50 -0300868
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300869 return 0;
870}
871
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300872static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300873 struct v4l2_fmtdesc *f)
874{
Hans Verkuil2c2a0532012-09-11 07:35:30 -0300875 if (f->index >= ARRAY_SIZE(format))
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300876 return -EINVAL;
877
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300878 strlcpy(f->description, format[f->index].name, sizeof(f->description));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300879 f->pixelformat = format[f->index].fourcc;
880 return 0;
881}
882
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300883static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300884 struct v4l2_format *f)
885{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300886 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300887
888 f->fmt.pix.width = fh->width;
889 f->fmt.pix.height = fh->height;
890 f->fmt.pix.field = fh->vb_vidq.field;
891 f->fmt.pix.pixelformat = fh->fmt->fourcc;
Hans Verkuile6185782012-09-11 11:51:02 -0300892 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300893 f->fmt.pix.bytesperline =
894 (f->fmt.pix.width * fh->fmt->depth) >> 3;
895 f->fmt.pix.sizeimage =
896 f->fmt.pix.height * f->fmt.pix.bytesperline;
897
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300898 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300899}
900
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300901static struct tm6000_fmt *format_by_fourcc(unsigned int fourcc)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300902{
903 unsigned int i;
904
905 for (i = 0; i < ARRAY_SIZE(format); i++)
906 if (format[i].fourcc == fourcc)
907 return format+i;
908 return NULL;
909}
910
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300911static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300912 struct v4l2_format *f)
913{
914 struct tm6000_core *dev = ((struct tm6000_fh *)priv)->dev;
915 struct tm6000_fmt *fmt;
916 enum v4l2_field field;
917
918 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
919 if (NULL == fmt) {
Mauro Carvalho Chehab68616502016-10-18 17:44:19 -0200920 dprintk(dev, 2, "Fourcc format (0x%08x) invalid.\n",
921 f->fmt.pix.pixelformat);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300922 return -EINVAL;
923 }
924
925 field = f->fmt.pix.field;
926
Hans Verkuiled572562013-02-01 09:08:46 -0300927 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300928
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300929 tm6000_get_std_res(dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300930
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -0300931 f->fmt.pix.width = dev->width;
932 f->fmt.pix.height = dev->height;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300933
934 f->fmt.pix.width &= ~0x01;
935
936 f->fmt.pix.field = field;
937
938 f->fmt.pix.bytesperline =
939 (f->fmt.pix.width * fmt->depth) >> 3;
940 f->fmt.pix.sizeimage =
941 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuile6185782012-09-11 11:51:02 -0300942 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300943
944 return 0;
945}
946
947/*FIXME: This seems to be generic enough to be at videodev2 */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300948static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300949 struct v4l2_format *f)
950{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300951 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300952 struct tm6000_core *dev = fh->dev;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300953 int ret = vidioc_try_fmt_vid_cap(file, fh, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300954 if (ret < 0)
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300955 return ret;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300956
957 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
958 fh->width = f->fmt.pix.width;
959 fh->height = f->fmt.pix.height;
960 fh->vb_vidq.field = f->fmt.pix.field;
961 fh->type = f->type;
962
963 dev->fourcc = f->fmt.pix.pixelformat;
964
965 tm6000_set_fourcc_format(dev);
966
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300967 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300968}
969
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300970static int vidioc_reqbufs(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300971 struct v4l2_requestbuffers *p)
972{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300973 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300974
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300975 return videobuf_reqbufs(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300976}
977
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300978static int vidioc_querybuf(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300979 struct v4l2_buffer *p)
980{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300981 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300982
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300983 return videobuf_querybuf(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300984}
985
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300986static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300987{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300988 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300989
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300990 return videobuf_qbuf(&fh->vb_vidq, p);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300991}
992
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300993static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300994{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300995 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300996
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -0300997 return videobuf_dqbuf(&fh->vb_vidq, p,
998 file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300999}
1000
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001001static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
1002{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001003 struct tm6000_fh *fh = priv;
1004 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001005
1006 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1007 return -EINVAL;
1008 if (i != fh->type)
1009 return -EINVAL;
1010
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001011 if (!res_get(dev, fh, false))
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001012 return -EBUSY;
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001013 return videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001014}
1015
1016static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1017{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001018 struct tm6000_fh *fh = priv;
1019 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001020
1021 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1022 return -EINVAL;
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001023
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001024 if (i != fh->type)
1025 return -EINVAL;
1026
1027 videobuf_streamoff(&fh->vb_vidq);
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001028 res_free(dev, fh);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001029
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001030 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001031}
1032
Hans Verkuil314527a2013-03-15 06:10:40 -03001033static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id norm)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001034{
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001035 int rc = 0;
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001036 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001037 struct tm6000_core *dev = fh->dev;
1038
Hans Verkuil314527a2013-03-15 06:10:40 -03001039 dev->norm = norm;
Mauro Carvalho Chehab709944e2010-10-07 02:28:24 -03001040 rc = tm6000_init_analog_mode(dev);
Mauro Carvalho Chehab71e7cfa2007-09-06 20:12:10 -03001041
1042 fh->width = dev->width;
1043 fh->height = dev->height;
1044
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001045 if (rc < 0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001046 return rc;
1047
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001048 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_std, dev->norm);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001049
1050 return 0;
1051}
1052
Hans Verkuil804be2d2013-06-03 05:36:44 -03001053static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *norm)
1054{
1055 struct tm6000_fh *fh = priv;
1056 struct tm6000_core *dev = fh->dev;
1057
1058 *norm = dev->norm;
1059 return 0;
1060}
1061
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001062static const char *iname[] = {
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001063 [TM6000_INPUT_TV] = "Television",
1064 [TM6000_INPUT_COMPOSITE1] = "Composite 1",
1065 [TM6000_INPUT_COMPOSITE2] = "Composite 2",
1066 [TM6000_INPUT_SVIDEO] = "S-Video",
1067};
1068
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001069static int vidioc_enum_input(struct file *file, void *priv,
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001070 struct v4l2_input *i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001071{
Dmitri Belimov2aefbc12011-03-17 21:08:55 -03001072 struct tm6000_fh *fh = priv;
1073 struct tm6000_core *dev = fh->dev;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001074 unsigned int n;
Dmitri Belimov2aefbc12011-03-17 21:08:55 -03001075
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001076 n = i->index;
1077 if (n >= 3)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001078 return -EINVAL;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001079
1080 if (!dev->vinput[n].type)
1081 return -EINVAL;
1082
1083 i->index = n;
1084
1085 if (dev->vinput[n].type == TM6000_INPUT_TV)
1086 i->type = V4L2_INPUT_TYPE_TUNER;
1087 else
1088 i->type = V4L2_INPUT_TYPE_CAMERA;
1089
1090 strcpy(i->name, iname[dev->vinput[n].type]);
1091
1092 i->std = TM6000_STD;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001093
1094 return 0;
1095}
1096
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001097static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001098{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001099 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001100 struct tm6000_core *dev = fh->dev;
1101
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001102 *i = dev->input;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001103
1104 return 0;
1105}
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001106
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001107static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001108{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001109 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001110 struct tm6000_core *dev = fh->dev;
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001111 int rc = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001112
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001113 if (i >= 3)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001114 return -EINVAL;
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001115 if (!dev->vinput[i].type)
1116 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001117
Stefan Ringelb8f7bd82011-05-09 16:53:52 -03001118 dev->input = i;
1119
Hans Verkuil804be2d2013-06-03 05:36:44 -03001120 rc = vidioc_s_std(file, priv, dev->norm);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001121
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001122 return rc;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001123}
1124
Stefan Ringel886a3c02011-05-09 16:53:50 -03001125/* --- controls ---------------------------------------------- */
Hans Verkuil9f747352013-01-31 08:23:01 -03001126
1127static int tm6000_s_ctrl(struct v4l2_ctrl *ctrl)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001128{
Hans Verkuil9f747352013-01-31 08:23:01 -03001129 struct tm6000_core *dev = container_of(ctrl->handler, struct tm6000_core, ctrl_handler);
1130 u8 val = ctrl->val;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001131
1132 switch (ctrl->id) {
1133 case V4L2_CID_CONTRAST:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001134 tm6000_set_reg(dev, TM6010_REQ07_R08_LUMA_CONTRAST_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001135 return 0;
1136 case V4L2_CID_BRIGHTNESS:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001137 tm6000_set_reg(dev, TM6010_REQ07_R09_LUMA_BRIGHTNESS_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001138 return 0;
1139 case V4L2_CID_SATURATION:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001140 tm6000_set_reg(dev, TM6010_REQ07_R0A_CHROMA_SATURATION_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001141 return 0;
1142 case V4L2_CID_HUE:
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001143 tm6000_set_reg(dev, TM6010_REQ07_R0B_CHROMA_HUE_PHASE_ADJ, val);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001144 return 0;
Hans Verkuil9f747352013-01-31 08:23:01 -03001145 }
1146 return -EINVAL;
1147}
1148
1149static const struct v4l2_ctrl_ops tm6000_ctrl_ops = {
1150 .s_ctrl = tm6000_s_ctrl,
1151};
1152
1153static int tm6000_radio_s_ctrl(struct v4l2_ctrl *ctrl)
1154{
1155 struct tm6000_core *dev = container_of(ctrl->handler,
1156 struct tm6000_core, radio_ctrl_handler);
1157 u8 val = ctrl->val;
1158
1159 switch (ctrl->id) {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001160 case V4L2_CID_AUDIO_MUTE:
1161 dev->ctl_mute = val;
1162 tm6000_tvaudio_set_mute(dev, val);
1163 return 0;
1164 case V4L2_CID_AUDIO_VOLUME:
1165 dev->ctl_volume = val;
1166 tm6000_set_volume(dev, val);
1167 return 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001168 }
1169 return -EINVAL;
1170}
1171
Hans Verkuil9f747352013-01-31 08:23:01 -03001172static const struct v4l2_ctrl_ops tm6000_radio_ctrl_ops = {
1173 .s_ctrl = tm6000_radio_s_ctrl,
1174};
1175
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001176static int vidioc_g_tuner(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001177 struct v4l2_tuner *t)
1178{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001179 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001180 struct tm6000_core *dev = fh->dev;
1181
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001182 if (UNSET == dev->tuner_type)
1183 return -ENOTTY;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001184 if (0 != t->index)
1185 return -EINVAL;
1186
1187 strcpy(t->name, "Television");
1188 t->type = V4L2_TUNER_ANALOG_TV;
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001189 t->capability = V4L2_TUNER_CAP_NORM | V4L2_TUNER_CAP_STEREO;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001190 t->rangehigh = 0xffffffffUL;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001191 t->rxsubchans = V4L2_TUNER_SUB_STEREO;
1192
1193 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
1194
1195 t->audmode = dev->amode;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001196
1197 return 0;
1198}
1199
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001200static int vidioc_s_tuner(struct file *file, void *priv,
Hans Verkuil2f73c7c2013-03-15 06:10:06 -03001201 const struct v4l2_tuner *t)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001202{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001203 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001204 struct tm6000_core *dev = fh->dev;
1205
1206 if (UNSET == dev->tuner_type)
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001207 return -ENOTTY;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001208 if (0 != t->index)
1209 return -EINVAL;
1210
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001211 if (t->audmode > V4L2_TUNER_MODE_STEREO)
1212 dev->amode = V4L2_TUNER_MODE_STEREO;
1213 else
1214 dev->amode = t->audmode;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001215 dprintk(dev, 3, "audio mode: %x\n", t->audmode);
1216
1217 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Stefan Ringel0f6040e2011-05-09 16:53:53 -03001218
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001219 return 0;
1220}
1221
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001222static int vidioc_g_frequency(struct file *file, void *priv,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001223 struct v4l2_frequency *f)
1224{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001225 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001226 struct tm6000_core *dev = fh->dev;
1227
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001228 if (UNSET == dev->tuner_type)
1229 return -ENOTTY;
1230 if (f->tuner)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001231 return -EINVAL;
1232
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001233 f->frequency = dev->freq;
1234
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -03001235 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_frequency, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001236
1237 return 0;
1238}
1239
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001240static int vidioc_s_frequency(struct file *file, void *priv,
Hans Verkuilb530a442013-03-19 04:09:26 -03001241 const struct v4l2_frequency *f)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001242{
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001243 struct tm6000_fh *fh = priv;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001244 struct tm6000_core *dev = fh->dev;
1245
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001246 if (UNSET == dev->tuner_type)
1247 return -ENOTTY;
1248 if (f->tuner != 0)
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001249 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001250
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001251 dev->freq = f->frequency;
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001252 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, f);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001253
1254 return 0;
1255}
1256
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001257static int radio_g_tuner(struct file *file, void *priv,
1258 struct v4l2_tuner *t)
1259{
1260 struct tm6000_fh *fh = file->private_data;
1261 struct tm6000_core *dev = fh->dev;
1262
1263 if (0 != t->index)
1264 return -EINVAL;
1265
1266 memset(t, 0, sizeof(*t));
1267 strcpy(t->name, "Radio");
1268 t->type = V4L2_TUNER_RADIO;
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001269 t->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
Stefan Ringel886a3c02011-05-09 16:53:50 -03001270 t->rxsubchans = V4L2_TUNER_SUB_STEREO;
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001271 t->audmode = V4L2_TUNER_MODE_STEREO;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001272
1273 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
1274
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001275 return 0;
1276}
1277
1278static int radio_s_tuner(struct file *file, void *priv,
Hans Verkuil2f73c7c2013-03-15 06:10:06 -03001279 const struct v4l2_tuner *t)
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001280{
1281 struct tm6000_fh *fh = file->private_data;
1282 struct tm6000_core *dev = fh->dev;
1283
1284 if (0 != t->index)
1285 return -EINVAL;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001286 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001287 return 0;
1288}
1289
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001290/* ------------------------------------------------------------------
1291 File operations for the device
1292 ------------------------------------------------------------------*/
1293
Hans Verkuil14a09da2012-06-24 07:26:46 -03001294static int __tm6000_open(struct file *file)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001295{
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001296 struct video_device *vdev = video_devdata(file);
1297 struct tm6000_core *dev = video_drvdata(file);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001298 struct tm6000_fh *fh;
Mauro Carvalho Chehabe8d04162010-05-18 04:27:27 -03001299 enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Hans Verkuil9f747352013-01-31 08:23:01 -03001300 int rc;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001301 int radio = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001302
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001303 dprintk(dev, V4L2_DEBUG_OPEN, "tm6000: open called (dev=%s)\n",
1304 video_device_node_name(vdev));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001305
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001306 switch (vdev->vfl_type) {
1307 case VFL_TYPE_GRABBER:
1308 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1309 break;
1310 case VFL_TYPE_VBI:
1311 type = V4L2_BUF_TYPE_VBI_CAPTURE;
1312 break;
1313 case VFL_TYPE_RADIO:
1314 radio = 1;
1315 break;
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -04001316 default:
1317 return -EINVAL;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001318 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001319
1320 /* If more than one user, mutex should be added */
1321 dev->users++;
1322
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001323 dprintk(dev, V4L2_DEBUG_OPEN, "open dev=%s type=%s users=%d\n",
1324 video_device_node_name(vdev), v4l2_type_names[type],
1325 dev->users);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001326
1327 /* allocate + initialize per filehandle data */
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001328 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001329 if (NULL == fh) {
1330 dev->users--;
1331 return -ENOMEM;
1332 }
1333
Hans Verkuil770056c2012-09-11 11:50:37 -03001334 v4l2_fh_init(&fh->fh, vdev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001335 file->private_data = fh;
1336 fh->dev = dev;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001337 fh->radio = radio;
1338 dev->radio = radio;
1339 fh->type = type;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001340 dev->fourcc = format[0].fourcc;
1341
1342 fh->fmt = format_by_fourcc(dev->fourcc);
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -03001343
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001344 tm6000_get_std_res(dev);
Mauro Carvalho Chehab4475c042007-09-03 21:51:45 -03001345
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001346 fh->width = dev->width;
1347 fh->height = dev->height;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001348
Mauro Carvalho Chehabe771bdf2018-03-23 07:42:32 -04001349 dprintk(dev, V4L2_DEBUG_OPEN, "Open: fh=%p, dev=%p, dev->vidq=%p\n",
1350 fh, dev, &dev->vidq);
Mauro Carvalho Chehab68616502016-10-18 17:44:19 -02001351 dprintk(dev, V4L2_DEBUG_OPEN, "Open: list_empty queued=%d\n",
1352 list_empty(&dev->vidq.queued));
1353 dprintk(dev, V4L2_DEBUG_OPEN, "Open: list_empty active=%d\n",
1354 list_empty(&dev->vidq.active));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001355
1356 /* initialize hardware on analog mode */
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001357 rc = tm6000_init_analog_mode(dev);
Santosh Kumar Singh1e071032016-12-19 15:10:58 -02001358 if (rc < 0) {
1359 v4l2_fh_exit(&fh->fh);
1360 kfree(fh);
Mauro Carvalho Chehab589851d2010-10-12 12:11:55 -03001361 return rc;
Santosh Kumar Singh1e071032016-12-19 15:10:58 -02001362 }
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001363
Hans Verkuil9f747352013-01-31 08:23:01 -03001364 dev->mode = TM6000_MODE_ANALOG;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001365
Thierry Redingaa4a5832011-08-04 04:14:15 -03001366 if (!fh->radio) {
1367 videobuf_queue_vmalloc_init(&fh->vb_vidq, &tm6000_video_qops,
1368 NULL, &dev->slock,
1369 fh->type,
1370 V4L2_FIELD_INTERLACED,
1371 sizeof(struct tm6000_buffer), fh, &dev->lock);
1372 } else {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001373 dprintk(dev, V4L2_DEBUG_OPEN, "video_open: setting radio device\n");
Stefan Ringel0f6040e2011-05-09 16:53:53 -03001374 tm6000_set_audio_rinput(dev);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001375 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_radio);
1376 tm6000_prepare_isoc(dev);
1377 tm6000_start_thread(dev);
1378 }
Hans Verkuil770056c2012-09-11 11:50:37 -03001379 v4l2_fh_add(&fh->fh);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001380
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001381 return 0;
1382}
1383
Hans Verkuil14a09da2012-06-24 07:26:46 -03001384static int tm6000_open(struct file *file)
1385{
1386 struct video_device *vdev = video_devdata(file);
1387 int res;
1388
1389 mutex_lock(vdev->lock);
1390 res = __tm6000_open(file);
1391 mutex_unlock(vdev->lock);
1392 return res;
1393}
1394
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001395static ssize_t
1396tm6000_read(struct file *file, char __user *data, size_t count, loff_t *pos)
1397{
Hans Verkuil14a09da2012-06-24 07:26:46 -03001398 struct tm6000_fh *fh = file->private_data;
1399 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001400
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001401 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Hans Verkuil14a09da2012-06-24 07:26:46 -03001402 int res;
1403
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001404 if (!res_get(fh->dev, fh, true))
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001405 return -EBUSY;
1406
Hans Verkuil14a09da2012-06-24 07:26:46 -03001407 if (mutex_lock_interruptible(&dev->lock))
1408 return -ERESTARTSYS;
1409 res = videobuf_read_stream(&fh->vb_vidq, data, count, pos, 0,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001410 file->f_flags & O_NONBLOCK);
Hans Verkuil14a09da2012-06-24 07:26:46 -03001411 mutex_unlock(&dev->lock);
1412 return res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001413 }
1414 return 0;
1415}
1416
Al Viroc23e0cb2017-07-03 03:02:56 -04001417static __poll_t
Hans Verkuil14a09da2012-06-24 07:26:46 -03001418__tm6000_poll(struct file *file, struct poll_table_struct *wait)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001419{
Al Viro01699432017-07-03 03:14:15 -04001420 __poll_t req_events = poll_requested_events(wait);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001421 struct tm6000_fh *fh = file->private_data;
1422 struct tm6000_buffer *buf;
Al Viroc23e0cb2017-07-03 03:02:56 -04001423 __poll_t res = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001424
Hans Verkuil770056c2012-09-11 11:50:37 -03001425 if (v4l2_event_pending(&fh->fh))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001426 res = EPOLLPRI;
1427 else if (req_events & EPOLLPRI)
Hans Verkuil770056c2012-09-11 11:50:37 -03001428 poll_wait(file, &fh->fh.wait, wait);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001429 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001430 return res | EPOLLERR;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001431
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001432 if (!!is_res_streaming(fh->dev, fh))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001433 return res | EPOLLERR;
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001434
1435 if (!is_res_read(fh->dev, fh)) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001436 /* streaming capture */
1437 if (list_empty(&fh->vb_vidq.stream))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001438 return res | EPOLLERR;
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001439 buf = list_entry(fh->vb_vidq.stream.next, struct tm6000_buffer, vb.stream);
Hans Verkuil82f0efb2013-02-07 07:05:43 -03001440 poll_wait(file, &buf->vb.done, wait);
1441 if (buf->vb.state == VIDEOBUF_DONE ||
1442 buf->vb.state == VIDEOBUF_ERROR)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001443 return res | EPOLLIN | EPOLLRDNORM;
1444 } else if (req_events & (EPOLLIN | EPOLLRDNORM)) {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001445 /* read() capture */
Hans Verkuil770056c2012-09-11 11:50:37 -03001446 return res | videobuf_poll_stream(file, &fh->vb_vidq, wait);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001447 }
Hans Verkuil770056c2012-09-11 11:50:37 -03001448 return res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001449}
1450
Al Viroc23e0cb2017-07-03 03:02:56 -04001451static __poll_t tm6000_poll(struct file *file, struct poll_table_struct *wait)
Hans Verkuil14a09da2012-06-24 07:26:46 -03001452{
1453 struct tm6000_fh *fh = file->private_data;
1454 struct tm6000_core *dev = fh->dev;
Al Viroc23e0cb2017-07-03 03:02:56 -04001455 __poll_t res;
Hans Verkuil14a09da2012-06-24 07:26:46 -03001456
1457 mutex_lock(&dev->lock);
1458 res = __tm6000_poll(file, wait);
1459 mutex_unlock(&dev->lock);
1460 return res;
1461}
1462
Mauro Carvalho Chehab64d339d2009-09-14 17:16:32 -03001463static int tm6000_release(struct file *file)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001464{
1465 struct tm6000_fh *fh = file->private_data;
1466 struct tm6000_core *dev = fh->dev;
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001467 struct video_device *vdev = video_devdata(file);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001468
Mauro Carvalho Chehab0a34df52010-05-18 00:43:18 -03001469 dprintk(dev, V4L2_DEBUG_OPEN, "tm6000: close called (dev=%s, users=%d)\n",
1470 video_device_node_name(vdev), dev->users);
Michel Ludwig7c3f53e2007-06-16 23:21:48 -03001471
Hans Verkuil14a09da2012-06-24 07:26:46 -03001472 mutex_lock(&dev->lock);
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001473 dev->users--;
1474
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -03001475 res_free(dev, fh);
Thierry Redingdd0c8ab2011-08-04 04:14:13 -03001476
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001477 if (!dev->users) {
Mauro Carvalho Chehabc144c032008-04-09 01:49:19 -03001478 tm6000_uninit_isoc(dev);
Thierry Redingaa4a5832011-08-04 04:14:15 -03001479
Stefan Ringel8159c182011-11-28 15:46:18 -03001480 /* Stop interrupt USB pipe */
1481 tm6000_ir_int_stop(dev);
1482
1483 usb_reset_configuration(dev->udev);
1484
Thierry Reding4be9c8f2011-12-06 09:39:35 -03001485 if (dev->int_in.endp)
Stefan Ringel8159c182011-11-28 15:46:18 -03001486 usb_set_interface(dev->udev,
Thierry Reding875f0e32011-12-06 09:39:36 -03001487 dev->isoc_in.bInterfaceNumber, 2);
Stefan Ringel8159c182011-11-28 15:46:18 -03001488 else
1489 usb_set_interface(dev->udev,
Thierry Reding875f0e32011-12-06 09:39:36 -03001490 dev->isoc_in.bInterfaceNumber, 0);
Stefan Ringel8159c182011-11-28 15:46:18 -03001491
1492 /* Start interrupt USB pipe */
1493 tm6000_ir_int_start(dev);
1494
Thierry Redingaa4a5832011-08-04 04:14:15 -03001495 if (!fh->radio)
1496 videobuf_mmap_free(&fh->vb_vidq);
Mauro Carvalho Chehaba58d35c2007-06-17 17:14:12 -03001497 }
Hans Verkuil770056c2012-09-11 11:50:37 -03001498 v4l2_fh_del(&fh->fh);
1499 v4l2_fh_exit(&fh->fh);
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001500 kfree(fh);
Hans Verkuil14a09da2012-06-24 07:26:46 -03001501 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001502
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001503 return 0;
1504}
1505
1506static int tm6000_mmap(struct file *file, struct vm_area_struct * vma)
1507{
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001508 struct tm6000_fh *fh = file->private_data;
Hans Verkuil14a09da2012-06-24 07:26:46 -03001509 struct tm6000_core *dev = fh->dev;
1510 int res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001511
Hans Verkuil14a09da2012-06-24 07:26:46 -03001512 if (mutex_lock_interruptible(&dev->lock))
1513 return -ERESTARTSYS;
1514 res = videobuf_mmap_mapper(&fh->vb_vidq, vma);
1515 mutex_unlock(&dev->lock);
1516 return res;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001517}
1518
Bhumika Goyalff05c982017-06-29 02:55:23 -04001519static const struct v4l2_file_operations tm6000_fops = {
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001520 .owner = THIS_MODULE,
1521 .open = tm6000_open,
1522 .release = tm6000_release,
1523 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
1524 .read = tm6000_read,
1525 .poll = tm6000_poll,
1526 .mmap = tm6000_mmap,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001527};
1528
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001529static const struct v4l2_ioctl_ops video_ioctl_ops = {
1530 .vidioc_querycap = vidioc_querycap,
1531 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1532 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1533 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1534 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1535 .vidioc_s_std = vidioc_s_std,
Hans Verkuil804be2d2013-06-03 05:36:44 -03001536 .vidioc_g_std = vidioc_g_std,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001537 .vidioc_enum_input = vidioc_enum_input,
1538 .vidioc_g_input = vidioc_g_input,
1539 .vidioc_s_input = vidioc_s_input,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001540 .vidioc_g_tuner = vidioc_g_tuner,
1541 .vidioc_s_tuner = vidioc_s_tuner,
1542 .vidioc_g_frequency = vidioc_g_frequency,
1543 .vidioc_s_frequency = vidioc_s_frequency,
1544 .vidioc_streamon = vidioc_streamon,
1545 .vidioc_streamoff = vidioc_streamoff,
1546 .vidioc_reqbufs = vidioc_reqbufs,
1547 .vidioc_querybuf = vidioc_querybuf,
1548 .vidioc_qbuf = vidioc_qbuf,
1549 .vidioc_dqbuf = vidioc_dqbuf,
Hans Verkuil770056c2012-09-11 11:50:37 -03001550 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1551 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001552};
1553
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001554static struct video_device tm6000_template = {
1555 .name = "tm6000",
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001556 .fops = &tm6000_fops,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001557 .ioctl_ops = &video_ioctl_ops,
Hans Verkuil65b88c02015-03-09 13:34:10 -03001558 .release = video_device_release_empty,
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001559 .tvnorms = TM6000_STD,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001560};
Mauro Carvalho Chehab2a8145d2008-10-25 10:43:04 -03001561
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001562static const struct v4l2_file_operations radio_fops = {
Stefan Ringel1f385712011-05-09 16:54:01 -03001563 .owner = THIS_MODULE,
1564 .open = tm6000_open,
Hans Verkuil52dec542012-09-11 11:53:51 -03001565 .poll = v4l2_ctrl_poll,
Stefan Ringel1f385712011-05-09 16:54:01 -03001566 .release = tm6000_release,
1567 .unlocked_ioctl = video_ioctl2,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001568};
1569
1570static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Hans Verkuil2c2a0532012-09-11 07:35:30 -03001571 .vidioc_querycap = vidioc_querycap,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001572 .vidioc_g_tuner = radio_g_tuner,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001573 .vidioc_s_tuner = radio_s_tuner,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001574 .vidioc_g_frequency = vidioc_g_frequency,
1575 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuil770056c2012-09-11 11:50:37 -03001576 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1577 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001578};
1579
Thierry Reding3d1a51d2011-08-04 04:14:01 -03001580static struct video_device tm6000_radio_template = {
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001581 .name = "tm6000",
1582 .fops = &radio_fops,
Curtis McEnroeed7c2212011-06-01 22:21:56 -04001583 .ioctl_ops = &radio_ioctl_ops,
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001584};
1585
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001586/* -----------------------------------------------------------------
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001587 * Initialization and module stuff
1588 * ------------------------------------------------------------------
1589 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001590
Hans Verkuil65b88c02015-03-09 13:34:10 -03001591static void vdev_init(struct tm6000_core *dev,
1592 struct video_device *vfd,
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001593 const struct video_device
1594 *template, const char *type_name)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001595{
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001596 *vfd = *template;
1597 vfd->v4l2_dev = &dev->v4l2_dev;
Hans Verkuil65b88c02015-03-09 13:34:10 -03001598 vfd->release = video_device_release_empty;
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001599 vfd->lock = &dev->lock;
1600
1601 snprintf(vfd->name, sizeof(vfd->name), "%s %s", dev->name, type_name);
1602
1603 video_set_drvdata(vfd, dev);
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001604}
1605
1606int tm6000_v4l2_register(struct tm6000_core *dev)
1607{
Hans Verkuil9f747352013-01-31 08:23:01 -03001608 int ret = 0;
1609
1610 v4l2_ctrl_handler_init(&dev->ctrl_handler, 6);
1611 v4l2_ctrl_handler_init(&dev->radio_ctrl_handler, 2);
1612 v4l2_ctrl_new_std(&dev->radio_ctrl_handler, &tm6000_radio_ctrl_ops,
1613 V4L2_CID_AUDIO_MUTE, 0, 1, 1, 0);
1614 v4l2_ctrl_new_std(&dev->radio_ctrl_handler, &tm6000_radio_ctrl_ops,
1615 V4L2_CID_AUDIO_VOLUME, -15, 15, 1, 0);
1616 v4l2_ctrl_new_std(&dev->ctrl_handler, &tm6000_ctrl_ops,
1617 V4L2_CID_BRIGHTNESS, 0, 255, 1, 54);
1618 v4l2_ctrl_new_std(&dev->ctrl_handler, &tm6000_ctrl_ops,
1619 V4L2_CID_CONTRAST, 0, 255, 1, 119);
1620 v4l2_ctrl_new_std(&dev->ctrl_handler, &tm6000_ctrl_ops,
1621 V4L2_CID_SATURATION, 0, 255, 1, 112);
1622 v4l2_ctrl_new_std(&dev->ctrl_handler, &tm6000_ctrl_ops,
1623 V4L2_CID_HUE, -128, 127, 1, 0);
1624 v4l2_ctrl_add_handler(&dev->ctrl_handler,
1625 &dev->radio_ctrl_handler, NULL);
1626
1627 if (dev->radio_ctrl_handler.error)
1628 ret = dev->radio_ctrl_handler.error;
1629 if (!ret && dev->ctrl_handler.error)
1630 ret = dev->ctrl_handler.error;
1631 if (ret)
1632 goto free_ctrl;
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001633
Hans Verkuil65b88c02015-03-09 13:34:10 -03001634 vdev_init(dev, &dev->vfd, &tm6000_template, "video");
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001635
Hans Verkuil65b88c02015-03-09 13:34:10 -03001636 dev->vfd.ctrl_handler = &dev->ctrl_handler;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001637
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001638 /* init video dma queues */
1639 INIT_LIST_HEAD(&dev->vidq.active);
1640 INIT_LIST_HEAD(&dev->vidq.queued);
1641
Hans Verkuil65b88c02015-03-09 13:34:10 -03001642 ret = video_register_device(&dev->vfd, VFL_TYPE_GRABBER, video_nr);
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001643
1644 if (ret < 0) {
1645 printk(KERN_INFO "%s: can't register video device\n",
1646 dev->name);
Hans Verkuil9f747352013-01-31 08:23:01 -03001647 goto free_ctrl;
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001648 }
1649
1650 printk(KERN_INFO "%s: registered device %s\n",
Hans Verkuil65b88c02015-03-09 13:34:10 -03001651 dev->name, video_device_node_name(&dev->vfd));
Dmitri Belimov3c61be42011-01-13 00:46:07 -03001652
Stefan Ringel14169102011-05-09 16:53:49 -03001653 if (dev->caps.has_radio) {
Hans Verkuil65b88c02015-03-09 13:34:10 -03001654 vdev_init(dev, &dev->radio_dev, &tm6000_radio_template,
Stefan Ringel14169102011-05-09 16:53:49 -03001655 "radio");
Hans Verkuil65b88c02015-03-09 13:34:10 -03001656 dev->radio_dev.ctrl_handler = &dev->radio_ctrl_handler;
1657 ret = video_register_device(&dev->radio_dev, VFL_TYPE_RADIO,
Stefan Ringel14169102011-05-09 16:53:49 -03001658 radio_nr);
1659 if (ret < 0) {
1660 printk(KERN_INFO "%s: can't register radio device\n",
1661 dev->name);
Hans Verkuil9f747352013-01-31 08:23:01 -03001662 goto unreg_video;
Stefan Ringel14169102011-05-09 16:53:49 -03001663 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001664
Stefan Ringel14169102011-05-09 16:53:49 -03001665 printk(KERN_INFO "%s: registered device %s\n",
Hans Verkuil65b88c02015-03-09 13:34:10 -03001666 dev->name, video_device_node_name(&dev->radio_dev));
Stefan Ringel14169102011-05-09 16:53:49 -03001667 }
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -03001668
Dmitri Belimove28f49b2010-02-22 06:32:15 -03001669 printk(KERN_INFO "Trident TVMaster TM5600/TM6000/TM6010 USB2 board (Load status: %d)\n", ret);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001670 return ret;
Hans Verkuil9f747352013-01-31 08:23:01 -03001671
1672unreg_video:
Hans Verkuil65b88c02015-03-09 13:34:10 -03001673 video_unregister_device(&dev->vfd);
Hans Verkuil9f747352013-01-31 08:23:01 -03001674free_ctrl:
1675 v4l2_ctrl_handler_free(&dev->ctrl_handler);
1676 v4l2_ctrl_handler_free(&dev->radio_ctrl_handler);
1677 return ret;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001678}
1679
1680int tm6000_v4l2_unregister(struct tm6000_core *dev)
1681{
Hans Verkuil65b88c02015-03-09 13:34:10 -03001682 video_unregister_device(&dev->vfd);
Michel Ludwig22927e82007-06-14 17:19:59 -03001683
Julian Scheel16427fa2012-10-04 10:04:28 -03001684 /* if URB buffers are still allocated free them now */
1685 tm6000_free_urb_buffers(dev);
1686
Hans Verkuil65b88c02015-03-09 13:34:10 -03001687 video_unregister_device(&dev->radio_dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001688 return 0;
1689}
1690
1691int tm6000_v4l2_exit(void)
1692{
1693 return 0;
1694}
1695
1696module_param(video_nr, int, 0);
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001697MODULE_PARM_DESC(video_nr, "Allow changing video device number");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001698
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001699module_param_named(debug, tm6000_debug, int, 0444);
1700MODULE_PARM_DESC(debug, "activates debug info");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001701
Ruslan Pisarev60fbfdf2010-10-20 06:35:12 -03001702module_param(vid_limit, int, 0644);
1703MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001704
Julian Scheel16427fa2012-10-04 10:04:28 -03001705module_param(keep_urb, bool, 0);
1706MODULE_PARM_DESC(keep_urb, "Keep urb buffers allocated even when the device is closed by the user");