Merge branch 'topic/jack' into topic/docbook-fix
[pandora-kernel.git] / drivers / media / video / em28xx / em28xx-video.c
1 /*
2    em28xx-video.c - driver for Empia EM2800/EM2820/2840 USB
3                     video capture devices
4
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>
9
10         Some parts based on SN9C10x PC Camera Controllers GPL driver made
11                 by Luca Risolia <luca.risolia@studio.unibo.it>
12
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>
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>
38
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>
45
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>"
50
51 #define DRIVER_DESC         "Empia em28xx based USB video device driver"
52 #define EM28XX_VERSION_CODE  KERNEL_VERSION(0, 1, 1)
53
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)
58
59 static unsigned int isoc_debug;
60 module_param(isoc_debug, int, 0644);
61 MODULE_PARM_DESC(isoc_debug, "enable debug messages [isoc transfers]");
62
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)
70
71 MODULE_AUTHOR(DRIVER_AUTHOR);
72 MODULE_DESCRIPTION(DRIVER_DESC);
73 MODULE_LICENSE("GPL");
74
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 };
78
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");
85
86 static unsigned int video_debug;
87 module_param(video_debug, int, 0644);
88 MODULE_PARM_DESC(video_debug, "enable debug messages [video]");
89
90 /* supported video standards */
91 static struct em28xx_fmt format[] = {
92         {
93                 .name     = "16bpp YUY2, 4:2:2, packed",
94                 .fourcc   = V4L2_PIX_FMT_YUYV,
95                 .depth    = 16,
96                 .reg      = EM28XX_OUTFMT_YUV422_Y0UY1V,
97         },
98 };
99
100 /* supported controls */
101 /* Common to all boards */
102 static struct v4l2_queryctrl em28xx_qctrl[] = {
103         {
104                 .id = V4L2_CID_AUDIO_VOLUME,
105                 .type = V4L2_CTRL_TYPE_INTEGER,
106                 .name = "Volume",
107                 .minimum = 0x0,
108                 .maximum = 0x1f,
109                 .step = 0x1,
110                 .default_value = 0x1f,
111                 .flags = 0,
112         }, {
113                 .id = V4L2_CID_AUDIO_MUTE,
114                 .type = V4L2_CTRL_TYPE_BOOLEAN,
115                 .name = "Mute",
116                 .minimum = 0,
117                 .maximum = 1,
118                 .step = 1,
119                 .default_value = 1,
120                 .flags = 0,
121         }
122 };
123
124 /* ------------------------------------------------------------------
125         DMA and thread functions
126    ------------------------------------------------------------------*/
127
128 /*
129  * Announces that a buffer were filled and request the next
130  */
131 static inline void buffer_filled(struct em28xx *dev,
132                                   struct em28xx_dmaqueue *dma_q,
133                                   struct em28xx_buffer *buf)
134 {
135         /* Advice that buffer was filled */
136         em28xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
137         buf->vb.state = VIDEOBUF_DONE;
138         buf->vb.field_count++;
139         do_gettimeofday(&buf->vb.ts);
140
141         dev->isoc_ctl.buf = NULL;
142
143         list_del(&buf->vb.queue);
144         wake_up(&buf->vb.done);
145 }
146
147 /*
148  * Identify the buffer header type and properly handles
149  */
150 static void em28xx_copy_video(struct em28xx *dev,
151                               struct em28xx_dmaqueue  *dma_q,
152                               struct em28xx_buffer *buf,
153                               unsigned char *p,
154                               unsigned char *outp, unsigned long len)
155 {
156         void *fieldstart, *startwrite, *startread;
157         int  linesdone, currlinedone, offset, lencopy, remain;
158         int bytesperline = dev->width << 1;
159
160         if (dma_q->pos + len > buf->vb.size)
161                 len = buf->vb.size - dma_q->pos;
162
163         if (p[0] != 0x88 && p[0] != 0x22) {
164                 em28xx_isocdbg("frame is not complete\n");
165                 len += 4;
166         } else
167                 p += 4;
168
169         startread = p;
170         remain = len;
171
172         /* Interlaces frame */
173         if (buf->top_field)
174                 fieldstart = outp;
175         else
176                 fieldstart = outp + bytesperline;
177
178         linesdone = dma_q->pos / bytesperline;
179         currlinedone = dma_q->pos % bytesperline;
180         offset = linesdone * bytesperline * 2 + currlinedone;
181         startwrite = fieldstart + offset;
182         lencopy = bytesperline - currlinedone;
183         lencopy = lencopy > remain ? remain : lencopy;
184
185         if ((char *)startwrite + lencopy > (char *)outp + buf->vb.size) {
186                 em28xx_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
187                                ((char *)startwrite + lencopy) -
188                                ((char *)outp + buf->vb.size));
189                 lencopy = remain = (char *)outp + buf->vb.size - (char *)startwrite;
190         }
191         if (lencopy <= 0)
192                 return;
193         memcpy(startwrite, startread, lencopy);
194
195         remain -= lencopy;
196
197         while (remain > 0) {
198                 startwrite += lencopy + bytesperline;
199                 startread += lencopy;
200                 if (bytesperline > remain)
201                         lencopy = remain;
202                 else
203                         lencopy = bytesperline;
204
205                 if ((char *)startwrite + lencopy > (char *)outp + buf->vb.size) {
206                         em28xx_isocdbg("Overflow of %zi bytes past buffer end (2)\n",
207                                        ((char *)startwrite + lencopy) -
208                                        ((char *)outp + buf->vb.size));
209                         lencopy = remain = (char *)outp + buf->vb.size -
210                                            (char *)startwrite;
211                 }
212                 if (lencopy <= 0)
213                         break;
214
215                 memcpy(startwrite, startread, lencopy);
216
217                 remain -= lencopy;
218         }
219
220         dma_q->pos += len;
221 }
222
223 static inline void print_err_status(struct em28xx *dev,
224                                      int packet, int status)
225 {
226         char *errmsg = "Unknown";
227
228         switch (status) {
229         case -ENOENT:
230                 errmsg = "unlinked synchronuously";
231                 break;
232         case -ECONNRESET:
233                 errmsg = "unlinked asynchronuously";
234                 break;
235         case -ENOSR:
236                 errmsg = "Buffer error (overrun)";
237                 break;
238         case -EPIPE:
239                 errmsg = "Stalled (device not responding)";
240                 break;
241         case -EOVERFLOW:
242                 errmsg = "Babble (bad cable?)";
243                 break;
244         case -EPROTO:
245                 errmsg = "Bit-stuff error (bad cable?)";
246                 break;
247         case -EILSEQ:
248                 errmsg = "CRC/Timeout (could be anything)";
249                 break;
250         case -ETIME:
251                 errmsg = "Device does not respond";
252                 break;
253         }
254         if (packet < 0) {
255                 em28xx_isocdbg("URB status %d [%s].\n", status, errmsg);
256         } else {
257                 em28xx_isocdbg("URB packet %d, status %d [%s].\n",
258                                packet, status, errmsg);
259         }
260 }
261
262 /*
263  * video-buf generic routine to get the next available buffer
264  */
265 static inline void get_next_buf(struct em28xx_dmaqueue *dma_q,
266                                           struct em28xx_buffer **buf)
267 {
268         struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
269         char *outp;
270
271         if (list_empty(&dma_q->active)) {
272                 em28xx_isocdbg("No active queue to serve\n");
273                 dev->isoc_ctl.buf = NULL;
274                 *buf = NULL;
275                 return;
276         }
277
278         /* Get the next buffer */
279         *buf = list_entry(dma_q->active.next, struct em28xx_buffer, vb.queue);
280
281         /* Cleans up buffer - Usefull for testing for frame/URB loss */
282         outp = videobuf_to_vmalloc(&(*buf)->vb);
283         memset(outp, 0, (*buf)->vb.size);
284
285         dev->isoc_ctl.buf = *buf;
286
287         return;
288 }
289
290 /*
291  * Controls the isoc copy of each urb packet
292  */
293 static inline int em28xx_isoc_copy(struct em28xx *dev, struct urb *urb)
294 {
295         struct em28xx_buffer    *buf;
296         struct em28xx_dmaqueue  *dma_q = urb->context;
297         unsigned char *outp = NULL;
298         int i, len = 0, rc = 1;
299         unsigned char *p;
300
301         if (!dev)
302                 return 0;
303
304         if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
305                 return 0;
306
307         if (urb->status < 0) {
308                 print_err_status(dev, -1, urb->status);
309                 if (urb->status == -ENOENT)
310                         return 0;
311         }
312
313         buf = dev->isoc_ctl.buf;
314         if (buf != NULL)
315                 outp = videobuf_to_vmalloc(&buf->vb);
316
317         for (i = 0; i < urb->number_of_packets; i++) {
318                 int status = urb->iso_frame_desc[i].status;
319
320                 if (status < 0) {
321                         print_err_status(dev, i, status);
322                         if (urb->iso_frame_desc[i].status != -EPROTO)
323                                 continue;
324                 }
325
326                 len = urb->iso_frame_desc[i].actual_length - 4;
327
328                 if (urb->iso_frame_desc[i].actual_length <= 0) {
329                         /* em28xx_isocdbg("packet %d is empty",i); - spammy */
330                         continue;
331                 }
332                 if (urb->iso_frame_desc[i].actual_length >
333                                                 dev->max_pkt_size) {
334                         em28xx_isocdbg("packet bigger than packet size");
335                         continue;
336                 }
337
338                 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
339
340                 /* FIXME: incomplete buffer checks where removed to make
341                    logic simpler. Impacts of those changes should be evaluated
342                  */
343                 if (p[0] == 0x33 && p[1] == 0x95 && p[2] == 0x00) {
344                         em28xx_isocdbg("VBI HEADER!!!\n");
345                         /* FIXME: Should add vbi copy */
346                         continue;
347                 }
348                 if (p[0] == 0x22 && p[1] == 0x5a) {
349                         em28xx_isocdbg("Video frame %d, length=%i, %s\n", p[2],
350                                        len, (p[2] & 1)? "odd" : "even");
351
352                         if (!(p[2] & 1)) {
353                                 if (buf != NULL)
354                                         buffer_filled(dev, dma_q, buf);
355                                 get_next_buf(dma_q, &buf);
356                                 if (buf == NULL)
357                                         outp = NULL;
358                                 else
359                                         outp = videobuf_to_vmalloc(&buf->vb);
360                         }
361
362                         if (buf != NULL) {
363                                 if (p[2] & 1)
364                                         buf->top_field = 0;
365                                 else
366                                         buf->top_field = 1;
367                         }
368
369                         dma_q->pos = 0;
370                 }
371                 if (buf != NULL)
372                         em28xx_copy_video(dev, dma_q, buf, p, outp, len);
373         }
374         return rc;
375 }
376
377 /* ------------------------------------------------------------------
378         Videobuf operations
379    ------------------------------------------------------------------*/
380
381 static int
382 buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
383 {
384         struct em28xx_fh *fh = vq->priv_data;
385         struct em28xx        *dev = fh->dev;
386         struct v4l2_frequency f;
387
388         *size = (fh->dev->width * fh->dev->height * dev->format->depth + 7) >> 3;
389
390         if (0 == *count)
391                 *count = EM28XX_DEF_BUF;
392
393         if (*count < EM28XX_MIN_BUF)
394                 *count = EM28XX_MIN_BUF;
395
396         /* Ask tuner to go to analog or radio mode */
397         memset(&f, 0, sizeof(f));
398         f.frequency = dev->ctl_freq;
399         f.type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
400
401         em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, &f);
402
403         return 0;
404 }
405
406 /* This is called *without* dev->slock held; please keep it that way */
407 static void free_buffer(struct videobuf_queue *vq, struct em28xx_buffer *buf)
408 {
409         struct em28xx_fh     *fh  = vq->priv_data;
410         struct em28xx        *dev = fh->dev;
411         unsigned long flags = 0;
412         if (in_interrupt())
413                 BUG();
414
415         /* We used to wait for the buffer to finish here, but this didn't work
416            because, as we were keeping the state as VIDEOBUF_QUEUED,
417            videobuf_queue_cancel marked it as finished for us.
418            (Also, it could wedge forever if the hardware was misconfigured.)
419
420            This should be safe; by the time we get here, the buffer isn't
421            queued anymore. If we ever start marking the buffers as
422            VIDEOBUF_ACTIVE, it won't be, though.
423         */
424         spin_lock_irqsave(&dev->slock, flags);
425         if (dev->isoc_ctl.buf == buf)
426                 dev->isoc_ctl.buf = NULL;
427         spin_unlock_irqrestore(&dev->slock, flags);
428
429         videobuf_vmalloc_free(&buf->vb);
430         buf->vb.state = VIDEOBUF_NEEDS_INIT;
431 }
432
433 static int
434 buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
435                                                 enum v4l2_field field)
436 {
437         struct em28xx_fh     *fh  = vq->priv_data;
438         struct em28xx_buffer *buf = container_of(vb, struct em28xx_buffer, vb);
439         struct em28xx        *dev = fh->dev;
440         int                  rc = 0, urb_init = 0;
441
442         buf->vb.size = (fh->dev->width * fh->dev->height * dev->format->depth + 7) >> 3;
443
444         if (0 != buf->vb.baddr  &&  buf->vb.bsize < buf->vb.size)
445                 return -EINVAL;
446
447         buf->vb.width  = dev->width;
448         buf->vb.height = dev->height;
449         buf->vb.field  = field;
450
451         if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
452                 rc = videobuf_iolock(vq, &buf->vb, NULL);
453                 if (rc < 0)
454                         goto fail;
455         }
456
457         if (!dev->isoc_ctl.num_bufs)
458                 urb_init = 1;
459
460         if (urb_init) {
461                 rc = em28xx_init_isoc(dev, EM28XX_NUM_PACKETS,
462                                       EM28XX_NUM_BUFS, dev->max_pkt_size,
463                                       em28xx_isoc_copy);
464                 if (rc < 0)
465                         goto fail;
466         }
467
468         buf->vb.state = VIDEOBUF_PREPARED;
469         return 0;
470
471 fail:
472         free_buffer(vq, buf);
473         return rc;
474 }
475
476 static void
477 buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
478 {
479         struct em28xx_buffer    *buf     = container_of(vb, struct em28xx_buffer, vb);
480         struct em28xx_fh        *fh      = vq->priv_data;
481         struct em28xx           *dev     = fh->dev;
482         struct em28xx_dmaqueue  *vidq    = &dev->vidq;
483
484         buf->vb.state = VIDEOBUF_QUEUED;
485         list_add_tail(&buf->vb.queue, &vidq->active);
486
487 }
488
489 static void buffer_release(struct videobuf_queue *vq,
490                                 struct videobuf_buffer *vb)
491 {
492         struct em28xx_buffer   *buf  = container_of(vb, struct em28xx_buffer, vb);
493         struct em28xx_fh       *fh   = vq->priv_data;
494         struct em28xx          *dev  = (struct em28xx *)fh->dev;
495
496         em28xx_isocdbg("em28xx: called buffer_release\n");
497
498         free_buffer(vq, buf);
499 }
500
501 static struct videobuf_queue_ops em28xx_video_qops = {
502         .buf_setup      = buffer_setup,
503         .buf_prepare    = buffer_prepare,
504         .buf_queue      = buffer_queue,
505         .buf_release    = buffer_release,
506 };
507
508 /*********************  v4l2 interface  **************************************/
509
510 static void video_mux(struct em28xx *dev, int index)
511 {
512         struct v4l2_routing route;
513
514         route.input = INPUT(index)->vmux;
515         route.output = 0;
516         dev->ctl_input = index;
517         dev->ctl_ainput = INPUT(index)->amux;
518         dev->ctl_aoutput = INPUT(index)->aout;
519
520         if (!dev->ctl_aoutput)
521                 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
522
523         em28xx_i2c_call_clients(dev, VIDIOC_INT_S_VIDEO_ROUTING, &route);
524
525         if (dev->board.has_msp34xx) {
526                 if (dev->i2s_speed) {
527                         em28xx_i2c_call_clients(dev, VIDIOC_INT_I2S_CLOCK_FREQ,
528                                 &dev->i2s_speed);
529                 }
530                 route.input = dev->ctl_ainput;
531                 route.output = MSP_OUTPUT(MSP_SC_IN_DSP_SCART1);
532                 /* Note: this is msp3400 specific */
533                 em28xx_i2c_call_clients(dev, VIDIOC_INT_S_AUDIO_ROUTING,
534                         &route);
535         }
536
537         em28xx_audio_analog_set(dev);
538 }
539
540 /* Usage lock check functions */
541 static int res_get(struct em28xx_fh *fh)
542 {
543         struct em28xx    *dev = fh->dev;
544         int              rc   = 0;
545
546         /* This instance already has stream_on */
547         if (fh->stream_on)
548                 return rc;
549
550         if (dev->stream_on)
551                 return -EBUSY;
552
553         dev->stream_on = 1;
554         fh->stream_on  = 1;
555         return rc;
556 }
557
558 static int res_check(struct em28xx_fh *fh)
559 {
560         return (fh->stream_on);
561 }
562
563 static void res_free(struct em28xx_fh *fh)
564 {
565         struct em28xx    *dev = fh->dev;
566
567         fh->stream_on = 0;
568         dev->stream_on = 0;
569 }
570
571 /*
572  * em28xx_get_ctrl()
573  * return the current saturation, brightness or contrast, mute state
574  */
575 static int em28xx_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
576 {
577         switch (ctrl->id) {
578         case V4L2_CID_AUDIO_MUTE:
579                 ctrl->value = dev->mute;
580                 return 0;
581         case V4L2_CID_AUDIO_VOLUME:
582                 ctrl->value = dev->volume;
583                 return 0;
584         default:
585                 return -EINVAL;
586         }
587 }
588
589 /*
590  * em28xx_set_ctrl()
591  * mute or set new saturation, brightness or contrast
592  */
593 static int em28xx_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
594 {
595         switch (ctrl->id) {
596         case V4L2_CID_AUDIO_MUTE:
597                 if (ctrl->value != dev->mute) {
598                         dev->mute = ctrl->value;
599                         return em28xx_audio_analog_set(dev);
600                 }
601                 return 0;
602         case V4L2_CID_AUDIO_VOLUME:
603                 dev->volume = ctrl->value;
604                 return em28xx_audio_analog_set(dev);
605         default:
606                 return -EINVAL;
607         }
608 }
609
610 static int check_dev(struct em28xx *dev)
611 {
612         if (dev->state & DEV_DISCONNECTED) {
613                 em28xx_errdev("v4l2 ioctl: device not present\n");
614                 return -ENODEV;
615         }
616
617         if (dev->state & DEV_MISCONFIGURED) {
618                 em28xx_errdev("v4l2 ioctl: device is misconfigured; "
619                               "close and open it again\n");
620                 return -EIO;
621         }
622         return 0;
623 }
624
625 static void get_scale(struct em28xx *dev,
626                         unsigned int width, unsigned int height,
627                         unsigned int *hscale, unsigned int *vscale)
628 {
629         unsigned int          maxw   = norm_maxw(dev);
630         unsigned int          maxh   = norm_maxh(dev);
631
632         *hscale = (((unsigned long)maxw) << 12) / width - 4096L;
633         if (*hscale >= 0x4000)
634                 *hscale = 0x3fff;
635
636         *vscale = (((unsigned long)maxh) << 12) / height - 4096L;
637         if (*vscale >= 0x4000)
638                 *vscale = 0x3fff;
639 }
640
641 /* ------------------------------------------------------------------
642         IOCTL vidioc handling
643    ------------------------------------------------------------------*/
644
645 static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
646                                         struct v4l2_format *f)
647 {
648         struct em28xx_fh      *fh  = priv;
649         struct em28xx         *dev = fh->dev;
650
651         mutex_lock(&dev->lock);
652
653         f->fmt.pix.width = dev->width;
654         f->fmt.pix.height = dev->height;
655         f->fmt.pix.pixelformat = dev->format->fourcc;
656         f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3;
657         f->fmt.pix.sizeimage = f->fmt.pix.bytesperline  * dev->height;
658         f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
659
660         /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
661         f->fmt.pix.field = dev->interlaced ?
662                            V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
663
664         mutex_unlock(&dev->lock);
665         return 0;
666 }
667
668 static struct em28xx_fmt *format_by_fourcc(unsigned int fourcc)
669 {
670         unsigned int i;
671
672         for (i = 0; i < ARRAY_SIZE(format); i++)
673                 if (format[i].fourcc == fourcc)
674                         return &format[i];
675
676         return NULL;
677 }
678
679 static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
680                         struct v4l2_format *f)
681 {
682         struct em28xx_fh      *fh    = priv;
683         struct em28xx         *dev   = fh->dev;
684         int                   width  = f->fmt.pix.width;
685         int                   height = f->fmt.pix.height;
686         unsigned int          maxw   = norm_maxw(dev);
687         unsigned int          maxh   = norm_maxh(dev);
688         unsigned int          hscale, vscale;
689         struct em28xx_fmt     *fmt;
690
691         fmt = format_by_fourcc(f->fmt.pix.pixelformat);
692         if (!fmt) {
693                 em28xx_videodbg("Fourcc format (%08x) invalid.\n",
694                                 f->fmt.pix.pixelformat);
695                 return -EINVAL;
696         }
697
698         /* width must even because of the YUYV format
699            height must be even because of interlacing */
700         height &= 0xfffe;
701         width  &= 0xfffe;
702
703         if (unlikely(height < 32))
704                 height = 32;
705         if (unlikely(height > maxh))
706                 height = maxh;
707         if (unlikely(width < 48))
708                 width = 48;
709         if (unlikely(width > maxw))
710                 width = maxw;
711
712         if (dev->board.is_em2800) {
713                 /* the em2800 can only scale down to 50% */
714                 if (height % (maxh / 2))
715                         height = maxh;
716                 if (width % (maxw / 2))
717                         width = maxw;
718                 /* according to empiatech support */
719                 /* the MaxPacketSize is to small to support */
720                 /* framesizes larger than 640x480 @ 30 fps */
721                 /* or 640x576 @ 25 fps. As this would cut */
722                 /* of a part of the image we prefer */
723                 /* 360x576 or 360x480 for now */
724                 if (width == maxw && height == maxh)
725                         width /= 2;
726         }
727
728         get_scale(dev, width, height, &hscale, &vscale);
729
730         width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
731         height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
732
733         f->fmt.pix.width = width;
734         f->fmt.pix.height = height;
735         f->fmt.pix.pixelformat = fmt->fourcc;
736         f->fmt.pix.bytesperline = (dev->width * fmt->depth + 7) >> 3;
737         f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * height;
738         f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
739         f->fmt.pix.field = V4L2_FIELD_INTERLACED;
740
741         return 0;
742 }
743
744 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
745                         struct v4l2_format *f)
746 {
747         struct em28xx_fh      *fh  = priv;
748         struct em28xx         *dev = fh->dev;
749         int                   rc;
750         struct em28xx_fmt     *fmt;
751
752         rc = check_dev(dev);
753         if (rc < 0)
754                 return rc;
755
756         mutex_lock(&dev->lock);
757
758         vidioc_try_fmt_vid_cap(file, priv, f);
759
760         fmt = format_by_fourcc(f->fmt.pix.pixelformat);
761         if (!fmt) {
762                 rc = -EINVAL;
763                 goto out;
764         }
765
766         if (videobuf_queue_is_busy(&fh->vb_vidq)) {
767                 em28xx_errdev("%s queue busy\n", __func__);
768                 rc = -EBUSY;
769                 goto out;
770         }
771
772         if (dev->stream_on && !fh->stream_on) {
773                 em28xx_errdev("%s device in use by another fh\n", __func__);
774                 rc = -EBUSY;
775                 goto out;
776         }
777
778         /* set new image size */
779         dev->width = f->fmt.pix.width;
780         dev->height = f->fmt.pix.height;
781         dev->format = fmt;
782         get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
783
784         em28xx_set_alternate(dev);
785         em28xx_resolution_set(dev);
786
787         rc = 0;
788
789 out:
790         mutex_unlock(&dev->lock);
791         return rc;
792 }
793
794 static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id * norm)
795 {
796         struct em28xx_fh   *fh  = priv;
797         struct em28xx      *dev = fh->dev;
798         struct v4l2_format f;
799         int                rc;
800
801         rc = check_dev(dev);
802         if (rc < 0)
803                 return rc;
804
805         mutex_lock(&dev->lock);
806         dev->norm = *norm;
807
808         /* Adjusts width/height, if needed */
809         f.fmt.pix.width = dev->width;
810         f.fmt.pix.height = dev->height;
811         vidioc_try_fmt_vid_cap(file, priv, &f);
812
813         /* set new image size */
814         dev->width = f.fmt.pix.width;
815         dev->height = f.fmt.pix.height;
816         get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
817
818         em28xx_resolution_set(dev);
819         em28xx_i2c_call_clients(dev, VIDIOC_S_STD, &dev->norm);
820
821         mutex_unlock(&dev->lock);
822         return 0;
823 }
824
825 static const char *iname[] = {
826         [EM28XX_VMUX_COMPOSITE1] = "Composite1",
827         [EM28XX_VMUX_COMPOSITE2] = "Composite2",
828         [EM28XX_VMUX_COMPOSITE3] = "Composite3",
829         [EM28XX_VMUX_COMPOSITE4] = "Composite4",
830         [EM28XX_VMUX_SVIDEO]     = "S-Video",
831         [EM28XX_VMUX_TELEVISION] = "Television",
832         [EM28XX_VMUX_CABLE]      = "Cable TV",
833         [EM28XX_VMUX_DVB]        = "DVB",
834         [EM28XX_VMUX_DEBUG]      = "for debug only",
835 };
836
837 static int vidioc_enum_input(struct file *file, void *priv,
838                                 struct v4l2_input *i)
839 {
840         struct em28xx_fh   *fh  = priv;
841         struct em28xx      *dev = fh->dev;
842         unsigned int       n;
843
844         n = i->index;
845         if (n >= MAX_EM28XX_INPUT)
846                 return -EINVAL;
847         if (0 == INPUT(n)->type)
848                 return -EINVAL;
849
850         i->index = n;
851         i->type = V4L2_INPUT_TYPE_CAMERA;
852
853         strcpy(i->name, iname[INPUT(n)->type]);
854
855         if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
856                 (EM28XX_VMUX_CABLE == INPUT(n)->type))
857                 i->type = V4L2_INPUT_TYPE_TUNER;
858
859         i->std = dev->vdev->tvnorms;
860
861         return 0;
862 }
863
864 static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
865 {
866         struct em28xx_fh   *fh  = priv;
867         struct em28xx      *dev = fh->dev;
868
869         *i = dev->ctl_input;
870
871         return 0;
872 }
873
874 static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
875 {
876         struct em28xx_fh   *fh  = priv;
877         struct em28xx      *dev = fh->dev;
878         int                rc;
879
880         rc = check_dev(dev);
881         if (rc < 0)
882                 return rc;
883
884         if (i >= MAX_EM28XX_INPUT)
885                 return -EINVAL;
886         if (0 == INPUT(i)->type)
887                 return -EINVAL;
888
889         mutex_lock(&dev->lock);
890
891         video_mux(dev, i);
892
893         mutex_unlock(&dev->lock);
894         return 0;
895 }
896
897 static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
898 {
899         struct em28xx_fh   *fh    = priv;
900         struct em28xx      *dev   = fh->dev;
901
902         switch (a->index) {
903         case EM28XX_AMUX_VIDEO:
904                 strcpy(a->name, "Television");
905                 break;
906         case EM28XX_AMUX_LINE_IN:
907                 strcpy(a->name, "Line In");
908                 break;
909         case EM28XX_AMUX_VIDEO2:
910                 strcpy(a->name, "Television alt");
911                 break;
912         case EM28XX_AMUX_PHONE:
913                 strcpy(a->name, "Phone");
914                 break;
915         case EM28XX_AMUX_MIC:
916                 strcpy(a->name, "Mic");
917                 break;
918         case EM28XX_AMUX_CD:
919                 strcpy(a->name, "CD");
920                 break;
921         case EM28XX_AMUX_AUX:
922                 strcpy(a->name, "Aux");
923                 break;
924         case EM28XX_AMUX_PCM_OUT:
925                 strcpy(a->name, "PCM");
926                 break;
927         default:
928                 return -EINVAL;
929         }
930
931         a->index = dev->ctl_ainput;
932         a->capability = V4L2_AUDCAP_STEREO;
933
934         return 0;
935 }
936
937 static int vidioc_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
938 {
939         struct em28xx_fh   *fh  = priv;
940         struct em28xx      *dev = fh->dev;
941
942         mutex_lock(&dev->lock);
943
944         dev->ctl_ainput = INPUT(a->index)->amux;
945         dev->ctl_aoutput = INPUT(a->index)->aout;
946
947         if (!dev->ctl_aoutput)
948                 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
949
950         mutex_unlock(&dev->lock);
951         return 0;
952 }
953
954 static int vidioc_queryctrl(struct file *file, void *priv,
955                                 struct v4l2_queryctrl *qc)
956 {
957         struct em28xx_fh      *fh  = priv;
958         struct em28xx         *dev = fh->dev;
959         int                   id  = qc->id;
960         int                   i;
961         int                   rc;
962
963         rc = check_dev(dev);
964         if (rc < 0)
965                 return rc;
966
967         memset(qc, 0, sizeof(*qc));
968
969         qc->id = id;
970
971         if (!dev->board.has_msp34xx) {
972                 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
973                         if (qc->id && qc->id == em28xx_qctrl[i].id) {
974                                 memcpy(qc, &(em28xx_qctrl[i]), sizeof(*qc));
975                                 return 0;
976                         }
977                 }
978         }
979         mutex_lock(&dev->lock);
980         em28xx_i2c_call_clients(dev, VIDIOC_QUERYCTRL, qc);
981         mutex_unlock(&dev->lock);
982
983         if (qc->type)
984                 return 0;
985         else
986                 return -EINVAL;
987 }
988
989 static int vidioc_g_ctrl(struct file *file, void *priv,
990                                 struct v4l2_control *ctrl)
991 {
992         struct em28xx_fh      *fh  = priv;
993         struct em28xx         *dev = fh->dev;
994         int                   rc;
995
996         rc = check_dev(dev);
997         if (rc < 0)
998                 return rc;
999         rc = 0;
1000
1001         mutex_lock(&dev->lock);
1002
1003         if (dev->board.has_msp34xx)
1004                 em28xx_i2c_call_clients(dev, VIDIOC_G_CTRL, ctrl);
1005         else
1006                 rc = em28xx_get_ctrl(dev, ctrl);
1007
1008         mutex_unlock(&dev->lock);
1009         return rc;
1010 }
1011
1012 static int vidioc_s_ctrl(struct file *file, void *priv,
1013                                 struct v4l2_control *ctrl)
1014 {
1015         struct em28xx_fh      *fh  = priv;
1016         struct em28xx         *dev = fh->dev;
1017         u8                    i;
1018         int                   rc;
1019
1020         rc = check_dev(dev);
1021         if (rc < 0)
1022                 return rc;
1023
1024         mutex_lock(&dev->lock);
1025
1026         if (dev->board.has_msp34xx)
1027                 em28xx_i2c_call_clients(dev, VIDIOC_S_CTRL, ctrl);
1028         else {
1029                 rc = 1;
1030                 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1031                         if (ctrl->id == em28xx_qctrl[i].id) {
1032                                 if (ctrl->value < em28xx_qctrl[i].minimum ||
1033                                     ctrl->value > em28xx_qctrl[i].maximum) {
1034                                         rc = -ERANGE;
1035                                         break;
1036                                 }
1037
1038                                 rc = em28xx_set_ctrl(dev, ctrl);
1039                                 break;
1040                         }
1041                 }
1042         }
1043
1044         /* Control not found - try to send it to the attached devices */
1045         if (rc == 1) {
1046                 em28xx_i2c_call_clients(dev, VIDIOC_S_CTRL, ctrl);
1047                 rc = 0;
1048         }
1049
1050         mutex_unlock(&dev->lock);
1051         return rc;
1052 }
1053
1054 static int vidioc_g_tuner(struct file *file, void *priv,
1055                                 struct v4l2_tuner *t)
1056 {
1057         struct em28xx_fh      *fh  = priv;
1058         struct em28xx         *dev = fh->dev;
1059         int                   rc;
1060
1061         rc = check_dev(dev);
1062         if (rc < 0)
1063                 return rc;
1064
1065         if (0 != t->index)
1066                 return -EINVAL;
1067
1068         strcpy(t->name, "Tuner");
1069
1070         mutex_lock(&dev->lock);
1071
1072         em28xx_i2c_call_clients(dev, VIDIOC_G_TUNER, t);
1073
1074         mutex_unlock(&dev->lock);
1075         return 0;
1076 }
1077
1078 static int vidioc_s_tuner(struct file *file, void *priv,
1079                                 struct v4l2_tuner *t)
1080 {
1081         struct em28xx_fh      *fh  = priv;
1082         struct em28xx         *dev = fh->dev;
1083         int                   rc;
1084
1085         rc = check_dev(dev);
1086         if (rc < 0)
1087                 return rc;
1088
1089         if (0 != t->index)
1090                 return -EINVAL;
1091
1092         mutex_lock(&dev->lock);
1093
1094         em28xx_i2c_call_clients(dev, VIDIOC_S_TUNER, t);
1095
1096         mutex_unlock(&dev->lock);
1097         return 0;
1098 }
1099
1100 static int vidioc_g_frequency(struct file *file, void *priv,
1101                                 struct v4l2_frequency *f)
1102 {
1103         struct em28xx_fh      *fh  = priv;
1104         struct em28xx         *dev = fh->dev;
1105
1106         mutex_lock(&dev->lock);
1107         f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1108         f->frequency = dev->ctl_freq;
1109         mutex_unlock(&dev->lock);
1110
1111         return 0;
1112 }
1113
1114 static int vidioc_s_frequency(struct file *file, void *priv,
1115                                 struct v4l2_frequency *f)
1116 {
1117         struct em28xx_fh      *fh  = priv;
1118         struct em28xx         *dev = fh->dev;
1119         int                   rc;
1120
1121         rc = check_dev(dev);
1122         if (rc < 0)
1123                 return rc;
1124
1125         if (0 != f->tuner)
1126                 return -EINVAL;
1127
1128         if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1129                 return -EINVAL;
1130         if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
1131                 return -EINVAL;
1132
1133         mutex_lock(&dev->lock);
1134
1135         dev->ctl_freq = f->frequency;
1136         em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, f);
1137
1138         mutex_unlock(&dev->lock);
1139
1140         return 0;
1141 }
1142
1143 #ifdef CONFIG_VIDEO_ADV_DEBUG
1144 static int em28xx_reg_len(int reg)
1145 {
1146         switch (reg) {
1147         case EM28XX_R40_AC97LSB:
1148         case EM28XX_R30_HSCALELOW:
1149         case EM28XX_R32_VSCALELOW:
1150                 return 2;
1151         default:
1152                 return 1;
1153         }
1154 }
1155
1156 static int vidioc_g_chip_ident(struct file *file, void *priv,
1157                struct v4l2_dbg_chip_ident *chip)
1158 {
1159         struct em28xx_fh      *fh  = priv;
1160         struct em28xx         *dev = fh->dev;
1161
1162         chip->ident = V4L2_IDENT_NONE;
1163         chip->revision = 0;
1164
1165         em28xx_i2c_call_clients(dev, VIDIOC_DBG_G_CHIP_IDENT, chip);
1166
1167         return 0;
1168 }
1169
1170
1171 static int vidioc_g_register(struct file *file, void *priv,
1172                              struct v4l2_dbg_register *reg)
1173 {
1174         struct em28xx_fh      *fh  = priv;
1175         struct em28xx         *dev = fh->dev;
1176         int ret;
1177
1178         switch (reg->match.type) {
1179         case V4L2_CHIP_MATCH_AC97:
1180                 mutex_lock(&dev->lock);
1181                 ret = em28xx_read_ac97(dev, reg->reg);
1182                 mutex_unlock(&dev->lock);
1183                 if (ret < 0)
1184                         return ret;
1185
1186                 reg->val = ret;
1187                 reg->size = 1;
1188                 return 0;
1189         case V4L2_CHIP_MATCH_I2C_DRIVER:
1190                 em28xx_i2c_call_clients(dev, VIDIOC_DBG_G_REGISTER, reg);
1191                 return 0;
1192         case V4L2_CHIP_MATCH_I2C_ADDR:
1193                 /* Not supported yet */
1194                 return -EINVAL;
1195         default:
1196                 if (!v4l2_chip_match_host(&reg->match))
1197                         return -EINVAL;
1198         }
1199
1200         /* Match host */
1201         reg->size = em28xx_reg_len(reg->reg);
1202         if (reg->size == 1) {
1203                 mutex_lock(&dev->lock);
1204                 ret = em28xx_read_reg(dev, reg->reg);
1205                 mutex_unlock(&dev->lock);
1206
1207                 if (ret < 0)
1208                         return ret;
1209
1210                 reg->val = ret;
1211         } else {
1212                 __le16 val = 0;
1213                 mutex_lock(&dev->lock);
1214                 ret = em28xx_read_reg_req_len(dev, USB_REQ_GET_STATUS,
1215                                                    reg->reg, (char *)&val, 2);
1216                 mutex_unlock(&dev->lock);
1217                 if (ret < 0)
1218                         return ret;
1219
1220                 reg->val = le16_to_cpu(val);
1221         }
1222
1223         return 0;
1224 }
1225
1226 static int vidioc_s_register(struct file *file, void *priv,
1227                              struct v4l2_dbg_register *reg)
1228 {
1229         struct em28xx_fh      *fh  = priv;
1230         struct em28xx         *dev = fh->dev;
1231         __le16 buf;
1232         int    rc;
1233
1234         switch (reg->match.type) {
1235         case V4L2_CHIP_MATCH_AC97:
1236                 mutex_lock(&dev->lock);
1237                 rc = em28xx_write_ac97(dev, reg->reg, reg->val);
1238                 mutex_unlock(&dev->lock);
1239
1240                 return rc;
1241         case V4L2_CHIP_MATCH_I2C_DRIVER:
1242                 em28xx_i2c_call_clients(dev, VIDIOC_DBG_S_REGISTER, reg);
1243                 return 0;
1244         case V4L2_CHIP_MATCH_I2C_ADDR:
1245                 /* Not supported yet */
1246                 return -EINVAL;
1247         default:
1248                 if (!v4l2_chip_match_host(&reg->match))
1249                         return -EINVAL;
1250         }
1251
1252         /* Match host */
1253         buf = cpu_to_le16(reg->val);
1254
1255         mutex_lock(&dev->lock);
1256         rc = em28xx_write_regs(dev, reg->reg, (char *)&buf,
1257                                em28xx_reg_len(reg->reg));
1258         mutex_unlock(&dev->lock);
1259
1260         return rc;
1261 }
1262 #endif
1263
1264
1265 static int vidioc_cropcap(struct file *file, void *priv,
1266                                         struct v4l2_cropcap *cc)
1267 {
1268         struct em28xx_fh      *fh  = priv;
1269         struct em28xx         *dev = fh->dev;
1270
1271         if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1272                 return -EINVAL;
1273
1274         cc->bounds.left = 0;
1275         cc->bounds.top = 0;
1276         cc->bounds.width = dev->width;
1277         cc->bounds.height = dev->height;
1278         cc->defrect = cc->bounds;
1279         cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1280         cc->pixelaspect.denominator = 59;
1281
1282         return 0;
1283 }
1284
1285 static int vidioc_streamon(struct file *file, void *priv,
1286                                         enum v4l2_buf_type type)
1287 {
1288         struct em28xx_fh      *fh  = priv;
1289         struct em28xx         *dev = fh->dev;
1290         int                   rc;
1291
1292         rc = check_dev(dev);
1293         if (rc < 0)
1294                 return rc;
1295
1296
1297         mutex_lock(&dev->lock);
1298         rc = res_get(fh);
1299
1300         if (likely(rc >= 0))
1301                 rc = videobuf_streamon(&fh->vb_vidq);
1302
1303         mutex_unlock(&dev->lock);
1304
1305         return rc;
1306 }
1307
1308 static int vidioc_streamoff(struct file *file, void *priv,
1309                                         enum v4l2_buf_type type)
1310 {
1311         struct em28xx_fh      *fh  = priv;
1312         struct em28xx         *dev = fh->dev;
1313         int                   rc;
1314
1315         rc = check_dev(dev);
1316         if (rc < 0)
1317                 return rc;
1318
1319         if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1320                 return -EINVAL;
1321         if (type != fh->type)
1322                 return -EINVAL;
1323
1324         mutex_lock(&dev->lock);
1325
1326         videobuf_streamoff(&fh->vb_vidq);
1327         res_free(fh);
1328
1329         mutex_unlock(&dev->lock);
1330
1331         return 0;
1332 }
1333
1334 static int vidioc_querycap(struct file *file, void  *priv,
1335                                         struct v4l2_capability *cap)
1336 {
1337         struct em28xx_fh      *fh  = priv;
1338         struct em28xx         *dev = fh->dev;
1339
1340         strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1341         strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
1342         strlcpy(cap->bus_info, dev_name(&dev->udev->dev), sizeof(cap->bus_info));
1343
1344         cap->version = EM28XX_VERSION_CODE;
1345
1346         cap->capabilities =
1347                         V4L2_CAP_SLICED_VBI_CAPTURE |
1348                         V4L2_CAP_VIDEO_CAPTURE |
1349                         V4L2_CAP_AUDIO |
1350                         V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1351
1352         if (dev->tuner_type != TUNER_ABSENT)
1353                 cap->capabilities |= V4L2_CAP_TUNER;
1354
1355         return 0;
1356 }
1357
1358 static int vidioc_enum_fmt_vid_cap(struct file *file, void  *priv,
1359                                         struct v4l2_fmtdesc *f)
1360 {
1361         if (unlikely(f->index >= ARRAY_SIZE(format)))
1362                 return -EINVAL;
1363
1364         strlcpy(f->description, format[f->index].name, sizeof(f->description));
1365         f->pixelformat = format[f->index].fourcc;
1366
1367         return 0;
1368 }
1369
1370 /* Sliced VBI ioctls */
1371 static int vidioc_g_fmt_sliced_vbi_cap(struct file *file, void *priv,
1372                                         struct v4l2_format *f)
1373 {
1374         struct em28xx_fh      *fh  = priv;
1375         struct em28xx         *dev = fh->dev;
1376         int                   rc;
1377
1378         rc = check_dev(dev);
1379         if (rc < 0)
1380                 return rc;
1381
1382         mutex_lock(&dev->lock);
1383
1384         f->fmt.sliced.service_set = 0;
1385
1386         em28xx_i2c_call_clients(dev, VIDIOC_G_FMT, f);
1387
1388         if (f->fmt.sliced.service_set == 0)
1389                 rc = -EINVAL;
1390
1391         mutex_unlock(&dev->lock);
1392         return rc;
1393 }
1394
1395 static int vidioc_try_set_sliced_vbi_cap(struct file *file, void *priv,
1396                         struct v4l2_format *f)
1397 {
1398         struct em28xx_fh      *fh  = priv;
1399         struct em28xx         *dev = fh->dev;
1400         int                   rc;
1401
1402         rc = check_dev(dev);
1403         if (rc < 0)
1404                 return rc;
1405
1406         mutex_lock(&dev->lock);
1407         em28xx_i2c_call_clients(dev, VIDIOC_G_FMT, f);
1408         mutex_unlock(&dev->lock);
1409
1410         if (f->fmt.sliced.service_set == 0)
1411                 return -EINVAL;
1412
1413         return 0;
1414 }
1415
1416
1417 static int vidioc_reqbufs(struct file *file, void *priv,
1418                           struct v4l2_requestbuffers *rb)
1419 {
1420         struct em28xx_fh      *fh  = priv;
1421         struct em28xx         *dev = fh->dev;
1422         int                   rc;
1423
1424         rc = check_dev(dev);
1425         if (rc < 0)
1426                 return rc;
1427
1428         return (videobuf_reqbufs(&fh->vb_vidq, rb));
1429 }
1430
1431 static int vidioc_querybuf(struct file *file, void *priv,
1432                            struct v4l2_buffer *b)
1433 {
1434         struct em28xx_fh      *fh  = priv;
1435         struct em28xx         *dev = fh->dev;
1436         int                   rc;
1437
1438         rc = check_dev(dev);
1439         if (rc < 0)
1440                 return rc;
1441
1442         return (videobuf_querybuf(&fh->vb_vidq, b));
1443 }
1444
1445 static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1446 {
1447         struct em28xx_fh      *fh  = priv;
1448         struct em28xx         *dev = fh->dev;
1449         int                   rc;
1450
1451         rc = check_dev(dev);
1452         if (rc < 0)
1453                 return rc;
1454
1455         return (videobuf_qbuf(&fh->vb_vidq, b));
1456 }
1457
1458 static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1459 {
1460         struct em28xx_fh      *fh  = priv;
1461         struct em28xx         *dev = fh->dev;
1462         int                   rc;
1463
1464         rc = check_dev(dev);
1465         if (rc < 0)
1466                 return rc;
1467
1468         return (videobuf_dqbuf(&fh->vb_vidq, b,
1469                                 file->f_flags & O_NONBLOCK));
1470 }
1471
1472 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1473 static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
1474 {
1475         struct em28xx_fh  *fh = priv;
1476
1477         return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
1478 }
1479 #endif
1480
1481
1482 /* ----------------------------------------------------------- */
1483 /* RADIO ESPECIFIC IOCTLS                                      */
1484 /* ----------------------------------------------------------- */
1485
1486 static int radio_querycap(struct file *file, void  *priv,
1487                           struct v4l2_capability *cap)
1488 {
1489         struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1490
1491         strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1492         strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
1493         strlcpy(cap->bus_info, dev_name(&dev->udev->dev), sizeof(cap->bus_info));
1494
1495         cap->version = EM28XX_VERSION_CODE;
1496         cap->capabilities = V4L2_CAP_TUNER;
1497         return 0;
1498 }
1499
1500 static int radio_g_tuner(struct file *file, void *priv,
1501                          struct v4l2_tuner *t)
1502 {
1503         struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1504
1505         if (unlikely(t->index > 0))
1506                 return -EINVAL;
1507
1508         strcpy(t->name, "Radio");
1509         t->type = V4L2_TUNER_RADIO;
1510
1511         mutex_lock(&dev->lock);
1512         em28xx_i2c_call_clients(dev, VIDIOC_G_TUNER, t);
1513         mutex_unlock(&dev->lock);
1514
1515         return 0;
1516 }
1517
1518 static int radio_enum_input(struct file *file, void *priv,
1519                             struct v4l2_input *i)
1520 {
1521         if (i->index != 0)
1522                 return -EINVAL;
1523         strcpy(i->name, "Radio");
1524         i->type = V4L2_INPUT_TYPE_TUNER;
1525
1526         return 0;
1527 }
1528
1529 static int radio_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1530 {
1531         if (unlikely(a->index))
1532                 return -EINVAL;
1533
1534         strcpy(a->name, "Radio");
1535         return 0;
1536 }
1537
1538 static int radio_s_tuner(struct file *file, void *priv,
1539                          struct v4l2_tuner *t)
1540 {
1541         struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1542
1543         if (0 != t->index)
1544                 return -EINVAL;
1545
1546         mutex_lock(&dev->lock);
1547         em28xx_i2c_call_clients(dev, VIDIOC_S_TUNER, t);
1548         mutex_unlock(&dev->lock);
1549
1550         return 0;
1551 }
1552
1553 static int radio_s_audio(struct file *file, void *fh,
1554                          struct v4l2_audio *a)
1555 {
1556         return 0;
1557 }
1558
1559 static int radio_s_input(struct file *file, void *fh, unsigned int i)
1560 {
1561         return 0;
1562 }
1563
1564 static int radio_queryctrl(struct file *file, void *priv,
1565                            struct v4l2_queryctrl *qc)
1566 {
1567         int i;
1568
1569         if (qc->id <  V4L2_CID_BASE ||
1570                 qc->id >= V4L2_CID_LASTP1)
1571                 return -EINVAL;
1572
1573         for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1574                 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1575                         memcpy(qc, &(em28xx_qctrl[i]), sizeof(*qc));
1576                         return 0;
1577                 }
1578         }
1579
1580         return -EINVAL;
1581 }
1582
1583 /*
1584  * em28xx_v4l2_open()
1585  * inits the device and starts isoc transfer
1586  */
1587 static int em28xx_v4l2_open(struct file *filp)
1588 {
1589         int minor = video_devdata(filp)->minor;
1590         int errCode = 0, radio;
1591         struct em28xx *dev;
1592         enum v4l2_buf_type fh_type;
1593         struct em28xx_fh *fh;
1594
1595         dev = em28xx_get_device(minor, &fh_type, &radio);
1596
1597         if (NULL == dev)
1598                 return -ENODEV;
1599
1600         mutex_lock(&dev->lock);
1601
1602         em28xx_videodbg("open minor=%d type=%s users=%d\n",
1603                                 minor, v4l2_type_names[fh_type], dev->users);
1604
1605
1606         fh = kzalloc(sizeof(struct em28xx_fh), GFP_KERNEL);
1607         if (!fh) {
1608                 em28xx_errdev("em28xx-video.c: Out of memory?!\n");
1609                 mutex_unlock(&dev->lock);
1610                 return -ENOMEM;
1611         }
1612         fh->dev = dev;
1613         fh->radio = radio;
1614         fh->type = fh_type;
1615         filp->private_data = fh;
1616
1617         if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->users == 0) {
1618                 dev->width = norm_maxw(dev);
1619                 dev->height = norm_maxh(dev);
1620                 dev->hscale = 0;
1621                 dev->vscale = 0;
1622
1623                 em28xx_set_mode(dev, EM28XX_ANALOG_MODE);
1624                 em28xx_set_alternate(dev);
1625                 em28xx_resolution_set(dev);
1626
1627                 /* Needed, since GPIO might have disabled power of
1628                    some i2c device
1629                  */
1630                 em28xx_wake_i2c(dev);
1631
1632         }
1633         if (fh->radio) {
1634                 em28xx_videodbg("video_open: setting radio device\n");
1635                 em28xx_i2c_call_clients(dev, AUDC_SET_RADIO, NULL);
1636         }
1637
1638         dev->users++;
1639
1640         videobuf_queue_vmalloc_init(&fh->vb_vidq, &em28xx_video_qops,
1641                         NULL, &dev->slock, fh->type, V4L2_FIELD_INTERLACED,
1642                         sizeof(struct em28xx_buffer), fh);
1643
1644         mutex_unlock(&dev->lock);
1645
1646         return errCode;
1647 }
1648
1649 /*
1650  * em28xx_realease_resources()
1651  * unregisters the v4l2,i2c and usb devices
1652  * called when the device gets disconected or at module unload
1653 */
1654 void em28xx_release_analog_resources(struct em28xx *dev)
1655 {
1656
1657         /*FIXME: I2C IR should be disconnected */
1658
1659         if (dev->radio_dev) {
1660                 if (-1 != dev->radio_dev->minor)
1661                         video_unregister_device(dev->radio_dev);
1662                 else
1663                         video_device_release(dev->radio_dev);
1664                 dev->radio_dev = NULL;
1665         }
1666         if (dev->vbi_dev) {
1667                 em28xx_info("V4L2 device /dev/vbi%d deregistered\n",
1668                             dev->vbi_dev->num);
1669                 if (-1 != dev->vbi_dev->minor)
1670                         video_unregister_device(dev->vbi_dev);
1671                 else
1672                         video_device_release(dev->vbi_dev);
1673                 dev->vbi_dev = NULL;
1674         }
1675         if (dev->vdev) {
1676                 em28xx_info("V4L2 device /dev/video%d deregistered\n",
1677                             dev->vdev->num);
1678                 if (-1 != dev->vdev->minor)
1679                         video_unregister_device(dev->vdev);
1680                 else
1681                         video_device_release(dev->vdev);
1682                 dev->vdev = NULL;
1683         }
1684 }
1685
1686 /*
1687  * em28xx_v4l2_close()
1688  * stops streaming and deallocates all resources allocated by the v4l2
1689  * calls and ioctls
1690  */
1691 static int em28xx_v4l2_close(struct file *filp)
1692 {
1693         struct em28xx_fh *fh  = filp->private_data;
1694         struct em28xx    *dev = fh->dev;
1695         int              errCode;
1696
1697         em28xx_videodbg("users=%d\n", dev->users);
1698
1699
1700         mutex_lock(&dev->lock);
1701         if (res_check(fh))
1702                 res_free(fh);
1703
1704         if (dev->users == 1) {
1705                 videobuf_stop(&fh->vb_vidq);
1706                 videobuf_mmap_free(&fh->vb_vidq);
1707
1708                 /* the device is already disconnect,
1709                    free the remaining resources */
1710                 if (dev->state & DEV_DISCONNECTED) {
1711                         em28xx_release_resources(dev);
1712                         mutex_unlock(&dev->lock);
1713                         kfree(dev);
1714                         return 0;
1715                 }
1716
1717                 /* Save some power by putting tuner to sleep */
1718                 em28xx_i2c_call_clients(dev, TUNER_SET_STANDBY, NULL);
1719
1720                 /* do this before setting alternate! */
1721                 em28xx_uninit_isoc(dev);
1722                 em28xx_set_mode(dev, EM28XX_SUSPEND);
1723
1724                 /* set alternate 0 */
1725                 dev->alt = 0;
1726                 em28xx_videodbg("setting alternate 0\n");
1727                 errCode = usb_set_interface(dev->udev, 0, 0);
1728                 if (errCode < 0) {
1729                         em28xx_errdev("cannot change alternate number to "
1730                                         "0 (error=%i)\n", errCode);
1731                 }
1732         }
1733         kfree(fh);
1734         dev->users--;
1735         wake_up_interruptible_nr(&dev->open, 1);
1736         mutex_unlock(&dev->lock);
1737         return 0;
1738 }
1739
1740 /*
1741  * em28xx_v4l2_read()
1742  * will allocate buffers when called for the first time
1743  */
1744 static ssize_t
1745 em28xx_v4l2_read(struct file *filp, char __user *buf, size_t count,
1746                  loff_t *pos)
1747 {
1748         struct em28xx_fh *fh = filp->private_data;
1749         struct em28xx *dev = fh->dev;
1750         int rc;
1751
1752         rc = check_dev(dev);
1753         if (rc < 0)
1754                 return rc;
1755
1756         /* FIXME: read() is not prepared to allow changing the video
1757            resolution while streaming. Seems a bug at em28xx_set_fmt
1758          */
1759
1760         if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
1761                 mutex_lock(&dev->lock);
1762                 rc = res_get(fh);
1763                 mutex_unlock(&dev->lock);
1764
1765                 if (unlikely(rc < 0))
1766                         return rc;
1767
1768                 return videobuf_read_stream(&fh->vb_vidq, buf, count, pos, 0,
1769                                         filp->f_flags & O_NONBLOCK);
1770         }
1771         return 0;
1772 }
1773
1774 /*
1775  * em28xx_v4l2_poll()
1776  * will allocate buffers when called for the first time
1777  */
1778 static unsigned int em28xx_v4l2_poll(struct file *filp, poll_table * wait)
1779 {
1780         struct em28xx_fh *fh = filp->private_data;
1781         struct em28xx *dev = fh->dev;
1782         int rc;
1783
1784         rc = check_dev(dev);
1785         if (rc < 0)
1786                 return rc;
1787
1788         mutex_lock(&dev->lock);
1789         rc = res_get(fh);
1790         mutex_unlock(&dev->lock);
1791
1792         if (unlikely(rc < 0))
1793                 return POLLERR;
1794
1795         if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1796                 return POLLERR;
1797
1798         return videobuf_poll_stream(filp, &fh->vb_vidq, wait);
1799 }
1800
1801 /*
1802  * em28xx_v4l2_mmap()
1803  */
1804 static int em28xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
1805 {
1806         struct em28xx_fh *fh    = filp->private_data;
1807         struct em28xx    *dev   = fh->dev;
1808         int              rc;
1809
1810         rc = check_dev(dev);
1811         if (rc < 0)
1812                 return rc;
1813
1814         mutex_lock(&dev->lock);
1815         rc = res_get(fh);
1816         mutex_unlock(&dev->lock);
1817
1818         if (unlikely(rc < 0))
1819                 return rc;
1820
1821         rc = videobuf_mmap_mapper(&fh->vb_vidq, vma);
1822
1823         em28xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
1824                 (unsigned long)vma->vm_start,
1825                 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
1826                 rc);
1827
1828         return rc;
1829 }
1830
1831 static const struct v4l2_file_operations em28xx_v4l_fops = {
1832         .owner         = THIS_MODULE,
1833         .open          = em28xx_v4l2_open,
1834         .release       = em28xx_v4l2_close,
1835         .read          = em28xx_v4l2_read,
1836         .poll          = em28xx_v4l2_poll,
1837         .mmap          = em28xx_v4l2_mmap,
1838         .ioctl         = video_ioctl2,
1839 };
1840
1841 static const struct v4l2_ioctl_ops video_ioctl_ops = {
1842         .vidioc_querycap            = vidioc_querycap,
1843         .vidioc_enum_fmt_vid_cap    = vidioc_enum_fmt_vid_cap,
1844         .vidioc_g_fmt_vid_cap       = vidioc_g_fmt_vid_cap,
1845         .vidioc_try_fmt_vid_cap     = vidioc_try_fmt_vid_cap,
1846         .vidioc_s_fmt_vid_cap       = vidioc_s_fmt_vid_cap,
1847         .vidioc_g_audio             = vidioc_g_audio,
1848         .vidioc_s_audio             = vidioc_s_audio,
1849         .vidioc_cropcap             = vidioc_cropcap,
1850
1851         .vidioc_g_fmt_sliced_vbi_cap   = vidioc_g_fmt_sliced_vbi_cap,
1852         .vidioc_try_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
1853         .vidioc_s_fmt_sliced_vbi_cap   = vidioc_try_set_sliced_vbi_cap,
1854
1855         .vidioc_reqbufs             = vidioc_reqbufs,
1856         .vidioc_querybuf            = vidioc_querybuf,
1857         .vidioc_qbuf                = vidioc_qbuf,
1858         .vidioc_dqbuf               = vidioc_dqbuf,
1859         .vidioc_s_std               = vidioc_s_std,
1860         .vidioc_enum_input          = vidioc_enum_input,
1861         .vidioc_g_input             = vidioc_g_input,
1862         .vidioc_s_input             = vidioc_s_input,
1863         .vidioc_queryctrl           = vidioc_queryctrl,
1864         .vidioc_g_ctrl              = vidioc_g_ctrl,
1865         .vidioc_s_ctrl              = vidioc_s_ctrl,
1866         .vidioc_streamon            = vidioc_streamon,
1867         .vidioc_streamoff           = vidioc_streamoff,
1868         .vidioc_g_tuner             = vidioc_g_tuner,
1869         .vidioc_s_tuner             = vidioc_s_tuner,
1870         .vidioc_g_frequency         = vidioc_g_frequency,
1871         .vidioc_s_frequency         = vidioc_s_frequency,
1872 #ifdef CONFIG_VIDEO_ADV_DEBUG
1873         .vidioc_g_register          = vidioc_g_register,
1874         .vidioc_s_register          = vidioc_s_register,
1875         .vidioc_g_chip_ident        = vidioc_g_chip_ident,
1876 #endif
1877 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1878         .vidiocgmbuf                = vidiocgmbuf,
1879 #endif
1880 };
1881
1882 static const struct video_device em28xx_video_template = {
1883         .fops                       = &em28xx_v4l_fops,
1884         .release                    = video_device_release,
1885         .ioctl_ops                  = &video_ioctl_ops,
1886
1887         .minor                      = -1,
1888
1889         .tvnorms                    = V4L2_STD_ALL,
1890         .current_norm               = V4L2_STD_PAL,
1891 };
1892
1893 static const struct v4l2_file_operations radio_fops = {
1894         .owner         = THIS_MODULE,
1895         .open          = em28xx_v4l2_open,
1896         .release       = em28xx_v4l2_close,
1897         .ioctl         = video_ioctl2,
1898 };
1899
1900 static const struct v4l2_ioctl_ops radio_ioctl_ops = {
1901         .vidioc_querycap      = radio_querycap,
1902         .vidioc_g_tuner       = radio_g_tuner,
1903         .vidioc_enum_input    = radio_enum_input,
1904         .vidioc_g_audio       = radio_g_audio,
1905         .vidioc_s_tuner       = radio_s_tuner,
1906         .vidioc_s_audio       = radio_s_audio,
1907         .vidioc_s_input       = radio_s_input,
1908         .vidioc_queryctrl     = radio_queryctrl,
1909         .vidioc_g_ctrl        = vidioc_g_ctrl,
1910         .vidioc_s_ctrl        = vidioc_s_ctrl,
1911         .vidioc_g_frequency   = vidioc_g_frequency,
1912         .vidioc_s_frequency   = vidioc_s_frequency,
1913 #ifdef CONFIG_VIDEO_ADV_DEBUG
1914         .vidioc_g_register    = vidioc_g_register,
1915         .vidioc_s_register    = vidioc_s_register,
1916 #endif
1917 };
1918
1919 static struct video_device em28xx_radio_template = {
1920         .name                 = "em28xx-radio",
1921         .fops                 = &radio_fops,
1922         .ioctl_ops            = &radio_ioctl_ops,
1923         .minor                = -1,
1924 };
1925
1926 /******************************** usb interface ******************************/
1927
1928
1929
1930 static struct video_device *em28xx_vdev_init(struct em28xx *dev,
1931                                              const struct video_device *template,
1932                                              const char *type_name)
1933 {
1934         struct video_device *vfd;
1935
1936         vfd = video_device_alloc();
1937         if (NULL == vfd)
1938                 return NULL;
1939         *vfd = *template;
1940         vfd->minor   = -1;
1941         vfd->parent = &dev->udev->dev;
1942         vfd->release = video_device_release;
1943         vfd->debug = video_debug;
1944
1945         snprintf(vfd->name, sizeof(vfd->name), "%s %s",
1946                  dev->name, type_name);
1947
1948         return vfd;
1949 }
1950
1951 int em28xx_register_analog_devices(struct em28xx *dev)
1952 {
1953         int ret;
1954
1955         printk(KERN_INFO "%s: v4l2 driver version %d.%d.%d\n",
1956                 dev->name,
1957                 (EM28XX_VERSION_CODE >> 16) & 0xff,
1958                 (EM28XX_VERSION_CODE >> 8) & 0xff, EM28XX_VERSION_CODE & 0xff);
1959
1960         /* Analog specific initialization */
1961         dev->format = &format[0];
1962         video_mux(dev, 0);
1963
1964         /* enable vbi capturing */
1965
1966 /*      em28xx_write_reg(dev, EM28XX_R0E_AUDIOSRC, 0xc0); audio register */
1967 /*      em28xx_write_reg(dev, EM28XX_R0F_XCLK, 0x80); clk register */
1968         em28xx_write_reg(dev, EM28XX_R11_VINCTRL, 0x51);
1969
1970         dev->mute = 1;          /* maybe not the right place... */
1971         dev->volume = 0x1f;
1972
1973         em28xx_set_outfmt(dev);
1974         em28xx_colorlevels_set_default(dev);
1975         em28xx_compression_disable(dev);
1976
1977         /* set default norm */
1978         dev->norm = em28xx_video_template.current_norm;
1979         dev->width = norm_maxw(dev);
1980         dev->height = norm_maxh(dev);
1981         dev->interlaced = EM28XX_INTERLACED_DEFAULT;
1982         dev->hscale = 0;
1983         dev->vscale = 0;
1984
1985         /* FIXME: This is a very bad hack! Not all devices have TV on input 2 */
1986         dev->ctl_input = 2;
1987
1988         /* allocate and fill video video_device struct */
1989         dev->vdev = em28xx_vdev_init(dev, &em28xx_video_template, "video");
1990         if (!dev->vdev) {
1991                 em28xx_errdev("cannot allocate video_device.\n");
1992                 return -ENODEV;
1993         }
1994
1995         /* register v4l2 video video_device */
1996         ret = video_register_device(dev->vdev, VFL_TYPE_GRABBER,
1997                                        video_nr[dev->devno]);
1998         if (ret) {
1999                 em28xx_errdev("unable to register video device (error=%i).\n",
2000                               ret);
2001                 return ret;
2002         }
2003
2004         /* Allocate and fill vbi video_device struct */
2005         dev->vbi_dev = em28xx_vdev_init(dev, &em28xx_video_template, "vbi");
2006
2007         /* register v4l2 vbi video_device */
2008         ret = video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
2009                                         vbi_nr[dev->devno]);
2010         if (ret < 0) {
2011                 em28xx_errdev("unable to register vbi device\n");
2012                 return ret;
2013         }
2014
2015         if (em28xx_boards[dev->model].radio.type == EM28XX_RADIO) {
2016                 dev->radio_dev = em28xx_vdev_init(dev, &em28xx_radio_template, "radio");
2017                 if (!dev->radio_dev) {
2018                         em28xx_errdev("cannot allocate video_device.\n");
2019                         return -ENODEV;
2020                 }
2021                 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
2022                                             radio_nr[dev->devno]);
2023                 if (ret < 0) {
2024                         em28xx_errdev("can't register radio device\n");
2025                         return ret;
2026                 }
2027                 em28xx_info("Registered radio device as /dev/radio%d\n",
2028                             dev->radio_dev->num);
2029         }
2030
2031         em28xx_info("V4L2 device registered as /dev/video%d and /dev/vbi%d\n",
2032                                 dev->vdev->num, dev->vbi_dev->num);
2033
2034         return 0;
2035 }