V4L/DVB (13238): v4l2_subdev: rename tuner s_standby operation to core s_power
[linux-2.6-block.git] / drivers / media / video / em28xx / em28xx-video.c
CommitLineData
a6c2ba28 1/*
6ea54d93
DSL
2 em28xx-video.c - driver for Empia EM2800/EM2820/2840 USB
3 video capture devices
a6c2ba28 4
f7abcd38
MCC
5 Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
6 Markus Rechberger <mrechberger@gmail.com>
2e7c6dc3 7 Mauro Carvalho Chehab <mchehab@infradead.org>
f7abcd38 8 Sascha Sommer <saschasommer@freenet.de>
a6c2ba28 9
439090d7
MCC
10 Some parts based on SN9C10x PC Camera Controllers GPL driver made
11 by Luca Risolia <luca.risolia@studio.unibo.it>
12
a6c2ba28 13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27
28#include <linux/init.h>
29#include <linux/list.h>
30#include <linux/module.h>
31#include <linux/kernel.h>
e5589bef 32#include <linux/bitmap.h>
a6c2ba28 33#include <linux/usb.h>
a6c2ba28 34#include <linux/i2c.h>
b296fc60 35#include <linux/version.h>
6d35c8f6 36#include <linux/mm.h>
1e4baed3 37#include <linux/mutex.h>
a6c2ba28 38
f7abcd38 39#include "em28xx.h"
c0477ad9 40#include <media/v4l2-common.h>
35ea11ff 41#include <media/v4l2-ioctl.h>
14983d81 42#include <media/v4l2-chip-ident.h>
2474ed44 43#include <media/msp3400.h>
ed086314 44#include <media/tuner.h>
a6c2ba28 45
f7abcd38
MCC
46#define DRIVER_AUTHOR "Ludovico Cavedon <cavedon@sssup.it>, " \
47 "Markus Rechberger <mrechberger@gmail.com>, " \
2e7c6dc3 48 "Mauro Carvalho Chehab <mchehab@infradead.org>, " \
f7abcd38 49 "Sascha Sommer <saschasommer@freenet.de>"
a6c2ba28 50
f7abcd38 51#define DRIVER_DESC "Empia em28xx based USB video device driver"
f2cf250a 52#define EM28XX_VERSION_CODE KERNEL_VERSION(0, 1, 2)
a6c2ba28 53
3acf2809 54#define em28xx_videodbg(fmt, arg...) do {\
4ac97914
MCC
55 if (video_debug) \
56 printk(KERN_INFO "%s %s :"fmt, \
d80e134d 57 dev->name, __func__ , ##arg); } while (0)
a6c2ba28 58
ad0ebb96 59static unsigned int isoc_debug;
f245e549
MCC
60module_param(isoc_debug, int, 0644);
61MODULE_PARM_DESC(isoc_debug, "enable debug messages [isoc transfers]");
ad0ebb96 62
6ea54d93
DSL
63#define em28xx_isocdbg(fmt, arg...) \
64do {\
65 if (isoc_debug) { \
ad0ebb96 66 printk(KERN_INFO "%s %s :"fmt, \
6ea54d93
DSL
67 dev->name, __func__ , ##arg); \
68 } \
69 } while (0)
ad0ebb96 70
a6c2ba28 71MODULE_AUTHOR(DRIVER_AUTHOR);
72MODULE_DESCRIPTION(DRIVER_DESC);
73MODULE_LICENSE("GPL");
74
e5589bef 75static unsigned int video_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
0be43754
MCC
76static unsigned int vbi_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
77static unsigned int radio_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
78
e5589bef
MCC
79module_param_array(video_nr, int, NULL, 0444);
80module_param_array(vbi_nr, int, NULL, 0444);
0be43754 81module_param_array(radio_nr, int, NULL, 0444);
0be43754
MCC
82MODULE_PARM_DESC(video_nr, "video device numbers");
83MODULE_PARM_DESC(vbi_nr, "vbi device numbers");
84MODULE_PARM_DESC(radio_nr, "radio device numbers");
596d92d5 85
ff699e6b 86static unsigned int video_debug;
6ea54d93
DSL
87module_param(video_debug, int, 0644);
88MODULE_PARM_DESC(video_debug, "enable debug messages [video]");
a6c2ba28 89
bddcf633
MCC
90/* supported video standards */
91static struct em28xx_fmt format[] = {
92 {
58fc1ce3 93 .name = "16 bpp YUY2, 4:2:2, packed",
bddcf633
MCC
94 .fourcc = V4L2_PIX_FMT_YUYV,
95 .depth = 16,
3fbf9309 96 .reg = EM28XX_OUTFMT_YUV422_Y0UY1V,
43cb9fe3 97 }, {
58fc1ce3 98 .name = "16 bpp RGB 565, LE",
43cb9fe3
MCC
99 .fourcc = V4L2_PIX_FMT_RGB565,
100 .depth = 16,
58fc1ce3
MCC
101 .reg = EM28XX_OUTFMT_RGB_16_656,
102 }, {
103 .name = "8 bpp Bayer BGBG..GRGR",
104 .fourcc = V4L2_PIX_FMT_SBGGR8,
105 .depth = 8,
106 .reg = EM28XX_OUTFMT_RGB_8_BGBG,
107 }, {
108 .name = "8 bpp Bayer GRGR..BGBG",
109 .fourcc = V4L2_PIX_FMT_SGRBG8,
110 .depth = 8,
111 .reg = EM28XX_OUTFMT_RGB_8_GRGR,
112 }, {
113 .name = "8 bpp Bayer GBGB..RGRG",
114 .fourcc = V4L2_PIX_FMT_SGBRG8,
115 .depth = 8,
116 .reg = EM28XX_OUTFMT_RGB_8_GBGB,
117 }, {
118 .name = "12 bpp YUV411",
119 .fourcc = V4L2_PIX_FMT_YUV411P,
120 .depth = 12,
121 .reg = EM28XX_OUTFMT_YUV411,
bddcf633
MCC
122 },
123};
124
a6c2ba28 125/* supported controls */
c0477ad9 126/* Common to all boards */
ed10daae 127static struct v4l2_queryctrl ac97_qctrl[] = {
c0477ad9
MCC
128 {
129 .id = V4L2_CID_AUDIO_VOLUME,
130 .type = V4L2_CTRL_TYPE_INTEGER,
131 .name = "Volume",
132 .minimum = 0x0,
133 .maximum = 0x1f,
134 .step = 0x1,
135 .default_value = 0x1f,
a98f6af9 136 .flags = V4L2_CTRL_FLAG_SLIDER,
6ea54d93 137 }, {
c0477ad9
MCC
138 .id = V4L2_CID_AUDIO_MUTE,
139 .type = V4L2_CTRL_TYPE_BOOLEAN,
140 .name = "Mute",
141 .minimum = 0,
142 .maximum = 1,
143 .step = 1,
144 .default_value = 1,
145 .flags = 0,
146 }
147};
148
ad0ebb96
MCC
149/* ------------------------------------------------------------------
150 DMA and thread functions
151 ------------------------------------------------------------------*/
152
153/*
154 * Announces that a buffer were filled and request the next
155 */
f245e549 156static inline void buffer_filled(struct em28xx *dev,
ad0ebb96
MCC
157 struct em28xx_dmaqueue *dma_q,
158 struct em28xx_buffer *buf)
159{
ad0ebb96
MCC
160 /* Advice that buffer was filled */
161 em28xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
162 buf->vb.state = VIDEOBUF_DONE;
163 buf->vb.field_count++;
164 do_gettimeofday(&buf->vb.ts);
165
28abf083
DH
166 dev->isoc_ctl.vid_buf = NULL;
167
168 list_del(&buf->vb.queue);
169 wake_up(&buf->vb.done);
170}
171
172static inline void vbi_buffer_filled(struct em28xx *dev,
173 struct em28xx_dmaqueue *dma_q,
174 struct em28xx_buffer *buf)
175{
176 /* Advice that buffer was filled */
177 em28xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
178
179 buf->vb.state = VIDEOBUF_DONE;
180 buf->vb.field_count++;
181 do_gettimeofday(&buf->vb.ts);
182
183 dev->isoc_ctl.vbi_buf = NULL;
cb784724 184
ad0ebb96
MCC
185 list_del(&buf->vb.queue);
186 wake_up(&buf->vb.done);
187}
188
189/*
190 * Identify the buffer header type and properly handles
191 */
192static void em28xx_copy_video(struct em28xx *dev,
193 struct em28xx_dmaqueue *dma_q,
194 struct em28xx_buffer *buf,
195 unsigned char *p,
196 unsigned char *outp, unsigned long len)
197{
198 void *fieldstart, *startwrite, *startread;
f245e549 199 int linesdone, currlinedone, offset, lencopy, remain;
44dc733c 200 int bytesperline = dev->width << 1;
ad0ebb96
MCC
201
202 if (dma_q->pos + len > buf->vb.size)
203 len = buf->vb.size - dma_q->pos;
204
d7aa8020 205 if (p[0] != 0x88 && p[0] != 0x22) {
ad0ebb96
MCC
206 em28xx_isocdbg("frame is not complete\n");
207 len += 4;
208 } else
f245e549 209 p += 4;
ad0ebb96
MCC
210
211 startread = p;
212 remain = len;
213
c2a6b54a 214 if (dev->progressive)
ad0ebb96 215 fieldstart = outp;
c2a6b54a
MCC
216 else {
217 /* Interlaces two half frames */
218 if (buf->top_field)
219 fieldstart = outp;
220 else
221 fieldstart = outp + bytesperline;
222 }
ad0ebb96 223
44dc733c
MCC
224 linesdone = dma_q->pos / bytesperline;
225 currlinedone = dma_q->pos % bytesperline;
c2a6b54a
MCC
226
227 if (dev->progressive)
228 offset = linesdone * bytesperline + currlinedone;
229 else
230 offset = linesdone * bytesperline * 2 + currlinedone;
231
ad0ebb96 232 startwrite = fieldstart + offset;
44dc733c 233 lencopy = bytesperline - currlinedone;
ad0ebb96
MCC
234 lencopy = lencopy > remain ? remain : lencopy;
235
f245e549 236 if ((char *)startwrite + lencopy > (char *)outp + buf->vb.size) {
ea8df7e0 237 em28xx_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
f245e549
MCC
238 ((char *)startwrite + lencopy) -
239 ((char *)outp + buf->vb.size));
a1a6ee74
NS
240 remain = (char *)outp + buf->vb.size - (char *)startwrite;
241 lencopy = remain;
d7aa8020 242 }
e0fadfd3
AT
243 if (lencopy <= 0)
244 return;
d7aa8020 245 memcpy(startwrite, startread, lencopy);
ad0ebb96
MCC
246
247 remain -= lencopy;
248
249 while (remain > 0) {
44dc733c 250 startwrite += lencopy + bytesperline;
ad0ebb96 251 startread += lencopy;
44dc733c 252 if (bytesperline > remain)
ad0ebb96
MCC
253 lencopy = remain;
254 else
44dc733c 255 lencopy = bytesperline;
ad0ebb96 256
a1a6ee74
NS
257 if ((char *)startwrite + lencopy > (char *)outp +
258 buf->vb.size) {
e3ba4d34
DH
259 em28xx_isocdbg("Overflow of %zi bytes past buffer end"
260 "(2)\n",
f245e549
MCC
261 ((char *)startwrite + lencopy) -
262 ((char *)outp + buf->vb.size));
263 lencopy = remain = (char *)outp + buf->vb.size -
264 (char *)startwrite;
d7aa8020 265 }
f245e549
MCC
266 if (lencopy <= 0)
267 break;
d7aa8020
AT
268
269 memcpy(startwrite, startread, lencopy);
ad0ebb96
MCC
270
271 remain -= lencopy;
272 }
273
274 dma_q->pos += len;
275}
276
28abf083
DH
277static void em28xx_copy_vbi(struct em28xx *dev,
278 struct em28xx_dmaqueue *dma_q,
279 struct em28xx_buffer *buf,
280 unsigned char *p,
281 unsigned char *outp, unsigned long len)
282{
283 void *startwrite, *startread;
284 int offset;
285 int bytesperline = 720;
286
287 if (dev == NULL) {
e3ba4d34 288 em28xx_isocdbg("dev is null\n");
28abf083
DH
289 return;
290 }
291
292 if (dma_q == NULL) {
e3ba4d34 293 em28xx_isocdbg("dma_q is null\n");
28abf083
DH
294 return;
295 }
296 if (buf == NULL) {
297 return;
298 }
299 if (p == NULL) {
e3ba4d34 300 em28xx_isocdbg("p is null\n");
28abf083
DH
301 return;
302 }
303 if (outp == NULL) {
e3ba4d34 304 em28xx_isocdbg("outp is null\n");
28abf083
DH
305 return;
306 }
307
308 if (dma_q->pos + len > buf->vb.size)
309 len = buf->vb.size - dma_q->pos;
310
311 if ((p[0] == 0x33 && p[1] == 0x95) ||
312 (p[0] == 0x88 && p[1] == 0x88)) {
313 /* Header field, advance past it */
314 p += 4;
315 } else {
316 len += 4;
317 }
318
319 startread = p;
320
321 startwrite = outp + dma_q->pos;
322 offset = dma_q->pos;
323
324 /* Make sure the bottom field populates the second half of the frame */
325 if (buf->top_field == 0) {
326 startwrite += bytesperline * 0x0c;
327 offset += bytesperline * 0x0c;
328 }
329
330 memcpy(startwrite, startread, len);
331 dma_q->pos += len;
332}
333
f245e549 334static inline void print_err_status(struct em28xx *dev,
ad0ebb96
MCC
335 int packet, int status)
336{
337 char *errmsg = "Unknown";
338
f245e549 339 switch (status) {
ad0ebb96
MCC
340 case -ENOENT:
341 errmsg = "unlinked synchronuously";
342 break;
343 case -ECONNRESET:
344 errmsg = "unlinked asynchronuously";
345 break;
346 case -ENOSR:
347 errmsg = "Buffer error (overrun)";
348 break;
349 case -EPIPE:
350 errmsg = "Stalled (device not responding)";
351 break;
352 case -EOVERFLOW:
353 errmsg = "Babble (bad cable?)";
354 break;
355 case -EPROTO:
356 errmsg = "Bit-stuff error (bad cable?)";
357 break;
358 case -EILSEQ:
359 errmsg = "CRC/Timeout (could be anything)";
360 break;
361 case -ETIME:
362 errmsg = "Device does not respond";
363 break;
364 }
f245e549 365 if (packet < 0) {
ad0ebb96
MCC
366 em28xx_isocdbg("URB status %d [%s].\n", status, errmsg);
367 } else {
368 em28xx_isocdbg("URB packet %d, status %d [%s].\n",
369 packet, status, errmsg);
370 }
371}
372
373/*
374 * video-buf generic routine to get the next available buffer
375 */
3b5fa928 376static inline void get_next_buf(struct em28xx_dmaqueue *dma_q,
ad0ebb96
MCC
377 struct em28xx_buffer **buf)
378{
379 struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
dbecb44c 380 char *outp;
ad0ebb96 381
dbecb44c
MCC
382 if (list_empty(&dma_q->active)) {
383 em28xx_isocdbg("No active queue to serve\n");
28abf083 384 dev->isoc_ctl.vid_buf = NULL;
dbecb44c 385 *buf = NULL;
3b5fa928 386 return;
dbecb44c
MCC
387 }
388
dbecb44c
MCC
389 /* Get the next buffer */
390 *buf = list_entry(dma_q->active.next, struct em28xx_buffer, vb.queue);
391
dbecb44c
MCC
392 /* Cleans up buffer - Usefull for testing for frame/URB loss */
393 outp = videobuf_to_vmalloc(&(*buf)->vb);
394 memset(outp, 0, (*buf)->vb.size);
cb784724 395
28abf083
DH
396 dev->isoc_ctl.vid_buf = *buf;
397
398 return;
399}
400
401/*
402 * video-buf generic routine to get the next available VBI buffer
403 */
404static inline void vbi_get_next_buf(struct em28xx_dmaqueue *dma_q,
405 struct em28xx_buffer **buf)
406{
407 struct em28xx *dev = container_of(dma_q, struct em28xx, vbiq);
408 char *outp;
409
410 if (list_empty(&dma_q->active)) {
411 em28xx_isocdbg("No active queue to serve\n");
412 dev->isoc_ctl.vbi_buf = NULL;
413 *buf = NULL;
414 return;
415 }
416
417 /* Get the next buffer */
418 *buf = list_entry(dma_q->active.next, struct em28xx_buffer, vb.queue);
419 /* Cleans up buffer - Usefull for testing for frame/URB loss */
420 outp = videobuf_to_vmalloc(&(*buf)->vb);
421 memset(outp, 0x00, (*buf)->vb.size);
422
423 dev->isoc_ctl.vbi_buf = *buf;
cb784724 424
3b5fa928 425 return;
ad0ebb96
MCC
426}
427
428/*
429 * Controls the isoc copy of each urb packet
430 */
579f72e4 431static inline int em28xx_isoc_copy(struct em28xx *dev, struct urb *urb)
ad0ebb96 432{
d7aa8020 433 struct em28xx_buffer *buf;
da52a55c 434 struct em28xx_dmaqueue *dma_q = &dev->vidq;
3b5fa928 435 unsigned char *outp = NULL;
ad0ebb96 436 int i, len = 0, rc = 1;
d7aa8020 437 unsigned char *p;
ad0ebb96
MCC
438
439 if (!dev)
440 return 0;
441
442 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
443 return 0;
444
f245e549
MCC
445 if (urb->status < 0) {
446 print_err_status(dev, -1, urb->status);
ad0ebb96
MCC
447 if (urb->status == -ENOENT)
448 return 0;
449 }
450
28abf083 451 buf = dev->isoc_ctl.vid_buf;
3b5fa928
AT
452 if (buf != NULL)
453 outp = videobuf_to_vmalloc(&buf->vb);
d7aa8020 454
ad0ebb96
MCC
455 for (i = 0; i < urb->number_of_packets; i++) {
456 int status = urb->iso_frame_desc[i].status;
457
f245e549
MCC
458 if (status < 0) {
459 print_err_status(dev, i, status);
ad0ebb96
MCC
460 if (urb->iso_frame_desc[i].status != -EPROTO)
461 continue;
462 }
463
f245e549 464 len = urb->iso_frame_desc[i].actual_length - 4;
ad0ebb96
MCC
465
466 if (urb->iso_frame_desc[i].actual_length <= 0) {
d7aa8020 467 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
ad0ebb96
MCC
468 continue;
469 }
470 if (urb->iso_frame_desc[i].actual_length >
471 dev->max_pkt_size) {
472 em28xx_isocdbg("packet bigger than packet size");
473 continue;
474 }
475
476 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
ad0ebb96
MCC
477
478 /* FIXME: incomplete buffer checks where removed to make
479 logic simpler. Impacts of those changes should be evaluated
480 */
b4916f8c
MCC
481 if (p[0] == 0x33 && p[1] == 0x95 && p[2] == 0x00) {
482 em28xx_isocdbg("VBI HEADER!!!\n");
483 /* FIXME: Should add vbi copy */
484 continue;
485 }
d7aa8020 486 if (p[0] == 0x22 && p[1] == 0x5a) {
78bb3949 487 em28xx_isocdbg("Video frame %d, length=%i, %s\n", p[2],
a1a6ee74 488 len, (p[2] & 1) ? "odd" : "even");
d7aa8020 489
c2a6b54a 490 if (dev->progressive || !(p[2] & 1)) {
3b5fa928
AT
491 if (buf != NULL)
492 buffer_filled(dev, dma_q, buf);
493 get_next_buf(dma_q, &buf);
494 if (buf == NULL)
495 outp = NULL;
496 else
497 outp = videobuf_to_vmalloc(&buf->vb);
498 }
499
500 if (buf != NULL) {
501 if (p[2] & 1)
502 buf->top_field = 0;
503 else
504 buf->top_field = 1;
e0fadfd3 505 }
b4916f8c 506
ad0ebb96 507 dma_q->pos = 0;
ad0ebb96 508 }
3b5fa928
AT
509 if (buf != NULL)
510 em28xx_copy_video(dev, dma_q, buf, p, outp, len);
ad0ebb96
MCC
511 }
512 return rc;
513}
514
da52a55c
DH
515/* Version of isoc handler that takes into account a mixture of video and
516 VBI data */
517static inline int em28xx_isoc_copy_vbi(struct em28xx *dev, struct urb *urb)
518{
519 struct em28xx_buffer *buf, *vbi_buf;
520 struct em28xx_dmaqueue *dma_q = &dev->vidq;
28abf083 521 struct em28xx_dmaqueue *vbi_dma_q = &dev->vbiq;
da52a55c
DH
522 unsigned char *outp = NULL;
523 unsigned char *vbioutp = NULL;
524 int i, len = 0, rc = 1;
525 unsigned char *p;
526 int vbi_size;
527
528 if (!dev)
529 return 0;
530
531 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
532 return 0;
533
534 if (urb->status < 0) {
535 print_err_status(dev, -1, urb->status);
536 if (urb->status == -ENOENT)
537 return 0;
538 }
539
28abf083 540 buf = dev->isoc_ctl.vid_buf;
da52a55c
DH
541 if (buf != NULL)
542 outp = videobuf_to_vmalloc(&buf->vb);
28abf083
DH
543
544 vbi_buf = dev->isoc_ctl.vbi_buf;
545 if (vbi_buf != NULL)
546 vbioutp = videobuf_to_vmalloc(&vbi_buf->vb);
547
da52a55c
DH
548 for (i = 0; i < urb->number_of_packets; i++) {
549 int status = urb->iso_frame_desc[i].status;
550
551 if (status < 0) {
552 print_err_status(dev, i, status);
553 if (urb->iso_frame_desc[i].status != -EPROTO)
554 continue;
555 }
556
557 len = urb->iso_frame_desc[i].actual_length - 4;
558
559 if (urb->iso_frame_desc[i].actual_length <= 0) {
560 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
561 continue;
562 }
563 if (urb->iso_frame_desc[i].actual_length >
564 dev->max_pkt_size) {
565 em28xx_isocdbg("packet bigger than packet size");
566 continue;
567 }
568
569 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
570
571 /* capture type 0 = vbi start
572 capture type 1 = video start
573 capture type 2 = video in progress */
574 if (p[0] == 0x33 && p[1] == 0x95) {
575 dev->capture_type = 0;
576 dev->vbi_read = 0;
577 em28xx_isocdbg("VBI START HEADER!!!\n");
578 dev->cur_field = p[2];
579 }
580
581 /* FIXME: get rid of hard-coded value */
582 vbi_size = 720 * 0x0c;
583
584 if (dev->capture_type == 0) {
585 if (dev->vbi_read >= vbi_size) {
586 /* We've already read all the VBI data, so
587 treat the rest as video */
e3ba4d34 588 em28xx_isocdbg("dev->vbi_read > vbi_size\n");
da52a55c
DH
589 } else if ((dev->vbi_read + len) < vbi_size) {
590 /* This entire frame is VBI data */
28abf083
DH
591 if (dev->vbi_read == 0 &&
592 (!(dev->cur_field & 1))) {
593 /* Brand new frame */
594 if (vbi_buf != NULL)
595 vbi_buffer_filled(dev,
596 vbi_dma_q,
597 vbi_buf);
598 vbi_get_next_buf(vbi_dma_q, &vbi_buf);
599 if (vbi_buf == NULL)
600 vbioutp = NULL;
e3ba4d34
DH
601 else
602 vbioutp = videobuf_to_vmalloc(
603 &vbi_buf->vb);
28abf083
DH
604 }
605
606 if (dev->vbi_read == 0) {
607 vbi_dma_q->pos = 0;
608 if (vbi_buf != NULL) {
609 if (dev->cur_field & 1)
610 vbi_buf->top_field = 0;
611 else
612 vbi_buf->top_field = 1;
613 }
614 }
615
da52a55c 616 dev->vbi_read += len;
28abf083
DH
617 em28xx_copy_vbi(dev, vbi_dma_q, vbi_buf, p,
618 vbioutp, len);
da52a55c
DH
619 } else {
620 /* Some of this frame is VBI data and some is
621 video data */
622 int vbi_data_len = vbi_size - dev->vbi_read;
623 dev->vbi_read += vbi_data_len;
28abf083
DH
624 em28xx_copy_vbi(dev, vbi_dma_q, vbi_buf, p,
625 vbioutp, vbi_data_len);
da52a55c
DH
626 dev->capture_type = 1;
627 p += vbi_data_len;
628 len -= vbi_data_len;
629 }
630 }
631
632 if (dev->capture_type == 1) {
633 dev->capture_type = 2;
634 em28xx_isocdbg("Video frame %d, length=%i, %s\n", p[2],
635 len, (p[2] & 1) ? "odd" : "even");
636
637 if (dev->progressive || !(dev->cur_field & 1)) {
638 if (buf != NULL)
639 buffer_filled(dev, dma_q, buf);
640 get_next_buf(dma_q, &buf);
641 if (buf == NULL)
642 outp = NULL;
643 else
644 outp = videobuf_to_vmalloc(&buf->vb);
645 }
646 if (buf != NULL) {
647 if (dev->cur_field & 1)
648 buf->top_field = 0;
649 else
650 buf->top_field = 1;
651 }
652
653 dma_q->pos = 0;
654 }
655 if (buf != NULL && dev->capture_type == 2)
656 em28xx_copy_video(dev, dma_q, buf, p, outp, len);
657 }
658 return rc;
659}
660
661
ad0ebb96
MCC
662/* ------------------------------------------------------------------
663 Videobuf operations
664 ------------------------------------------------------------------*/
665
666static int
667buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
668{
669 struct em28xx_fh *fh = vq->priv_data;
d2d9fbfd
MCC
670 struct em28xx *dev = fh->dev;
671 struct v4l2_frequency f;
ad0ebb96 672
e3ba4d34
DH
673 *size = (fh->dev->width * fh->dev->height * dev->format->depth + 7)
674 >> 3;
bddcf633 675
ad0ebb96
MCC
676 if (0 == *count)
677 *count = EM28XX_DEF_BUF;
678
f245e549
MCC
679 if (*count < EM28XX_MIN_BUF)
680 *count = EM28XX_MIN_BUF;
ad0ebb96 681
381aaba9 682 /* Ask tuner to go to analog or radio mode */
6ea54d93 683 memset(&f, 0, sizeof(f));
d2d9fbfd 684 f.frequency = dev->ctl_freq;
381aaba9 685 f.type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
d2d9fbfd 686
f2cf250a 687 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, &f);
d2d9fbfd 688
ad0ebb96
MCC
689 return 0;
690}
691
3b5fa928 692/* This is called *without* dev->slock held; please keep it that way */
ad0ebb96
MCC
693static void free_buffer(struct videobuf_queue *vq, struct em28xx_buffer *buf)
694{
3b5fa928
AT
695 struct em28xx_fh *fh = vq->priv_data;
696 struct em28xx *dev = fh->dev;
697 unsigned long flags = 0;
ad0ebb96
MCC
698 if (in_interrupt())
699 BUG();
700
3b5fa928
AT
701 /* We used to wait for the buffer to finish here, but this didn't work
702 because, as we were keeping the state as VIDEOBUF_QUEUED,
703 videobuf_queue_cancel marked it as finished for us.
704 (Also, it could wedge forever if the hardware was misconfigured.)
705
706 This should be safe; by the time we get here, the buffer isn't
707 queued anymore. If we ever start marking the buffers as
708 VIDEOBUF_ACTIVE, it won't be, though.
709 */
710 spin_lock_irqsave(&dev->slock, flags);
28abf083
DH
711 if (dev->isoc_ctl.vid_buf == buf)
712 dev->isoc_ctl.vid_buf = NULL;
3b5fa928
AT
713 spin_unlock_irqrestore(&dev->slock, flags);
714
ad0ebb96
MCC
715 videobuf_vmalloc_free(&buf->vb);
716 buf->vb.state = VIDEOBUF_NEEDS_INIT;
717}
718
719static int
720buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
721 enum v4l2_field field)
722{
723 struct em28xx_fh *fh = vq->priv_data;
f245e549 724 struct em28xx_buffer *buf = container_of(vb, struct em28xx_buffer, vb);
ad0ebb96
MCC
725 struct em28xx *dev = fh->dev;
726 int rc = 0, urb_init = 0;
ad0ebb96 727
e3ba4d34
DH
728 buf->vb.size = (fh->dev->width * fh->dev->height * dev->format->depth
729 + 7) >> 3;
ad0ebb96
MCC
730
731 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
732 return -EINVAL;
733
05612975
BP
734 buf->vb.width = dev->width;
735 buf->vb.height = dev->height;
736 buf->vb.field = field;
ad0ebb96
MCC
737
738 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
d7aa8020
AT
739 rc = videobuf_iolock(vq, &buf->vb, NULL);
740 if (rc < 0)
ad0ebb96 741 goto fail;
ad0ebb96
MCC
742 }
743
ad0ebb96 744 if (!dev->isoc_ctl.num_bufs)
f245e549 745 urb_init = 1;
ad0ebb96
MCC
746
747 if (urb_init) {
da52a55c
DH
748 if (em28xx_vbi_supported(dev) == 1)
749 rc = em28xx_init_isoc(dev, EM28XX_NUM_PACKETS,
750 EM28XX_NUM_BUFS,
751 dev->max_pkt_size,
752 em28xx_isoc_copy_vbi);
753 else
754 rc = em28xx_init_isoc(dev, EM28XX_NUM_PACKETS,
755 EM28XX_NUM_BUFS,
756 dev->max_pkt_size,
757 em28xx_isoc_copy);
f245e549 758 if (rc < 0)
ad0ebb96
MCC
759 goto fail;
760 }
761
762 buf->vb.state = VIDEOBUF_PREPARED;
763 return 0;
764
765fail:
f245e549 766 free_buffer(vq, buf);
ad0ebb96
MCC
767 return rc;
768}
769
770static void
771buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
772{
a1a6ee74
NS
773 struct em28xx_buffer *buf = container_of(vb,
774 struct em28xx_buffer,
775 vb);
ad0ebb96 776 struct em28xx_fh *fh = vq->priv_data;
f245e549 777 struct em28xx *dev = fh->dev;
ad0ebb96 778 struct em28xx_dmaqueue *vidq = &dev->vidq;
ad0ebb96 779
d7aa8020
AT
780 buf->vb.state = VIDEOBUF_QUEUED;
781 list_add_tail(&buf->vb.queue, &vidq->active);
782
ad0ebb96
MCC
783}
784
6ea54d93
DSL
785static void buffer_release(struct videobuf_queue *vq,
786 struct videobuf_buffer *vb)
ad0ebb96 787{
a1a6ee74
NS
788 struct em28xx_buffer *buf = container_of(vb,
789 struct em28xx_buffer,
790 vb);
ad0ebb96 791 struct em28xx_fh *fh = vq->priv_data;
f245e549 792 struct em28xx *dev = (struct em28xx *)fh->dev;
ad0ebb96 793
d7aa8020 794 em28xx_isocdbg("em28xx: called buffer_release\n");
ad0ebb96 795
f245e549 796 free_buffer(vq, buf);
ad0ebb96
MCC
797}
798
799static struct videobuf_queue_ops em28xx_video_qops = {
800 .buf_setup = buffer_setup,
801 .buf_prepare = buffer_prepare,
802 .buf_queue = buffer_queue,
803 .buf_release = buffer_release,
804};
a6c2ba28 805
6ea54d93 806/********************* v4l2 interface **************************************/
a6c2ba28 807
eac94356
MCC
808static void video_mux(struct em28xx *dev, int index)
809{
eac94356
MCC
810 dev->ctl_input = index;
811 dev->ctl_ainput = INPUT(index)->amux;
35ae6f04 812 dev->ctl_aoutput = INPUT(index)->aout;
eac94356 813
e879b8eb
MCC
814 if (!dev->ctl_aoutput)
815 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
816
5325b427
HV
817 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_routing,
818 INPUT(index)->vmux, 0, 0);
eac94356 819
505b6d0b 820 if (dev->board.has_msp34xx) {
6ea54d93 821 if (dev->i2s_speed) {
f2cf250a
DSL
822 v4l2_device_call_all(&dev->v4l2_dev, 0, audio,
823 s_i2s_clock_freq, dev->i2s_speed);
6ea54d93 824 }
2474ed44 825 /* Note: this is msp3400 specific */
5325b427
HV
826 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
827 dev->ctl_ainput, MSP_OUTPUT(MSP_SC_IN_DSP_SCART1), 0);
eac94356 828 }
539c96d0 829
2bd1d9eb 830 if (dev->board.adecoder != EM28XX_NOADECODER) {
5325b427
HV
831 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
832 dev->ctl_ainput, dev->ctl_aoutput, 0);
2bd1d9eb
VW
833 }
834
00b8730f 835 em28xx_audio_analog_set(dev);
eac94356
MCC
836}
837
a225452e 838/* Usage lock check functions */
8c873d31 839static int res_get(struct em28xx_fh *fh, unsigned int bit)
a225452e
MCC
840{
841 struct em28xx *dev = fh->dev;
a225452e 842
8c873d31
DH
843 if (fh->resources & bit)
844 /* have it already allocated */
845 return 1;
a225452e 846
8c873d31
DH
847 /* is it free? */
848 mutex_lock(&dev->lock);
849 if (dev->resources & bit) {
850 /* no, someone else uses it */
851 mutex_unlock(&dev->lock);
852 return 0;
853 }
854 /* it's free, grab it */
855 fh->resources |= bit;
856 dev->resources |= bit;
857 em28xx_videodbg("res: get %d\n", bit);
858 mutex_unlock(&dev->lock);
859 return 1;
860}
a225452e 861
8c873d31
DH
862static int res_check(struct em28xx_fh *fh, unsigned int bit)
863{
e3ba4d34 864 return fh->resources & bit;
a225452e
MCC
865}
866
8c873d31 867static int res_locked(struct em28xx *dev, unsigned int bit)
a225452e 868{
e3ba4d34 869 return dev->resources & bit;
a225452e
MCC
870}
871
8c873d31 872static void res_free(struct em28xx_fh *fh, unsigned int bits)
a225452e
MCC
873{
874 struct em28xx *dev = fh->dev;
875
8c873d31
DH
876 BUG_ON((fh->resources & bits) != bits);
877
878 mutex_lock(&dev->lock);
879 fh->resources &= ~bits;
880 dev->resources &= ~bits;
881 em28xx_videodbg("res: put %d\n", bits);
882 mutex_unlock(&dev->lock);
883}
884
885static int get_ressource(struct em28xx_fh *fh)
886{
887 switch (fh->type) {
888 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
889 return EM28XX_RESOURCE_VIDEO;
890 case V4L2_BUF_TYPE_VBI_CAPTURE:
891 return EM28XX_RESOURCE_VBI;
892 default:
893 BUG();
894 return 0;
895 }
a225452e
MCC
896}
897
195a4ef6 898/*
a98f6af9
MCC
899 * ac97_queryctrl()
900 * return the ac97 supported controls
901 */
902static int ac97_queryctrl(struct v4l2_queryctrl *qc)
903{
904 int i;
905
906 for (i = 0; i < ARRAY_SIZE(ac97_qctrl); i++) {
907 if (qc->id && qc->id == ac97_qctrl[i].id) {
908 memcpy(qc, &(ac97_qctrl[i]), sizeof(*qc));
909 return 0;
910 }
911 }
912
913 /* Control is not ac97 related */
914 return 1;
915}
916
917/*
918 * ac97_get_ctrl()
919 * return the current values for ac97 mute and volume
195a4ef6 920 */
a98f6af9 921static int ac97_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
195a4ef6
MCC
922{
923 switch (ctrl->id) {
924 case V4L2_CID_AUDIO_MUTE:
925 ctrl->value = dev->mute;
926 return 0;
927 case V4L2_CID_AUDIO_VOLUME:
928 ctrl->value = dev->volume;
929 return 0;
930 default:
a98f6af9
MCC
931 /* Control is not ac97 related */
932 return 1;
a6c2ba28 933 }
195a4ef6 934}
a6c2ba28 935
195a4ef6 936/*
a98f6af9
MCC
937 * ac97_set_ctrl()
938 * set values for ac97 mute and volume
195a4ef6 939 */
a98f6af9 940static int ac97_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
195a4ef6 941{
a98f6af9
MCC
942 int i;
943
944 for (i = 0; i < ARRAY_SIZE(ac97_qctrl); i++)
945 if (ctrl->id == ac97_qctrl[i].id)
946 goto handle;
947
948 /* Announce that hasn't handle it */
949 return 1;
950
951handle:
952 if (ctrl->value < ac97_qctrl[i].minimum ||
953 ctrl->value > ac97_qctrl[i].maximum)
954 return -ERANGE;
955
195a4ef6
MCC
956 switch (ctrl->id) {
957 case V4L2_CID_AUDIO_MUTE:
a98f6af9
MCC
958 dev->mute = ctrl->value;
959 break;
195a4ef6
MCC
960 case V4L2_CID_AUDIO_VOLUME:
961 dev->volume = ctrl->value;
a98f6af9 962 break;
195a4ef6 963 }
a98f6af9
MCC
964
965 return em28xx_audio_analog_set(dev);
195a4ef6 966}
a6c2ba28 967
195a4ef6
MCC
968static int check_dev(struct em28xx *dev)
969{
970 if (dev->state & DEV_DISCONNECTED) {
971 em28xx_errdev("v4l2 ioctl: device not present\n");
972 return -ENODEV;
e5589bef 973 }
a6c2ba28 974
195a4ef6
MCC
975 if (dev->state & DEV_MISCONFIGURED) {
976 em28xx_errdev("v4l2 ioctl: device is misconfigured; "
977 "close and open it again\n");
978 return -EIO;
979 }
980 return 0;
981}
a6c2ba28 982
195a4ef6
MCC
983static void get_scale(struct em28xx *dev,
984 unsigned int width, unsigned int height,
985 unsigned int *hscale, unsigned int *vscale)
986{
55699964
MCC
987 unsigned int maxw = norm_maxw(dev);
988 unsigned int maxh = norm_maxh(dev);
195a4ef6
MCC
989
990 *hscale = (((unsigned long)maxw) << 12) / width - 4096L;
991 if (*hscale >= 0x4000)
992 *hscale = 0x3fff;
993
994 *vscale = (((unsigned long)maxh) << 12) / height - 4096L;
995 if (*vscale >= 0x4000)
996 *vscale = 0x3fff;
a6c2ba28 997}
998
195a4ef6
MCC
999/* ------------------------------------------------------------------
1000 IOCTL vidioc handling
1001 ------------------------------------------------------------------*/
1002
78b526a4 1003static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
195a4ef6 1004 struct v4l2_format *f)
a6c2ba28 1005{
195a4ef6
MCC
1006 struct em28xx_fh *fh = priv;
1007 struct em28xx *dev = fh->dev;
a6c2ba28 1008
195a4ef6 1009 mutex_lock(&dev->lock);
e5589bef 1010
195a4ef6
MCC
1011 f->fmt.pix.width = dev->width;
1012 f->fmt.pix.height = dev->height;
bddcf633
MCC
1013 f->fmt.pix.pixelformat = dev->format->fourcc;
1014 f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3;
44dc733c 1015 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * dev->height;
195a4ef6 1016 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
e5589bef 1017
195a4ef6 1018 /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
c2a6b54a
MCC
1019 if (dev->progressive)
1020 f->fmt.pix.field = V4L2_FIELD_NONE;
1021 else
1022 f->fmt.pix.field = dev->interlaced ?
195a4ef6 1023 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
e5589bef 1024
195a4ef6
MCC
1025 mutex_unlock(&dev->lock);
1026 return 0;
a6c2ba28 1027}
1028
bddcf633
MCC
1029static struct em28xx_fmt *format_by_fourcc(unsigned int fourcc)
1030{
1031 unsigned int i;
1032
1033 for (i = 0; i < ARRAY_SIZE(format); i++)
1034 if (format[i].fourcc == fourcc)
1035 return &format[i];
1036
1037 return NULL;
1038}
1039
78b526a4 1040static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
195a4ef6 1041 struct v4l2_format *f)
a6c2ba28 1042{
195a4ef6
MCC
1043 struct em28xx_fh *fh = priv;
1044 struct em28xx *dev = fh->dev;
ccb83408
TP
1045 unsigned int width = f->fmt.pix.width;
1046 unsigned int height = f->fmt.pix.height;
195a4ef6
MCC
1047 unsigned int maxw = norm_maxw(dev);
1048 unsigned int maxh = norm_maxh(dev);
1049 unsigned int hscale, vscale;
bddcf633
MCC
1050 struct em28xx_fmt *fmt;
1051
1052 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1053 if (!fmt) {
1054 em28xx_videodbg("Fourcc format (%08x) invalid.\n",
1055 f->fmt.pix.pixelformat);
1056 return -EINVAL;
1057 }
195a4ef6 1058
55699964 1059 if (dev->board.is_em2800) {
195a4ef6 1060 /* the em2800 can only scale down to 50% */
ccb83408
TP
1061 height = height > (3 * maxh / 4) ? maxh : maxh / 2;
1062 width = width > (3 * maxw / 4) ? maxw : maxw / 2;
1063 /* According to empiatech support the MaxPacketSize is too small
1064 * to support framesizes larger than 640x480 @ 30 fps or 640x576
1065 * @ 25 fps. As this would cut of a part of the image we prefer
1066 * 360x576 or 360x480 for now */
195a4ef6
MCC
1067 if (width == maxw && height == maxh)
1068 width /= 2;
ccb83408
TP
1069 } else {
1070 /* width must even because of the YUYV format
1071 height must be even because of interlacing */
e3ba4d34
DH
1072 v4l_bound_align_image(&width, 48, maxw, 1, &height, 32, maxh,
1073 1, 0);
195a4ef6 1074 }
a225452e 1075
195a4ef6 1076 get_scale(dev, width, height, &hscale, &vscale);
a6c2ba28 1077
195a4ef6
MCC
1078 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
1079 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
a6c2ba28 1080
195a4ef6
MCC
1081 f->fmt.pix.width = width;
1082 f->fmt.pix.height = height;
bddcf633
MCC
1083 f->fmt.pix.pixelformat = fmt->fourcc;
1084 f->fmt.pix.bytesperline = (dev->width * fmt->depth + 7) >> 3;
1085 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * height;
195a4ef6 1086 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
c2a6b54a
MCC
1087 if (dev->progressive)
1088 f->fmt.pix.field = V4L2_FIELD_NONE;
1089 else
1090 f->fmt.pix.field = dev->interlaced ?
1091 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
a6c2ba28 1092
a6c2ba28 1093 return 0;
1094}
1095
ed5f1431
MCC
1096static int em28xx_set_video_format(struct em28xx *dev, unsigned int fourcc,
1097 unsigned width, unsigned height)
1098{
1099 struct em28xx_fmt *fmt;
1100
ed5f1431
MCC
1101 fmt = format_by_fourcc(fourcc);
1102 if (!fmt)
1103 return -EINVAL;
1104
1105 dev->format = fmt;
1106 dev->width = width;
1107 dev->height = height;
1108
1109 /* set new image size */
1110 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
1111
1112 em28xx_set_alternate(dev);
1113 em28xx_resolution_set(dev);
1114
1115 return 0;
1116}
1117
78b526a4 1118static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
195a4ef6 1119 struct v4l2_format *f)
a6c2ba28 1120{
195a4ef6
MCC
1121 struct em28xx_fh *fh = priv;
1122 struct em28xx *dev = fh->dev;
ad0ebb96 1123 int rc;
a6c2ba28 1124
195a4ef6
MCC
1125 rc = check_dev(dev);
1126 if (rc < 0)
1127 return rc;
a225452e 1128
5a80415b
SS
1129 mutex_lock(&dev->lock);
1130
efc52a94
MCC
1131 vidioc_try_fmt_vid_cap(file, priv, f);
1132
05612975
BP
1133 if (videobuf_queue_is_busy(&fh->vb_vidq)) {
1134 em28xx_errdev("%s queue busy\n", __func__);
1135 rc = -EBUSY;
1136 goto out;
1137 }
1138
ed5f1431
MCC
1139 rc = em28xx_set_video_format(dev, f->fmt.pix.pixelformat,
1140 f->fmt.pix.width, f->fmt.pix.height);
05612975
BP
1141
1142out:
195a4ef6 1143 mutex_unlock(&dev->lock);
05612975 1144 return rc;
195a4ef6
MCC
1145}
1146
19bf0038
DH
1147static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *norm)
1148{
1149 struct em28xx_fh *fh = priv;
1150 struct em28xx *dev = fh->dev;
19bf0038
DH
1151 int rc;
1152
1153 rc = check_dev(dev);
1154 if (rc < 0)
1155 return rc;
1156
1157 *norm = dev->norm;
1158
1159 return 0;
1160}
1161
a1a6ee74 1162static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
195a4ef6
MCC
1163{
1164 struct em28xx_fh *fh = priv;
1165 struct em28xx *dev = fh->dev;
1166 struct v4l2_format f;
195a4ef6
MCC
1167 int rc;
1168
1169 rc = check_dev(dev);
1170 if (rc < 0)
1171 return rc;
1172
195a4ef6 1173 mutex_lock(&dev->lock);
7d497f8a 1174 dev->norm = *norm;
a6c2ba28 1175
195a4ef6
MCC
1176 /* Adjusts width/height, if needed */
1177 f.fmt.pix.width = dev->width;
1178 f.fmt.pix.height = dev->height;
78b526a4 1179 vidioc_try_fmt_vid_cap(file, priv, &f);
a6c2ba28 1180
195a4ef6
MCC
1181 /* set new image size */
1182 dev->width = f.fmt.pix.width;
1183 dev->height = f.fmt.pix.height;
195a4ef6 1184 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
a6c2ba28 1185
195a4ef6 1186 em28xx_resolution_set(dev);
f41737ec 1187 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_std, dev->norm);
a6c2ba28 1188
195a4ef6
MCC
1189 mutex_unlock(&dev->lock);
1190 return 0;
1191}
9e31ced8 1192
d96ecda6
MCC
1193static int vidioc_g_parm(struct file *file, void *priv,
1194 struct v4l2_streamparm *p)
1195{
1196 struct em28xx_fh *fh = priv;
1197 struct em28xx *dev = fh->dev;
1198 int rc = 0;
1199
1200 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1201 return -EINVAL;
1202
1203 if (dev->board.is_webcam)
1204 rc = v4l2_device_call_until_err(&dev->v4l2_dev, 0,
1205 video, g_parm, p);
1206 else
1207 v4l2_video_std_frame_period(dev->norm,
1208 &p->parm.capture.timeperframe);
1209
1210 return rc;
1211}
1212
1213static int vidioc_s_parm(struct file *file, void *priv,
1214 struct v4l2_streamparm *p)
1215{
1216 struct em28xx_fh *fh = priv;
1217 struct em28xx *dev = fh->dev;
1218
1219 if (!dev->board.is_webcam)
1220 return -EINVAL;
1221
1222 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1223 return -EINVAL;
1224
1225 return v4l2_device_call_until_err(&dev->v4l2_dev, 0, video, s_parm, p);
1226}
1227
195a4ef6
MCC
1228static const char *iname[] = {
1229 [EM28XX_VMUX_COMPOSITE1] = "Composite1",
1230 [EM28XX_VMUX_COMPOSITE2] = "Composite2",
1231 [EM28XX_VMUX_COMPOSITE3] = "Composite3",
1232 [EM28XX_VMUX_COMPOSITE4] = "Composite4",
1233 [EM28XX_VMUX_SVIDEO] = "S-Video",
1234 [EM28XX_VMUX_TELEVISION] = "Television",
1235 [EM28XX_VMUX_CABLE] = "Cable TV",
1236 [EM28XX_VMUX_DVB] = "DVB",
1237 [EM28XX_VMUX_DEBUG] = "for debug only",
1238};
9e31ced8 1239
195a4ef6
MCC
1240static int vidioc_enum_input(struct file *file, void *priv,
1241 struct v4l2_input *i)
1242{
1243 struct em28xx_fh *fh = priv;
1244 struct em28xx *dev = fh->dev;
1245 unsigned int n;
9e31ced8 1246
195a4ef6
MCC
1247 n = i->index;
1248 if (n >= MAX_EM28XX_INPUT)
1249 return -EINVAL;
1250 if (0 == INPUT(n)->type)
1251 return -EINVAL;
9e31ced8 1252
195a4ef6
MCC
1253 i->index = n;
1254 i->type = V4L2_INPUT_TYPE_CAMERA;
a6c2ba28 1255
195a4ef6 1256 strcpy(i->name, iname[INPUT(n)->type]);
a6c2ba28 1257
195a4ef6
MCC
1258 if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
1259 (EM28XX_VMUX_CABLE == INPUT(n)->type))
1260 i->type = V4L2_INPUT_TYPE_TUNER;
1261
7d497f8a 1262 i->std = dev->vdev->tvnorms;
195a4ef6
MCC
1263
1264 return 0;
a6c2ba28 1265}
1266
195a4ef6 1267static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
a6c2ba28 1268{
195a4ef6
MCC
1269 struct em28xx_fh *fh = priv;
1270 struct em28xx *dev = fh->dev;
a6c2ba28 1271
195a4ef6
MCC
1272 *i = dev->ctl_input;
1273
1274 return 0;
1275}
1276
1277static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1278{
1279 struct em28xx_fh *fh = priv;
1280 struct em28xx *dev = fh->dev;
1281 int rc;
1282
1283 rc = check_dev(dev);
1284 if (rc < 0)
1285 return rc;
1286
1287 if (i >= MAX_EM28XX_INPUT)
1288 return -EINVAL;
1289 if (0 == INPUT(i)->type)
1290 return -EINVAL;
a225452e 1291
24c3c415 1292 dev->ctl_input = i;
195a4ef6 1293
24c3c415
MCC
1294 mutex_lock(&dev->lock);
1295 video_mux(dev, dev->ctl_input);
195a4ef6
MCC
1296 mutex_unlock(&dev->lock);
1297 return 0;
1298}
1299
1300static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1301{
1302 struct em28xx_fh *fh = priv;
1303 struct em28xx *dev = fh->dev;
195a4ef6 1304
6c428b57
MCC
1305 if (!dev->audio_mode.has_audio)
1306 return -EINVAL;
1307
35ae6f04
MCC
1308 switch (a->index) {
1309 case EM28XX_AMUX_VIDEO:
195a4ef6 1310 strcpy(a->name, "Television");
35ae6f04
MCC
1311 break;
1312 case EM28XX_AMUX_LINE_IN:
195a4ef6 1313 strcpy(a->name, "Line In");
35ae6f04
MCC
1314 break;
1315 case EM28XX_AMUX_VIDEO2:
1316 strcpy(a->name, "Television alt");
1317 break;
1318 case EM28XX_AMUX_PHONE:
1319 strcpy(a->name, "Phone");
1320 break;
1321 case EM28XX_AMUX_MIC:
1322 strcpy(a->name, "Mic");
1323 break;
1324 case EM28XX_AMUX_CD:
1325 strcpy(a->name, "CD");
1326 break;
1327 case EM28XX_AMUX_AUX:
1328 strcpy(a->name, "Aux");
1329 break;
1330 case EM28XX_AMUX_PCM_OUT:
1331 strcpy(a->name, "PCM");
1332 break;
1333 default:
1334 return -EINVAL;
1335 }
6ea54d93 1336
35ae6f04 1337 a->index = dev->ctl_ainput;
195a4ef6 1338 a->capability = V4L2_AUDCAP_STEREO;
195a4ef6
MCC
1339
1340 return 0;
1341}
1342
1343static int vidioc_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
1344{
1345 struct em28xx_fh *fh = priv;
1346 struct em28xx *dev = fh->dev;
1347
24c3c415 1348
6c428b57
MCC
1349 if (!dev->audio_mode.has_audio)
1350 return -EINVAL;
1351
24c3c415
MCC
1352 if (a->index >= MAX_EM28XX_INPUT)
1353 return -EINVAL;
1354 if (0 == INPUT(a->index)->type)
1355 return -EINVAL;
1356
efc52a94
MCC
1357 mutex_lock(&dev->lock);
1358
35ae6f04
MCC
1359 dev->ctl_ainput = INPUT(a->index)->amux;
1360 dev->ctl_aoutput = INPUT(a->index)->aout;
e879b8eb
MCC
1361
1362 if (!dev->ctl_aoutput)
1363 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
efc52a94
MCC
1364
1365 mutex_unlock(&dev->lock);
195a4ef6
MCC
1366 return 0;
1367}
1368
1369static int vidioc_queryctrl(struct file *file, void *priv,
1370 struct v4l2_queryctrl *qc)
1371{
1372 struct em28xx_fh *fh = priv;
1373 struct em28xx *dev = fh->dev;
1374 int id = qc->id;
195a4ef6
MCC
1375 int rc;
1376
1377 rc = check_dev(dev);
1378 if (rc < 0)
1379 return rc;
1380
1381 memset(qc, 0, sizeof(*qc));
1382
1383 qc->id = id;
1384
a98f6af9
MCC
1385 /* enumberate AC97 controls */
1386 if (dev->audio_mode.ac97 != EM28XX_NO_AC97) {
1387 rc = ac97_queryctrl(qc);
1388 if (!rc)
1389 return 0;
195a4ef6 1390 }
f2cf250a 1391
a98f6af9 1392 /* enumberate V4L2 device controls */
195a4ef6 1393 mutex_lock(&dev->lock);
f2cf250a 1394 v4l2_device_call_all(&dev->v4l2_dev, 0, core, queryctrl, qc);
195a4ef6 1395 mutex_unlock(&dev->lock);
a6c2ba28 1396
195a4ef6
MCC
1397 if (qc->type)
1398 return 0;
1399 else
1400 return -EINVAL;
1401}
a6c2ba28 1402
195a4ef6
MCC
1403static int vidioc_g_ctrl(struct file *file, void *priv,
1404 struct v4l2_control *ctrl)
1405{
1406 struct em28xx_fh *fh = priv;
1407 struct em28xx *dev = fh->dev;
1408 int rc;
a6c2ba28 1409
195a4ef6
MCC
1410 rc = check_dev(dev);
1411 if (rc < 0)
1412 return rc;
b6070f07 1413 rc = 0;
efc52a94 1414
195a4ef6 1415 mutex_lock(&dev->lock);
a6c2ba28 1416
a98f6af9
MCC
1417 /* Set an AC97 control */
1418 if (dev->audio_mode.ac97 != EM28XX_NO_AC97)
1419 rc = ac97_get_ctrl(dev, ctrl);
1420 else
1421 rc = 1;
1422
1423 /* It were not an AC97 control. Sends it to the v4l2 dev interface */
1424 if (rc == 1) {
f2cf250a 1425 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_ctrl, ctrl);
a98f6af9 1426 rc = 0;
07f7db4c 1427 }
195a4ef6
MCC
1428
1429 mutex_unlock(&dev->lock);
1430 return rc;
1431}
1432
1433static int vidioc_s_ctrl(struct file *file, void *priv,
1434 struct v4l2_control *ctrl)
1435{
1436 struct em28xx_fh *fh = priv;
1437 struct em28xx *dev = fh->dev;
195a4ef6
MCC
1438 int rc;
1439
1440 rc = check_dev(dev);
1441 if (rc < 0)
1442 return rc;
1443
1444 mutex_lock(&dev->lock);
1445
a98f6af9
MCC
1446 /* Set an AC97 control */
1447 if (dev->audio_mode.ac97 != EM28XX_NO_AC97)
1448 rc = ac97_set_ctrl(dev, ctrl);
1449 else
195a4ef6 1450 rc = 1;
a6c2ba28 1451
73c6f462 1452 /* It isn't an AC97 control. Sends it to the v4l2 dev interface */
195a4ef6 1453 if (rc == 1) {
f2cf250a 1454 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_ctrl, ctrl);
73c6f462
MCC
1455
1456 /*
1457 * In the case of non-AC97 volume controls, we still need
1458 * to do some setups at em28xx, in order to mute/unmute
1459 * and to adjust audio volume. However, the value ranges
1460 * should be checked by the corresponding V4L subdriver.
1461 */
1462 switch (ctrl->id) {
1463 case V4L2_CID_AUDIO_MUTE:
1464 dev->mute = ctrl->value;
1465 rc = em28xx_audio_analog_set(dev);
1466 break;
1467 case V4L2_CID_AUDIO_VOLUME:
1468 dev->volume = ctrl->value;
1469 rc = em28xx_audio_analog_set(dev);
1470 }
195a4ef6
MCC
1471 }
1472
5a80415b 1473 mutex_unlock(&dev->lock);
195a4ef6 1474 return rc;
a6c2ba28 1475}
1476
195a4ef6
MCC
1477static int vidioc_g_tuner(struct file *file, void *priv,
1478 struct v4l2_tuner *t)
a6c2ba28 1479{
195a4ef6
MCC
1480 struct em28xx_fh *fh = priv;
1481 struct em28xx *dev = fh->dev;
1482 int rc;
1483
1484 rc = check_dev(dev);
1485 if (rc < 0)
1486 return rc;
1487
1488 if (0 != t->index)
1489 return -EINVAL;
1490
1491 strcpy(t->name, "Tuner");
1492
1493 mutex_lock(&dev->lock);
f2cf250a 1494 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
195a4ef6 1495 mutex_unlock(&dev->lock);
f2cf250a 1496
195a4ef6 1497 return 0;
a6c2ba28 1498}
1499
195a4ef6
MCC
1500static int vidioc_s_tuner(struct file *file, void *priv,
1501 struct v4l2_tuner *t)
a6c2ba28 1502{
195a4ef6
MCC
1503 struct em28xx_fh *fh = priv;
1504 struct em28xx *dev = fh->dev;
1505 int rc;
63337dd3 1506
195a4ef6
MCC
1507 rc = check_dev(dev);
1508 if (rc < 0)
1509 return rc;
1510
1511 if (0 != t->index)
1512 return -EINVAL;
1513
1514 mutex_lock(&dev->lock);
f2cf250a 1515 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
195a4ef6 1516 mutex_unlock(&dev->lock);
f2cf250a 1517
195a4ef6 1518 return 0;
a6c2ba28 1519}
1520
195a4ef6
MCC
1521static int vidioc_g_frequency(struct file *file, void *priv,
1522 struct v4l2_frequency *f)
1523{
1524 struct em28xx_fh *fh = priv;
1525 struct em28xx *dev = fh->dev;
a6c2ba28 1526
efc52a94 1527 mutex_lock(&dev->lock);
0be43754 1528 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
195a4ef6 1529 f->frequency = dev->ctl_freq;
efc52a94 1530 mutex_unlock(&dev->lock);
195a4ef6
MCC
1531
1532 return 0;
1533}
1534
1535static int vidioc_s_frequency(struct file *file, void *priv,
1536 struct v4l2_frequency *f)
a6c2ba28 1537{
195a4ef6
MCC
1538 struct em28xx_fh *fh = priv;
1539 struct em28xx *dev = fh->dev;
1540 int rc;
9c75541f 1541
195a4ef6
MCC
1542 rc = check_dev(dev);
1543 if (rc < 0)
1544 return rc;
1545
1546 if (0 != f->tuner)
1547 return -EINVAL;
1548
0be43754
MCC
1549 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1550 return -EINVAL;
1551 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
195a4ef6 1552 return -EINVAL;
a225452e
MCC
1553
1554 mutex_lock(&dev->lock);
a3a048ce 1555
195a4ef6 1556 dev->ctl_freq = f->frequency;
f2cf250a 1557 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, f);
a6c2ba28 1558
195a4ef6 1559 mutex_unlock(&dev->lock);
efc52a94 1560
195a4ef6
MCC
1561 return 0;
1562}
a6c2ba28 1563
1e7ad56f
MCC
1564#ifdef CONFIG_VIDEO_ADV_DEBUG
1565static int em28xx_reg_len(int reg)
1566{
1567 switch (reg) {
41facaa4
MCC
1568 case EM28XX_R40_AC97LSB:
1569 case EM28XX_R30_HSCALELOW:
1570 case EM28XX_R32_VSCALELOW:
1e7ad56f
MCC
1571 return 2;
1572 default:
1573 return 1;
1574 }
1575}
1576
14983d81 1577static int vidioc_g_chip_ident(struct file *file, void *priv,
aecde8b5 1578 struct v4l2_dbg_chip_ident *chip)
14983d81
MCC
1579{
1580 struct em28xx_fh *fh = priv;
1581 struct em28xx *dev = fh->dev;
1582
1583 chip->ident = V4L2_IDENT_NONE;
1584 chip->revision = 0;
1585
f2cf250a 1586 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_chip_ident, chip);
14983d81
MCC
1587
1588 return 0;
1589}
1590
1591
1e7ad56f 1592static int vidioc_g_register(struct file *file, void *priv,
aecde8b5 1593 struct v4l2_dbg_register *reg)
1e7ad56f
MCC
1594{
1595 struct em28xx_fh *fh = priv;
1596 struct em28xx *dev = fh->dev;
1597 int ret;
1598
aecde8b5 1599 switch (reg->match.type) {
14983d81 1600 case V4L2_CHIP_MATCH_AC97:
531c98e7
MCC
1601 mutex_lock(&dev->lock);
1602 ret = em28xx_read_ac97(dev, reg->reg);
1603 mutex_unlock(&dev->lock);
1604 if (ret < 0)
1605 return ret;
1606
1607 reg->val = ret;
aecde8b5 1608 reg->size = 1;
531c98e7 1609 return 0;
14983d81 1610 case V4L2_CHIP_MATCH_I2C_DRIVER:
f2cf250a 1611 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_register, reg);
14983d81
MCC
1612 return 0;
1613 case V4L2_CHIP_MATCH_I2C_ADDR:
4efa2d75
MCC
1614 /* TODO: is this correct? */
1615 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_register, reg);
1616 return 0;
14983d81 1617 default:
aecde8b5 1618 if (!v4l2_chip_match_host(&reg->match))
14983d81
MCC
1619 return -EINVAL;
1620 }
1e7ad56f 1621
14983d81 1622 /* Match host */
aecde8b5
HV
1623 reg->size = em28xx_reg_len(reg->reg);
1624 if (reg->size == 1) {
efc52a94 1625 mutex_lock(&dev->lock);
1e7ad56f 1626 ret = em28xx_read_reg(dev, reg->reg);
efc52a94
MCC
1627 mutex_unlock(&dev->lock);
1628
1e7ad56f
MCC
1629 if (ret < 0)
1630 return ret;
1631
1632 reg->val = ret;
1633 } else {
aecde8b5 1634 __le16 val = 0;
efc52a94 1635 mutex_lock(&dev->lock);
1e7ad56f
MCC
1636 ret = em28xx_read_reg_req_len(dev, USB_REQ_GET_STATUS,
1637 reg->reg, (char *)&val, 2);
efc52a94 1638 mutex_unlock(&dev->lock);
1e7ad56f
MCC
1639 if (ret < 0)
1640 return ret;
1641
aecde8b5 1642 reg->val = le16_to_cpu(val);
1e7ad56f
MCC
1643 }
1644
1645 return 0;
1646}
1647
1648static int vidioc_s_register(struct file *file, void *priv,
aecde8b5 1649 struct v4l2_dbg_register *reg)
1e7ad56f
MCC
1650{
1651 struct em28xx_fh *fh = priv;
1652 struct em28xx *dev = fh->dev;
aecde8b5 1653 __le16 buf;
efc52a94 1654 int rc;
1e7ad56f 1655
aecde8b5 1656 switch (reg->match.type) {
14983d81 1657 case V4L2_CHIP_MATCH_AC97:
531c98e7
MCC
1658 mutex_lock(&dev->lock);
1659 rc = em28xx_write_ac97(dev, reg->reg, reg->val);
1660 mutex_unlock(&dev->lock);
1661
1662 return rc;
14983d81 1663 case V4L2_CHIP_MATCH_I2C_DRIVER:
f2cf250a 1664 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_register, reg);
14983d81
MCC
1665 return 0;
1666 case V4L2_CHIP_MATCH_I2C_ADDR:
4efa2d75
MCC
1667 /* TODO: is this correct? */
1668 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_register, reg);
1669 return 0;
14983d81 1670 default:
aecde8b5 1671 if (!v4l2_chip_match_host(&reg->match))
14983d81 1672 return -EINVAL;
531c98e7
MCC
1673 }
1674
14983d81 1675 /* Match host */
aecde8b5 1676 buf = cpu_to_le16(reg->val);
1e7ad56f 1677
efc52a94
MCC
1678 mutex_lock(&dev->lock);
1679 rc = em28xx_write_regs(dev, reg->reg, (char *)&buf,
1680 em28xx_reg_len(reg->reg));
1681 mutex_unlock(&dev->lock);
1682
1683 return rc;
1e7ad56f
MCC
1684}
1685#endif
1686
1687
195a4ef6
MCC
1688static int vidioc_cropcap(struct file *file, void *priv,
1689 struct v4l2_cropcap *cc)
1690{
1691 struct em28xx_fh *fh = priv;
1692 struct em28xx *dev = fh->dev;
1693
1694 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
a6c2ba28 1695 return -EINVAL;
a6c2ba28 1696
195a4ef6
MCC
1697 cc->bounds.left = 0;
1698 cc->bounds.top = 0;
1699 cc->bounds.width = dev->width;
1700 cc->bounds.height = dev->height;
1701 cc->defrect = cc->bounds;
1702 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1703 cc->pixelaspect.denominator = 59;
1704
1705 return 0;
1706}
1707
1708static int vidioc_streamon(struct file *file, void *priv,
1709 enum v4l2_buf_type type)
1710{
1711 struct em28xx_fh *fh = priv;
1712 struct em28xx *dev = fh->dev;
8c873d31 1713 int rc = -EINVAL;
195a4ef6
MCC
1714
1715 rc = check_dev(dev);
1716 if (rc < 0)
1717 return rc;
1718
8c873d31
DH
1719 if (unlikely(type != fh->type))
1720 return -EINVAL;
195a4ef6 1721
8c873d31
DH
1722 em28xx_videodbg("vidioc_streamon fh=%p t=%d fh->res=%d dev->res=%d\n",
1723 fh, type, fh->resources, dev->resources);
29b59417 1724
e3ba4d34 1725 if (unlikely(!res_get(fh, get_ressource(fh))))
8c873d31 1726 return -EBUSY;
efc52a94 1727
8c873d31
DH
1728 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1729 rc = videobuf_streamon(&fh->vb_vidq);
1730 else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
1731 rc = videobuf_streamon(&fh->vb_vbiq);
efc52a94
MCC
1732
1733 return rc;
195a4ef6
MCC
1734}
1735
1736static int vidioc_streamoff(struct file *file, void *priv,
1737 enum v4l2_buf_type type)
1738{
1739 struct em28xx_fh *fh = priv;
1740 struct em28xx *dev = fh->dev;
1741 int rc;
1742
1743 rc = check_dev(dev);
1744 if (rc < 0)
1745 return rc;
1746
28abf083
DH
1747 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1748 fh->type != V4L2_BUF_TYPE_VBI_CAPTURE)
ad0ebb96
MCC
1749 return -EINVAL;
1750 if (type != fh->type)
195a4ef6
MCC
1751 return -EINVAL;
1752
8c873d31
DH
1753 em28xx_videodbg("vidioc_streamoff fh=%p t=%d fh->res=%d dev->res=%d\n",
1754 fh, type, fh->resources, dev->resources);
efc52a94 1755
8c873d31 1756 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
28abf083 1757 videobuf_streamoff(&fh->vb_vidq);
8c873d31
DH
1758 res_free(fh, EM28XX_RESOURCE_VIDEO);
1759 } else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
28abf083 1760 videobuf_streamoff(&fh->vb_vbiq);
8c873d31
DH
1761 res_free(fh, EM28XX_RESOURCE_VBI);
1762 }
a6c2ba28 1763
a6c2ba28 1764 return 0;
1765}
1766
195a4ef6
MCC
1767static int vidioc_querycap(struct file *file, void *priv,
1768 struct v4l2_capability *cap)
a6c2ba28 1769{
195a4ef6
MCC
1770 struct em28xx_fh *fh = priv;
1771 struct em28xx *dev = fh->dev;
1772
1773 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1774 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
cb97716f 1775 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
195a4ef6
MCC
1776
1777 cap->version = EM28XX_VERSION_CODE;
1778
1779 cap->capabilities =
1780 V4L2_CAP_SLICED_VBI_CAPTURE |
1781 V4L2_CAP_VIDEO_CAPTURE |
195a4ef6
MCC
1782 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1783
0414614a
DH
1784 if (dev->vbi_dev)
1785 cap->capabilities |= V4L2_CAP_VBI_CAPTURE;
1786
6c428b57
MCC
1787 if (dev->audio_mode.has_audio)
1788 cap->capabilities |= V4L2_CAP_AUDIO;
1789
ed086314 1790 if (dev->tuner_type != TUNER_ABSENT)
195a4ef6
MCC
1791 cap->capabilities |= V4L2_CAP_TUNER;
1792
1793 return 0;
c0477ad9
MCC
1794}
1795
78b526a4 1796static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
bddcf633 1797 struct v4l2_fmtdesc *f)
a6c2ba28 1798{
bddcf633 1799 if (unlikely(f->index >= ARRAY_SIZE(format)))
c0477ad9 1800 return -EINVAL;
195a4ef6 1801
bddcf633
MCC
1802 strlcpy(f->description, format[f->index].name, sizeof(f->description));
1803 f->pixelformat = format[f->index].fourcc;
195a4ef6
MCC
1804
1805 return 0;
c0477ad9
MCC
1806}
1807
195a4ef6 1808/* Sliced VBI ioctls */
78b526a4 1809static int vidioc_g_fmt_sliced_vbi_cap(struct file *file, void *priv,
195a4ef6 1810 struct v4l2_format *f)
a6c2ba28 1811{
195a4ef6
MCC
1812 struct em28xx_fh *fh = priv;
1813 struct em28xx *dev = fh->dev;
1814 int rc;
a6c2ba28 1815
195a4ef6
MCC
1816 rc = check_dev(dev);
1817 if (rc < 0)
1818 return rc;
a6c2ba28 1819
195a4ef6
MCC
1820 mutex_lock(&dev->lock);
1821
1822 f->fmt.sliced.service_set = 0;
f2cf250a 1823 v4l2_device_call_all(&dev->v4l2_dev, 0, video, g_fmt, f);
195a4ef6
MCC
1824
1825 if (f->fmt.sliced.service_set == 0)
1826 rc = -EINVAL;
1827
1828 mutex_unlock(&dev->lock);
f2cf250a 1829
195a4ef6
MCC
1830 return rc;
1831}
1832
78b526a4 1833static int vidioc_try_set_sliced_vbi_cap(struct file *file, void *priv,
195a4ef6
MCC
1834 struct v4l2_format *f)
1835{
1836 struct em28xx_fh *fh = priv;
1837 struct em28xx *dev = fh->dev;
1838 int rc;
1839
1840 rc = check_dev(dev);
1841 if (rc < 0)
1842 return rc;
1843
1844 mutex_lock(&dev->lock);
f2cf250a 1845 v4l2_device_call_all(&dev->v4l2_dev, 0, video, g_fmt, f);
195a4ef6
MCC
1846 mutex_unlock(&dev->lock);
1847
1848 if (f->fmt.sliced.service_set == 0)
1849 return -EINVAL;
a6c2ba28 1850
1851 return 0;
1852}
1853
28abf083
DH
1854/* RAW VBI ioctls */
1855
1856static int vidioc_g_fmt_vbi_cap(struct file *file, void *priv,
1857 struct v4l2_format *format)
1858{
1859 format->fmt.vbi.samples_per_line = 720;
1860 format->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1861 format->fmt.vbi.offset = 0;
1862 format->fmt.vbi.flags = 0;
1863
1864 /* Varies by video standard (NTSC, PAL, etc.) */
1865 /* FIXME: hard-coded for NTSC support */
1866 format->fmt.vbi.sampling_rate = 6750000 * 4 / 2; /* FIXME: ??? */
1867 format->fmt.vbi.count[0] = 12;
1868 format->fmt.vbi.count[1] = 12;
1869 format->fmt.vbi.start[0] = 10;
1870 format->fmt.vbi.start[1] = 273;
1871
1872 return 0;
1873}
1874
1875static int vidioc_s_fmt_vbi_cap(struct file *file, void *priv,
1876 struct v4l2_format *format)
1877{
1878 format->fmt.vbi.samples_per_line = 720;
1879 format->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1880 format->fmt.vbi.offset = 0;
1881 format->fmt.vbi.flags = 0;
1882
1883 /* Varies by video standard (NTSC, PAL, etc.) */
1884 /* FIXME: hard-coded for NTSC support */
1885 format->fmt.vbi.sampling_rate = 6750000 * 4 / 2; /* FIXME: ??? */
1886 format->fmt.vbi.count[0] = 12;
1887 format->fmt.vbi.count[1] = 12;
1888 format->fmt.vbi.start[0] = 10;
1889 format->fmt.vbi.start[1] = 273;
1890
1891 return 0;
1892}
195a4ef6
MCC
1893
1894static int vidioc_reqbufs(struct file *file, void *priv,
1895 struct v4l2_requestbuffers *rb)
a6c2ba28 1896{
195a4ef6
MCC
1897 struct em28xx_fh *fh = priv;
1898 struct em28xx *dev = fh->dev;
195a4ef6 1899 int rc;
a6c2ba28 1900
195a4ef6
MCC
1901 rc = check_dev(dev);
1902 if (rc < 0)
1903 return rc;
a6c2ba28 1904
28abf083
DH
1905 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1906 return videobuf_reqbufs(&fh->vb_vidq, rb);
1907 else
1908 return videobuf_reqbufs(&fh->vb_vbiq, rb);
a6c2ba28 1909}
1910
195a4ef6
MCC
1911static int vidioc_querybuf(struct file *file, void *priv,
1912 struct v4l2_buffer *b)
e5589bef 1913{
195a4ef6
MCC
1914 struct em28xx_fh *fh = priv;
1915 struct em28xx *dev = fh->dev;
1916 int rc;
e5589bef 1917
195a4ef6
MCC
1918 rc = check_dev(dev);
1919 if (rc < 0)
1920 return rc;
2d50f847 1921
28abf083
DH
1922 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1923 return videobuf_querybuf(&fh->vb_vidq, b);
1924 else {
1925 /* FIXME: I'm not sure yet whether this is a bug in zvbi or
1926 the videobuf framework, but we probably shouldn't be
1927 returning a buffer larger than that which was asked for.
1928 At a minimum, it causes a crash in zvbi since it does
1929 a memcpy based on the source buffer length */
1930 int result = videobuf_querybuf(&fh->vb_vbiq, b);
1931 b->length = 17280;
1932 return result;
1933 }
195a4ef6
MCC
1934}
1935
1936static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1937{
1938 struct em28xx_fh *fh = priv;
1939 struct em28xx *dev = fh->dev;
195a4ef6
MCC
1940 int rc;
1941
1942 rc = check_dev(dev);
1943 if (rc < 0)
1944 return rc;
1945
28abf083
DH
1946 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1947 return videobuf_qbuf(&fh->vb_vidq, b);
e3ba4d34 1948 else
28abf083 1949 return videobuf_qbuf(&fh->vb_vbiq, b);
e5589bef
MCC
1950}
1951
195a4ef6 1952static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
2d50f847 1953{
195a4ef6
MCC
1954 struct em28xx_fh *fh = priv;
1955 struct em28xx *dev = fh->dev;
1956 int rc;
195a4ef6
MCC
1957
1958 rc = check_dev(dev);
1959 if (rc < 0)
1960 return rc;
2d50f847 1961
28abf083
DH
1962 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1963 return videobuf_dqbuf(&fh->vb_vidq, b, file->f_flags &
1964 O_NONBLOCK);
1965 else
1966 return videobuf_dqbuf(&fh->vb_vbiq, b, file->f_flags &
1967 O_NONBLOCK);
ad0ebb96 1968}
2d50f847 1969
ad0ebb96 1970#ifdef CONFIG_VIDEO_V4L1_COMPAT
f245e549 1971static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
ad0ebb96 1972{
f245e549 1973 struct em28xx_fh *fh = priv;
2d50f847 1974
28abf083
DH
1975 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1976 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
1977 else
1978 return videobuf_cgmbuf(&fh->vb_vbiq, mbuf, 8);
195a4ef6 1979}
ad0ebb96
MCC
1980#endif
1981
2d50f847 1982
0be43754
MCC
1983/* ----------------------------------------------------------- */
1984/* RADIO ESPECIFIC IOCTLS */
1985/* ----------------------------------------------------------- */
1986
1987static int radio_querycap(struct file *file, void *priv,
1988 struct v4l2_capability *cap)
1989{
1990 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1991
1992 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1993 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
cb97716f 1994 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
0be43754
MCC
1995
1996 cap->version = EM28XX_VERSION_CODE;
1997 cap->capabilities = V4L2_CAP_TUNER;
1998 return 0;
1999}
2000
2001static int radio_g_tuner(struct file *file, void *priv,
2002 struct v4l2_tuner *t)
2003{
2004 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
2005
2006 if (unlikely(t->index > 0))
2007 return -EINVAL;
2008
2009 strcpy(t->name, "Radio");
2010 t->type = V4L2_TUNER_RADIO;
2011
efc52a94 2012 mutex_lock(&dev->lock);
f2cf250a 2013 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
efc52a94
MCC
2014 mutex_unlock(&dev->lock);
2015
0be43754
MCC
2016 return 0;
2017}
2018
2019static int radio_enum_input(struct file *file, void *priv,
2020 struct v4l2_input *i)
2021{
2022 if (i->index != 0)
2023 return -EINVAL;
2024 strcpy(i->name, "Radio");
2025 i->type = V4L2_INPUT_TYPE_TUNER;
2026
2027 return 0;
2028}
2029
2030static int radio_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
2031{
2032 if (unlikely(a->index))
2033 return -EINVAL;
2034
2035 strcpy(a->name, "Radio");
2036 return 0;
2037}
2038
2039static int radio_s_tuner(struct file *file, void *priv,
2040 struct v4l2_tuner *t)
2041{
2042 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
2043
2044 if (0 != t->index)
2045 return -EINVAL;
2046
efc52a94 2047 mutex_lock(&dev->lock);
f2cf250a 2048 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
efc52a94 2049 mutex_unlock(&dev->lock);
0be43754
MCC
2050
2051 return 0;
2052}
2053
2054static int radio_s_audio(struct file *file, void *fh,
2055 struct v4l2_audio *a)
2056{
2057 return 0;
2058}
2059
2060static int radio_s_input(struct file *file, void *fh, unsigned int i)
2061{
2062 return 0;
2063}
2064
2065static int radio_queryctrl(struct file *file, void *priv,
2066 struct v4l2_queryctrl *qc)
2067{
2068 int i;
2069
2070 if (qc->id < V4L2_CID_BASE ||
2071 qc->id >= V4L2_CID_LASTP1)
2072 return -EINVAL;
2073
ed10daae
MCC
2074 for (i = 0; i < ARRAY_SIZE(ac97_qctrl); i++) {
2075 if (qc->id && qc->id == ac97_qctrl[i].id) {
2076 memcpy(qc, &(ac97_qctrl[i]), sizeof(*qc));
0be43754
MCC
2077 return 0;
2078 }
2079 }
2080
2081 return -EINVAL;
2082}
2083
195a4ef6
MCC
2084/*
2085 * em28xx_v4l2_open()
2086 * inits the device and starts isoc transfer
2087 */
bec43661 2088static int em28xx_v4l2_open(struct file *filp)
195a4ef6 2089{
bec43661 2090 int minor = video_devdata(filp)->minor;
1a23f81b
MCC
2091 int errCode = 0, radio;
2092 struct em28xx *dev;
2093 enum v4l2_buf_type fh_type;
195a4ef6 2094 struct em28xx_fh *fh;
c2a6b54a 2095 enum v4l2_field field;
2d50f847 2096
bec43661 2097 dev = em28xx_get_device(minor, &fh_type, &radio);
efc52a94 2098
818a557e 2099 if (NULL == dev)
195a4ef6 2100 return -ENODEV;
818a557e
MCC
2101
2102 mutex_lock(&dev->lock);
2d50f847 2103
195a4ef6 2104 em28xx_videodbg("open minor=%d type=%s users=%d\n",
d7aa8020 2105 minor, v4l2_type_names[fh_type], dev->users);
2d50f847 2106
9aeb4b05 2107
c67ec53f 2108 fh = kzalloc(sizeof(struct em28xx_fh), GFP_KERNEL);
195a4ef6
MCC
2109 if (!fh) {
2110 em28xx_errdev("em28xx-video.c: Out of memory?!\n");
818a557e 2111 mutex_unlock(&dev->lock);
195a4ef6
MCC
2112 return -ENOMEM;
2113 }
195a4ef6 2114 fh->dev = dev;
0be43754 2115 fh->radio = radio;
d7aa8020 2116 fh->type = fh_type;
195a4ef6 2117 filp->private_data = fh;
9aeb4b05 2118
d7aa8020 2119 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->users == 0) {
c67ec53f 2120 em28xx_set_mode(dev, EM28XX_ANALOG_MODE);
3687e1e6 2121 em28xx_set_alternate(dev);
195a4ef6 2122 em28xx_resolution_set(dev);
2d50f847 2123
c67ec53f
MCC
2124 /* Needed, since GPIO might have disabled power of
2125 some i2c device
2126 */
1a23f81b 2127 em28xx_wake_i2c(dev);
c67ec53f 2128
2d50f847 2129 }
0be43754
MCC
2130 if (fh->radio) {
2131 em28xx_videodbg("video_open: setting radio device\n");
f2cf250a 2132 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_radio);
0be43754 2133 }
2d50f847 2134
195a4ef6 2135 dev->users++;
2d50f847 2136
c2a6b54a
MCC
2137 if (dev->progressive)
2138 field = V4L2_FIELD_NONE;
2139 else
2140 field = V4L2_FIELD_INTERLACED;
2141
8c873d31
DH
2142 videobuf_queue_vmalloc_init(&fh->vb_vidq, &em28xx_video_qops,
2143 NULL, &dev->slock,
2144 V4L2_BUF_TYPE_VIDEO_CAPTURE, field,
2145 sizeof(struct em28xx_buffer), fh);
28abf083 2146
8c873d31
DH
2147 videobuf_queue_vmalloc_init(&fh->vb_vbiq, &em28xx_vbi_qops,
2148 NULL, &dev->slock,
2149 V4L2_BUF_TYPE_VBI_CAPTURE,
2150 V4L2_FIELD_SEQ_TB,
2151 sizeof(struct em28xx_buffer), fh);
ad0ebb96 2152
195a4ef6 2153 mutex_unlock(&dev->lock);
c67ec53f 2154
195a4ef6 2155 return errCode;
2d50f847 2156}
e5589bef 2157
a6c2ba28 2158/*
195a4ef6
MCC
2159 * em28xx_realease_resources()
2160 * unregisters the v4l2,i2c and usb devices
2161 * called when the device gets disconected or at module unload
2162*/
1a23f81b 2163void em28xx_release_analog_resources(struct em28xx *dev)
a6c2ba28 2164{
a6c2ba28 2165
195a4ef6 2166 /*FIXME: I2C IR should be disconnected */
a6c2ba28 2167
0be43754
MCC
2168 if (dev->radio_dev) {
2169 if (-1 != dev->radio_dev->minor)
2170 video_unregister_device(dev->radio_dev);
2171 else
2172 video_device_release(dev->radio_dev);
2173 dev->radio_dev = NULL;
2174 }
2175 if (dev->vbi_dev) {
49240444
DH
2176 em28xx_info("V4L2 device /dev/vbi%d deregistered\n",
2177 dev->vbi_dev->num);
0be43754
MCC
2178 if (-1 != dev->vbi_dev->minor)
2179 video_unregister_device(dev->vbi_dev);
2180 else
2181 video_device_release(dev->vbi_dev);
2182 dev->vbi_dev = NULL;
2183 }
2184 if (dev->vdev) {
49240444
DH
2185 em28xx_info("V4L2 device /dev/video%d deregistered\n",
2186 dev->vdev->num);
0be43754
MCC
2187 if (-1 != dev->vdev->minor)
2188 video_unregister_device(dev->vdev);
2189 else
2190 video_device_release(dev->vdev);
2191 dev->vdev = NULL;
2192 }
195a4ef6 2193}
a6c2ba28 2194
195a4ef6
MCC
2195/*
2196 * em28xx_v4l2_close()
6ea54d93
DSL
2197 * stops streaming and deallocates all resources allocated by the v4l2
2198 * calls and ioctls
195a4ef6 2199 */
bec43661 2200static int em28xx_v4l2_close(struct file *filp)
195a4ef6
MCC
2201{
2202 struct em28xx_fh *fh = filp->private_data;
2203 struct em28xx *dev = fh->dev;
2204 int errCode;
a6c2ba28 2205
195a4ef6 2206 em28xx_videodbg("users=%d\n", dev->users);
a6c2ba28 2207
8c873d31 2208 if (res_check(fh, EM28XX_RESOURCE_VIDEO)) {
ad0ebb96 2209 videobuf_stop(&fh->vb_vidq);
8c873d31
DH
2210 res_free(fh, EM28XX_RESOURCE_VIDEO);
2211 }
a6c2ba28 2212
8c873d31
DH
2213 if (res_check(fh, EM28XX_RESOURCE_VBI)) {
2214 videobuf_stop(&fh->vb_vbiq);
2215 res_free(fh, EM28XX_RESOURCE_VBI);
2216 }
2217
e3ba4d34 2218 if (dev->users == 1) {
195a4ef6
MCC
2219 /* the device is already disconnect,
2220 free the remaining resources */
2221 if (dev->state & DEV_DISCONNECTED) {
2222 em28xx_release_resources(dev);
195a4ef6
MCC
2223 kfree(dev);
2224 return 0;
2225 }
a6c2ba28 2226
eb6c9634 2227 /* Save some power by putting tuner to sleep */
622b828a 2228 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_power, 0);
eb6c9634 2229
d7aa8020
AT
2230 /* do this before setting alternate! */
2231 em28xx_uninit_isoc(dev);
2fe3e2ee 2232 em28xx_set_mode(dev, EM28XX_SUSPEND);
d7aa8020 2233
195a4ef6
MCC
2234 /* set alternate 0 */
2235 dev->alt = 0;
2236 em28xx_videodbg("setting alternate 0\n");
2237 errCode = usb_set_interface(dev->udev, 0, 0);
2238 if (errCode < 0) {
2239 em28xx_errdev("cannot change alternate number to "
2240 "0 (error=%i)\n", errCode);
2241 }
9aeb4b05 2242 }
28abf083 2243
8c873d31
DH
2244 videobuf_mmap_free(&fh->vb_vidq);
2245 videobuf_mmap_free(&fh->vb_vbiq);
195a4ef6
MCC
2246 kfree(fh);
2247 dev->users--;
2248 wake_up_interruptible_nr(&dev->open, 1);
195a4ef6
MCC
2249 return 0;
2250}
a6c2ba28 2251
195a4ef6
MCC
2252/*
2253 * em28xx_v4l2_read()
2254 * will allocate buffers when called for the first time
2255 */
2256static ssize_t
6ea54d93 2257em28xx_v4l2_read(struct file *filp, char __user *buf, size_t count,
f245e549 2258 loff_t *pos)
195a4ef6 2259{
195a4ef6
MCC
2260 struct em28xx_fh *fh = filp->private_data;
2261 struct em28xx *dev = fh->dev;
ad0ebb96
MCC
2262 int rc;
2263
2264 rc = check_dev(dev);
2265 if (rc < 0)
2266 return rc;
a6c2ba28 2267
195a4ef6
MCC
2268 /* FIXME: read() is not prepared to allow changing the video
2269 resolution while streaming. Seems a bug at em28xx_set_fmt
2270 */
a6c2ba28 2271
ad0ebb96 2272 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
8c873d31
DH
2273 if (res_locked(dev, EM28XX_RESOURCE_VIDEO))
2274 return -EBUSY;
195a4ef6 2275
ad0ebb96
MCC
2276 return videobuf_read_stream(&fh->vb_vidq, buf, count, pos, 0,
2277 filp->f_flags & O_NONBLOCK);
195a4ef6 2278 }
28abf083
DH
2279
2280
2281 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
8c873d31
DH
2282 if (!res_get(fh, EM28XX_RESOURCE_VBI))
2283 return -EBUSY;
28abf083
DH
2284
2285 return videobuf_read_stream(&fh->vb_vbiq, buf, count, pos, 0,
2286 filp->f_flags & O_NONBLOCK);
2287 }
2288
ad0ebb96 2289 return 0;
a6c2ba28 2290}
2291
2292/*
195a4ef6
MCC
2293 * em28xx_v4l2_poll()
2294 * will allocate buffers when called for the first time
a6c2ba28 2295 */
a1a6ee74 2296static unsigned int em28xx_v4l2_poll(struct file *filp, poll_table *wait)
a6c2ba28 2297{
a3a048ce 2298 struct em28xx_fh *fh = filp->private_data;
195a4ef6 2299 struct em28xx *dev = fh->dev;
ad0ebb96
MCC
2300 int rc;
2301
2302 rc = check_dev(dev);
2303 if (rc < 0)
2304 return rc;
a6c2ba28 2305
8c873d31
DH
2306 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
2307 if (!res_get(fh, EM28XX_RESOURCE_VIDEO))
2308 return POLLERR;
28abf083 2309 return videobuf_poll_stream(filp, &fh->vb_vidq, wait);
8c873d31
DH
2310 } else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
2311 if (!res_get(fh, EM28XX_RESOURCE_VBI))
2312 return POLLERR;
28abf083 2313 return videobuf_poll_stream(filp, &fh->vb_vbiq, wait);
8c873d31 2314 } else {
ad0ebb96 2315 return POLLERR;
8c873d31 2316 }
195a4ef6 2317}
a6c2ba28 2318
195a4ef6
MCC
2319/*
2320 * em28xx_v4l2_mmap()
2321 */
2322static int em28xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
2323{
2324 struct em28xx_fh *fh = filp->private_data;
2325 struct em28xx *dev = fh->dev;
ad0ebb96 2326 int rc;
a6c2ba28 2327
ad0ebb96
MCC
2328 rc = check_dev(dev);
2329 if (rc < 0)
2330 return rc;
a6c2ba28 2331
91f6dcec
DH
2332 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
2333 rc = videobuf_mmap_mapper(&fh->vb_vidq, vma);
2334 else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
2335 rc = videobuf_mmap_mapper(&fh->vb_vbiq, vma);
a6c2ba28 2336
ad0ebb96
MCC
2337 em28xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
2338 (unsigned long)vma->vm_start,
2339 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
2340 rc);
a6c2ba28 2341
ad0ebb96 2342 return rc;
a6c2ba28 2343}
2344
bec43661 2345static const struct v4l2_file_operations em28xx_v4l_fops = {
195a4ef6
MCC
2346 .owner = THIS_MODULE,
2347 .open = em28xx_v4l2_open,
2348 .release = em28xx_v4l2_close,
2349 .read = em28xx_v4l2_read,
2350 .poll = em28xx_v4l2_poll,
2351 .mmap = em28xx_v4l2_mmap,
2352 .ioctl = video_ioctl2,
195a4ef6 2353};
17cbe2e5 2354
a399810c 2355static const struct v4l2_ioctl_ops video_ioctl_ops = {
195a4ef6 2356 .vidioc_querycap = vidioc_querycap,
78b526a4
HV
2357 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
2358 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
2359 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
2360 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
28abf083
DH
2361 .vidioc_g_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
2362 .vidioc_s_fmt_vbi_cap = vidioc_s_fmt_vbi_cap,
195a4ef6
MCC
2363 .vidioc_g_audio = vidioc_g_audio,
2364 .vidioc_s_audio = vidioc_s_audio,
2365 .vidioc_cropcap = vidioc_cropcap,
2366
78b526a4
HV
2367 .vidioc_g_fmt_sliced_vbi_cap = vidioc_g_fmt_sliced_vbi_cap,
2368 .vidioc_try_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
2369 .vidioc_s_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
195a4ef6
MCC
2370
2371 .vidioc_reqbufs = vidioc_reqbufs,
2372 .vidioc_querybuf = vidioc_querybuf,
2373 .vidioc_qbuf = vidioc_qbuf,
2374 .vidioc_dqbuf = vidioc_dqbuf,
19bf0038 2375 .vidioc_g_std = vidioc_g_std,
195a4ef6 2376 .vidioc_s_std = vidioc_s_std,
d96ecda6
MCC
2377 .vidioc_g_parm = vidioc_g_parm,
2378 .vidioc_s_parm = vidioc_s_parm,
195a4ef6
MCC
2379 .vidioc_enum_input = vidioc_enum_input,
2380 .vidioc_g_input = vidioc_g_input,
2381 .vidioc_s_input = vidioc_s_input,
2382 .vidioc_queryctrl = vidioc_queryctrl,
2383 .vidioc_g_ctrl = vidioc_g_ctrl,
2384 .vidioc_s_ctrl = vidioc_s_ctrl,
2385 .vidioc_streamon = vidioc_streamon,
2386 .vidioc_streamoff = vidioc_streamoff,
2387 .vidioc_g_tuner = vidioc_g_tuner,
2388 .vidioc_s_tuner = vidioc_s_tuner,
2389 .vidioc_g_frequency = vidioc_g_frequency,
2390 .vidioc_s_frequency = vidioc_s_frequency,
1e7ad56f
MCC
2391#ifdef CONFIG_VIDEO_ADV_DEBUG
2392 .vidioc_g_register = vidioc_g_register,
2393 .vidioc_s_register = vidioc_s_register,
14983d81 2394 .vidioc_g_chip_ident = vidioc_g_chip_ident,
1e7ad56f 2395#endif
ad0ebb96
MCC
2396#ifdef CONFIG_VIDEO_V4L1_COMPAT
2397 .vidiocgmbuf = vidiocgmbuf,
2398#endif
a399810c
HV
2399};
2400
2401static const struct video_device em28xx_video_template = {
2402 .fops = &em28xx_v4l_fops,
2403 .release = video_device_release,
2404 .ioctl_ops = &video_ioctl_ops,
2405
2406 .minor = -1,
195a4ef6
MCC
2407
2408 .tvnorms = V4L2_STD_ALL,
19bf0038 2409 .current_norm = V4L2_STD_PAL,
a6c2ba28 2410};
2411
bec43661 2412static const struct v4l2_file_operations radio_fops = {
a399810c
HV
2413 .owner = THIS_MODULE,
2414 .open = em28xx_v4l2_open,
2415 .release = em28xx_v4l2_close,
2416 .ioctl = video_ioctl2,
a399810c
HV
2417};
2418
2419static const struct v4l2_ioctl_ops radio_ioctl_ops = {
0be43754
MCC
2420 .vidioc_querycap = radio_querycap,
2421 .vidioc_g_tuner = radio_g_tuner,
2422 .vidioc_enum_input = radio_enum_input,
2423 .vidioc_g_audio = radio_g_audio,
2424 .vidioc_s_tuner = radio_s_tuner,
2425 .vidioc_s_audio = radio_s_audio,
2426 .vidioc_s_input = radio_s_input,
2427 .vidioc_queryctrl = radio_queryctrl,
2428 .vidioc_g_ctrl = vidioc_g_ctrl,
2429 .vidioc_s_ctrl = vidioc_s_ctrl,
2430 .vidioc_g_frequency = vidioc_g_frequency,
2431 .vidioc_s_frequency = vidioc_s_frequency,
1e7ad56f
MCC
2432#ifdef CONFIG_VIDEO_ADV_DEBUG
2433 .vidioc_g_register = vidioc_g_register,
2434 .vidioc_s_register = vidioc_s_register,
2435#endif
0be43754
MCC
2436};
2437
a399810c
HV
2438static struct video_device em28xx_radio_template = {
2439 .name = "em28xx-radio",
a399810c
HV
2440 .fops = &radio_fops,
2441 .ioctl_ops = &radio_ioctl_ops,
2442 .minor = -1,
2443};
2444
6ea54d93 2445/******************************** usb interface ******************************/
a6c2ba28 2446
6d79468d 2447
6d79468d 2448
532fe652 2449static struct video_device *em28xx_vdev_init(struct em28xx *dev,
a1a6ee74
NS
2450 const struct video_device *template,
2451 const char *type_name)
0be43754
MCC
2452{
2453 struct video_device *vfd;
2454
2455 vfd = video_device_alloc();
2456 if (NULL == vfd)
2457 return NULL;
f2cf250a
DSL
2458
2459 *vfd = *template;
2460 vfd->minor = -1;
2461 vfd->v4l2_dev = &dev->v4l2_dev;
2462 vfd->release = video_device_release;
2463 vfd->debug = video_debug;
0be43754
MCC
2464
2465 snprintf(vfd->name, sizeof(vfd->name), "%s %s",
2466 dev->name, type_name);
2467
2468 return vfd;
2469}
2470
2e5ef2df 2471int em28xx_register_analog_devices(struct em28xx *dev)
1a23f81b 2472{
6e7b9ea0 2473 u8 val;
2e5ef2df
MCC
2474 int ret;
2475
1a23f81b
MCC
2476 printk(KERN_INFO "%s: v4l2 driver version %d.%d.%d\n",
2477 dev->name,
2478 (EM28XX_VERSION_CODE >> 16) & 0xff,
2479 (EM28XX_VERSION_CODE >> 8) & 0xff, EM28XX_VERSION_CODE & 0xff);
2480
24c3c415
MCC
2481 /* set default norm */
2482 dev->norm = em28xx_video_template.current_norm;
24c3c415 2483 dev->interlaced = EM28XX_INTERLACED_DEFAULT;
24c3c415
MCC
2484 dev->ctl_input = 0;
2485
1a23f81b
MCC
2486 /* Analog specific initialization */
2487 dev->format = &format[0];
ed5f1431
MCC
2488 em28xx_set_video_format(dev, format[0].fourcc,
2489 norm_maxw(dev), norm_maxh(dev));
2490
24c3c415
MCC
2491 video_mux(dev, dev->ctl_input);
2492
2493 /* Audio defaults */
2494 dev->mute = 1;
2495 dev->volume = 0x1f;
1a23f81b 2496
1a23f81b 2497/* em28xx_write_reg(dev, EM28XX_R0E_AUDIOSRC, 0xc0); audio register */
a1a6ee74
NS
2498 val = (u8)em28xx_read_reg(dev, EM28XX_R0F_XCLK);
2499 em28xx_write_reg(dev, EM28XX_R0F_XCLK,
2500 (EM28XX_XCLK_AUDIO_UNMUTE | val));
1a23f81b 2501
1a23f81b
MCC
2502 em28xx_set_outfmt(dev);
2503 em28xx_colorlevels_set_default(dev);
2504 em28xx_compression_disable(dev);
2505
818a557e
MCC
2506 /* allocate and fill video video_device struct */
2507 dev->vdev = em28xx_vdev_init(dev, &em28xx_video_template, "video");
2508 if (!dev->vdev) {
2509 em28xx_errdev("cannot allocate video_device.\n");
2510 return -ENODEV;
2511 }
2512
2513 /* register v4l2 video video_device */
2514 ret = video_register_device(dev->vdev, VFL_TYPE_GRABBER,
2515 video_nr[dev->devno]);
2516 if (ret) {
2517 em28xx_errdev("unable to register video device (error=%i).\n",
2518 ret);
2519 return ret;
2520 }
2521
2522 /* Allocate and fill vbi video_device struct */
290c0cfa
DH
2523 if (em28xx_vbi_supported(dev) == 1) {
2524 dev->vbi_dev = em28xx_vdev_init(dev, &em28xx_video_template,
2525 "vbi");
818a557e 2526
290c0cfa
DH
2527 /* register v4l2 vbi video_device */
2528 ret = video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
2529 vbi_nr[dev->devno]);
2530 if (ret < 0) {
2531 em28xx_errdev("unable to register vbi device\n");
2532 return ret;
2533 }
818a557e
MCC
2534 }
2535
2536 if (em28xx_boards[dev->model].radio.type == EM28XX_RADIO) {
a1a6ee74
NS
2537 dev->radio_dev = em28xx_vdev_init(dev, &em28xx_radio_template,
2538 "radio");
818a557e
MCC
2539 if (!dev->radio_dev) {
2540 em28xx_errdev("cannot allocate video_device.\n");
2541 return -ENODEV;
2542 }
2543 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
2544 radio_nr[dev->devno]);
2545 if (ret < 0) {
2546 em28xx_errdev("can't register radio device\n");
2547 return ret;
2548 }
2549 em28xx_info("Registered radio device as /dev/radio%d\n",
2550 dev->radio_dev->num);
2551 }
2552
290c0cfa
DH
2553 em28xx_info("V4L2 video device registered as /dev/video%d\n",
2554 dev->vdev->num);
2555
2556 if (dev->vbi_dev)
2557 em28xx_info("V4L2 VBI device registered as /dev/vbi%d\n",
2558 dev->vbi_dev->num);
818a557e
MCC
2559
2560 return 0;
2561}