blob: 82b026985868358595310d66bb7b7dddcadd4dac [file] [log] [blame]
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001/*
2 * Auvitek AU0828 USB Bridge (Analog video support)
3 *
4 * Copyright (C) 2009 Devin Heitmueller <dheitmueller@linuxtv.org>
5 * Copyright (C) 2005-2008 Auvitek International, Ltd.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * As published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 * 02110-1301, USA.
21 */
22
23/* Developer Notes:
24 *
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030025 * The hardware scaler supported is unimplemented
26 * AC97 audio support is unimplemented (only i2s audio mode)
27 *
28 */
29
Mauro Carvalho Chehab83afb322014-08-09 21:47:17 -030030#include "au0828.h"
Shuah Khan50512332016-02-11 21:41:28 -020031#include "au8522.h"
Mauro Carvalho Chehab83afb322014-08-09 21:47:17 -030032
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030033#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030035#include <linux/init.h>
36#include <linux/device.h>
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030037#include <media/v4l2-common.h>
Mauro Carvalho Chehab9822f412016-03-02 10:11:41 -030038#include <media/v4l2-mc.h>
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030039#include <media/v4l2-ioctl.h>
Hans Verkuil83b09422013-02-15 09:14:00 -030040#include <media/v4l2-event.h>
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030041#include <media/tuner.h>
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030042#include "au0828-reg.h"
43
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030044static DEFINE_MUTEX(au0828_sysfs_lock);
45
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030046/* ------------------------------------------------------------------
47 Videobuf operations
48 ------------------------------------------------------------------*/
49
50static unsigned int isoc_debug;
51module_param(isoc_debug, int, 0644);
52MODULE_PARM_DESC(isoc_debug, "enable debug messages [isoc transfers]");
53
54#define au0828_isocdbg(fmt, arg...) \
55do {\
56 if (isoc_debug) { \
Mauro Carvalho Chehab83afb322014-08-09 21:47:17 -030057 pr_info("au0828 %s :"fmt, \
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030058 __func__ , ##arg); \
59 } \
60 } while (0)
61
Hans Verkuilfa09cb92013-03-11 16:10:33 -030062static inline void i2c_gate_ctrl(struct au0828_dev *dev, int val)
63{
64 if (dev->dvb.frontend && dev->dvb.frontend->ops.analog_ops.i2c_gate_ctrl)
65 dev->dvb.frontend->ops.analog_ops.i2c_gate_ctrl(dev->dvb.frontend, val);
66}
67
Devin Heitmueller8b2f0792009-03-11 03:00:40 -030068static inline void print_err_status(struct au0828_dev *dev,
69 int packet, int status)
70{
71 char *errmsg = "Unknown";
72
73 switch (status) {
74 case -ENOENT:
75 errmsg = "unlinked synchronuously";
76 break;
77 case -ECONNRESET:
78 errmsg = "unlinked asynchronuously";
79 break;
80 case -ENOSR:
81 errmsg = "Buffer error (overrun)";
82 break;
83 case -EPIPE:
84 errmsg = "Stalled (device not responding)";
85 break;
86 case -EOVERFLOW:
87 errmsg = "Babble (bad cable?)";
88 break;
89 case -EPROTO:
90 errmsg = "Bit-stuff error (bad cable?)";
91 break;
92 case -EILSEQ:
93 errmsg = "CRC/Timeout (could be anything)";
94 break;
95 case -ETIME:
96 errmsg = "Device does not respond";
97 break;
98 }
99 if (packet < 0) {
100 au0828_isocdbg("URB status %d [%s].\n", status, errmsg);
101 } else {
102 au0828_isocdbg("URB packet %d, status %d [%s].\n",
103 packet, status, errmsg);
104 }
105}
106
107static int check_dev(struct au0828_dev *dev)
108{
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -0300109 if (test_bit(DEV_DISCONNECTED, &dev->dev_state)) {
Mauro Carvalho Chehab83afb322014-08-09 21:47:17 -0300110 pr_info("v4l2 ioctl: device not present\n");
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300111 return -ENODEV;
112 }
113
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -0300114 if (test_bit(DEV_MISCONFIGURED, &dev->dev_state)) {
115 pr_info("v4l2 ioctl: device is misconfigured; close and open it again\n");
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300116 return -EIO;
117 }
118 return 0;
119}
120
121/*
122 * IRQ callback, called by URB callback
123 */
124static void au0828_irq_callback(struct urb *urb)
125{
126 struct au0828_dmaqueue *dma_q = urb->context;
127 struct au0828_dev *dev = container_of(dma_q, struct au0828_dev, vidq);
Devin Heitmueller78ca5002010-10-09 14:43:53 -0300128 unsigned long flags = 0;
Hans Verkuile92ba282012-05-14 10:17:35 -0300129 int i;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300130
131 switch (urb->status) {
132 case 0: /* success */
133 case -ETIMEDOUT: /* NAK */
134 break;
135 case -ECONNRESET: /* kill */
136 case -ENOENT:
137 case -ESHUTDOWN:
138 au0828_isocdbg("au0828_irq_callback called: status kill\n");
139 return;
140 default: /* unknown error */
141 au0828_isocdbg("urb completition error %d.\n", urb->status);
142 break;
143 }
144
145 /* Copy data from URB */
Devin Heitmueller78ca5002010-10-09 14:43:53 -0300146 spin_lock_irqsave(&dev->slock, flags);
Hans Verkuile92ba282012-05-14 10:17:35 -0300147 dev->isoc_ctl.isoc_copy(dev, urb);
Devin Heitmueller78ca5002010-10-09 14:43:53 -0300148 spin_unlock_irqrestore(&dev->slock, flags);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300149
150 /* Reset urb buffers */
151 for (i = 0; i < urb->number_of_packets; i++) {
152 urb->iso_frame_desc[i].status = 0;
153 urb->iso_frame_desc[i].actual_length = 0;
154 }
155 urb->status = 0;
156
157 urb->status = usb_submit_urb(urb, GFP_ATOMIC);
158 if (urb->status) {
159 au0828_isocdbg("urb resubmit failed (error=%i)\n",
160 urb->status);
161 }
Mauro Carvalho Chehabe2147d02014-08-09 21:47:14 -0300162 dev->stream_state = STREAM_ON;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300163}
164
165/*
166 * Stop and Deallocate URBs
167 */
Mauro Carvalho Chehaba094ca42012-10-27 14:00:30 -0300168static void au0828_uninit_isoc(struct au0828_dev *dev)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300169{
170 struct urb *urb;
171 int i;
172
173 au0828_isocdbg("au0828: called au0828_uninit_isoc\n");
174
175 dev->isoc_ctl.nfields = -1;
176 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
177 urb = dev->isoc_ctl.urb[i];
178 if (urb) {
179 if (!irqs_disabled())
180 usb_kill_urb(urb);
181 else
182 usb_unlink_urb(urb);
183
184 if (dev->isoc_ctl.transfer_buffer[i]) {
Daniel Mack997ea582010-04-12 13:17:25 +0200185 usb_free_coherent(dev->usbdev,
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300186 urb->transfer_buffer_length,
187 dev->isoc_ctl.transfer_buffer[i],
188 urb->transfer_dma);
189 }
190 usb_free_urb(urb);
191 dev->isoc_ctl.urb[i] = NULL;
192 }
193 dev->isoc_ctl.transfer_buffer[i] = NULL;
194 }
195
196 kfree(dev->isoc_ctl.urb);
197 kfree(dev->isoc_ctl.transfer_buffer);
198
199 dev->isoc_ctl.urb = NULL;
200 dev->isoc_ctl.transfer_buffer = NULL;
201 dev->isoc_ctl.num_bufs = 0;
Mauro Carvalho Chehabe2147d02014-08-09 21:47:14 -0300202
203 dev->stream_state = STREAM_OFF;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300204}
205
206/*
207 * Allocate URBs and start IRQ
208 */
Mauro Carvalho Chehaba094ca42012-10-27 14:00:30 -0300209static int au0828_init_isoc(struct au0828_dev *dev, int max_packets,
210 int num_bufs, int max_pkt_size,
211 int (*isoc_copy) (struct au0828_dev *dev, struct urb *urb))
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300212{
213 struct au0828_dmaqueue *dma_q = &dev->vidq;
214 int i;
215 int sb_size, pipe;
216 struct urb *urb;
217 int j, k;
218 int rc;
219
220 au0828_isocdbg("au0828: called au0828_prepare_isoc\n");
221
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300222 dev->isoc_ctl.isoc_copy = isoc_copy;
223 dev->isoc_ctl.num_bufs = num_bufs;
224
225 dev->isoc_ctl.urb = kzalloc(sizeof(void *)*num_bufs, GFP_KERNEL);
226 if (!dev->isoc_ctl.urb) {
227 au0828_isocdbg("cannot alloc memory for usb buffers\n");
228 return -ENOMEM;
229 }
230
231 dev->isoc_ctl.transfer_buffer = kzalloc(sizeof(void *)*num_bufs,
232 GFP_KERNEL);
233 if (!dev->isoc_ctl.transfer_buffer) {
234 au0828_isocdbg("cannot allocate memory for usb transfer\n");
235 kfree(dev->isoc_ctl.urb);
236 return -ENOMEM;
237 }
238
239 dev->isoc_ctl.max_pkt_size = max_pkt_size;
240 dev->isoc_ctl.buf = NULL;
241
242 sb_size = max_packets * dev->isoc_ctl.max_pkt_size;
243
244 /* allocate urbs and transfer buffers */
245 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
246 urb = usb_alloc_urb(max_packets, GFP_KERNEL);
247 if (!urb) {
248 au0828_isocdbg("cannot alloc isoc_ctl.urb %i\n", i);
249 au0828_uninit_isoc(dev);
250 return -ENOMEM;
251 }
252 dev->isoc_ctl.urb[i] = urb;
253
Daniel Mack997ea582010-04-12 13:17:25 +0200254 dev->isoc_ctl.transfer_buffer[i] = usb_alloc_coherent(dev->usbdev,
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300255 sb_size, GFP_KERNEL, &urb->transfer_dma);
256 if (!dev->isoc_ctl.transfer_buffer[i]) {
257 printk("unable to allocate %i bytes for transfer"
258 " buffer %i%s\n",
259 sb_size, i,
260 in_interrupt() ? " while in int" : "");
261 au0828_uninit_isoc(dev);
262 return -ENOMEM;
263 }
264 memset(dev->isoc_ctl.transfer_buffer[i], 0, sb_size);
265
266 pipe = usb_rcvisocpipe(dev->usbdev,
267 dev->isoc_in_endpointaddr),
268
269 usb_fill_int_urb(urb, dev->usbdev, pipe,
270 dev->isoc_ctl.transfer_buffer[i], sb_size,
271 au0828_irq_callback, dma_q, 1);
272
273 urb->number_of_packets = max_packets;
Devin Heitmuellerfadadb72009-03-22 23:42:26 -0300274 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300275
276 k = 0;
277 for (j = 0; j < max_packets; j++) {
278 urb->iso_frame_desc[j].offset = k;
279 urb->iso_frame_desc[j].length =
280 dev->isoc_ctl.max_pkt_size;
281 k += dev->isoc_ctl.max_pkt_size;
282 }
283 }
284
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300285 /* submit urbs and enables IRQ */
286 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
287 rc = usb_submit_urb(dev->isoc_ctl.urb[i], GFP_ATOMIC);
288 if (rc) {
289 au0828_isocdbg("submit of urb %i failed (error=%i)\n",
290 i, rc);
291 au0828_uninit_isoc(dev);
292 return rc;
293 }
294 }
295
296 return 0;
297}
298
299/*
300 * Announces that a buffer were filled and request the next
301 */
302static inline void buffer_filled(struct au0828_dev *dev,
Lad, Prabhakarc5036d62015-02-24 10:00:29 -0300303 struct au0828_dmaqueue *dma_q,
304 struct au0828_buffer *buf)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300305{
Junghak Sung2d700712015-09-22 10:30:30 -0300306 struct vb2_v4l2_buffer *vb = &buf->vb;
307 struct vb2_queue *q = vb->vb2_buf.vb2_queue;
Lad, Prabhakarc5036d62015-02-24 10:00:29 -0300308
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300309 /* Advice that buffer was filled */
Shuah Khan05439b12015-01-29 13:41:32 -0300310 au0828_isocdbg("[%p/%d] wakeup\n", buf, buf->top_field);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300311
Lad, Prabhakarc5036d62015-02-24 10:00:29 -0300312 if (q->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
Junghak Sung2d700712015-09-22 10:30:30 -0300313 vb->sequence = dev->frame_count++;
Lad, Prabhakarc5036d62015-02-24 10:00:29 -0300314 else
Junghak Sung2d700712015-09-22 10:30:30 -0300315 vb->sequence = dev->vbi_frame_count++;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300316
Junghak Sung2d700712015-09-22 10:30:30 -0300317 vb->field = V4L2_FIELD_INTERLACED;
Junghak Sungd6dd6452015-11-03 08:16:37 -0200318 vb->vb2_buf.timestamp = ktime_get_ns();
Junghak Sung2d700712015-09-22 10:30:30 -0300319 vb2_buffer_done(&vb->vb2_buf, VB2_BUF_STATE_DONE);
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300320}
321
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300322/*
323 * Identify the buffer header type and properly handles
324 */
325static void au0828_copy_video(struct au0828_dev *dev,
326 struct au0828_dmaqueue *dma_q,
327 struct au0828_buffer *buf,
328 unsigned char *p,
329 unsigned char *outp, unsigned long len)
330{
331 void *fieldstart, *startwrite, *startread;
332 int linesdone, currlinedone, offset, lencopy, remain;
333 int bytesperline = dev->width << 1; /* Assumes 16-bit depth @@@@ */
334
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300335 if (len == 0)
336 return;
337
Shuah Khan05439b12015-01-29 13:41:32 -0300338 if (dma_q->pos + len > buf->length)
339 len = buf->length - dma_q->pos;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300340
341 startread = p;
342 remain = len;
343
344 /* Interlaces frame */
345 if (buf->top_field)
346 fieldstart = outp;
347 else
348 fieldstart = outp + bytesperline;
349
350 linesdone = dma_q->pos / bytesperline;
351 currlinedone = dma_q->pos % bytesperline;
352 offset = linesdone * bytesperline * 2 + currlinedone;
353 startwrite = fieldstart + offset;
354 lencopy = bytesperline - currlinedone;
355 lencopy = lencopy > remain ? remain : lencopy;
356
Shuah Khan05439b12015-01-29 13:41:32 -0300357 if ((char *)startwrite + lencopy > (char *)outp + buf->length) {
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300358 au0828_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
359 ((char *)startwrite + lencopy) -
Shuah Khan05439b12015-01-29 13:41:32 -0300360 ((char *)outp + buf->length));
361 remain = (char *)outp + buf->length - (char *)startwrite;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300362 lencopy = remain;
363 }
364 if (lencopy <= 0)
365 return;
366 memcpy(startwrite, startread, lencopy);
367
368 remain -= lencopy;
369
370 while (remain > 0) {
371 startwrite += lencopy + bytesperline;
372 startread += lencopy;
373 if (bytesperline > remain)
374 lencopy = remain;
375 else
376 lencopy = bytesperline;
377
378 if ((char *)startwrite + lencopy > (char *)outp +
Shuah Khan05439b12015-01-29 13:41:32 -0300379 buf->length) {
Devin Heitmueller62899a22009-03-15 18:48:52 -0300380 au0828_isocdbg("Overflow %zi bytes past buf end (2)\n",
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300381 ((char *)startwrite + lencopy) -
Shuah Khan05439b12015-01-29 13:41:32 -0300382 ((char *)outp + buf->length));
383 lencopy = remain = (char *)outp + buf->length -
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300384 (char *)startwrite;
385 }
386 if (lencopy <= 0)
387 break;
388
389 memcpy(startwrite, startread, lencopy);
390
391 remain -= lencopy;
392 }
393
394 if (offset > 1440) {
395 /* We have enough data to check for greenscreen */
Devin Heitmueller62899a22009-03-15 18:48:52 -0300396 if (outp[0] < 0x60 && outp[1440] < 0x60)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300397 dev->greenscreen_detected = 1;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300398 }
399
400 dma_q->pos += len;
401}
402
403/*
404 * video-buf generic routine to get the next available buffer
405 */
406static inline void get_next_buf(struct au0828_dmaqueue *dma_q,
407 struct au0828_buffer **buf)
408{
409 struct au0828_dev *dev = container_of(dma_q, struct au0828_dev, vidq);
410
411 if (list_empty(&dma_q->active)) {
412 au0828_isocdbg("No active queue to serve\n");
413 dev->isoc_ctl.buf = NULL;
414 *buf = NULL;
415 return;
416 }
417
418 /* Get the next buffer */
Shuah Khan05439b12015-01-29 13:41:32 -0300419 *buf = list_entry(dma_q->active.next, struct au0828_buffer, list);
420 /* Cleans up buffer - Useful for testing for frame/URB loss */
421 list_del(&(*buf)->list);
422 dma_q->pos = 0;
423 (*buf)->vb_buf = (*buf)->mem;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300424 dev->isoc_ctl.buf = *buf;
425
426 return;
427}
428
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300429static void au0828_copy_vbi(struct au0828_dev *dev,
430 struct au0828_dmaqueue *dma_q,
431 struct au0828_buffer *buf,
432 unsigned char *p,
433 unsigned char *outp, unsigned long len)
434{
435 unsigned char *startwrite, *startread;
Dan Carpenterb5f59332010-07-23 07:09:20 -0300436 int bytesperline;
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300437 int i, j = 0;
438
439 if (dev == NULL) {
440 au0828_isocdbg("dev is null\n");
441 return;
442 }
443
444 if (dma_q == NULL) {
445 au0828_isocdbg("dma_q is null\n");
446 return;
447 }
448 if (buf == NULL)
449 return;
450 if (p == NULL) {
451 au0828_isocdbg("p is null\n");
452 return;
453 }
454 if (outp == NULL) {
455 au0828_isocdbg("outp is null\n");
456 return;
457 }
458
Dan Carpenterb5f59332010-07-23 07:09:20 -0300459 bytesperline = dev->vbi_width;
460
Shuah Khan05439b12015-01-29 13:41:32 -0300461 if (dma_q->pos + len > buf->length)
462 len = buf->length - dma_q->pos;
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300463
464 startread = p;
465 startwrite = outp + (dma_q->pos / 2);
466
467 /* Make sure the bottom field populates the second half of the frame */
468 if (buf->top_field == 0)
469 startwrite += bytesperline * dev->vbi_height;
470
471 for (i = 0; i < len; i += 2)
472 startwrite[j++] = startread[i+1];
473
474 dma_q->pos += len;
475}
476
477
478/*
479 * video-buf generic routine to get the next available VBI buffer
480 */
481static inline void vbi_get_next_buf(struct au0828_dmaqueue *dma_q,
482 struct au0828_buffer **buf)
483{
484 struct au0828_dev *dev = container_of(dma_q, struct au0828_dev, vbiq);
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300485
486 if (list_empty(&dma_q->active)) {
487 au0828_isocdbg("No active queue to serve\n");
488 dev->isoc_ctl.vbi_buf = NULL;
489 *buf = NULL;
490 return;
491 }
492
493 /* Get the next buffer */
Shuah Khan05439b12015-01-29 13:41:32 -0300494 *buf = list_entry(dma_q->active.next, struct au0828_buffer, list);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300495 /* Cleans up buffer - Useful for testing for frame/URB loss */
Shuah Khan05439b12015-01-29 13:41:32 -0300496 list_del(&(*buf)->list);
497 dma_q->pos = 0;
498 (*buf)->vb_buf = (*buf)->mem;
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300499 dev->isoc_ctl.vbi_buf = *buf;
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300500 return;
501}
502
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300503/*
504 * Controls the isoc copy of each urb packet
505 */
506static inline int au0828_isoc_copy(struct au0828_dev *dev, struct urb *urb)
507{
508 struct au0828_buffer *buf;
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300509 struct au0828_buffer *vbi_buf;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300510 struct au0828_dmaqueue *dma_q = urb->context;
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300511 struct au0828_dmaqueue *vbi_dma_q = &dev->vbiq;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300512 unsigned char *outp = NULL;
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300513 unsigned char *vbioutp = NULL;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300514 int i, len = 0, rc = 1;
515 unsigned char *p;
516 unsigned char fbyte;
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300517 unsigned int vbi_field_size;
518 unsigned int remain, lencopy;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300519
520 if (!dev)
521 return 0;
522
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -0300523 if (test_bit(DEV_DISCONNECTED, &dev->dev_state) ||
524 test_bit(DEV_MISCONFIGURED, &dev->dev_state))
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300525 return 0;
526
527 if (urb->status < 0) {
528 print_err_status(dev, -1, urb->status);
529 if (urb->status == -ENOENT)
530 return 0;
531 }
532
533 buf = dev->isoc_ctl.buf;
534 if (buf != NULL)
Junghak Sung2d700712015-09-22 10:30:30 -0300535 outp = vb2_plane_vaddr(&buf->vb.vb2_buf, 0);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300536
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300537 vbi_buf = dev->isoc_ctl.vbi_buf;
538 if (vbi_buf != NULL)
Junghak Sung2d700712015-09-22 10:30:30 -0300539 vbioutp = vb2_plane_vaddr(&vbi_buf->vb.vb2_buf, 0);
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300540
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300541 for (i = 0; i < urb->number_of_packets; i++) {
542 int status = urb->iso_frame_desc[i].status;
543
544 if (status < 0) {
545 print_err_status(dev, i, status);
546 if (urb->iso_frame_desc[i].status != -EPROTO)
547 continue;
548 }
549
Devin Heitmueller62899a22009-03-15 18:48:52 -0300550 if (urb->iso_frame_desc[i].actual_length <= 0)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300551 continue;
Devin Heitmueller62899a22009-03-15 18:48:52 -0300552
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300553 if (urb->iso_frame_desc[i].actual_length >
554 dev->max_pkt_size) {
555 au0828_isocdbg("packet bigger than packet size");
556 continue;
557 }
558
559 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
560 fbyte = p[0];
561 len = urb->iso_frame_desc[i].actual_length - 4;
562 p += 4;
563
564 if (fbyte & 0x80) {
565 len -= 4;
566 p += 4;
567 au0828_isocdbg("Video frame %s\n",
568 (fbyte & 0x40) ? "odd" : "even");
Devin Heitmuellerbde3bb92010-07-05 13:05:16 -0300569 if (fbyte & 0x40) {
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300570 /* VBI */
571 if (vbi_buf != NULL)
Lad, Prabhakarc5036d62015-02-24 10:00:29 -0300572 buffer_filled(dev, vbi_dma_q, vbi_buf);
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300573 vbi_get_next_buf(vbi_dma_q, &vbi_buf);
574 if (vbi_buf == NULL)
575 vbioutp = NULL;
576 else
Shuah Khan05439b12015-01-29 13:41:32 -0300577 vbioutp = vb2_plane_vaddr(
Junghak Sung2d700712015-09-22 10:30:30 -0300578 &vbi_buf->vb.vb2_buf, 0);
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300579
580 /* Video */
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300581 if (buf != NULL)
582 buffer_filled(dev, dma_q, buf);
583 get_next_buf(dma_q, &buf);
Devin Heitmueller62899a22009-03-15 18:48:52 -0300584 if (buf == NULL)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300585 outp = NULL;
Devin Heitmueller62899a22009-03-15 18:48:52 -0300586 else
Junghak Sung2d700712015-09-22 10:30:30 -0300587 outp = vb2_plane_vaddr(
588 &buf->vb.vb2_buf, 0);
Devin Heitmueller78ca5002010-10-09 14:43:53 -0300589
590 /* As long as isoc traffic is arriving, keep
591 resetting the timer */
592 if (dev->vid_timeout_running)
593 mod_timer(&dev->vid_timeout,
594 jiffies + (HZ / 10));
595 if (dev->vbi_timeout_running)
596 mod_timer(&dev->vbi_timeout,
597 jiffies + (HZ / 10));
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300598 }
599
600 if (buf != NULL) {
Devin Heitmueller62899a22009-03-15 18:48:52 -0300601 if (fbyte & 0x40)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300602 buf->top_field = 1;
Devin Heitmueller62899a22009-03-15 18:48:52 -0300603 else
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300604 buf->top_field = 0;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300605 }
606
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300607 if (vbi_buf != NULL) {
608 if (fbyte & 0x40)
609 vbi_buf->top_field = 1;
610 else
611 vbi_buf->top_field = 0;
612 }
613
614 dev->vbi_read = 0;
615 vbi_dma_q->pos = 0;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300616 dma_q->pos = 0;
617 }
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300618
619 vbi_field_size = dev->vbi_width * dev->vbi_height * 2;
620 if (dev->vbi_read < vbi_field_size) {
621 remain = vbi_field_size - dev->vbi_read;
622 if (len < remain)
623 lencopy = len;
624 else
625 lencopy = remain;
626
627 if (vbi_buf != NULL)
628 au0828_copy_vbi(dev, vbi_dma_q, vbi_buf, p,
629 vbioutp, len);
630
631 len -= lencopy;
632 p += lencopy;
633 dev->vbi_read += lencopy;
634 }
635
636 if (dev->vbi_read >= vbi_field_size && buf != NULL)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300637 au0828_copy_video(dev, dma_q, buf, p, outp, len);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300638 }
639 return rc;
640}
641
Mauro Carvalho Chehab7b606ff2016-02-09 15:53:39 -0200642void au0828_usb_v4l2_media_release(struct au0828_dev *dev)
643{
644#ifdef CONFIG_MEDIA_CONTROLLER
645 int i;
646
647 for (i = 0; i < AU0828_MAX_INPUT; i++) {
648 if (AUVI_INPUT(i).type == AU0828_VMUX_UNDEFINED)
649 return;
650 media_device_unregister_entity(&dev->input_ent[i]);
651 }
652#endif
653}
654
Mauro Carvalho Chehab7b606ff2016-02-09 15:53:39 -0200655static void au0828_usb_v4l2_release(struct v4l2_device *v4l2_dev)
656{
657 struct au0828_dev *dev =
658 container_of(v4l2_dev, struct au0828_dev, v4l2_dev);
659
660 v4l2_ctrl_handler_free(&dev->v4l2_ctrl_hdl);
661 v4l2_device_unregister(&dev->v4l2_dev);
662 au0828_usb_v4l2_media_release(dev);
663 au0828_usb_release(dev);
664}
665
666int au0828_v4l2_device_register(struct usb_interface *interface,
667 struct au0828_dev *dev)
668{
669 int retval;
670
671 if (AUVI_INPUT(0).type == AU0828_VMUX_UNDEFINED)
672 return 0;
673
674 /* Create the v4l2_device */
675#ifdef CONFIG_MEDIA_CONTROLLER
676 dev->v4l2_dev.mdev = dev->media_dev;
677#endif
678 retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev);
679 if (retval) {
680 pr_err("%s() v4l2_device_register failed\n",
681 __func__);
Mauro Carvalho Chehab7b606ff2016-02-09 15:53:39 -0200682 return retval;
683 }
684
685 dev->v4l2_dev.release = au0828_usb_v4l2_release;
686
687 /* This control handler will inherit the controls from au8522 */
688 retval = v4l2_ctrl_handler_init(&dev->v4l2_ctrl_hdl, 4);
689 if (retval) {
690 pr_err("%s() v4l2_ctrl_handler_init failed\n",
691 __func__);
Mauro Carvalho Chehab7b606ff2016-02-09 15:53:39 -0200692 return retval;
693 }
694 dev->v4l2_dev.ctrl_handler = &dev->v4l2_ctrl_hdl;
695
696 return 0;
697}
698
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200699static int queue_setup(struct vb2_queue *vq,
Shuah Khan05439b12015-01-29 13:41:32 -0300700 unsigned int *nbuffers, unsigned int *nplanes,
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300701 unsigned int sizes[], struct device *alloc_devs[])
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300702{
Shuah Khan05439b12015-01-29 13:41:32 -0300703 struct au0828_dev *dev = vb2_get_drv_priv(vq);
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200704 unsigned long size = dev->height * dev->bytesperline;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300705
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200706 if (*nplanes)
707 return sizes[0] < size ? -EINVAL : 0;
Shuah Khan05439b12015-01-29 13:41:32 -0300708 *nplanes = 1;
709 sizes[0] = size;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300710 return 0;
Shuah Khan05439b12015-01-29 13:41:32 -0300711}
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300712
Shuah Khan05439b12015-01-29 13:41:32 -0300713static int
714buffer_prepare(struct vb2_buffer *vb)
715{
Junghak Sung2d700712015-09-22 10:30:30 -0300716 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
717 struct au0828_buffer *buf = container_of(vbuf,
718 struct au0828_buffer, vb);
Shuah Khan05439b12015-01-29 13:41:32 -0300719 struct au0828_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
720
721 buf->length = dev->height * dev->bytesperline;
722
723 if (vb2_plane_size(vb, 0) < buf->length) {
724 pr_err("%s data will not fit into plane (%lu < %lu)\n",
725 __func__, vb2_plane_size(vb, 0), buf->length);
726 return -EINVAL;
727 }
Junghak Sung2d700712015-09-22 10:30:30 -0300728 vb2_set_plane_payload(&buf->vb.vb2_buf, 0, buf->length);
Shuah Khan05439b12015-01-29 13:41:32 -0300729 return 0;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300730}
731
732static void
Shuah Khan05439b12015-01-29 13:41:32 -0300733buffer_queue(struct vb2_buffer *vb)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300734{
Junghak Sung2d700712015-09-22 10:30:30 -0300735 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
736 struct au0828_buffer *buf = container_of(vbuf,
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300737 struct au0828_buffer,
738 vb);
Shuah Khan05439b12015-01-29 13:41:32 -0300739 struct au0828_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300740 struct au0828_dmaqueue *vidq = &dev->vidq;
Shuah Khan05439b12015-01-29 13:41:32 -0300741 unsigned long flags = 0;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300742
Shuah Khan05439b12015-01-29 13:41:32 -0300743 buf->mem = vb2_plane_vaddr(vb, 0);
744 buf->length = vb2_plane_size(vb, 0);
745
746 spin_lock_irqsave(&dev->slock, flags);
747 list_add_tail(&buf->list, &vidq->active);
748 spin_unlock_irqrestore(&dev->slock, flags);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300749}
750
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300751static int au0828_i2s_init(struct au0828_dev *dev)
752{
753 /* Enable i2s mode */
754 au0828_writereg(dev, AU0828_AUDIOCTRL_50C, 0x01);
755 return 0;
756}
757
758/*
759 * Auvitek au0828 analog stream enable
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300760 */
Mauro Carvalho Chehaba094ca42012-10-27 14:00:30 -0300761static int au0828_analog_stream_enable(struct au0828_dev *d)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300762{
Mauro Carvalho Chehab64ea37b2014-06-08 13:54:57 -0300763 struct usb_interface *iface;
Mauro Carvalho Chehab1fe3a8f2014-06-08 13:54:58 -0300764 int ret, h, w;
Mauro Carvalho Chehab64ea37b2014-06-08 13:54:57 -0300765
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300766 dprintk(1, "au0828_analog_stream_enable called\n");
Mauro Carvalho Chehab64ea37b2014-06-08 13:54:57 -0300767
768 iface = usb_ifnum_to_if(d->usbdev, 0);
769 if (iface && iface->cur_altsetting->desc.bAlternateSetting != 5) {
770 dprintk(1, "Changing intf#0 to alt 5\n");
771 /* set au0828 interface0 to AS5 here again */
772 ret = usb_set_interface(d->usbdev, 0, 5);
773 if (ret < 0) {
Mauro Carvalho Chehab83afb322014-08-09 21:47:17 -0300774 pr_info("Au0828 can't set alt setting to 5!\n");
Mauro Carvalho Chehab64ea37b2014-06-08 13:54:57 -0300775 return -EBUSY;
776 }
777 }
778
Mauro Carvalho Chehab1fe3a8f2014-06-08 13:54:58 -0300779 h = d->height / 2 + 2;
780 w = d->width * 2;
Mauro Carvalho Chehab64ea37b2014-06-08 13:54:57 -0300781
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300782 au0828_writereg(d, AU0828_SENSORCTRL_VBI_103, 0x00);
783 au0828_writereg(d, 0x106, 0x00);
784 /* set x position */
785 au0828_writereg(d, 0x110, 0x00);
786 au0828_writereg(d, 0x111, 0x00);
Mauro Carvalho Chehab1fe3a8f2014-06-08 13:54:58 -0300787 au0828_writereg(d, 0x114, w & 0xff);
788 au0828_writereg(d, 0x115, w >> 8);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300789 /* set y position */
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -0300790 au0828_writereg(d, 0x112, 0x00);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300791 au0828_writereg(d, 0x113, 0x00);
Mauro Carvalho Chehab1fe3a8f2014-06-08 13:54:58 -0300792 au0828_writereg(d, 0x116, h & 0xff);
793 au0828_writereg(d, 0x117, h >> 8);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300794 au0828_writereg(d, AU0828_SENSORCTRL_100, 0xb3);
795
796 return 0;
797}
798
Shuah Khan05439b12015-01-29 13:41:32 -0300799static int au0828_analog_stream_disable(struct au0828_dev *d)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300800{
801 dprintk(1, "au0828_analog_stream_disable called\n");
802 au0828_writereg(d, AU0828_SENSORCTRL_100, 0x0);
803 return 0;
804}
805
Mauro Carvalho Chehaba094ca42012-10-27 14:00:30 -0300806static void au0828_analog_stream_reset(struct au0828_dev *dev)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300807{
808 dprintk(1, "au0828_analog_stream_reset called\n");
809 au0828_writereg(dev, AU0828_SENSORCTRL_100, 0x0);
810 mdelay(30);
811 au0828_writereg(dev, AU0828_SENSORCTRL_100, 0xb3);
812}
813
814/*
815 * Some operations needs to stop current streaming
816 */
817static int au0828_stream_interrupt(struct au0828_dev *dev)
818{
819 int ret = 0;
820
821 dev->stream_state = STREAM_INTERRUPT;
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -0300822 if (test_bit(DEV_DISCONNECTED, &dev->dev_state))
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300823 return -ENODEV;
Devin Heitmueller62899a22009-03-15 18:48:52 -0300824 else if (ret) {
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -0300825 set_bit(DEV_MISCONFIGURED, &dev->dev_state);
Devin Heitmueller62899a22009-03-15 18:48:52 -0300826 dprintk(1, "%s device is misconfigured!\n", __func__);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300827 return ret;
828 }
829 return 0;
830}
831
Shuah Khan05439b12015-01-29 13:41:32 -0300832int au0828_start_analog_streaming(struct vb2_queue *vq, unsigned int count)
833{
834 struct au0828_dev *dev = vb2_get_drv_priv(vq);
835 int rc = 0;
836
837 dprintk(1, "au0828_start_analog_streaming called %d\n",
838 dev->streaming_users);
839
840 if (vq->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
841 dev->frame_count = 0;
842 else
843 dev->vbi_frame_count = 0;
844
845 if (dev->streaming_users == 0) {
846 /* If we were doing ac97 instead of i2s, it would go here...*/
847 au0828_i2s_init(dev);
848 rc = au0828_init_isoc(dev, AU0828_ISO_PACKETS_PER_URB,
849 AU0828_MAX_ISO_BUFS, dev->max_pkt_size,
850 au0828_isoc_copy);
851 if (rc < 0) {
852 pr_info("au0828_init_isoc failed\n");
853 return rc;
854 }
855
856 if (vq->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
857 v4l2_device_call_all(&dev->v4l2_dev, 0, video,
858 s_stream, 1);
859 dev->vid_timeout_running = 1;
860 mod_timer(&dev->vid_timeout, jiffies + (HZ / 10));
861 } else if (vq->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
862 dev->vbi_timeout_running = 1;
863 mod_timer(&dev->vbi_timeout, jiffies + (HZ / 10));
864 }
865 }
866 dev->streaming_users++;
867 return rc;
868}
869
870static void au0828_stop_streaming(struct vb2_queue *vq)
871{
872 struct au0828_dev *dev = vb2_get_drv_priv(vq);
873 struct au0828_dmaqueue *vidq = &dev->vidq;
874 unsigned long flags = 0;
875
876 dprintk(1, "au0828_stop_streaming called %d\n", dev->streaming_users);
877
878 if (dev->streaming_users-- == 1)
879 au0828_uninit_isoc(dev);
880
881 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_stream, 0);
882 dev->vid_timeout_running = 0;
883 del_timer_sync(&dev->vid_timeout);
884
885 spin_lock_irqsave(&dev->slock, flags);
886 if (dev->isoc_ctl.buf != NULL) {
Junghak Sung2d700712015-09-22 10:30:30 -0300887 vb2_buffer_done(&dev->isoc_ctl.buf->vb.vb2_buf,
888 VB2_BUF_STATE_ERROR);
Shuah Khan05439b12015-01-29 13:41:32 -0300889 dev->isoc_ctl.buf = NULL;
890 }
891 while (!list_empty(&vidq->active)) {
892 struct au0828_buffer *buf;
893
894 buf = list_entry(vidq->active.next, struct au0828_buffer, list);
Junghak Sung2d700712015-09-22 10:30:30 -0300895 vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
Shuah Khan05439b12015-01-29 13:41:32 -0300896 list_del(&buf->list);
897 }
898 spin_unlock_irqrestore(&dev->slock, flags);
899}
900
901void au0828_stop_vbi_streaming(struct vb2_queue *vq)
902{
903 struct au0828_dev *dev = vb2_get_drv_priv(vq);
904 struct au0828_dmaqueue *vbiq = &dev->vbiq;
905 unsigned long flags = 0;
906
907 dprintk(1, "au0828_stop_vbi_streaming called %d\n",
908 dev->streaming_users);
909
910 if (dev->streaming_users-- == 1)
911 au0828_uninit_isoc(dev);
912
913 spin_lock_irqsave(&dev->slock, flags);
914 if (dev->isoc_ctl.vbi_buf != NULL) {
Junghak Sung2d700712015-09-22 10:30:30 -0300915 vb2_buffer_done(&dev->isoc_ctl.vbi_buf->vb.vb2_buf,
Shuah Khan05439b12015-01-29 13:41:32 -0300916 VB2_BUF_STATE_ERROR);
917 dev->isoc_ctl.vbi_buf = NULL;
918 }
919 while (!list_empty(&vbiq->active)) {
920 struct au0828_buffer *buf;
921
922 buf = list_entry(vbiq->active.next, struct au0828_buffer, list);
923 list_del(&buf->list);
Junghak Sung2d700712015-09-22 10:30:30 -0300924 vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
Shuah Khan05439b12015-01-29 13:41:32 -0300925 }
926 spin_unlock_irqrestore(&dev->slock, flags);
927
928 dev->vbi_timeout_running = 0;
929 del_timer_sync(&dev->vbi_timeout);
930}
931
932static struct vb2_ops au0828_video_qops = {
933 .queue_setup = queue_setup,
934 .buf_prepare = buffer_prepare,
935 .buf_queue = buffer_queue,
936 .start_streaming = au0828_start_analog_streaming,
937 .stop_streaming = au0828_stop_streaming,
938 .wait_prepare = vb2_ops_wait_prepare,
939 .wait_finish = vb2_ops_wait_finish,
940};
941
942/* ------------------------------------------------------------------
943 V4L2 interface
944 ------------------------------------------------------------------*/
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300945/*
Shuah Khan05439b12015-01-29 13:41:32 -0300946 * au0828_analog_unregister
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300947 * unregister v4l2 devices
948 */
Mauro Carvalho Chehab7b606ff2016-02-09 15:53:39 -0200949int au0828_analog_unregister(struct au0828_dev *dev)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300950{
Shuah Khan05439b12015-01-29 13:41:32 -0300951 dprintk(1, "au0828_analog_unregister called\n");
Mauro Carvalho Chehab7b606ff2016-02-09 15:53:39 -0200952
953 /* No analog TV */
954 if (AUVI_INPUT(0).type == AU0828_VMUX_UNDEFINED)
955 return 0;
956
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300957 mutex_lock(&au0828_sysfs_lock);
Shuah Khan41071bb2015-02-26 19:33:13 -0300958 video_unregister_device(&dev->vdev);
959 video_unregister_device(&dev->vbi_dev);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300960 mutex_unlock(&au0828_sysfs_lock);
Mauro Carvalho Chehab7b606ff2016-02-09 15:53:39 -0200961
962 v4l2_device_disconnect(&dev->v4l2_dev);
963 v4l2_device_put(&dev->v4l2_dev);
964
965 return 1;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300966}
967
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -0300968/* This function ensures that video frames continue to be delivered even if
969 the ITU-656 input isn't receiving any data (thereby preventing applications
970 such as tvtime from hanging) */
Mauro Carvalho Chehaba094ca42012-10-27 14:00:30 -0300971static void au0828_vid_buffer_timeout(unsigned long data)
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -0300972{
973 struct au0828_dev *dev = (struct au0828_dev *) data;
974 struct au0828_dmaqueue *dma_q = &dev->vidq;
975 struct au0828_buffer *buf;
976 unsigned char *vid_data;
Devin Heitmueller78ca5002010-10-09 14:43:53 -0300977 unsigned long flags = 0;
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -0300978
Devin Heitmueller78ca5002010-10-09 14:43:53 -0300979 spin_lock_irqsave(&dev->slock, flags);
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -0300980
981 buf = dev->isoc_ctl.buf;
982 if (buf != NULL) {
Junghak Sung2d700712015-09-22 10:30:30 -0300983 vid_data = vb2_plane_vaddr(&buf->vb.vb2_buf, 0);
Shuah Khan05439b12015-01-29 13:41:32 -0300984 memset(vid_data, 0x00, buf->length); /* Blank green frame */
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -0300985 buffer_filled(dev, dma_q, buf);
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -0300986 }
Devin Heitmueller78ca5002010-10-09 14:43:53 -0300987 get_next_buf(dma_q, &buf);
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -0300988
Devin Heitmueller78ca5002010-10-09 14:43:53 -0300989 if (dev->vid_timeout_running == 1)
990 mod_timer(&dev->vid_timeout, jiffies + (HZ / 10));
991
992 spin_unlock_irqrestore(&dev->slock, flags);
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -0300993}
994
Mauro Carvalho Chehaba094ca42012-10-27 14:00:30 -0300995static void au0828_vbi_buffer_timeout(unsigned long data)
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -0300996{
997 struct au0828_dev *dev = (struct au0828_dev *) data;
998 struct au0828_dmaqueue *dma_q = &dev->vbiq;
999 struct au0828_buffer *buf;
1000 unsigned char *vbi_data;
Devin Heitmueller78ca5002010-10-09 14:43:53 -03001001 unsigned long flags = 0;
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -03001002
Devin Heitmueller78ca5002010-10-09 14:43:53 -03001003 spin_lock_irqsave(&dev->slock, flags);
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -03001004
1005 buf = dev->isoc_ctl.vbi_buf;
1006 if (buf != NULL) {
Junghak Sung2d700712015-09-22 10:30:30 -03001007 vbi_data = vb2_plane_vaddr(&buf->vb.vb2_buf, 0);
Shuah Khan05439b12015-01-29 13:41:32 -03001008 memset(vbi_data, 0x00, buf->length);
Lad, Prabhakarc5036d62015-02-24 10:00:29 -03001009 buffer_filled(dev, dma_q, buf);
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -03001010 }
Devin Heitmueller78ca5002010-10-09 14:43:53 -03001011 vbi_get_next_buf(dma_q, &buf);
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -03001012
Devin Heitmueller78ca5002010-10-09 14:43:53 -03001013 if (dev->vbi_timeout_running == 1)
1014 mod_timer(&dev->vbi_timeout, jiffies + (HZ / 10));
1015 spin_unlock_irqrestore(&dev->slock, flags);
Devin Heitmueller6e04b7b2010-09-01 22:03:43 -03001016}
1017
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001018static int au0828_v4l2_open(struct file *filp)
1019{
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02001020 struct au0828_dev *dev = video_drvdata(filp);
Shuah Khan05439b12015-01-29 13:41:32 -03001021 int ret;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001022
Shuah Khan05439b12015-01-29 13:41:32 -03001023 dprintk(1,
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001024 "%s called std_set %d dev_state %ld stream users %d users %d\n",
Shuah Khan05439b12015-01-29 13:41:32 -03001025 __func__, dev->std_set_in_tuner_core, dev->dev_state,
1026 dev->streaming_users, dev->users);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001027
Shuah Khan05439b12015-01-29 13:41:32 -03001028 if (mutex_lock_interruptible(&dev->lock))
Hans Verkuilea86968f2013-03-11 16:22:13 -03001029 return -ERESTARTSYS;
Shuah Khan05439b12015-01-29 13:41:32 -03001030
1031 ret = v4l2_fh_open(filp);
1032 if (ret) {
1033 au0828_isocdbg("%s: v4l2_fh_open() returned error %d\n",
1034 __func__, ret);
1035 mutex_unlock(&dev->lock);
1036 return ret;
Hans Verkuilea86968f2013-03-11 16:22:13 -03001037 }
Shuah Khan05439b12015-01-29 13:41:32 -03001038
Hans Verkuilea86968f2013-03-11 16:22:13 -03001039 if (dev->users == 0) {
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001040 au0828_analog_stream_enable(dev);
1041 au0828_analog_stream_reset(dev);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001042 dev->stream_state = STREAM_OFF;
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001043 set_bit(DEV_INITIALIZED, &dev->dev_state);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001044 }
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001045 dev->users++;
Hans Verkuilea86968f2013-03-11 16:22:13 -03001046 mutex_unlock(&dev->lock);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001047 return ret;
1048}
1049
1050static int au0828_v4l2_close(struct file *filp)
1051{
1052 int ret;
Shuah Khan05439b12015-01-29 13:41:32 -03001053 struct au0828_dev *dev = video_drvdata(filp);
1054 struct video_device *vdev = video_devdata(filp);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001055
Shuah Khan05439b12015-01-29 13:41:32 -03001056 dprintk(1,
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001057 "%s called std_set %d dev_state %ld stream users %d users %d\n",
Shuah Khan05439b12015-01-29 13:41:32 -03001058 __func__, dev->std_set_in_tuner_core, dev->dev_state,
1059 dev->streaming_users, dev->users);
1060
Hans Verkuilea86968f2013-03-11 16:22:13 -03001061 mutex_lock(&dev->lock);
Shuah Khan05439b12015-01-29 13:41:32 -03001062 if (vdev->vfl_type == VFL_TYPE_GRABBER && dev->vid_timeout_running) {
Devin Heitmueller78ca5002010-10-09 14:43:53 -03001063 /* Cancel timeout thread in case they didn't call streamoff */
1064 dev->vid_timeout_running = 0;
1065 del_timer_sync(&dev->vid_timeout);
Shuah Khan05439b12015-01-29 13:41:32 -03001066 } else if (vdev->vfl_type == VFL_TYPE_VBI &&
1067 dev->vbi_timeout_running) {
Devin Heitmueller78ca5002010-10-09 14:43:53 -03001068 /* Cancel timeout thread in case they didn't call streamoff */
1069 dev->vbi_timeout_running = 0;
1070 del_timer_sync(&dev->vbi_timeout);
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -03001071 }
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001072
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001073 if (test_bit(DEV_DISCONNECTED, &dev->dev_state))
Shuah Khan05439b12015-01-29 13:41:32 -03001074 goto end;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001075
Shuah Khan05439b12015-01-29 13:41:32 -03001076 if (dev->users == 1) {
Shuah Khanb19581a2016-02-11 21:41:37 -02001077 /*
1078 * Avoid putting tuner in sleep if DVB or ALSA are
1079 * streaming.
1080 *
1081 * On most USB devices like au0828 the tuner can
1082 * be safely put in sleep stare here if ALSA isn't
1083 * streaming. Exceptions are some very old USB tuner
1084 * models such as em28xx-based WinTV USB2 which have
1085 * a separate audio output jack. The devices that have
1086 * a separate audio output jack have analog tuners,
1087 * like Philips FM1236. Those devices are always on,
1088 * so the s_power callback are silently ignored.
1089 * So, the current logic here does the following:
1090 * Disable (put tuner to sleep) when
1091 * - ALSA and DVB aren't not streaming;
1092 * - the last V4L2 file handler is closed.
1093 *
1094 * FIXME:
1095 *
1096 * Additionally, this logic could be improved to
1097 * disable the media source if the above conditions
1098 * are met and if the device:
1099 * - doesn't have a separate audio out plug (or
1100 * - doesn't use a silicon tuner like xc2028/3028/4000/5000).
1101 *
1102 * Once this additional logic is in place, a callback
1103 * is needed to enable the media source and power on
1104 * the tuner, for radio to work.
1105 */
1106 ret = v4l_enable_media_source(vdev);
1107 if (ret == 0)
1108 v4l2_device_call_all(&dev->v4l2_dev, 0, core,
1109 s_power, 0);
Hans Verkuilea86968f2013-03-11 16:22:13 -03001110 dev->std_set_in_tuner_core = 0;
Devin Heitmuellere4b8bc52009-05-06 20:54:00 -03001111
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001112 /* When close the device, set the usb intf0 into alt0 to free
1113 USB bandwidth */
1114 ret = usb_set_interface(dev->usbdev, 0, 0);
Devin Heitmueller62899a22009-03-15 18:48:52 -03001115 if (ret < 0)
Mauro Carvalho Chehab83afb322014-08-09 21:47:17 -03001116 pr_info("Au0828 can't set alternate to 0!\n");
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001117 }
Shuah Khan05439b12015-01-29 13:41:32 -03001118end:
1119 _vb2_fop_release(filp, NULL);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001120 dev->users--;
Shuah Khan05439b12015-01-29 13:41:32 -03001121 mutex_unlock(&dev->lock);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001122 return 0;
1123}
1124
Hans Verkuilea86968f2013-03-11 16:22:13 -03001125/* Must be called with dev->lock held */
1126static void au0828_init_tuner(struct au0828_dev *dev)
1127{
1128 struct v4l2_frequency f = {
1129 .frequency = dev->ctrl_freq,
1130 .type = V4L2_TUNER_ANALOG_TV,
1131 };
1132
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001133 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001134 dev->std_set_in_tuner_core, dev->dev_state);
1135
Hans Verkuilea86968f2013-03-11 16:22:13 -03001136 if (dev->std_set_in_tuner_core)
1137 return;
1138 dev->std_set_in_tuner_core = 1;
1139 i2c_gate_ctrl(dev, 1);
1140 /* If we've never sent the standard in tuner core, do so now.
1141 We don't do this at device probe because we don't want to
1142 incur the cost of a firmware load */
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001143 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_std, dev->std);
Hans Verkuilea86968f2013-03-11 16:22:13 -03001144 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, &f);
1145 i2c_gate_ctrl(dev, 0);
1146}
1147
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001148static int au0828_set_format(struct au0828_dev *dev, unsigned int cmd,
1149 struct v4l2_format *format)
1150{
1151 int ret;
1152 int width = format->fmt.pix.width;
1153 int height = format->fmt.pix.height;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001154
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001155 /* If they are demanding a format other than the one we support,
1156 bail out (tvtime asks for UYVY and then retries with YUYV) */
Devin Heitmueller62899a22009-03-15 18:48:52 -03001157 if (format->fmt.pix.pixelformat != V4L2_PIX_FMT_UYVY)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001158 return -EINVAL;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001159
1160 /* format->fmt.pix.width only support 720 and height 480 */
Devin Heitmueller62899a22009-03-15 18:48:52 -03001161 if (width != 720)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001162 width = 720;
Devin Heitmueller62899a22009-03-15 18:48:52 -03001163 if (height != 480)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001164 height = 480;
1165
1166 format->fmt.pix.width = width;
1167 format->fmt.pix.height = height;
1168 format->fmt.pix.pixelformat = V4L2_PIX_FMT_UYVY;
1169 format->fmt.pix.bytesperline = width * 2;
1170 format->fmt.pix.sizeimage = width * height * 2;
1171 format->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1172 format->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil8d86e4e2013-03-11 17:48:34 -03001173 format->fmt.pix.priv = 0;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001174
Devin Heitmueller62899a22009-03-15 18:48:52 -03001175 if (cmd == VIDIOC_TRY_FMT)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001176 return 0;
1177
1178 /* maybe set new image format, driver current only support 720*480 */
1179 dev->width = width;
1180 dev->height = height;
1181 dev->frame_size = width * height * 2;
1182 dev->field_size = width * height;
1183 dev->bytesperline = width * 2;
1184
Devin Heitmueller62899a22009-03-15 18:48:52 -03001185 if (dev->stream_state == STREAM_ON) {
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001186 dprintk(1, "VIDIOC_SET_FMT: interrupting stream!\n");
Devin Heitmueller62899a22009-03-15 18:48:52 -03001187 ret = au0828_stream_interrupt(dev);
1188 if (ret != 0) {
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001189 dprintk(1, "error interrupting video stream!\n");
1190 return ret;
1191 }
1192 }
1193
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001194 au0828_analog_stream_enable(dev);
1195
1196 return 0;
1197}
1198
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001199static int vidioc_querycap(struct file *file, void *priv,
1200 struct v4l2_capability *cap)
1201{
Hans Verkuil59e05482013-02-15 08:11:04 -03001202 struct video_device *vdev = video_devdata(file);
Shuah Khan05439b12015-01-29 13:41:32 -03001203 struct au0828_dev *dev = video_drvdata(file);
1204
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001205 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001206 dev->std_set_in_tuner_core, dev->dev_state);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001207
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001208 strlcpy(cap->driver, "au0828", sizeof(cap->driver));
Devin Heitmuellerf1add5b2009-03-11 03:00:47 -03001209 strlcpy(cap->card, dev->board.name, sizeof(cap->card));
Hans Verkuil59e05482013-02-15 08:11:04 -03001210 usb_make_path(dev->usbdev, cap->bus_info, sizeof(cap->bus_info));
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001211
Hans Verkuil59e05482013-02-15 08:11:04 -03001212 /* set the device capabilities */
1213 cap->device_caps = V4L2_CAP_AUDIO |
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001214 V4L2_CAP_READWRITE |
1215 V4L2_CAP_STREAMING |
1216 V4L2_CAP_TUNER;
Hans Verkuil59e05482013-02-15 08:11:04 -03001217 if (vdev->vfl_type == VFL_TYPE_GRABBER)
1218 cap->device_caps |= V4L2_CAP_VIDEO_CAPTURE;
1219 else
1220 cap->device_caps |= V4L2_CAP_VBI_CAPTURE;
1221 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS |
1222 V4L2_CAP_VBI_CAPTURE | V4L2_CAP_VIDEO_CAPTURE;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001223 return 0;
1224}
1225
1226static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
1227 struct v4l2_fmtdesc *f)
1228{
Devin Heitmueller62899a22009-03-15 18:48:52 -03001229 if (f->index)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001230 return -EINVAL;
1231
Shuah Khan05439b12015-01-29 13:41:32 -03001232 dprintk(1, "%s called\n", __func__);
1233
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001234 f->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1235 strcpy(f->description, "Packed YUV2");
1236
1237 f->flags = 0;
1238 f->pixelformat = V4L2_PIX_FMT_UYVY;
1239
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001240 return 0;
1241}
1242
1243static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
1244 struct v4l2_format *f)
1245{
Shuah Khan05439b12015-01-29 13:41:32 -03001246 struct au0828_dev *dev = video_drvdata(file);
1247
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001248 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001249 dev->std_set_in_tuner_core, dev->dev_state);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001250
1251 f->fmt.pix.width = dev->width;
1252 f->fmt.pix.height = dev->height;
1253 f->fmt.pix.pixelformat = V4L2_PIX_FMT_UYVY;
1254 f->fmt.pix.bytesperline = dev->bytesperline;
1255 f->fmt.pix.sizeimage = dev->frame_size;
1256 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M; /* NTSC/PAL */
1257 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil8d86e4e2013-03-11 17:48:34 -03001258 f->fmt.pix.priv = 0;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001259 return 0;
1260}
1261
1262static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
1263 struct v4l2_format *f)
1264{
Shuah Khan05439b12015-01-29 13:41:32 -03001265 struct au0828_dev *dev = video_drvdata(file);
1266
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001267 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001268 dev->std_set_in_tuner_core, dev->dev_state);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001269
1270 return au0828_set_format(dev, VIDIOC_TRY_FMT, f);
1271}
1272
1273static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
1274 struct v4l2_format *f)
1275{
Shuah Khan05439b12015-01-29 13:41:32 -03001276 struct au0828_dev *dev = video_drvdata(file);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001277 int rc;
1278
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001279 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001280 dev->std_set_in_tuner_core, dev->dev_state);
1281
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -03001282 rc = check_dev(dev);
1283 if (rc < 0)
1284 return rc;
1285
Shuah Khan05439b12015-01-29 13:41:32 -03001286 if (vb2_is_busy(&dev->vb_vidq)) {
Mauro Carvalho Chehab83afb322014-08-09 21:47:17 -03001287 pr_info("%s queue busy\n", __func__);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001288 rc = -EBUSY;
1289 goto out;
1290 }
1291
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -03001292 rc = au0828_set_format(dev, VIDIOC_S_FMT, f);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001293out:
1294 return rc;
1295}
1296
Hans Verkuil314527a2013-03-15 06:10:40 -03001297static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id norm)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001298{
Shuah Khan05439b12015-01-29 13:41:32 -03001299 struct au0828_dev *dev = video_drvdata(file);
1300
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001301 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001302 dev->std_set_in_tuner_core, dev->dev_state);
1303
1304 if (norm == dev->std)
1305 return 0;
1306
1307 if (dev->streaming_users > 0)
1308 return -EBUSY;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001309
Hans Verkuilea86968f2013-03-11 16:22:13 -03001310 dev->std = norm;
1311
1312 au0828_init_tuner(dev);
1313
Hans Verkuilfa09cb92013-03-11 16:10:33 -03001314 i2c_gate_ctrl(dev, 1);
Devin Heitmuellere58071f2012-08-06 22:47:12 -03001315
Mauro Carvalho Chehabf2fd7ce2014-06-08 13:54:56 -03001316 /*
1317 * FIXME: when we support something other than 60Hz standards,
1318 * we are going to have to make the au0828 bridge adjust the size
1319 * of its capture buffer, which is currently hardcoded at 720x480
1320 */
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001321
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001322 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_std, norm);
Devin Heitmuellere58071f2012-08-06 22:47:12 -03001323
Hans Verkuilfa09cb92013-03-11 16:10:33 -03001324 i2c_gate_ctrl(dev, 0);
Devin Heitmuellere58071f2012-08-06 22:47:12 -03001325
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001326 return 0;
1327}
1328
Hans Verkuil33b6b892013-02-15 09:22:37 -03001329static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *norm)
1330{
Shuah Khan05439b12015-01-29 13:41:32 -03001331 struct au0828_dev *dev = video_drvdata(file);
1332
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001333 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001334 dev->std_set_in_tuner_core, dev->dev_state);
Hans Verkuil33b6b892013-02-15 09:22:37 -03001335
1336 *norm = dev->std;
1337 return 0;
1338}
1339
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001340static int vidioc_enum_input(struct file *file, void *priv,
1341 struct v4l2_input *input)
1342{
Shuah Khan05439b12015-01-29 13:41:32 -03001343 struct au0828_dev *dev = video_drvdata(file);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001344 unsigned int tmp;
1345
1346 static const char *inames[] = {
Devin Heitmueller3d622872009-03-15 17:48:26 -03001347 [AU0828_VMUX_UNDEFINED] = "Undefined",
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001348 [AU0828_VMUX_COMPOSITE] = "Composite",
1349 [AU0828_VMUX_SVIDEO] = "S-Video",
1350 [AU0828_VMUX_CABLE] = "Cable TV",
1351 [AU0828_VMUX_TELEVISION] = "Television",
1352 [AU0828_VMUX_DVB] = "DVB",
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001353 };
1354
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001355 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001356 dev->std_set_in_tuner_core, dev->dev_state);
1357
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001358 tmp = input->index;
1359
Dan Carpenterf5e20c32010-03-28 08:21:18 -03001360 if (tmp >= AU0828_MAX_INPUT)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001361 return -EINVAL;
Devin Heitmueller62899a22009-03-15 18:48:52 -03001362 if (AUVI_INPUT(tmp).type == 0)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001363 return -EINVAL;
1364
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001365 input->index = tmp;
Devin Heitmuellerf1add5b2009-03-11 03:00:47 -03001366 strcpy(input->name, inames[AUVI_INPUT(tmp).type]);
Devin Heitmueller62899a22009-03-15 18:48:52 -03001367 if ((AUVI_INPUT(tmp).type == AU0828_VMUX_TELEVISION) ||
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001368 (AUVI_INPUT(tmp).type == AU0828_VMUX_CABLE)) {
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001369 input->type |= V4L2_INPUT_TYPE_TUNER;
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001370 input->audioset = 1;
1371 } else {
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001372 input->type |= V4L2_INPUT_TYPE_CAMERA;
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001373 input->audioset = 2;
1374 }
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001375
Shuah Khan41071bb2015-02-26 19:33:13 -03001376 input->std = dev->vdev.tvnorms;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001377
1378 return 0;
1379}
1380
1381static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1382{
Shuah Khan05439b12015-01-29 13:41:32 -03001383 struct au0828_dev *dev = video_drvdata(file);
1384
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001385 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001386 dev->std_set_in_tuner_core, dev->dev_state);
1387
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001388 *i = dev->ctrl_input;
1389 return 0;
1390}
1391
Hans Verkuil56230d12013-03-11 16:18:31 -03001392static void au0828_s_input(struct au0828_dev *dev, int index)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001393{
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001394 int i;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001395
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001396 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001397 dev->std_set_in_tuner_core, dev->dev_state);
1398
Devin Heitmueller62899a22009-03-15 18:48:52 -03001399 switch (AUVI_INPUT(index).type) {
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001400 case AU0828_VMUX_SVIDEO:
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001401 dev->input_type = AU0828_VMUX_SVIDEO;
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001402 dev->ctrl_ainput = 1;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001403 break;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001404 case AU0828_VMUX_COMPOSITE:
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001405 dev->input_type = AU0828_VMUX_COMPOSITE;
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001406 dev->ctrl_ainput = 1;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001407 break;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001408 case AU0828_VMUX_TELEVISION:
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001409 dev->input_type = AU0828_VMUX_TELEVISION;
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001410 dev->ctrl_ainput = 0;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001411 break;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001412 default:
Hans Verkuil56230d12013-03-11 16:18:31 -03001413 dprintk(1, "unknown input type set [%d]\n",
Devin Heitmuellera1094c42009-03-15 17:43:13 -03001414 AUVI_INPUT(index).type);
Shuah Khan174ced22016-02-12 21:18:03 -02001415 return;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001416 }
1417
Shuah Khan174ced22016-02-12 21:18:03 -02001418 dev->ctrl_input = index;
1419
Hans Verkuil5325b422009-04-02 11:26:22 -03001420 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_routing,
1421 AUVI_INPUT(index).vmux, 0, 0);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001422
1423 for (i = 0; i < AU0828_MAX_INPUT; i++) {
1424 int enable = 0;
Devin Heitmueller62899a22009-03-15 18:48:52 -03001425 if (AUVI_INPUT(i).audio_setup == NULL)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001426 continue;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001427
1428 if (i == index)
1429 enable = 1;
1430 else
1431 enable = 0;
1432 if (enable) {
Devin Heitmuellerf1add5b2009-03-11 03:00:47 -03001433 (AUVI_INPUT(i).audio_setup)(dev, enable);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001434 } else {
1435 /* Make sure we leave it turned on if some
1436 other input is routed to this callback */
Devin Heitmuellerf1add5b2009-03-11 03:00:47 -03001437 if ((AUVI_INPUT(i).audio_setup) !=
1438 ((AUVI_INPUT(index).audio_setup))) {
1439 (AUVI_INPUT(i).audio_setup)(dev, enable);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001440 }
1441 }
1442 }
1443
Hans Verkuil5325b422009-04-02 11:26:22 -03001444 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
1445 AUVI_INPUT(index).amux, 0, 0);
Hans Verkuil56230d12013-03-11 16:18:31 -03001446}
1447
1448static int vidioc_s_input(struct file *file, void *priv, unsigned int index)
1449{
Shuah Khan05439b12015-01-29 13:41:32 -03001450 struct au0828_dev *dev = video_drvdata(file);
Shuah Khan050b6c982016-02-18 22:28:48 -02001451 struct video_device *vfd = video_devdata(file);
Hans Verkuil56230d12013-03-11 16:18:31 -03001452
1453 dprintk(1, "VIDIOC_S_INPUT in function %s, input=%d\n", __func__,
1454 index);
1455 if (index >= AU0828_MAX_INPUT)
1456 return -EINVAL;
1457 if (AUVI_INPUT(index).type == 0)
1458 return -EINVAL;
Shuah Khan174ced22016-02-12 21:18:03 -02001459
1460 if (dev->ctrl_input == index)
1461 return 0;
1462
Hans Verkuil56230d12013-03-11 16:18:31 -03001463 au0828_s_input(dev, index);
Shuah Khan050b6c982016-02-18 22:28:48 -02001464
1465 /*
1466 * Input has been changed. Disable the media source
1467 * associated with the old input and enable source
1468 * for the newly set input
1469 */
1470 v4l_disable_media_source(vfd);
1471 return v4l_enable_media_source(vfd);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001472}
1473
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001474static int vidioc_enumaudio(struct file *file, void *priv, struct v4l2_audio *a)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001475{
Devin Heitmueller62899a22009-03-15 18:48:52 -03001476 if (a->index > 1)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001477 return -EINVAL;
1478
Shuah Khan05439b12015-01-29 13:41:32 -03001479 dprintk(1, "%s called\n", __func__);
1480
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001481 if (a->index == 0)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001482 strcpy(a->name, "Television");
1483 else
1484 strcpy(a->name, "Line in");
1485
1486 a->capability = V4L2_AUDCAP_STEREO;
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001487 return 0;
1488}
1489
1490static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1491{
Shuah Khan05439b12015-01-29 13:41:32 -03001492 struct au0828_dev *dev = video_drvdata(file);
1493
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001494 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001495 dev->std_set_in_tuner_core, dev->dev_state);
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001496
1497 a->index = dev->ctrl_ainput;
1498 if (a->index == 0)
1499 strcpy(a->name, "Television");
1500 else
1501 strcpy(a->name, "Line in");
1502
1503 a->capability = V4L2_AUDCAP_STEREO;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001504 return 0;
1505}
1506
Hans Verkuil0e8025b92012-09-04 11:59:31 -03001507static int vidioc_s_audio(struct file *file, void *priv, const struct v4l2_audio *a)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001508{
Shuah Khan05439b12015-01-29 13:41:32 -03001509 struct au0828_dev *dev = video_drvdata(file);
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001510
Devin Heitmueller62899a22009-03-15 18:48:52 -03001511 if (a->index != dev->ctrl_ainput)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001512 return -EINVAL;
Shuah Khan05439b12015-01-29 13:41:32 -03001513
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001514 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001515 dev->std_set_in_tuner_core, dev->dev_state);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001516 return 0;
1517}
1518
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001519static int vidioc_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
1520{
Shuah Khan05439b12015-01-29 13:41:32 -03001521 struct au0828_dev *dev = video_drvdata(file);
Shuah Khanb19581a2016-02-11 21:41:37 -02001522 struct video_device *vfd = video_devdata(file);
1523 int ret;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001524
Devin Heitmueller62899a22009-03-15 18:48:52 -03001525 if (t->index != 0)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001526 return -EINVAL;
1527
Shuah Khanb19581a2016-02-11 21:41:37 -02001528 ret = v4l_enable_media_source(vfd);
1529 if (ret)
1530 return ret;
1531
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001532 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001533 dev->std_set_in_tuner_core, dev->dev_state);
1534
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001535 strcpy(t->name, "Auvitek tuner");
Hans Verkuilea86968f2013-03-11 16:22:13 -03001536
1537 au0828_init_tuner(dev);
1538 i2c_gate_ctrl(dev, 1);
Devin Heitmueller2689d3d2009-03-15 20:01:53 -03001539 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
Hans Verkuilea86968f2013-03-11 16:22:13 -03001540 i2c_gate_ctrl(dev, 0);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001541 return 0;
1542}
1543
1544static int vidioc_s_tuner(struct file *file, void *priv,
Hans Verkuil2f73c7c2013-03-15 06:10:06 -03001545 const struct v4l2_tuner *t)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001546{
Shuah Khan05439b12015-01-29 13:41:32 -03001547 struct au0828_dev *dev = video_drvdata(file);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001548
Devin Heitmueller62899a22009-03-15 18:48:52 -03001549 if (t->index != 0)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001550 return -EINVAL;
1551
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001552 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001553 dev->std_set_in_tuner_core, dev->dev_state);
1554
Hans Verkuilea86968f2013-03-11 16:22:13 -03001555 au0828_init_tuner(dev);
Hans Verkuilfa09cb92013-03-11 16:10:33 -03001556 i2c_gate_ctrl(dev, 1);
Devin Heitmueller2689d3d2009-03-15 20:01:53 -03001557 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Hans Verkuilfa09cb92013-03-11 16:10:33 -03001558 i2c_gate_ctrl(dev, 0);
Devin Heitmuellere58071f2012-08-06 22:47:12 -03001559
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001560 dprintk(1, "VIDIOC_S_TUNER: signal = %x, afc = %x\n", t->signal,
1561 t->afc);
Devin Heitmuellere58071f2012-08-06 22:47:12 -03001562
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001563 return 0;
1564
1565}
1566
1567static int vidioc_g_frequency(struct file *file, void *priv,
1568 struct v4l2_frequency *freq)
1569{
Shuah Khan05439b12015-01-29 13:41:32 -03001570 struct au0828_dev *dev = video_drvdata(file);
Devin Heitmuellerc8889232009-03-15 17:38:47 -03001571
Hans Verkuile1cf6582013-03-22 13:32:20 -03001572 if (freq->tuner != 0)
1573 return -EINVAL;
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001574 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001575 dev->std_set_in_tuner_core, dev->dev_state);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001576 freq->frequency = dev->ctrl_freq;
1577 return 0;
1578}
1579
1580static int vidioc_s_frequency(struct file *file, void *priv,
Hans Verkuilb530a442013-03-19 04:09:26 -03001581 const struct v4l2_frequency *freq)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001582{
Shuah Khan05439b12015-01-29 13:41:32 -03001583 struct au0828_dev *dev = video_drvdata(file);
Hans Verkuile1cf6582013-03-22 13:32:20 -03001584 struct v4l2_frequency new_freq = *freq;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001585
Devin Heitmueller62899a22009-03-15 18:48:52 -03001586 if (freq->tuner != 0)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001587 return -EINVAL;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001588
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001589 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001590 dev->std_set_in_tuner_core, dev->dev_state);
1591
Hans Verkuilea86968f2013-03-11 16:22:13 -03001592 au0828_init_tuner(dev);
Hans Verkuilfa09cb92013-03-11 16:10:33 -03001593 i2c_gate_ctrl(dev, 1);
Devin Heitmueller4a03daf2012-08-06 22:47:02 -03001594
Devin Heitmueller2689d3d2009-03-15 20:01:53 -03001595 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, freq);
Hans Verkuile1cf6582013-03-22 13:32:20 -03001596 /* Get the actual set (and possibly clamped) frequency */
1597 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_frequency, &new_freq);
1598 dev->ctrl_freq = new_freq.frequency;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001599
Hans Verkuilfa09cb92013-03-11 16:10:33 -03001600 i2c_gate_ctrl(dev, 0);
Devin Heitmueller4a03daf2012-08-06 22:47:02 -03001601
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001602 au0828_analog_stream_reset(dev);
1603
1604 return 0;
1605}
1606
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -03001607
1608/* RAW VBI ioctls */
1609
1610static int vidioc_g_fmt_vbi_cap(struct file *file, void *priv,
1611 struct v4l2_format *format)
1612{
Shuah Khan05439b12015-01-29 13:41:32 -03001613 struct au0828_dev *dev = video_drvdata(file);
1614
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001615 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001616 dev->std_set_in_tuner_core, dev->dev_state);
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -03001617
1618 format->fmt.vbi.samples_per_line = dev->vbi_width;
1619 format->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1620 format->fmt.vbi.offset = 0;
1621 format->fmt.vbi.flags = 0;
1622 format->fmt.vbi.sampling_rate = 6750000 * 4 / 2;
1623
1624 format->fmt.vbi.count[0] = dev->vbi_height;
1625 format->fmt.vbi.count[1] = dev->vbi_height;
1626 format->fmt.vbi.start[0] = 21;
1627 format->fmt.vbi.start[1] = 284;
Hans Verkuil8d86e4e2013-03-11 17:48:34 -03001628 memset(format->fmt.vbi.reserved, 0, sizeof(format->fmt.vbi.reserved));
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -03001629
1630 return 0;
1631}
1632
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001633static int vidioc_cropcap(struct file *file, void *priv,
1634 struct v4l2_cropcap *cc)
1635{
Shuah Khan05439b12015-01-29 13:41:32 -03001636 struct au0828_dev *dev = video_drvdata(file);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001637
Devin Heitmueller62899a22009-03-15 18:48:52 -03001638 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001639 return -EINVAL;
1640
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001641 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001642 dev->std_set_in_tuner_core, dev->dev_state);
1643
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001644 cc->bounds.left = 0;
1645 cc->bounds.top = 0;
1646 cc->bounds.width = dev->width;
1647 cc->bounds.height = dev->height;
1648
1649 cc->defrect = cc->bounds;
1650
1651 cc->pixelaspect.numerator = 54;
1652 cc->pixelaspect.denominator = 59;
1653
1654 return 0;
1655}
1656
Mauro Carvalho Chehab80c6e352009-03-19 19:26:23 -03001657#ifdef CONFIG_VIDEO_ADV_DEBUG
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001658static int vidioc_g_register(struct file *file, void *priv,
1659 struct v4l2_dbg_register *reg)
1660{
Shuah Khan05439b12015-01-29 13:41:32 -03001661 struct au0828_dev *dev = video_drvdata(file);
1662
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001663 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001664 dev->std_set_in_tuner_core, dev->dev_state);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001665
Devin Heitmueller364d2db2012-08-06 22:46:54 -03001666 reg->val = au0828_read(dev, reg->reg);
Hans Verkuilead5bc42013-05-29 07:00:03 -03001667 reg->size = 1;
Devin Heitmueller364d2db2012-08-06 22:46:54 -03001668 return 0;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001669}
1670
1671static int vidioc_s_register(struct file *file, void *priv,
Hans Verkuil977ba3b2013-03-24 08:28:46 -03001672 const struct v4l2_dbg_register *reg)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001673{
Shuah Khan05439b12015-01-29 13:41:32 -03001674 struct au0828_dev *dev = video_drvdata(file);
1675
Mauro Carvalho Chehabe8e30392016-03-22 09:21:57 -03001676 dprintk(1, "%s called std_set %d dev_state %ld\n", __func__,
Shuah Khan05439b12015-01-29 13:41:32 -03001677 dev->std_set_in_tuner_core, dev->dev_state);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001678
Devin Heitmueller364d2db2012-08-06 22:46:54 -03001679 return au0828_writereg(dev, reg->reg, reg->val);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001680}
Mauro Carvalho Chehab80c6e352009-03-19 19:26:23 -03001681#endif
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001682
Hans Verkuil83b09422013-02-15 09:14:00 -03001683static int vidioc_log_status(struct file *file, void *fh)
1684{
1685 struct video_device *vdev = video_devdata(file);
1686
Shuah Khan05439b12015-01-29 13:41:32 -03001687 dprintk(1, "%s called\n", __func__);
1688
Hans Verkuil83b09422013-02-15 09:14:00 -03001689 v4l2_ctrl_log_status(file, fh);
1690 v4l2_device_call_all(vdev->v4l2_dev, 0, core, log_status);
1691 return 0;
1692}
1693
Mauro Carvalho Chehab1a1ba952014-08-09 21:47:15 -03001694void au0828_v4l2_suspend(struct au0828_dev *dev)
1695{
1696 struct urb *urb;
1697 int i;
1698
Mauro Carvalho Chehab81187242014-08-09 21:47:18 -03001699 pr_info("stopping V4L2\n");
1700
Mauro Carvalho Chehab1a1ba952014-08-09 21:47:15 -03001701 if (dev->stream_state == STREAM_ON) {
Mauro Carvalho Chehab81187242014-08-09 21:47:18 -03001702 pr_info("stopping V4L2 active URBs\n");
Mauro Carvalho Chehab1a1ba952014-08-09 21:47:15 -03001703 au0828_analog_stream_disable(dev);
1704 /* stop urbs */
1705 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
1706 urb = dev->isoc_ctl.urb[i];
1707 if (urb) {
1708 if (!irqs_disabled())
1709 usb_kill_urb(urb);
1710 else
1711 usb_unlink_urb(urb);
1712 }
1713 }
1714 }
1715
1716 if (dev->vid_timeout_running)
1717 del_timer_sync(&dev->vid_timeout);
1718 if (dev->vbi_timeout_running)
1719 del_timer_sync(&dev->vbi_timeout);
1720}
1721
1722void au0828_v4l2_resume(struct au0828_dev *dev)
1723{
1724 int i, rc;
1725
Mauro Carvalho Chehab81187242014-08-09 21:47:18 -03001726 pr_info("restarting V4L2\n");
1727
Mauro Carvalho Chehab1a1ba952014-08-09 21:47:15 -03001728 if (dev->stream_state == STREAM_ON) {
1729 au0828_stream_interrupt(dev);
1730 au0828_init_tuner(dev);
1731 }
1732
1733 if (dev->vid_timeout_running)
1734 mod_timer(&dev->vid_timeout, jiffies + (HZ / 10));
1735 if (dev->vbi_timeout_running)
1736 mod_timer(&dev->vbi_timeout, jiffies + (HZ / 10));
1737
1738 /* If we were doing ac97 instead of i2s, it would go here...*/
1739 au0828_i2s_init(dev);
1740
1741 au0828_analog_stream_enable(dev);
1742
1743 if (!(dev->stream_state == STREAM_ON)) {
1744 au0828_analog_stream_reset(dev);
1745 /* submit urbs */
1746 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
1747 rc = usb_submit_urb(dev->isoc_ctl.urb[i], GFP_ATOMIC);
1748 if (rc) {
1749 au0828_isocdbg("submit of urb %i failed (error=%i)\n",
1750 i, rc);
1751 au0828_uninit_isoc(dev);
1752 }
1753 }
1754 }
1755}
1756
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001757static struct v4l2_file_operations au0828_v4l_fops = {
1758 .owner = THIS_MODULE,
1759 .open = au0828_v4l2_open,
1760 .release = au0828_v4l2_close,
Shuah Khan05439b12015-01-29 13:41:32 -03001761 .read = vb2_fop_read,
1762 .poll = vb2_fop_poll,
1763 .mmap = vb2_fop_mmap,
Devin Heitmueller549ee4d2012-08-06 22:46:58 -03001764 .unlocked_ioctl = video_ioctl2,
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001765};
1766
1767static const struct v4l2_ioctl_ops video_ioctl_ops = {
1768 .vidioc_querycap = vidioc_querycap,
1769 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1770 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1771 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1772 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Devin Heitmueller5a5a4e12009-03-11 03:00:55 -03001773 .vidioc_g_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
Hans Verkuil8d86e4e2013-03-11 17:48:34 -03001774 .vidioc_try_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -03001775 .vidioc_s_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
Hans Verkuila2cf96f2013-02-15 08:41:24 -03001776 .vidioc_enumaudio = vidioc_enumaudio,
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001777 .vidioc_g_audio = vidioc_g_audio,
1778 .vidioc_s_audio = vidioc_s_audio,
1779 .vidioc_cropcap = vidioc_cropcap,
Shuah Khan05439b12015-01-29 13:41:32 -03001780
1781 .vidioc_reqbufs = vb2_ioctl_reqbufs,
1782 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1783 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
1784 .vidioc_querybuf = vb2_ioctl_querybuf,
1785 .vidioc_qbuf = vb2_ioctl_qbuf,
1786 .vidioc_dqbuf = vb2_ioctl_dqbuf,
1787 .vidioc_expbuf = vb2_ioctl_expbuf,
1788
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001789 .vidioc_s_std = vidioc_s_std,
Hans Verkuil33b6b892013-02-15 09:22:37 -03001790 .vidioc_g_std = vidioc_g_std,
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001791 .vidioc_enum_input = vidioc_enum_input,
1792 .vidioc_g_input = vidioc_g_input,
1793 .vidioc_s_input = vidioc_s_input,
Shuah Khan05439b12015-01-29 13:41:32 -03001794
1795 .vidioc_streamon = vb2_ioctl_streamon,
1796 .vidioc_streamoff = vb2_ioctl_streamoff,
1797
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001798 .vidioc_g_tuner = vidioc_g_tuner,
1799 .vidioc_s_tuner = vidioc_s_tuner,
1800 .vidioc_g_frequency = vidioc_g_frequency,
1801 .vidioc_s_frequency = vidioc_s_frequency,
1802#ifdef CONFIG_VIDEO_ADV_DEBUG
1803 .vidioc_g_register = vidioc_g_register,
1804 .vidioc_s_register = vidioc_s_register,
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001805#endif
Hans Verkuil83b09422013-02-15 09:14:00 -03001806 .vidioc_log_status = vidioc_log_status,
1807 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1808 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001809};
1810
1811static const struct video_device au0828_video_template = {
1812 .fops = &au0828_v4l_fops,
Shuah Khan41071bb2015-02-26 19:33:13 -03001813 .release = video_device_release_empty,
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001814 .ioctl_ops = &video_ioctl_ops,
Mauro Carvalho Chehabf2fd7ce2014-06-08 13:54:56 -03001815 .tvnorms = V4L2_STD_NTSC_M | V4L2_STD_PAL_M,
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001816};
1817
Shuah Khan05439b12015-01-29 13:41:32 -03001818static int au0828_vb2_setup(struct au0828_dev *dev)
1819{
1820 int rc;
1821 struct vb2_queue *q;
1822
1823 /* Setup Videobuf2 for Video capture */
1824 q = &dev->vb_vidq;
1825 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1826 q->io_modes = VB2_READ | VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
1827 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1828 q->drv_priv = dev;
1829 q->buf_struct_size = sizeof(struct au0828_buffer);
1830 q->ops = &au0828_video_qops;
1831 q->mem_ops = &vb2_vmalloc_memops;
1832
1833 rc = vb2_queue_init(q);
1834 if (rc < 0)
1835 return rc;
1836
1837 /* Setup Videobuf2 for VBI capture */
1838 q = &dev->vb_vbiq;
1839 q->type = V4L2_BUF_TYPE_VBI_CAPTURE;
1840 q->io_modes = VB2_READ | VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
1841 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1842 q->drv_priv = dev;
1843 q->buf_struct_size = sizeof(struct au0828_buffer);
1844 q->ops = &au0828_vbi_qops;
1845 q->mem_ops = &vb2_vmalloc_memops;
1846
1847 rc = vb2_queue_init(q);
1848 if (rc < 0)
1849 return rc;
1850
1851 return 0;
1852}
1853
Mauro Carvalho Chehabd1f33732015-08-31 11:43:09 -03001854static void au0828_analog_create_entities(struct au0828_dev *dev)
1855{
1856#if defined(CONFIG_MEDIA_CONTROLLER)
1857 static const char * const inames[] = {
1858 [AU0828_VMUX_COMPOSITE] = "Composite",
1859 [AU0828_VMUX_SVIDEO] = "S-Video",
1860 [AU0828_VMUX_CABLE] = "Cable TV",
1861 [AU0828_VMUX_TELEVISION] = "Television",
1862 [AU0828_VMUX_DVB] = "DVB",
Mauro Carvalho Chehabd1f33732015-08-31 11:43:09 -03001863 };
1864 int ret, i;
1865
1866 /* Initialize Video and VBI pads */
1867 dev->video_pad.flags = MEDIA_PAD_FL_SINK;
Mauro Carvalho Chehabab22e772015-12-11 07:44:40 -02001868 ret = media_entity_pads_init(&dev->vdev.entity, 1, &dev->video_pad);
Mauro Carvalho Chehabd1f33732015-08-31 11:43:09 -03001869 if (ret < 0)
1870 pr_err("failed to initialize video media entity!\n");
1871
1872 dev->vbi_pad.flags = MEDIA_PAD_FL_SINK;
Mauro Carvalho Chehabab22e772015-12-11 07:44:40 -02001873 ret = media_entity_pads_init(&dev->vbi_dev.entity, 1, &dev->vbi_pad);
Mauro Carvalho Chehabd1f33732015-08-31 11:43:09 -03001874 if (ret < 0)
1875 pr_err("failed to initialize vbi media entity!\n");
1876
1877 /* Create entities for each input connector */
1878 for (i = 0; i < AU0828_MAX_INPUT; i++) {
1879 struct media_entity *ent = &dev->input_ent[i];
1880
1881 if (AUVI_INPUT(i).type == AU0828_VMUX_UNDEFINED)
1882 break;
1883
1884 ent->name = inames[AUVI_INPUT(i).type];
1885 ent->flags = MEDIA_ENT_FL_CONNECTOR;
1886 dev->input_pad[i].flags = MEDIA_PAD_FL_SOURCE;
1887
1888 switch (AUVI_INPUT(i).type) {
1889 case AU0828_VMUX_COMPOSITE:
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -02001890 ent->function = MEDIA_ENT_F_CONN_COMPOSITE;
Mauro Carvalho Chehabd1f33732015-08-31 11:43:09 -03001891 break;
1892 case AU0828_VMUX_SVIDEO:
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -02001893 ent->function = MEDIA_ENT_F_CONN_SVIDEO;
Mauro Carvalho Chehabd1f33732015-08-31 11:43:09 -03001894 break;
1895 case AU0828_VMUX_CABLE:
1896 case AU0828_VMUX_TELEVISION:
1897 case AU0828_VMUX_DVB:
Mauro Carvalho Chehab34ac2532016-02-12 09:15:41 -02001898 default: /* Just to shut up a warning */
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -02001899 ent->function = MEDIA_ENT_F_CONN_RF;
Mauro Carvalho Chehabd1f33732015-08-31 11:43:09 -03001900 break;
Mauro Carvalho Chehabd1f33732015-08-31 11:43:09 -03001901 }
1902
Mauro Carvalho Chehabab22e772015-12-11 07:44:40 -02001903 ret = media_entity_pads_init(ent, 1, &dev->input_pad[i]);
Mauro Carvalho Chehabd1f33732015-08-31 11:43:09 -03001904 if (ret < 0)
1905 pr_err("failed to initialize input pad[%d]!\n", i);
1906
1907 ret = media_device_register_entity(dev->media_dev, ent);
1908 if (ret < 0)
1909 pr_err("failed to register input entity %d!\n", i);
1910 }
1911#endif
1912}
1913
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001914/**************************************************************************/
1915
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -03001916int au0828_analog_register(struct au0828_dev *dev,
1917 struct usb_interface *interface)
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001918{
1919 int retval = -ENOMEM;
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -03001920 struct usb_host_interface *iface_desc;
1921 struct usb_endpoint_descriptor *endpoint;
Julia Lawalld63b21b2012-04-22 07:54:42 -03001922 int i, ret;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001923
Mauro Carvalho Chehab1fe3a8f2014-06-08 13:54:58 -03001924 dprintk(1, "au0828_analog_register called for intf#%d!\n",
1925 interface->cur_altsetting->desc.bInterfaceNumber);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001926
Mauro Carvalho Chehab7b606ff2016-02-09 15:53:39 -02001927 /* No analog TV */
1928 if (AUVI_INPUT(0).type == AU0828_VMUX_UNDEFINED)
1929 return 0;
1930
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -03001931 /* set au0828 usb interface0 to as5 */
1932 retval = usb_set_interface(dev->usbdev,
Devin Heitmueller62899a22009-03-15 18:48:52 -03001933 interface->cur_altsetting->desc.bInterfaceNumber, 5);
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -03001934 if (retval != 0) {
Mauro Carvalho Chehab83afb322014-08-09 21:47:17 -03001935 pr_info("Failure setting usb interface0 to as5\n");
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -03001936 return retval;
1937 }
1938
1939 /* Figure out which endpoint has the isoc interface */
1940 iface_desc = interface->cur_altsetting;
Devin Heitmueller62899a22009-03-15 18:48:52 -03001941 for (i = 0; i < iface_desc->desc.bNumEndpoints; i++) {
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -03001942 endpoint = &iface_desc->endpoint[i].desc;
Devin Heitmueller62899a22009-03-15 18:48:52 -03001943 if (((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1944 == USB_DIR_IN) &&
1945 ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1946 == USB_ENDPOINT_XFER_ISOC)) {
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -03001947
1948 /* we find our isoc in endpoint */
1949 u16 tmp = le16_to_cpu(endpoint->wMaxPacketSize);
Devin Heitmueller62899a22009-03-15 18:48:52 -03001950 dev->max_pkt_size = (tmp & 0x07ff) *
1951 (((tmp & 0x1800) >> 11) + 1);
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -03001952 dev->isoc_in_endpointaddr = endpoint->bEndpointAddress;
Mauro Carvalho Chehab1fe3a8f2014-06-08 13:54:58 -03001953 dprintk(1,
1954 "Found isoc endpoint 0x%02x, max size = %d\n",
1955 dev->isoc_in_endpointaddr, dev->max_pkt_size);
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -03001956 }
1957 }
Devin Heitmueller62899a22009-03-15 18:48:52 -03001958 if (!(dev->isoc_in_endpointaddr)) {
Mauro Carvalho Chehab83afb322014-08-09 21:47:17 -03001959 pr_info("Could not locate isoc endpoint\n");
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -03001960 return -ENODEV;
1961 }
1962
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001963 init_waitqueue_head(&dev->open);
1964 spin_lock_init(&dev->slock);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001965
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -03001966 /* init video dma queues */
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001967 INIT_LIST_HEAD(&dev->vidq.active);
Devin Heitmueller7f8eacd2010-05-29 17:18:45 -03001968 INIT_LIST_HEAD(&dev->vbiq.active);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001969
Julia Lawall30a8f2a2014-12-26 11:35:32 -03001970 setup_timer(&dev->vid_timeout, au0828_vid_buffer_timeout,
1971 (unsigned long)dev);
1972 setup_timer(&dev->vbi_timeout, au0828_vbi_buffer_timeout,
1973 (unsigned long)dev);
Devin Heitmueller78ca5002010-10-09 14:43:53 -03001974
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001975 dev->width = NTSC_STD_W;
1976 dev->height = NTSC_STD_H;
1977 dev->field_size = dev->width * dev->height;
1978 dev->frame_size = dev->field_size << 1;
1979 dev->bytesperline = dev->width << 1;
Hans Verkuilde8d2bb2013-03-11 16:12:17 -03001980 dev->vbi_width = 720;
1981 dev->vbi_height = 1;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001982 dev->ctrl_ainput = 0;
Hans Verkuile1cf6582013-03-22 13:32:20 -03001983 dev->ctrl_freq = 960;
Hans Verkuil33b6b892013-02-15 09:22:37 -03001984 dev->std = V4L2_STD_NTSC_M;
Shuah Khan174ced22016-02-12 21:18:03 -02001985 /* Default input is TV Tuner */
Hans Verkuil56230d12013-03-11 16:18:31 -03001986 au0828_s_input(dev, 0);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001987
Shuah Khan05439b12015-01-29 13:41:32 -03001988 mutex_init(&dev->vb_queue_lock);
1989 mutex_init(&dev->vb_vbi_queue_lock);
1990
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001991 /* Fill the video capture device struct */
Shuah Khan41071bb2015-02-26 19:33:13 -03001992 dev->vdev = au0828_video_template;
1993 dev->vdev.v4l2_dev = &dev->v4l2_dev;
1994 dev->vdev.lock = &dev->lock;
1995 dev->vdev.queue = &dev->vb_vidq;
1996 dev->vdev.queue->lock = &dev->vb_queue_lock;
1997 strcpy(dev->vdev.name, "au0828a video");
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03001998
1999 /* Setup the VBI device */
Shuah Khan41071bb2015-02-26 19:33:13 -03002000 dev->vbi_dev = au0828_video_template;
2001 dev->vbi_dev.v4l2_dev = &dev->v4l2_dev;
2002 dev->vbi_dev.lock = &dev->lock;
2003 dev->vbi_dev.queue = &dev->vb_vbiq;
2004 dev->vbi_dev.queue->lock = &dev->vb_vbi_queue_lock;
2005 strcpy(dev->vbi_dev.name, "au0828a vbi");
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03002006
Mauro Carvalho Chehabd1f33732015-08-31 11:43:09 -03002007 /* Init entities at the Media Controller */
2008 au0828_analog_create_entities(dev);
Rafael Lourenço de Lima Chehabbed69192015-06-08 22:20:46 -03002009
Shuah Khan05439b12015-01-29 13:41:32 -03002010 /* initialize videobuf2 stuff */
2011 retval = au0828_vb2_setup(dev);
2012 if (retval != 0) {
2013 dprintk(1, "unable to setup videobuf2 queues (error = %d).\n",
2014 retval);
Shuah Khan41071bb2015-02-26 19:33:13 -03002015 return -ENODEV;
Shuah Khan05439b12015-01-29 13:41:32 -03002016 }
2017
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03002018 /* Register the v4l2 device */
Shuah Khan41071bb2015-02-26 19:33:13 -03002019 video_set_drvdata(&dev->vdev, dev);
2020 retval = video_register_device(&dev->vdev, VFL_TYPE_GRABBER, -1);
Devin Heitmueller62899a22009-03-15 18:48:52 -03002021 if (retval != 0) {
2022 dprintk(1, "unable to register video device (error = %d).\n",
2023 retval);
Julia Lawalld63b21b2012-04-22 07:54:42 -03002024 ret = -ENODEV;
Shuah Khan05439b12015-01-29 13:41:32 -03002025 goto err_reg_vdev;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03002026 }
2027
2028 /* Register the vbi device */
Shuah Khan41071bb2015-02-26 19:33:13 -03002029 video_set_drvdata(&dev->vbi_dev, dev);
2030 retval = video_register_device(&dev->vbi_dev, VFL_TYPE_VBI, -1);
Devin Heitmueller62899a22009-03-15 18:48:52 -03002031 if (retval != 0) {
2032 dprintk(1, "unable to register vbi device (error = %d).\n",
2033 retval);
Julia Lawalld63b21b2012-04-22 07:54:42 -03002034 ret = -ENODEV;
Shuah Khan05439b12015-01-29 13:41:32 -03002035 goto err_reg_vbi_dev;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03002036 }
Mauro Carvalho Chehab9822f412016-03-02 10:11:41 -03002037
2038#ifdef CONFIG_MEDIA_CONTROLLER
2039 retval = v4l2_mc_create_media_graph(dev->media_dev);
Mauro Carvalho Chehab7b606ff2016-02-09 15:53:39 -02002040 if (retval) {
2041 pr_err("%s() au0282_dev_register failed to create graph\n",
2042 __func__);
2043 ret = -ENODEV;
2044 goto err_reg_vbi_dev;
2045 }
Mauro Carvalho Chehab9822f412016-03-02 10:11:41 -03002046#endif
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03002047
Devin Heitmueller62899a22009-03-15 18:48:52 -03002048 dprintk(1, "%s completed!\n", __func__);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03002049
2050 return 0;
Julia Lawalld63b21b2012-04-22 07:54:42 -03002051
Shuah Khan05439b12015-01-29 13:41:32 -03002052err_reg_vbi_dev:
Shuah Khan41071bb2015-02-26 19:33:13 -03002053 video_unregister_device(&dev->vdev);
Shuah Khan05439b12015-01-29 13:41:32 -03002054err_reg_vdev:
2055 vb2_queue_release(&dev->vb_vidq);
2056 vb2_queue_release(&dev->vb_vbiq);
Julia Lawalld63b21b2012-04-22 07:54:42 -03002057 return ret;
Devin Heitmueller8b2f0792009-03-11 03:00:40 -03002058}
2059