V4L/DVB (12406): em28xx: fix: don't do image interlacing on webcams
[linux-2.6/linux-2.6-openrd.git] / drivers / media / video / em28xx / em28xx-video.c
blobab079d9256c463a0c9889841ed3e0946969f1929
1 /*
2 em28xx-video.c - driver for Empia EM2800/EM2820/2840 USB
3 video capture devices
5 Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
6 Markus Rechberger <mrechberger@gmail.com>
7 Mauro Carvalho Chehab <mchehab@infradead.org>
8 Sascha Sommer <saschasommer@freenet.de>
10 Some parts based on SN9C10x PC Camera Controllers GPL driver made
11 by Luca Risolia <luca.risolia@studio.unibo.it>
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.
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.
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.
28 #include <linux/init.h>
29 #include <linux/list.h>
30 #include <linux/module.h>
31 #include <linux/kernel.h>
32 #include <linux/bitmap.h>
33 #include <linux/usb.h>
34 #include <linux/i2c.h>
35 #include <linux/version.h>
36 #include <linux/mm.h>
37 #include <linux/mutex.h>
39 #include "em28xx.h"
40 #include <media/v4l2-common.h>
41 #include <media/v4l2-ioctl.h>
42 #include <media/v4l2-chip-ident.h>
43 #include <media/msp3400.h>
44 #include <media/tuner.h>
46 #define DRIVER_AUTHOR "Ludovico Cavedon <cavedon@sssup.it>, " \
47 "Markus Rechberger <mrechberger@gmail.com>, " \
48 "Mauro Carvalho Chehab <mchehab@infradead.org>, " \
49 "Sascha Sommer <saschasommer@freenet.de>"
51 #define DRIVER_DESC "Empia em28xx based USB video device driver"
52 #define EM28XX_VERSION_CODE KERNEL_VERSION(0, 1, 2)
54 #define em28xx_videodbg(fmt, arg...) do {\
55 if (video_debug) \
56 printk(KERN_INFO "%s %s :"fmt, \
57 dev->name, __func__ , ##arg); } while (0)
59 static unsigned int isoc_debug;
60 module_param(isoc_debug, int, 0644);
61 MODULE_PARM_DESC(isoc_debug, "enable debug messages [isoc transfers]");
63 #define em28xx_isocdbg(fmt, arg...) \
64 do {\
65 if (isoc_debug) { \
66 printk(KERN_INFO "%s %s :"fmt, \
67 dev->name, __func__ , ##arg); \
68 } \
69 } while (0)
71 MODULE_AUTHOR(DRIVER_AUTHOR);
72 MODULE_DESCRIPTION(DRIVER_DESC);
73 MODULE_LICENSE("GPL");
75 static unsigned int video_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
76 static unsigned int vbi_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
77 static unsigned int radio_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
79 module_param_array(video_nr, int, NULL, 0444);
80 module_param_array(vbi_nr, int, NULL, 0444);
81 module_param_array(radio_nr, int, NULL, 0444);
82 MODULE_PARM_DESC(video_nr, "video device numbers");
83 MODULE_PARM_DESC(vbi_nr, "vbi device numbers");
84 MODULE_PARM_DESC(radio_nr, "radio device numbers");
86 static unsigned int video_debug;
87 module_param(video_debug, int, 0644);
88 MODULE_PARM_DESC(video_debug, "enable debug messages [video]");
90 /* supported video standards */
91 static struct em28xx_fmt format[] = {
93 .name = "16 bpp YUY2, 4:2:2, packed",
94 .fourcc = V4L2_PIX_FMT_YUYV,
95 .depth = 16,
96 .reg = EM28XX_OUTFMT_YUV422_Y0UY1V,
97 }, {
98 .name = "16 bpp RGB 565, LE",
99 .fourcc = V4L2_PIX_FMT_RGB565,
100 .depth = 16,
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,
125 /* supported controls */
126 /* Common to all boards */
127 static struct v4l2_queryctrl em28xx_qctrl[] = {
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,
136 .flags = 0,
137 }, {
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,
149 /* ------------------------------------------------------------------
150 DMA and thread functions
151 ------------------------------------------------------------------*/
154 * Announces that a buffer were filled and request the next
156 static inline void buffer_filled(struct em28xx *dev,
157 struct em28xx_dmaqueue *dma_q,
158 struct em28xx_buffer *buf)
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);
166 dev->isoc_ctl.buf = NULL;
168 list_del(&buf->vb.queue);
169 wake_up(&buf->vb.done);
173 * Identify the buffer header type and properly handles
175 static void em28xx_copy_video(struct em28xx *dev,
176 struct em28xx_dmaqueue *dma_q,
177 struct em28xx_buffer *buf,
178 unsigned char *p,
179 unsigned char *outp, unsigned long len)
181 void *fieldstart, *startwrite, *startread;
182 int linesdone, currlinedone, offset, lencopy, remain;
183 int bytesperline = dev->width << 1;
185 if (dma_q->pos + len > buf->vb.size)
186 len = buf->vb.size - dma_q->pos;
188 if (p[0] != 0x88 && p[0] != 0x22) {
189 em28xx_isocdbg("frame is not complete\n");
190 len += 4;
191 } else
192 p += 4;
194 startread = p;
195 remain = len;
197 if (dev->progressive)
198 fieldstart = outp;
199 else {
200 /* Interlaces two half frames */
201 if (buf->top_field)
202 fieldstart = outp;
203 else
204 fieldstart = outp + bytesperline;
207 linesdone = dma_q->pos / bytesperline;
208 currlinedone = dma_q->pos % bytesperline;
210 if (dev->progressive)
211 offset = linesdone * bytesperline + currlinedone;
212 else
213 offset = linesdone * bytesperline * 2 + currlinedone;
215 startwrite = fieldstart + offset;
216 lencopy = bytesperline - currlinedone;
217 lencopy = lencopy > remain ? remain : lencopy;
219 if ((char *)startwrite + lencopy > (char *)outp + buf->vb.size) {
220 em28xx_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
221 ((char *)startwrite + lencopy) -
222 ((char *)outp + buf->vb.size));
223 remain = (char *)outp + buf->vb.size - (char *)startwrite;
224 lencopy = remain;
226 if (lencopy <= 0)
227 return;
228 memcpy(startwrite, startread, lencopy);
230 remain -= lencopy;
232 while (remain > 0) {
233 startwrite += lencopy + bytesperline;
234 startread += lencopy;
235 if (bytesperline > remain)
236 lencopy = remain;
237 else
238 lencopy = bytesperline;
240 if ((char *)startwrite + lencopy > (char *)outp +
241 buf->vb.size) {
242 em28xx_isocdbg("Overflow of %zi bytes past buffer end (2)\n",
243 ((char *)startwrite + lencopy) -
244 ((char *)outp + buf->vb.size));
245 lencopy = remain = (char *)outp + buf->vb.size -
246 (char *)startwrite;
248 if (lencopy <= 0)
249 break;
251 memcpy(startwrite, startread, lencopy);
253 remain -= lencopy;
256 dma_q->pos += len;
259 static inline void print_err_status(struct em28xx *dev,
260 int packet, int status)
262 char *errmsg = "Unknown";
264 switch (status) {
265 case -ENOENT:
266 errmsg = "unlinked synchronuously";
267 break;
268 case -ECONNRESET:
269 errmsg = "unlinked asynchronuously";
270 break;
271 case -ENOSR:
272 errmsg = "Buffer error (overrun)";
273 break;
274 case -EPIPE:
275 errmsg = "Stalled (device not responding)";
276 break;
277 case -EOVERFLOW:
278 errmsg = "Babble (bad cable?)";
279 break;
280 case -EPROTO:
281 errmsg = "Bit-stuff error (bad cable?)";
282 break;
283 case -EILSEQ:
284 errmsg = "CRC/Timeout (could be anything)";
285 break;
286 case -ETIME:
287 errmsg = "Device does not respond";
288 break;
290 if (packet < 0) {
291 em28xx_isocdbg("URB status %d [%s].\n", status, errmsg);
292 } else {
293 em28xx_isocdbg("URB packet %d, status %d [%s].\n",
294 packet, status, errmsg);
299 * video-buf generic routine to get the next available buffer
301 static inline void get_next_buf(struct em28xx_dmaqueue *dma_q,
302 struct em28xx_buffer **buf)
304 struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
305 char *outp;
307 if (list_empty(&dma_q->active)) {
308 em28xx_isocdbg("No active queue to serve\n");
309 dev->isoc_ctl.buf = NULL;
310 *buf = NULL;
311 return;
314 /* Get the next buffer */
315 *buf = list_entry(dma_q->active.next, struct em28xx_buffer, vb.queue);
317 /* Cleans up buffer - Usefull for testing for frame/URB loss */
318 outp = videobuf_to_vmalloc(&(*buf)->vb);
319 memset(outp, 0, (*buf)->vb.size);
321 dev->isoc_ctl.buf = *buf;
323 return;
327 * Controls the isoc copy of each urb packet
329 static inline int em28xx_isoc_copy(struct em28xx *dev, struct urb *urb)
331 struct em28xx_buffer *buf;
332 struct em28xx_dmaqueue *dma_q = urb->context;
333 unsigned char *outp = NULL;
334 int i, len = 0, rc = 1;
335 unsigned char *p;
337 if (!dev)
338 return 0;
340 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
341 return 0;
343 if (urb->status < 0) {
344 print_err_status(dev, -1, urb->status);
345 if (urb->status == -ENOENT)
346 return 0;
349 buf = dev->isoc_ctl.buf;
350 if (buf != NULL)
351 outp = videobuf_to_vmalloc(&buf->vb);
353 for (i = 0; i < urb->number_of_packets; i++) {
354 int status = urb->iso_frame_desc[i].status;
356 if (status < 0) {
357 print_err_status(dev, i, status);
358 if (urb->iso_frame_desc[i].status != -EPROTO)
359 continue;
362 len = urb->iso_frame_desc[i].actual_length - 4;
364 if (urb->iso_frame_desc[i].actual_length <= 0) {
365 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
366 continue;
368 if (urb->iso_frame_desc[i].actual_length >
369 dev->max_pkt_size) {
370 em28xx_isocdbg("packet bigger than packet size");
371 continue;
374 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
376 /* FIXME: incomplete buffer checks where removed to make
377 logic simpler. Impacts of those changes should be evaluated
379 if (p[0] == 0x33 && p[1] == 0x95 && p[2] == 0x00) {
380 em28xx_isocdbg("VBI HEADER!!!\n");
381 /* FIXME: Should add vbi copy */
382 continue;
384 if (p[0] == 0x22 && p[1] == 0x5a) {
385 em28xx_isocdbg("Video frame %d, length=%i, %s\n", p[2],
386 len, (p[2] & 1) ? "odd" : "even");
388 if (dev->progressive || !(p[2] & 1)) {
389 if (buf != NULL)
390 buffer_filled(dev, dma_q, buf);
391 get_next_buf(dma_q, &buf);
392 if (buf == NULL)
393 outp = NULL;
394 else
395 outp = videobuf_to_vmalloc(&buf->vb);
398 if (buf != NULL) {
399 if (p[2] & 1)
400 buf->top_field = 0;
401 else
402 buf->top_field = 1;
405 dma_q->pos = 0;
407 if (buf != NULL)
408 em28xx_copy_video(dev, dma_q, buf, p, outp, len);
410 return rc;
413 /* ------------------------------------------------------------------
414 Videobuf operations
415 ------------------------------------------------------------------*/
417 static int
418 buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
420 struct em28xx_fh *fh = vq->priv_data;
421 struct em28xx *dev = fh->dev;
422 struct v4l2_frequency f;
424 *size = (fh->dev->width * fh->dev->height * dev->format->depth + 7) >> 3;
426 if (0 == *count)
427 *count = EM28XX_DEF_BUF;
429 if (*count < EM28XX_MIN_BUF)
430 *count = EM28XX_MIN_BUF;
432 /* Ask tuner to go to analog or radio mode */
433 memset(&f, 0, sizeof(f));
434 f.frequency = dev->ctl_freq;
435 f.type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
437 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, &f);
439 return 0;
442 /* This is called *without* dev->slock held; please keep it that way */
443 static void free_buffer(struct videobuf_queue *vq, struct em28xx_buffer *buf)
445 struct em28xx_fh *fh = vq->priv_data;
446 struct em28xx *dev = fh->dev;
447 unsigned long flags = 0;
448 if (in_interrupt())
449 BUG();
451 /* We used to wait for the buffer to finish here, but this didn't work
452 because, as we were keeping the state as VIDEOBUF_QUEUED,
453 videobuf_queue_cancel marked it as finished for us.
454 (Also, it could wedge forever if the hardware was misconfigured.)
456 This should be safe; by the time we get here, the buffer isn't
457 queued anymore. If we ever start marking the buffers as
458 VIDEOBUF_ACTIVE, it won't be, though.
460 spin_lock_irqsave(&dev->slock, flags);
461 if (dev->isoc_ctl.buf == buf)
462 dev->isoc_ctl.buf = NULL;
463 spin_unlock_irqrestore(&dev->slock, flags);
465 videobuf_vmalloc_free(&buf->vb);
466 buf->vb.state = VIDEOBUF_NEEDS_INIT;
469 static int
470 buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
471 enum v4l2_field field)
473 struct em28xx_fh *fh = vq->priv_data;
474 struct em28xx_buffer *buf = container_of(vb, struct em28xx_buffer, vb);
475 struct em28xx *dev = fh->dev;
476 int rc = 0, urb_init = 0;
478 buf->vb.size = (fh->dev->width * fh->dev->height * dev->format->depth + 7) >> 3;
480 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
481 return -EINVAL;
483 buf->vb.width = dev->width;
484 buf->vb.height = dev->height;
485 buf->vb.field = field;
487 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
488 rc = videobuf_iolock(vq, &buf->vb, NULL);
489 if (rc < 0)
490 goto fail;
493 if (!dev->isoc_ctl.num_bufs)
494 urb_init = 1;
496 if (urb_init) {
497 rc = em28xx_init_isoc(dev, EM28XX_NUM_PACKETS,
498 EM28XX_NUM_BUFS, dev->max_pkt_size,
499 em28xx_isoc_copy);
500 if (rc < 0)
501 goto fail;
504 buf->vb.state = VIDEOBUF_PREPARED;
505 return 0;
507 fail:
508 free_buffer(vq, buf);
509 return rc;
512 static void
513 buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
515 struct em28xx_buffer *buf = container_of(vb,
516 struct em28xx_buffer,
517 vb);
518 struct em28xx_fh *fh = vq->priv_data;
519 struct em28xx *dev = fh->dev;
520 struct em28xx_dmaqueue *vidq = &dev->vidq;
522 buf->vb.state = VIDEOBUF_QUEUED;
523 list_add_tail(&buf->vb.queue, &vidq->active);
527 static void buffer_release(struct videobuf_queue *vq,
528 struct videobuf_buffer *vb)
530 struct em28xx_buffer *buf = container_of(vb,
531 struct em28xx_buffer,
532 vb);
533 struct em28xx_fh *fh = vq->priv_data;
534 struct em28xx *dev = (struct em28xx *)fh->dev;
536 em28xx_isocdbg("em28xx: called buffer_release\n");
538 free_buffer(vq, buf);
541 static struct videobuf_queue_ops em28xx_video_qops = {
542 .buf_setup = buffer_setup,
543 .buf_prepare = buffer_prepare,
544 .buf_queue = buffer_queue,
545 .buf_release = buffer_release,
548 /********************* v4l2 interface **************************************/
550 static void video_mux(struct em28xx *dev, int index)
552 dev->ctl_input = index;
553 dev->ctl_ainput = INPUT(index)->amux;
554 dev->ctl_aoutput = INPUT(index)->aout;
556 if (!dev->ctl_aoutput)
557 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
559 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_routing,
560 INPUT(index)->vmux, 0, 0);
562 if (dev->board.has_msp34xx) {
563 if (dev->i2s_speed) {
564 v4l2_device_call_all(&dev->v4l2_dev, 0, audio,
565 s_i2s_clock_freq, dev->i2s_speed);
567 /* Note: this is msp3400 specific */
568 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
569 dev->ctl_ainput, MSP_OUTPUT(MSP_SC_IN_DSP_SCART1), 0);
572 if (dev->board.adecoder != EM28XX_NOADECODER) {
573 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
574 dev->ctl_ainput, dev->ctl_aoutput, 0);
577 em28xx_audio_analog_set(dev);
580 /* Usage lock check functions */
581 static int res_get(struct em28xx_fh *fh)
583 struct em28xx *dev = fh->dev;
584 int rc = 0;
586 /* This instance already has stream_on */
587 if (fh->stream_on)
588 return rc;
590 if (dev->stream_on)
591 return -EBUSY;
593 dev->stream_on = 1;
594 fh->stream_on = 1;
595 return rc;
598 static int res_check(struct em28xx_fh *fh)
600 return fh->stream_on;
603 static void res_free(struct em28xx_fh *fh)
605 struct em28xx *dev = fh->dev;
607 fh->stream_on = 0;
608 dev->stream_on = 0;
612 * em28xx_get_ctrl()
613 * return the current saturation, brightness or contrast, mute state
615 static int em28xx_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
617 switch (ctrl->id) {
618 case V4L2_CID_AUDIO_MUTE:
619 ctrl->value = dev->mute;
620 return 0;
621 case V4L2_CID_AUDIO_VOLUME:
622 ctrl->value = dev->volume;
623 return 0;
624 default:
625 return -EINVAL;
630 * em28xx_set_ctrl()
631 * mute or set new saturation, brightness or contrast
633 static int em28xx_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
635 switch (ctrl->id) {
636 case V4L2_CID_AUDIO_MUTE:
637 if (ctrl->value != dev->mute) {
638 dev->mute = ctrl->value;
639 return em28xx_audio_analog_set(dev);
641 return 0;
642 case V4L2_CID_AUDIO_VOLUME:
643 dev->volume = ctrl->value;
644 return em28xx_audio_analog_set(dev);
645 default:
646 return -EINVAL;
650 static int check_dev(struct em28xx *dev)
652 if (dev->state & DEV_DISCONNECTED) {
653 em28xx_errdev("v4l2 ioctl: device not present\n");
654 return -ENODEV;
657 if (dev->state & DEV_MISCONFIGURED) {
658 em28xx_errdev("v4l2 ioctl: device is misconfigured; "
659 "close and open it again\n");
660 return -EIO;
662 return 0;
665 static void get_scale(struct em28xx *dev,
666 unsigned int width, unsigned int height,
667 unsigned int *hscale, unsigned int *vscale)
669 unsigned int maxw = norm_maxw(dev);
670 unsigned int maxh = norm_maxh(dev);
672 *hscale = (((unsigned long)maxw) << 12) / width - 4096L;
673 if (*hscale >= 0x4000)
674 *hscale = 0x3fff;
676 *vscale = (((unsigned long)maxh) << 12) / height - 4096L;
677 if (*vscale >= 0x4000)
678 *vscale = 0x3fff;
681 /* ------------------------------------------------------------------
682 IOCTL vidioc handling
683 ------------------------------------------------------------------*/
685 static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
686 struct v4l2_format *f)
688 struct em28xx_fh *fh = priv;
689 struct em28xx *dev = fh->dev;
691 mutex_lock(&dev->lock);
693 f->fmt.pix.width = dev->width;
694 f->fmt.pix.height = dev->height;
695 f->fmt.pix.pixelformat = dev->format->fourcc;
696 f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3;
697 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * dev->height;
698 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
700 /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
701 if (dev->progressive)
702 f->fmt.pix.field = V4L2_FIELD_NONE;
703 else
704 f->fmt.pix.field = dev->interlaced ?
705 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
707 mutex_unlock(&dev->lock);
708 return 0;
711 static struct em28xx_fmt *format_by_fourcc(unsigned int fourcc)
713 unsigned int i;
715 for (i = 0; i < ARRAY_SIZE(format); i++)
716 if (format[i].fourcc == fourcc)
717 return &format[i];
719 return NULL;
722 static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
723 struct v4l2_format *f)
725 struct em28xx_fh *fh = priv;
726 struct em28xx *dev = fh->dev;
727 unsigned int width = f->fmt.pix.width;
728 unsigned int height = f->fmt.pix.height;
729 unsigned int maxw = norm_maxw(dev);
730 unsigned int maxh = norm_maxh(dev);
731 unsigned int hscale, vscale;
732 struct em28xx_fmt *fmt;
734 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
735 if (!fmt) {
736 em28xx_videodbg("Fourcc format (%08x) invalid.\n",
737 f->fmt.pix.pixelformat);
738 return -EINVAL;
741 if (dev->board.is_em2800) {
742 /* the em2800 can only scale down to 50% */
743 height = height > (3 * maxh / 4) ? maxh : maxh / 2;
744 width = width > (3 * maxw / 4) ? maxw : maxw / 2;
745 /* According to empiatech support the MaxPacketSize is too small
746 * to support framesizes larger than 640x480 @ 30 fps or 640x576
747 * @ 25 fps. As this would cut of a part of the image we prefer
748 * 360x576 or 360x480 for now */
749 if (width == maxw && height == maxh)
750 width /= 2;
751 } else {
752 /* width must even because of the YUYV format
753 height must be even because of interlacing */
754 v4l_bound_align_image(&width, 48, maxw, 1, &height, 32, maxh, 1, 0);
757 get_scale(dev, width, height, &hscale, &vscale);
759 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
760 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
762 f->fmt.pix.width = width;
763 f->fmt.pix.height = height;
764 f->fmt.pix.pixelformat = fmt->fourcc;
765 f->fmt.pix.bytesperline = (dev->width * fmt->depth + 7) >> 3;
766 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * height;
767 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
768 if (dev->progressive)
769 f->fmt.pix.field = V4L2_FIELD_NONE;
770 else
771 f->fmt.pix.field = dev->interlaced ?
772 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
774 return 0;
777 static int em28xx_set_video_format(struct em28xx *dev, unsigned int fourcc,
778 unsigned width, unsigned height)
780 struct em28xx_fmt *fmt;
782 fmt = format_by_fourcc(fourcc);
783 if (!fmt)
784 return -EINVAL;
786 dev->format = fmt;
787 dev->width = width;
788 dev->height = height;
790 /* set new image size */
791 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
793 em28xx_set_alternate(dev);
794 em28xx_resolution_set(dev);
796 return 0;
799 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
800 struct v4l2_format *f)
802 struct em28xx_fh *fh = priv;
803 struct em28xx *dev = fh->dev;
804 int rc;
806 rc = check_dev(dev);
807 if (rc < 0)
808 return rc;
810 mutex_lock(&dev->lock);
812 vidioc_try_fmt_vid_cap(file, priv, f);
814 if (videobuf_queue_is_busy(&fh->vb_vidq)) {
815 em28xx_errdev("%s queue busy\n", __func__);
816 rc = -EBUSY;
817 goto out;
820 if (dev->stream_on && !fh->stream_on) {
821 em28xx_errdev("%s device in use by another fh\n", __func__);
822 rc = -EBUSY;
823 goto out;
826 rc = em28xx_set_video_format(dev, f->fmt.pix.pixelformat,
827 f->fmt.pix.width, f->fmt.pix.height);
829 out:
830 mutex_unlock(&dev->lock);
831 return rc;
834 static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
836 struct em28xx_fh *fh = priv;
837 struct em28xx *dev = fh->dev;
838 struct v4l2_format f;
839 int rc;
841 rc = check_dev(dev);
842 if (rc < 0)
843 return rc;
845 mutex_lock(&dev->lock);
846 dev->norm = *norm;
848 /* Adjusts width/height, if needed */
849 f.fmt.pix.width = dev->width;
850 f.fmt.pix.height = dev->height;
851 vidioc_try_fmt_vid_cap(file, priv, &f);
853 /* set new image size */
854 dev->width = f.fmt.pix.width;
855 dev->height = f.fmt.pix.height;
856 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
858 em28xx_resolution_set(dev);
859 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_std, dev->norm);
861 mutex_unlock(&dev->lock);
862 return 0;
865 static int vidioc_g_parm(struct file *file, void *priv,
866 struct v4l2_streamparm *p)
868 struct em28xx_fh *fh = priv;
869 struct em28xx *dev = fh->dev;
870 int rc = 0;
872 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
873 return -EINVAL;
875 if (dev->board.is_webcam)
876 rc = v4l2_device_call_until_err(&dev->v4l2_dev, 0,
877 video, g_parm, p);
878 else
879 v4l2_video_std_frame_period(dev->norm,
880 &p->parm.capture.timeperframe);
882 return rc;
885 static int vidioc_s_parm(struct file *file, void *priv,
886 struct v4l2_streamparm *p)
888 struct em28xx_fh *fh = priv;
889 struct em28xx *dev = fh->dev;
891 if (!dev->board.is_webcam)
892 return -EINVAL;
894 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
895 return -EINVAL;
897 return v4l2_device_call_until_err(&dev->v4l2_dev, 0, video, s_parm, p);
900 static const char *iname[] = {
901 [EM28XX_VMUX_COMPOSITE1] = "Composite1",
902 [EM28XX_VMUX_COMPOSITE2] = "Composite2",
903 [EM28XX_VMUX_COMPOSITE3] = "Composite3",
904 [EM28XX_VMUX_COMPOSITE4] = "Composite4",
905 [EM28XX_VMUX_SVIDEO] = "S-Video",
906 [EM28XX_VMUX_TELEVISION] = "Television",
907 [EM28XX_VMUX_CABLE] = "Cable TV",
908 [EM28XX_VMUX_DVB] = "DVB",
909 [EM28XX_VMUX_DEBUG] = "for debug only",
912 static int vidioc_enum_input(struct file *file, void *priv,
913 struct v4l2_input *i)
915 struct em28xx_fh *fh = priv;
916 struct em28xx *dev = fh->dev;
917 unsigned int n;
919 n = i->index;
920 if (n >= MAX_EM28XX_INPUT)
921 return -EINVAL;
922 if (0 == INPUT(n)->type)
923 return -EINVAL;
925 i->index = n;
926 i->type = V4L2_INPUT_TYPE_CAMERA;
928 strcpy(i->name, iname[INPUT(n)->type]);
930 if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
931 (EM28XX_VMUX_CABLE == INPUT(n)->type))
932 i->type = V4L2_INPUT_TYPE_TUNER;
934 i->std = dev->vdev->tvnorms;
936 return 0;
939 static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
941 struct em28xx_fh *fh = priv;
942 struct em28xx *dev = fh->dev;
944 *i = dev->ctl_input;
946 return 0;
949 static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
951 struct em28xx_fh *fh = priv;
952 struct em28xx *dev = fh->dev;
953 int rc;
955 rc = check_dev(dev);
956 if (rc < 0)
957 return rc;
959 if (i >= MAX_EM28XX_INPUT)
960 return -EINVAL;
961 if (0 == INPUT(i)->type)
962 return -EINVAL;
964 dev->ctl_input = i;
966 mutex_lock(&dev->lock);
967 video_mux(dev, dev->ctl_input);
968 mutex_unlock(&dev->lock);
969 return 0;
972 static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
974 struct em28xx_fh *fh = priv;
975 struct em28xx *dev = fh->dev;
977 switch (a->index) {
978 case EM28XX_AMUX_VIDEO:
979 strcpy(a->name, "Television");
980 break;
981 case EM28XX_AMUX_LINE_IN:
982 strcpy(a->name, "Line In");
983 break;
984 case EM28XX_AMUX_VIDEO2:
985 strcpy(a->name, "Television alt");
986 break;
987 case EM28XX_AMUX_PHONE:
988 strcpy(a->name, "Phone");
989 break;
990 case EM28XX_AMUX_MIC:
991 strcpy(a->name, "Mic");
992 break;
993 case EM28XX_AMUX_CD:
994 strcpy(a->name, "CD");
995 break;
996 case EM28XX_AMUX_AUX:
997 strcpy(a->name, "Aux");
998 break;
999 case EM28XX_AMUX_PCM_OUT:
1000 strcpy(a->name, "PCM");
1001 break;
1002 default:
1003 return -EINVAL;
1006 a->index = dev->ctl_ainput;
1007 a->capability = V4L2_AUDCAP_STEREO;
1009 return 0;
1012 static int vidioc_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
1014 struct em28xx_fh *fh = priv;
1015 struct em28xx *dev = fh->dev;
1018 if (a->index >= MAX_EM28XX_INPUT)
1019 return -EINVAL;
1020 if (0 == INPUT(a->index)->type)
1021 return -EINVAL;
1023 mutex_lock(&dev->lock);
1025 dev->ctl_ainput = INPUT(a->index)->amux;
1026 dev->ctl_aoutput = INPUT(a->index)->aout;
1028 if (!dev->ctl_aoutput)
1029 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
1031 mutex_unlock(&dev->lock);
1032 return 0;
1035 static int vidioc_queryctrl(struct file *file, void *priv,
1036 struct v4l2_queryctrl *qc)
1038 struct em28xx_fh *fh = priv;
1039 struct em28xx *dev = fh->dev;
1040 int id = qc->id;
1041 int i;
1042 int rc;
1044 rc = check_dev(dev);
1045 if (rc < 0)
1046 return rc;
1048 memset(qc, 0, sizeof(*qc));
1050 qc->id = id;
1052 if (!dev->board.has_msp34xx) {
1053 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1054 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1055 memcpy(qc, &(em28xx_qctrl[i]), sizeof(*qc));
1056 return 0;
1061 mutex_lock(&dev->lock);
1062 v4l2_device_call_all(&dev->v4l2_dev, 0, core, queryctrl, qc);
1063 mutex_unlock(&dev->lock);
1065 if (qc->type)
1066 return 0;
1067 else
1068 return -EINVAL;
1071 static int vidioc_g_ctrl(struct file *file, void *priv,
1072 struct v4l2_control *ctrl)
1074 struct em28xx_fh *fh = priv;
1075 struct em28xx *dev = fh->dev;
1076 int rc;
1078 rc = check_dev(dev);
1079 if (rc < 0)
1080 return rc;
1081 rc = 0;
1083 mutex_lock(&dev->lock);
1085 if (dev->board.has_msp34xx)
1086 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_ctrl, ctrl);
1087 else {
1088 rc = em28xx_get_ctrl(dev, ctrl);
1089 if (rc < 0) {
1090 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_ctrl, ctrl);
1091 rc = 0;
1095 mutex_unlock(&dev->lock);
1096 return rc;
1099 static int vidioc_s_ctrl(struct file *file, void *priv,
1100 struct v4l2_control *ctrl)
1102 struct em28xx_fh *fh = priv;
1103 struct em28xx *dev = fh->dev;
1104 u8 i;
1105 int rc;
1107 rc = check_dev(dev);
1108 if (rc < 0)
1109 return rc;
1111 mutex_lock(&dev->lock);
1113 if (dev->board.has_msp34xx)
1114 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_ctrl, ctrl);
1115 else {
1116 rc = 1;
1117 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1118 if (ctrl->id == em28xx_qctrl[i].id) {
1119 if (ctrl->value < em28xx_qctrl[i].minimum ||
1120 ctrl->value > em28xx_qctrl[i].maximum) {
1121 rc = -ERANGE;
1122 break;
1125 rc = em28xx_set_ctrl(dev, ctrl);
1126 break;
1131 /* Control not found - try to send it to the attached devices */
1132 if (rc == 1) {
1133 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_ctrl, ctrl);
1134 rc = 0;
1137 mutex_unlock(&dev->lock);
1138 return rc;
1141 static int vidioc_g_tuner(struct file *file, void *priv,
1142 struct v4l2_tuner *t)
1144 struct em28xx_fh *fh = priv;
1145 struct em28xx *dev = fh->dev;
1146 int rc;
1148 rc = check_dev(dev);
1149 if (rc < 0)
1150 return rc;
1152 if (0 != t->index)
1153 return -EINVAL;
1155 strcpy(t->name, "Tuner");
1157 mutex_lock(&dev->lock);
1158 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
1159 mutex_unlock(&dev->lock);
1161 return 0;
1164 static int vidioc_s_tuner(struct file *file, void *priv,
1165 struct v4l2_tuner *t)
1167 struct em28xx_fh *fh = priv;
1168 struct em28xx *dev = fh->dev;
1169 int rc;
1171 rc = check_dev(dev);
1172 if (rc < 0)
1173 return rc;
1175 if (0 != t->index)
1176 return -EINVAL;
1178 mutex_lock(&dev->lock);
1179 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
1180 mutex_unlock(&dev->lock);
1182 return 0;
1185 static int vidioc_g_frequency(struct file *file, void *priv,
1186 struct v4l2_frequency *f)
1188 struct em28xx_fh *fh = priv;
1189 struct em28xx *dev = fh->dev;
1191 mutex_lock(&dev->lock);
1192 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1193 f->frequency = dev->ctl_freq;
1194 mutex_unlock(&dev->lock);
1196 return 0;
1199 static int vidioc_s_frequency(struct file *file, void *priv,
1200 struct v4l2_frequency *f)
1202 struct em28xx_fh *fh = priv;
1203 struct em28xx *dev = fh->dev;
1204 int rc;
1206 rc = check_dev(dev);
1207 if (rc < 0)
1208 return rc;
1210 if (0 != f->tuner)
1211 return -EINVAL;
1213 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1214 return -EINVAL;
1215 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
1216 return -EINVAL;
1218 mutex_lock(&dev->lock);
1220 dev->ctl_freq = f->frequency;
1221 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, f);
1223 mutex_unlock(&dev->lock);
1225 return 0;
1228 #ifdef CONFIG_VIDEO_ADV_DEBUG
1229 static int em28xx_reg_len(int reg)
1231 switch (reg) {
1232 case EM28XX_R40_AC97LSB:
1233 case EM28XX_R30_HSCALELOW:
1234 case EM28XX_R32_VSCALELOW:
1235 return 2;
1236 default:
1237 return 1;
1241 static int vidioc_g_chip_ident(struct file *file, void *priv,
1242 struct v4l2_dbg_chip_ident *chip)
1244 struct em28xx_fh *fh = priv;
1245 struct em28xx *dev = fh->dev;
1247 chip->ident = V4L2_IDENT_NONE;
1248 chip->revision = 0;
1250 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_chip_ident, chip);
1252 return 0;
1256 static int vidioc_g_register(struct file *file, void *priv,
1257 struct v4l2_dbg_register *reg)
1259 struct em28xx_fh *fh = priv;
1260 struct em28xx *dev = fh->dev;
1261 int ret;
1263 switch (reg->match.type) {
1264 case V4L2_CHIP_MATCH_AC97:
1265 mutex_lock(&dev->lock);
1266 ret = em28xx_read_ac97(dev, reg->reg);
1267 mutex_unlock(&dev->lock);
1268 if (ret < 0)
1269 return ret;
1271 reg->val = ret;
1272 reg->size = 1;
1273 return 0;
1274 case V4L2_CHIP_MATCH_I2C_DRIVER:
1275 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_register, reg);
1276 return 0;
1277 case V4L2_CHIP_MATCH_I2C_ADDR:
1278 /* Not supported yet */
1279 return -EINVAL;
1280 default:
1281 if (!v4l2_chip_match_host(&reg->match))
1282 return -EINVAL;
1285 /* Match host */
1286 reg->size = em28xx_reg_len(reg->reg);
1287 if (reg->size == 1) {
1288 mutex_lock(&dev->lock);
1289 ret = em28xx_read_reg(dev, reg->reg);
1290 mutex_unlock(&dev->lock);
1292 if (ret < 0)
1293 return ret;
1295 reg->val = ret;
1296 } else {
1297 __le16 val = 0;
1298 mutex_lock(&dev->lock);
1299 ret = em28xx_read_reg_req_len(dev, USB_REQ_GET_STATUS,
1300 reg->reg, (char *)&val, 2);
1301 mutex_unlock(&dev->lock);
1302 if (ret < 0)
1303 return ret;
1305 reg->val = le16_to_cpu(val);
1308 return 0;
1311 static int vidioc_s_register(struct file *file, void *priv,
1312 struct v4l2_dbg_register *reg)
1314 struct em28xx_fh *fh = priv;
1315 struct em28xx *dev = fh->dev;
1316 __le16 buf;
1317 int rc;
1319 switch (reg->match.type) {
1320 case V4L2_CHIP_MATCH_AC97:
1321 mutex_lock(&dev->lock);
1322 rc = em28xx_write_ac97(dev, reg->reg, reg->val);
1323 mutex_unlock(&dev->lock);
1325 return rc;
1326 case V4L2_CHIP_MATCH_I2C_DRIVER:
1327 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_register, reg);
1328 return 0;
1329 case V4L2_CHIP_MATCH_I2C_ADDR:
1330 /* Not supported yet */
1331 return -EINVAL;
1332 default:
1333 if (!v4l2_chip_match_host(&reg->match))
1334 return -EINVAL;
1337 /* Match host */
1338 buf = cpu_to_le16(reg->val);
1340 mutex_lock(&dev->lock);
1341 rc = em28xx_write_regs(dev, reg->reg, (char *)&buf,
1342 em28xx_reg_len(reg->reg));
1343 mutex_unlock(&dev->lock);
1345 return rc;
1347 #endif
1350 static int vidioc_cropcap(struct file *file, void *priv,
1351 struct v4l2_cropcap *cc)
1353 struct em28xx_fh *fh = priv;
1354 struct em28xx *dev = fh->dev;
1356 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1357 return -EINVAL;
1359 cc->bounds.left = 0;
1360 cc->bounds.top = 0;
1361 cc->bounds.width = dev->width;
1362 cc->bounds.height = dev->height;
1363 cc->defrect = cc->bounds;
1364 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1365 cc->pixelaspect.denominator = 59;
1367 return 0;
1370 static int vidioc_streamon(struct file *file, void *priv,
1371 enum v4l2_buf_type type)
1373 struct em28xx_fh *fh = priv;
1374 struct em28xx *dev = fh->dev;
1375 int rc;
1377 rc = check_dev(dev);
1378 if (rc < 0)
1379 return rc;
1382 mutex_lock(&dev->lock);
1383 rc = res_get(fh);
1385 if (likely(rc >= 0))
1386 rc = videobuf_streamon(&fh->vb_vidq);
1388 mutex_unlock(&dev->lock);
1390 return rc;
1393 static int vidioc_streamoff(struct file *file, void *priv,
1394 enum v4l2_buf_type type)
1396 struct em28xx_fh *fh = priv;
1397 struct em28xx *dev = fh->dev;
1398 int rc;
1400 rc = check_dev(dev);
1401 if (rc < 0)
1402 return rc;
1404 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1405 return -EINVAL;
1406 if (type != fh->type)
1407 return -EINVAL;
1409 mutex_lock(&dev->lock);
1411 videobuf_streamoff(&fh->vb_vidq);
1412 res_free(fh);
1414 mutex_unlock(&dev->lock);
1416 return 0;
1419 static int vidioc_querycap(struct file *file, void *priv,
1420 struct v4l2_capability *cap)
1422 struct em28xx_fh *fh = priv;
1423 struct em28xx *dev = fh->dev;
1425 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1426 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
1427 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
1429 cap->version = EM28XX_VERSION_CODE;
1431 cap->capabilities =
1432 V4L2_CAP_SLICED_VBI_CAPTURE |
1433 V4L2_CAP_VIDEO_CAPTURE |
1434 V4L2_CAP_AUDIO |
1435 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1437 if (dev->tuner_type != TUNER_ABSENT)
1438 cap->capabilities |= V4L2_CAP_TUNER;
1440 return 0;
1443 static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
1444 struct v4l2_fmtdesc *f)
1446 if (unlikely(f->index >= ARRAY_SIZE(format)))
1447 return -EINVAL;
1449 strlcpy(f->description, format[f->index].name, sizeof(f->description));
1450 f->pixelformat = format[f->index].fourcc;
1452 return 0;
1455 /* Sliced VBI ioctls */
1456 static int vidioc_g_fmt_sliced_vbi_cap(struct file *file, void *priv,
1457 struct v4l2_format *f)
1459 struct em28xx_fh *fh = priv;
1460 struct em28xx *dev = fh->dev;
1461 int rc;
1463 rc = check_dev(dev);
1464 if (rc < 0)
1465 return rc;
1467 mutex_lock(&dev->lock);
1469 f->fmt.sliced.service_set = 0;
1470 v4l2_device_call_all(&dev->v4l2_dev, 0, video, g_fmt, f);
1472 if (f->fmt.sliced.service_set == 0)
1473 rc = -EINVAL;
1475 mutex_unlock(&dev->lock);
1477 return rc;
1480 static int vidioc_try_set_sliced_vbi_cap(struct file *file, void *priv,
1481 struct v4l2_format *f)
1483 struct em28xx_fh *fh = priv;
1484 struct em28xx *dev = fh->dev;
1485 int rc;
1487 rc = check_dev(dev);
1488 if (rc < 0)
1489 return rc;
1491 mutex_lock(&dev->lock);
1492 v4l2_device_call_all(&dev->v4l2_dev, 0, video, g_fmt, f);
1493 mutex_unlock(&dev->lock);
1495 if (f->fmt.sliced.service_set == 0)
1496 return -EINVAL;
1498 return 0;
1502 static int vidioc_reqbufs(struct file *file, void *priv,
1503 struct v4l2_requestbuffers *rb)
1505 struct em28xx_fh *fh = priv;
1506 struct em28xx *dev = fh->dev;
1507 int rc;
1509 rc = check_dev(dev);
1510 if (rc < 0)
1511 return rc;
1513 return videobuf_reqbufs(&fh->vb_vidq, rb);
1516 static int vidioc_querybuf(struct file *file, void *priv,
1517 struct v4l2_buffer *b)
1519 struct em28xx_fh *fh = priv;
1520 struct em28xx *dev = fh->dev;
1521 int rc;
1523 rc = check_dev(dev);
1524 if (rc < 0)
1525 return rc;
1527 return videobuf_querybuf(&fh->vb_vidq, b);
1530 static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1532 struct em28xx_fh *fh = priv;
1533 struct em28xx *dev = fh->dev;
1534 int rc;
1536 rc = check_dev(dev);
1537 if (rc < 0)
1538 return rc;
1540 return videobuf_qbuf(&fh->vb_vidq, b);
1543 static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1545 struct em28xx_fh *fh = priv;
1546 struct em28xx *dev = fh->dev;
1547 int rc;
1549 rc = check_dev(dev);
1550 if (rc < 0)
1551 return rc;
1553 return videobuf_dqbuf(&fh->vb_vidq, b, file->f_flags & O_NONBLOCK);
1556 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1557 static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
1559 struct em28xx_fh *fh = priv;
1561 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
1563 #endif
1566 /* ----------------------------------------------------------- */
1567 /* RADIO ESPECIFIC IOCTLS */
1568 /* ----------------------------------------------------------- */
1570 static int radio_querycap(struct file *file, void *priv,
1571 struct v4l2_capability *cap)
1573 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1575 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1576 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
1577 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
1579 cap->version = EM28XX_VERSION_CODE;
1580 cap->capabilities = V4L2_CAP_TUNER;
1581 return 0;
1584 static int radio_g_tuner(struct file *file, void *priv,
1585 struct v4l2_tuner *t)
1587 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1589 if (unlikely(t->index > 0))
1590 return -EINVAL;
1592 strcpy(t->name, "Radio");
1593 t->type = V4L2_TUNER_RADIO;
1595 mutex_lock(&dev->lock);
1596 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
1597 mutex_unlock(&dev->lock);
1599 return 0;
1602 static int radio_enum_input(struct file *file, void *priv,
1603 struct v4l2_input *i)
1605 if (i->index != 0)
1606 return -EINVAL;
1607 strcpy(i->name, "Radio");
1608 i->type = V4L2_INPUT_TYPE_TUNER;
1610 return 0;
1613 static int radio_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1615 if (unlikely(a->index))
1616 return -EINVAL;
1618 strcpy(a->name, "Radio");
1619 return 0;
1622 static int radio_s_tuner(struct file *file, void *priv,
1623 struct v4l2_tuner *t)
1625 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1627 if (0 != t->index)
1628 return -EINVAL;
1630 mutex_lock(&dev->lock);
1631 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
1632 mutex_unlock(&dev->lock);
1634 return 0;
1637 static int radio_s_audio(struct file *file, void *fh,
1638 struct v4l2_audio *a)
1640 return 0;
1643 static int radio_s_input(struct file *file, void *fh, unsigned int i)
1645 return 0;
1648 static int radio_queryctrl(struct file *file, void *priv,
1649 struct v4l2_queryctrl *qc)
1651 int i;
1653 if (qc->id < V4L2_CID_BASE ||
1654 qc->id >= V4L2_CID_LASTP1)
1655 return -EINVAL;
1657 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1658 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1659 memcpy(qc, &(em28xx_qctrl[i]), sizeof(*qc));
1660 return 0;
1664 return -EINVAL;
1668 * em28xx_v4l2_open()
1669 * inits the device and starts isoc transfer
1671 static int em28xx_v4l2_open(struct file *filp)
1673 int minor = video_devdata(filp)->minor;
1674 int errCode = 0, radio;
1675 struct em28xx *dev;
1676 enum v4l2_buf_type fh_type;
1677 struct em28xx_fh *fh;
1678 enum v4l2_field field;
1680 dev = em28xx_get_device(minor, &fh_type, &radio);
1682 if (NULL == dev)
1683 return -ENODEV;
1685 mutex_lock(&dev->lock);
1687 em28xx_videodbg("open minor=%d type=%s users=%d\n",
1688 minor, v4l2_type_names[fh_type], dev->users);
1691 fh = kzalloc(sizeof(struct em28xx_fh), GFP_KERNEL);
1692 if (!fh) {
1693 em28xx_errdev("em28xx-video.c: Out of memory?!\n");
1694 mutex_unlock(&dev->lock);
1695 return -ENOMEM;
1697 fh->dev = dev;
1698 fh->radio = radio;
1699 fh->type = fh_type;
1700 filp->private_data = fh;
1702 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->users == 0) {
1703 em28xx_set_mode(dev, EM28XX_ANALOG_MODE);
1704 em28xx_set_alternate(dev);
1705 em28xx_resolution_set(dev);
1707 /* Needed, since GPIO might have disabled power of
1708 some i2c device
1710 em28xx_wake_i2c(dev);
1713 if (fh->radio) {
1714 em28xx_videodbg("video_open: setting radio device\n");
1715 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_radio);
1718 dev->users++;
1720 if (dev->progressive)
1721 field = V4L2_FIELD_NONE;
1722 else
1723 field = V4L2_FIELD_INTERLACED;
1725 videobuf_queue_vmalloc_init(&fh->vb_vidq, &em28xx_video_qops,
1726 NULL, &dev->slock, fh->type, field,
1727 sizeof(struct em28xx_buffer), fh);
1729 mutex_unlock(&dev->lock);
1731 return errCode;
1735 * em28xx_realease_resources()
1736 * unregisters the v4l2,i2c and usb devices
1737 * called when the device gets disconected or at module unload
1739 void em28xx_release_analog_resources(struct em28xx *dev)
1742 /*FIXME: I2C IR should be disconnected */
1744 if (dev->radio_dev) {
1745 if (-1 != dev->radio_dev->minor)
1746 video_unregister_device(dev->radio_dev);
1747 else
1748 video_device_release(dev->radio_dev);
1749 dev->radio_dev = NULL;
1751 if (dev->vbi_dev) {
1752 em28xx_info("V4L2 device /dev/vbi%d deregistered\n",
1753 dev->vbi_dev->num);
1754 if (-1 != dev->vbi_dev->minor)
1755 video_unregister_device(dev->vbi_dev);
1756 else
1757 video_device_release(dev->vbi_dev);
1758 dev->vbi_dev = NULL;
1760 if (dev->vdev) {
1761 em28xx_info("V4L2 device /dev/video%d deregistered\n",
1762 dev->vdev->num);
1763 if (-1 != dev->vdev->minor)
1764 video_unregister_device(dev->vdev);
1765 else
1766 video_device_release(dev->vdev);
1767 dev->vdev = NULL;
1772 * em28xx_v4l2_close()
1773 * stops streaming and deallocates all resources allocated by the v4l2
1774 * calls and ioctls
1776 static int em28xx_v4l2_close(struct file *filp)
1778 struct em28xx_fh *fh = filp->private_data;
1779 struct em28xx *dev = fh->dev;
1780 int errCode;
1782 em28xx_videodbg("users=%d\n", dev->users);
1785 mutex_lock(&dev->lock);
1786 if (res_check(fh))
1787 res_free(fh);
1789 if (dev->users == 1) {
1790 videobuf_stop(&fh->vb_vidq);
1791 videobuf_mmap_free(&fh->vb_vidq);
1793 /* the device is already disconnect,
1794 free the remaining resources */
1795 if (dev->state & DEV_DISCONNECTED) {
1796 em28xx_release_resources(dev);
1797 mutex_unlock(&dev->lock);
1798 kfree(dev);
1799 return 0;
1802 /* Save some power by putting tuner to sleep */
1803 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_standby);
1805 /* do this before setting alternate! */
1806 em28xx_uninit_isoc(dev);
1807 em28xx_set_mode(dev, EM28XX_SUSPEND);
1809 /* set alternate 0 */
1810 dev->alt = 0;
1811 em28xx_videodbg("setting alternate 0\n");
1812 errCode = usb_set_interface(dev->udev, 0, 0);
1813 if (errCode < 0) {
1814 em28xx_errdev("cannot change alternate number to "
1815 "0 (error=%i)\n", errCode);
1818 kfree(fh);
1819 dev->users--;
1820 wake_up_interruptible_nr(&dev->open, 1);
1821 mutex_unlock(&dev->lock);
1822 return 0;
1826 * em28xx_v4l2_read()
1827 * will allocate buffers when called for the first time
1829 static ssize_t
1830 em28xx_v4l2_read(struct file *filp, char __user *buf, size_t count,
1831 loff_t *pos)
1833 struct em28xx_fh *fh = filp->private_data;
1834 struct em28xx *dev = fh->dev;
1835 int rc;
1837 rc = check_dev(dev);
1838 if (rc < 0)
1839 return rc;
1841 /* FIXME: read() is not prepared to allow changing the video
1842 resolution while streaming. Seems a bug at em28xx_set_fmt
1845 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
1846 mutex_lock(&dev->lock);
1847 rc = res_get(fh);
1848 mutex_unlock(&dev->lock);
1850 if (unlikely(rc < 0))
1851 return rc;
1853 return videobuf_read_stream(&fh->vb_vidq, buf, count, pos, 0,
1854 filp->f_flags & O_NONBLOCK);
1856 return 0;
1860 * em28xx_v4l2_poll()
1861 * will allocate buffers when called for the first time
1863 static unsigned int em28xx_v4l2_poll(struct file *filp, poll_table *wait)
1865 struct em28xx_fh *fh = filp->private_data;
1866 struct em28xx *dev = fh->dev;
1867 int rc;
1869 rc = check_dev(dev);
1870 if (rc < 0)
1871 return rc;
1873 mutex_lock(&dev->lock);
1874 rc = res_get(fh);
1875 mutex_unlock(&dev->lock);
1877 if (unlikely(rc < 0))
1878 return POLLERR;
1880 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1881 return POLLERR;
1883 return videobuf_poll_stream(filp, &fh->vb_vidq, wait);
1887 * em28xx_v4l2_mmap()
1889 static int em28xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
1891 struct em28xx_fh *fh = filp->private_data;
1892 struct em28xx *dev = fh->dev;
1893 int rc;
1895 rc = check_dev(dev);
1896 if (rc < 0)
1897 return rc;
1899 mutex_lock(&dev->lock);
1900 rc = res_get(fh);
1901 mutex_unlock(&dev->lock);
1903 if (unlikely(rc < 0))
1904 return rc;
1906 rc = videobuf_mmap_mapper(&fh->vb_vidq, vma);
1908 em28xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
1909 (unsigned long)vma->vm_start,
1910 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
1911 rc);
1913 return rc;
1916 static const struct v4l2_file_operations em28xx_v4l_fops = {
1917 .owner = THIS_MODULE,
1918 .open = em28xx_v4l2_open,
1919 .release = em28xx_v4l2_close,
1920 .read = em28xx_v4l2_read,
1921 .poll = em28xx_v4l2_poll,
1922 .mmap = em28xx_v4l2_mmap,
1923 .ioctl = video_ioctl2,
1926 static const struct v4l2_ioctl_ops video_ioctl_ops = {
1927 .vidioc_querycap = vidioc_querycap,
1928 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1929 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1930 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1931 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1932 .vidioc_g_audio = vidioc_g_audio,
1933 .vidioc_s_audio = vidioc_s_audio,
1934 .vidioc_cropcap = vidioc_cropcap,
1936 .vidioc_g_fmt_sliced_vbi_cap = vidioc_g_fmt_sliced_vbi_cap,
1937 .vidioc_try_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
1938 .vidioc_s_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
1940 .vidioc_reqbufs = vidioc_reqbufs,
1941 .vidioc_querybuf = vidioc_querybuf,
1942 .vidioc_qbuf = vidioc_qbuf,
1943 .vidioc_dqbuf = vidioc_dqbuf,
1944 .vidioc_s_std = vidioc_s_std,
1945 .vidioc_g_parm = vidioc_g_parm,
1946 .vidioc_s_parm = vidioc_s_parm,
1947 .vidioc_enum_input = vidioc_enum_input,
1948 .vidioc_g_input = vidioc_g_input,
1949 .vidioc_s_input = vidioc_s_input,
1950 .vidioc_queryctrl = vidioc_queryctrl,
1951 .vidioc_g_ctrl = vidioc_g_ctrl,
1952 .vidioc_s_ctrl = vidioc_s_ctrl,
1953 .vidioc_streamon = vidioc_streamon,
1954 .vidioc_streamoff = vidioc_streamoff,
1955 .vidioc_g_tuner = vidioc_g_tuner,
1956 .vidioc_s_tuner = vidioc_s_tuner,
1957 .vidioc_g_frequency = vidioc_g_frequency,
1958 .vidioc_s_frequency = vidioc_s_frequency,
1959 #ifdef CONFIG_VIDEO_ADV_DEBUG
1960 .vidioc_g_register = vidioc_g_register,
1961 .vidioc_s_register = vidioc_s_register,
1962 .vidioc_g_chip_ident = vidioc_g_chip_ident,
1963 #endif
1964 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1965 .vidiocgmbuf = vidiocgmbuf,
1966 #endif
1969 static const struct video_device em28xx_video_template = {
1970 .fops = &em28xx_v4l_fops,
1971 .release = video_device_release,
1972 .ioctl_ops = &video_ioctl_ops,
1974 .minor = -1,
1976 .tvnorms = V4L2_STD_ALL,
1977 .current_norm = V4L2_STD_PAL,
1980 static const struct v4l2_file_operations radio_fops = {
1981 .owner = THIS_MODULE,
1982 .open = em28xx_v4l2_open,
1983 .release = em28xx_v4l2_close,
1984 .ioctl = video_ioctl2,
1987 static const struct v4l2_ioctl_ops radio_ioctl_ops = {
1988 .vidioc_querycap = radio_querycap,
1989 .vidioc_g_tuner = radio_g_tuner,
1990 .vidioc_enum_input = radio_enum_input,
1991 .vidioc_g_audio = radio_g_audio,
1992 .vidioc_s_tuner = radio_s_tuner,
1993 .vidioc_s_audio = radio_s_audio,
1994 .vidioc_s_input = radio_s_input,
1995 .vidioc_queryctrl = radio_queryctrl,
1996 .vidioc_g_ctrl = vidioc_g_ctrl,
1997 .vidioc_s_ctrl = vidioc_s_ctrl,
1998 .vidioc_g_frequency = vidioc_g_frequency,
1999 .vidioc_s_frequency = vidioc_s_frequency,
2000 #ifdef CONFIG_VIDEO_ADV_DEBUG
2001 .vidioc_g_register = vidioc_g_register,
2002 .vidioc_s_register = vidioc_s_register,
2003 #endif
2006 static struct video_device em28xx_radio_template = {
2007 .name = "em28xx-radio",
2008 .fops = &radio_fops,
2009 .ioctl_ops = &radio_ioctl_ops,
2010 .minor = -1,
2013 /******************************** usb interface ******************************/
2017 static struct video_device *em28xx_vdev_init(struct em28xx *dev,
2018 const struct video_device *template,
2019 const char *type_name)
2021 struct video_device *vfd;
2023 vfd = video_device_alloc();
2024 if (NULL == vfd)
2025 return NULL;
2027 *vfd = *template;
2028 vfd->minor = -1;
2029 vfd->v4l2_dev = &dev->v4l2_dev;
2030 vfd->release = video_device_release;
2031 vfd->debug = video_debug;
2033 snprintf(vfd->name, sizeof(vfd->name), "%s %s",
2034 dev->name, type_name);
2036 return vfd;
2039 int em28xx_register_analog_devices(struct em28xx *dev)
2041 u8 val;
2042 int ret;
2044 printk(KERN_INFO "%s: v4l2 driver version %d.%d.%d\n",
2045 dev->name,
2046 (EM28XX_VERSION_CODE >> 16) & 0xff,
2047 (EM28XX_VERSION_CODE >> 8) & 0xff, EM28XX_VERSION_CODE & 0xff);
2049 /* set default norm */
2050 dev->norm = em28xx_video_template.current_norm;
2051 dev->interlaced = EM28XX_INTERLACED_DEFAULT;
2052 dev->ctl_input = 0;
2054 /* Analog specific initialization */
2055 dev->format = &format[0];
2056 em28xx_set_video_format(dev, format[0].fourcc,
2057 norm_maxw(dev), norm_maxh(dev));
2059 video_mux(dev, dev->ctl_input);
2061 /* Audio defaults */
2062 dev->mute = 1;
2063 dev->volume = 0x1f;
2065 /* enable vbi capturing */
2067 /* em28xx_write_reg(dev, EM28XX_R0E_AUDIOSRC, 0xc0); audio register */
2068 val = (u8)em28xx_read_reg(dev, EM28XX_R0F_XCLK);
2069 em28xx_write_reg(dev, EM28XX_R0F_XCLK,
2070 (EM28XX_XCLK_AUDIO_UNMUTE | val));
2071 em28xx_write_reg(dev, EM28XX_R11_VINCTRL, 0x51);
2073 em28xx_set_outfmt(dev);
2074 em28xx_colorlevels_set_default(dev);
2075 em28xx_compression_disable(dev);
2077 /* allocate and fill video video_device struct */
2078 dev->vdev = em28xx_vdev_init(dev, &em28xx_video_template, "video");
2079 if (!dev->vdev) {
2080 em28xx_errdev("cannot allocate video_device.\n");
2081 return -ENODEV;
2084 /* register v4l2 video video_device */
2085 ret = video_register_device(dev->vdev, VFL_TYPE_GRABBER,
2086 video_nr[dev->devno]);
2087 if (ret) {
2088 em28xx_errdev("unable to register video device (error=%i).\n",
2089 ret);
2090 return ret;
2093 /* Allocate and fill vbi video_device struct */
2094 dev->vbi_dev = em28xx_vdev_init(dev, &em28xx_video_template, "vbi");
2096 /* register v4l2 vbi video_device */
2097 ret = video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
2098 vbi_nr[dev->devno]);
2099 if (ret < 0) {
2100 em28xx_errdev("unable to register vbi device\n");
2101 return ret;
2104 if (em28xx_boards[dev->model].radio.type == EM28XX_RADIO) {
2105 dev->radio_dev = em28xx_vdev_init(dev, &em28xx_radio_template,
2106 "radio");
2107 if (!dev->radio_dev) {
2108 em28xx_errdev("cannot allocate video_device.\n");
2109 return -ENODEV;
2111 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
2112 radio_nr[dev->devno]);
2113 if (ret < 0) {
2114 em28xx_errdev("can't register radio device\n");
2115 return ret;
2117 em28xx_info("Registered radio device as /dev/radio%d\n",
2118 dev->radio_dev->num);
2121 em28xx_info("V4L2 device registered as /dev/video%d and /dev/vbi%d\n",
2122 dev->vdev->num, dev->vbi_dev->num);
2124 return 0;