2 cx231xx-video.c - driver for Conexant Cx23100/101/102
3 USB video capture devices
5 Copyright (C) 2008 <srinivasa.deevi at conexant dot com>
7 Based on cx23885 driver
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include <linux/init.h>
26 #include <linux/list.h>
27 #include <linux/module.h>
28 #include <linux/kernel.h>
29 #include <linux/bitmap.h>
30 #include <linux/usb.h>
31 #include <linux/i2c.h>
32 #include <linux/version.h>
34 #include <linux/mutex.h>
36 #include <media/v4l2-common.h>
37 #include <media/v4l2-ioctl.h>
38 #include <media/v4l2-chip-ident.h>
39 #include <media/msp3400.h>
40 #include <media/tuner.h>
42 #include "dvb_frontend.h"
45 #include "cx231xx-vbi.h"
47 #define CX231XX_VERSION_CODE KERNEL_VERSION(0, 0, 1)
49 #define DRIVER_AUTHOR "Srinivasa Deevi <srinivasa.deevi@conexant.com>"
50 #define DRIVER_DESC "Conexant cx231xx based USB video device driver"
52 #define cx231xx_videodbg(fmt, arg...) do {\
54 printk(KERN_INFO "%s %s :"fmt, \
55 dev->name, __func__ , ##arg); } while (0)
57 static unsigned int isoc_debug;
58 module_param(isoc_debug, int, 0644);
59 MODULE_PARM_DESC(isoc_debug, "enable debug messages [isoc transfers]");
61 #define cx231xx_isocdbg(fmt, arg...) \
64 printk(KERN_INFO "%s %s :"fmt, \
65 dev->name, __func__ , ##arg); \
69 MODULE_AUTHOR(DRIVER_AUTHOR);
70 MODULE_DESCRIPTION(DRIVER_DESC);
71 MODULE_LICENSE("GPL");
73 static unsigned int card[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
74 static unsigned int video_nr[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
75 static unsigned int vbi_nr[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
76 static unsigned int radio_nr[] = {[0 ... (CX231XX_MAXBOARDS - 1)] = UNSET };
78 module_param_array(card, int, NULL, 0444);
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);
83 MODULE_PARM_DESC(card, "card type");
84 MODULE_PARM_DESC(video_nr, "video device numbers");
85 MODULE_PARM_DESC(vbi_nr, "vbi device numbers");
86 MODULE_PARM_DESC(radio_nr, "radio device numbers");
88 static unsigned int video_debug;
89 module_param(video_debug, int, 0644);
90 MODULE_PARM_DESC(video_debug, "enable debug messages [video]");
92 /* supported video standards */
93 static struct cx231xx_fmt format[] = {
95 .name = "16bpp YUY2, 4:2:2, packed",
96 .fourcc = V4L2_PIX_FMT_YUYV,
102 /* supported controls */
103 /* Common to all boards */
105 /* ------------------------------------------------------------------- */
107 static const struct v4l2_queryctrl no_ctl = {
109 .flags = V4L2_CTRL_FLAG_DISABLED,
112 static struct cx231xx_ctrl cx231xx_ctls[] = {
116 .id = V4L2_CID_BRIGHTNESS,
117 .name = "Brightness",
121 .default_value = 0x7f,
122 .type = V4L2_CTRL_TYPE_INTEGER,
130 .id = V4L2_CID_CONTRAST,
135 .default_value = 0x3f,
136 .type = V4L2_CTRL_TYPE_INTEGER,
149 .default_value = 0x7f,
150 .type = V4L2_CTRL_TYPE_INTEGER,
157 /* strictly, this only describes only U saturation.
158 * V saturation is handled specially through code.
161 .id = V4L2_CID_SATURATION,
162 .name = "Saturation",
166 .default_value = 0x7f,
167 .type = V4L2_CTRL_TYPE_INTEGER,
176 .id = V4L2_CID_AUDIO_MUTE,
181 .type = V4L2_CTRL_TYPE_BOOLEAN,
184 .mask = (0x1f << 24),
188 .id = V4L2_CID_AUDIO_VOLUME,
193 .default_value = 0x3f,
194 .type = V4L2_CTRL_TYPE_INTEGER,
196 .reg = PATH1_VOL_CTL,
201 static const int CX231XX_CTLS = ARRAY_SIZE(cx231xx_ctls);
203 static const u32 cx231xx_user_ctrls[] = {
209 V4L2_CID_AUDIO_VOLUME,
211 V4L2_CID_AUDIO_BALANCE,
217 static const u32 *ctrl_classes[] = {
222 /* ------------------------------------------------------------------
223 Video buffer and parser functions
224 ------------------------------------------------------------------*/
227 * Announces that a buffer were filled and request the next
229 static inline void buffer_filled(struct cx231xx *dev,
230 struct cx231xx_dmaqueue *dma_q,
231 struct cx231xx_buffer *buf)
233 /* Advice that buffer was filled */
234 cx231xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
235 buf->vb.state = VIDEOBUF_DONE;
236 buf->vb.field_count++;
237 do_gettimeofday(&buf->vb.ts);
239 dev->video_mode.isoc_ctl.buf = NULL;
241 list_del(&buf->vb.queue);
242 wake_up(&buf->vb.done);
245 static inline void print_err_status(struct cx231xx *dev, int packet, int status)
247 char *errmsg = "Unknown";
251 errmsg = "unlinked synchronuously";
254 errmsg = "unlinked asynchronuously";
257 errmsg = "Buffer error (overrun)";
260 errmsg = "Stalled (device not responding)";
263 errmsg = "Babble (bad cable?)";
266 errmsg = "Bit-stuff error (bad cable?)";
269 errmsg = "CRC/Timeout (could be anything)";
272 errmsg = "Device does not respond";
276 cx231xx_isocdbg("URB status %d [%s].\n", status, errmsg);
278 cx231xx_isocdbg("URB packet %d, status %d [%s].\n",
279 packet, status, errmsg);
284 * video-buf generic routine to get the next available buffer
286 static inline void get_next_buf(struct cx231xx_dmaqueue *dma_q,
287 struct cx231xx_buffer **buf)
289 struct cx231xx_video_mode *vmode =
290 container_of(dma_q, struct cx231xx_video_mode, vidq);
291 struct cx231xx *dev = container_of(vmode, struct cx231xx, video_mode);
295 if (list_empty(&dma_q->active)) {
296 cx231xx_isocdbg("No active queue to serve\n");
297 dev->video_mode.isoc_ctl.buf = NULL;
302 /* Get the next buffer */
303 *buf = list_entry(dma_q->active.next, struct cx231xx_buffer, vb.queue);
305 /* Cleans up buffer - Usefull for testing for frame/URB loss */
306 outp = videobuf_to_vmalloc(&(*buf)->vb);
307 memset(outp, 0, (*buf)->vb.size);
309 dev->video_mode.isoc_ctl.buf = *buf;
315 * Controls the isoc copy of each urb packet
317 static inline int cx231xx_isoc_copy(struct cx231xx *dev, struct urb *urb)
319 struct cx231xx_buffer *buf;
320 struct cx231xx_dmaqueue *dma_q = urb->context;
321 unsigned char *outp = NULL;
323 unsigned char *p_buffer;
324 u32 bytes_parsed = 0, buffer_size = 0;
330 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
333 if (urb->status < 0) {
334 print_err_status(dev, -1, urb->status);
335 if (urb->status == -ENOENT)
339 buf = dev->video_mode.isoc_ctl.buf;
341 outp = videobuf_to_vmalloc(&buf->vb);
343 for (i = 0; i < urb->number_of_packets; i++) {
344 int status = urb->iso_frame_desc[i].status;
347 print_err_status(dev, i, status);
348 if (urb->iso_frame_desc[i].status != -EPROTO)
352 if (urb->iso_frame_desc[i].actual_length <= 0) {
353 /* cx231xx_isocdbg("packet %d is empty",i); - spammy */
356 if (urb->iso_frame_desc[i].actual_length >
357 dev->video_mode.max_pkt_size) {
358 cx231xx_isocdbg("packet bigger than packet size");
362 /* get buffer pointer and length */
363 p_buffer = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
364 buffer_size = urb->iso_frame_desc[i].actual_length;
367 if (dma_q->is_partial_line) {
368 /* Handle the case of a partial line */
369 sav_eav = dma_q->last_sav;
371 /* Check for a SAV/EAV overlapping
372 the buffer boundary */
374 cx231xx_find_boundary_SAV_EAV(p_buffer,
380 /* Get the first line if we have some portion of an SAV/EAV from
381 the last buffer or a partial line */
383 bytes_parsed += cx231xx_get_video_line(dev, dma_q,
384 sav_eav, /* SAV/EAV */
385 p_buffer + bytes_parsed, /* p_buffer */
386 buffer_size - bytes_parsed);/* buf size */
389 /* Now parse data that is completely in this buffer */
390 /* dma_q->is_partial_line = 0; */
392 while (bytes_parsed < buffer_size) {
395 sav_eav = cx231xx_find_next_SAV_EAV(
396 p_buffer + bytes_parsed, /* p_buffer */
397 buffer_size - bytes_parsed, /* buf size */
398 &bytes_used);/* bytes used to get SAV/EAV */
400 bytes_parsed += bytes_used;
403 if (sav_eav && (bytes_parsed < buffer_size)) {
404 bytes_parsed += cx231xx_get_video_line(dev,
405 dma_q, sav_eav, /* SAV/EAV */
406 p_buffer + bytes_parsed,/* p_buffer */
407 buffer_size - bytes_parsed);/*buf size*/
411 /* Save the last four bytes of the buffer so we can check the
412 buffer boundary condition next time */
413 memcpy(dma_q->partial_buf, p_buffer + buffer_size - 4, 4);
420 u8 cx231xx_find_boundary_SAV_EAV(u8 *p_buffer, u8 *partial_buf,
424 u8 boundary_bytes[8];
429 /* Create an array of the last 4 bytes of the last buffer and the first
430 4 bytes of the current buffer. */
432 memcpy(boundary_bytes, partial_buf, 4);
433 memcpy(boundary_bytes + 4, p_buffer, 4);
435 /* Check for the SAV/EAV in the boundary buffer */
436 sav_eav = cx231xx_find_next_SAV_EAV((u8 *)&boundary_bytes, 8,
440 /* found a boundary SAV/EAV. Updates the bytes used to reflect
441 only those used in the new buffer */
442 *p_bytes_used = bytes_used - 4;
448 u8 cx231xx_find_next_SAV_EAV(u8 *p_buffer, u32 buffer_size, u32 *p_bytes_used)
454 * Don't search if the buffer size is less than 4. It causes a page
455 * fault since buffer_size - 4 evaluates to a large number in that
458 if (buffer_size < 4) {
459 *p_bytes_used = buffer_size;
463 for (i = 0; i < (buffer_size - 3); i++) {
465 if ((p_buffer[i] == 0xFF) &&
466 (p_buffer[i + 1] == 0x00) && (p_buffer[i + 2] == 0x00)) {
468 *p_bytes_used = i + 4;
469 sav_eav = p_buffer[i + 3];
474 *p_bytes_used = buffer_size;
478 u32 cx231xx_get_video_line(struct cx231xx *dev,
479 struct cx231xx_dmaqueue *dma_q, u8 sav_eav,
480 u8 *p_buffer, u32 buffer_size)
482 u32 bytes_copied = 0;
483 int current_field = -1;
486 case SAV_ACTIVE_VIDEO_FIELD1:
487 /* looking for skipped line which occurred in PAL 720x480 mode.
488 In this case, there will be no active data contained
489 between the SAV and EAV */
490 if ((buffer_size > 3) && (p_buffer[0] == 0xFF) &&
491 (p_buffer[1] == 0x00) && (p_buffer[2] == 0x00) &&
492 ((p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD1) ||
493 (p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD2) ||
494 (p_buffer[3] == EAV_VBLANK_FIELD1) ||
495 (p_buffer[3] == EAV_VBLANK_FIELD2)))
500 case SAV_ACTIVE_VIDEO_FIELD2:
501 /* looking for skipped line which occurred in PAL 720x480 mode.
502 In this case, there will be no active data contained between
504 if ((buffer_size > 3) && (p_buffer[0] == 0xFF) &&
505 (p_buffer[1] == 0x00) && (p_buffer[2] == 0x00) &&
506 ((p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD1) ||
507 (p_buffer[3] == EAV_ACTIVE_VIDEO_FIELD2) ||
508 (p_buffer[3] == EAV_VBLANK_FIELD1) ||
509 (p_buffer[3] == EAV_VBLANK_FIELD2)))
515 dma_q->last_sav = sav_eav;
517 bytes_copied = cx231xx_copy_video_line(dev, dma_q, p_buffer,
518 buffer_size, current_field);
523 u32 cx231xx_copy_video_line(struct cx231xx *dev,
524 struct cx231xx_dmaqueue *dma_q, u8 *p_line,
525 u32 length, int field_number)
528 struct cx231xx_buffer *buf;
529 u32 _line_size = dev->width * 2;
531 if (dma_q->current_field != field_number)
532 cx231xx_reset_video_buffer(dev, dma_q);
534 /* get the buffer pointer */
535 buf = dev->video_mode.isoc_ctl.buf;
537 /* Remember the field number for next time */
538 dma_q->current_field = field_number;
540 bytes_to_copy = dma_q->bytes_left_in_line;
541 if (bytes_to_copy > length)
542 bytes_to_copy = length;
544 if (dma_q->lines_completed >= dma_q->lines_per_field) {
545 dma_q->bytes_left_in_line -= bytes_to_copy;
546 dma_q->is_partial_line = (dma_q->bytes_left_in_line == 0) ?
551 dma_q->is_partial_line = 1;
553 /* If we don't have a buffer, just return the number of bytes we would
554 have copied if we had a buffer. */
556 dma_q->bytes_left_in_line -= bytes_to_copy;
557 dma_q->is_partial_line = (dma_q->bytes_left_in_line == 0)
559 return bytes_to_copy;
562 /* copy the data to video buffer */
563 cx231xx_do_copy(dev, dma_q, p_line, bytes_to_copy);
565 dma_q->pos += bytes_to_copy;
566 dma_q->bytes_left_in_line -= bytes_to_copy;
568 if (dma_q->bytes_left_in_line == 0) {
569 dma_q->bytes_left_in_line = _line_size;
570 dma_q->lines_completed++;
571 dma_q->is_partial_line = 0;
573 if (cx231xx_is_buffer_done(dev, dma_q) && buf) {
574 buffer_filled(dev, dma_q, buf);
578 dma_q->lines_completed = 0;
582 return bytes_to_copy;
585 void cx231xx_reset_video_buffer(struct cx231xx *dev,
586 struct cx231xx_dmaqueue *dma_q)
588 struct cx231xx_buffer *buf;
590 /* handle the switch from field 1 to field 2 */
591 if (dma_q->current_field == 1) {
592 if (dma_q->lines_completed >= dma_q->lines_per_field)
593 dma_q->field1_done = 1;
595 dma_q->field1_done = 0;
598 buf = dev->video_mode.isoc_ctl.buf;
602 /* first try to get the buffer */
603 get_next_buf(dma_q, &buf);
606 outp = videobuf_to_vmalloc(&buf->vb);
609 dma_q->field1_done = 0;
610 dma_q->current_field = -1;
613 /* reset the counters */
614 dma_q->bytes_left_in_line = dev->width << 1;
615 dma_q->lines_completed = 0;
618 int cx231xx_do_copy(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,
619 u8 *p_buffer, u32 bytes_to_copy)
621 u8 *p_out_buffer = NULL;
622 u32 current_line_bytes_copied = 0;
623 struct cx231xx_buffer *buf;
624 u32 _line_size = dev->width << 1;
628 buf = dev->video_mode.isoc_ctl.buf;
633 p_out_buffer = videobuf_to_vmalloc(&buf->vb);
635 current_line_bytes_copied = _line_size - dma_q->bytes_left_in_line;
637 /* Offset field 2 one line from the top of the buffer */
638 offset = (dma_q->current_field == 1) ? 0 : _line_size;
640 /* Offset for field 2 */
641 startwrite = p_out_buffer + offset;
643 /* lines already completed in the current field */
644 startwrite += (dma_q->lines_completed * _line_size * 2);
646 /* bytes already completed in the current line */
647 startwrite += current_line_bytes_copied;
649 lencopy = dma_q->bytes_left_in_line > bytes_to_copy ?
650 bytes_to_copy : dma_q->bytes_left_in_line;
652 if ((u8 *)(startwrite + lencopy) > (u8 *)(p_out_buffer + buf->vb.size))
655 /* The below copies the UYVY data straight into video buffer */
656 cx231xx_swab((u16 *) p_buffer, (u16 *) startwrite, (u16) lencopy);
661 void cx231xx_swab(u16 *from, u16 *to, u16 len)
668 for (i = 0; i < len / 2; i++)
669 to[i] = (from[i] << 8) | (from[i] >> 8);
672 u8 cx231xx_is_buffer_done(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q)
674 u8 buffer_complete = 0;
676 /* Dual field stream */
677 buffer_complete = ((dma_q->current_field == 2) &&
678 (dma_q->lines_completed >= dma_q->lines_per_field) &&
681 return buffer_complete;
684 /* ------------------------------------------------------------------
686 ------------------------------------------------------------------*/
689 buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
691 struct cx231xx_fh *fh = vq->priv_data;
692 struct cx231xx *dev = fh->dev;
693 struct v4l2_frequency f;
695 *size = (fh->dev->width * fh->dev->height * dev->format->depth + 7)>>3;
697 *count = CX231XX_DEF_BUF;
699 if (*count < CX231XX_MIN_BUF)
700 *count = CX231XX_MIN_BUF;
702 /* Ask tuner to go to analog mode */
703 memset(&f, 0, sizeof(f));
704 f.frequency = dev->ctl_freq;
705 f.type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
707 call_all(dev, tuner, s_frequency, &f);
712 /* This is called *without* dev->slock held; please keep it that way */
713 static void free_buffer(struct videobuf_queue *vq, struct cx231xx_buffer *buf)
715 struct cx231xx_fh *fh = vq->priv_data;
716 struct cx231xx *dev = fh->dev;
717 unsigned long flags = 0;
722 /* We used to wait for the buffer to finish here, but this didn't work
723 because, as we were keeping the state as VIDEOBUF_QUEUED,
724 videobuf_queue_cancel marked it as finished for us.
725 (Also, it could wedge forever if the hardware was misconfigured.)
727 This should be safe; by the time we get here, the buffer isn't
728 queued anymore. If we ever start marking the buffers as
729 VIDEOBUF_ACTIVE, it won't be, though.
731 spin_lock_irqsave(&dev->video_mode.slock, flags);
732 if (dev->video_mode.isoc_ctl.buf == buf)
733 dev->video_mode.isoc_ctl.buf = NULL;
734 spin_unlock_irqrestore(&dev->video_mode.slock, flags);
736 videobuf_vmalloc_free(&buf->vb);
737 buf->vb.state = VIDEOBUF_NEEDS_INIT;
741 buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
742 enum v4l2_field field)
744 struct cx231xx_fh *fh = vq->priv_data;
745 struct cx231xx_buffer *buf =
746 container_of(vb, struct cx231xx_buffer, vb);
747 struct cx231xx *dev = fh->dev;
748 int rc = 0, urb_init = 0;
750 /* The only currently supported format is 16 bits/pixel */
751 buf->vb.size = (fh->dev->width * fh->dev->height * dev->format->depth
753 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
756 buf->vb.width = dev->width;
757 buf->vb.height = dev->height;
758 buf->vb.field = field;
760 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
761 rc = videobuf_iolock(vq, &buf->vb, NULL);
766 if (!dev->video_mode.isoc_ctl.num_bufs)
770 rc = cx231xx_init_isoc(dev, CX231XX_NUM_PACKETS,
772 dev->video_mode.max_pkt_size,
778 buf->vb.state = VIDEOBUF_PREPARED;
782 free_buffer(vq, buf);
786 static void buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
788 struct cx231xx_buffer *buf =
789 container_of(vb, struct cx231xx_buffer, vb);
790 struct cx231xx_fh *fh = vq->priv_data;
791 struct cx231xx *dev = fh->dev;
792 struct cx231xx_dmaqueue *vidq = &dev->video_mode.vidq;
794 buf->vb.state = VIDEOBUF_QUEUED;
795 list_add_tail(&buf->vb.queue, &vidq->active);
799 static void buffer_release(struct videobuf_queue *vq,
800 struct videobuf_buffer *vb)
802 struct cx231xx_buffer *buf =
803 container_of(vb, struct cx231xx_buffer, vb);
804 struct cx231xx_fh *fh = vq->priv_data;
805 struct cx231xx *dev = (struct cx231xx *)fh->dev;
807 cx231xx_isocdbg("cx231xx: called buffer_release\n");
809 free_buffer(vq, buf);
812 static struct videobuf_queue_ops cx231xx_video_qops = {
813 .buf_setup = buffer_setup,
814 .buf_prepare = buffer_prepare,
815 .buf_queue = buffer_queue,
816 .buf_release = buffer_release,
819 /********************* v4l2 interface **************************************/
821 void video_mux(struct cx231xx *dev, int index)
823 dev->video_input = index;
824 dev->ctl_ainput = INPUT(index)->amux;
826 cx231xx_set_video_input_mux(dev, index);
828 cx25840_call(dev, video, s_routing, INPUT(index)->vmux, 0, 0);
830 cx231xx_set_audio_input(dev, dev->ctl_ainput);
832 cx231xx_info("video_mux : %d\n", index);
834 /* do mode control overrides if required */
835 cx231xx_do_mode_ctrl_overrides(dev);
838 /* Usage lock check functions */
839 static int res_get(struct cx231xx_fh *fh)
841 struct cx231xx *dev = fh->dev;
844 /* This instance already has stream_on */
848 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
852 } else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
853 if (dev->vbi_stream_on)
855 dev->vbi_stream_on = 1;
864 static int res_check(struct cx231xx_fh *fh)
866 return fh->stream_on;
869 static void res_free(struct cx231xx_fh *fh)
871 struct cx231xx *dev = fh->dev;
875 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
877 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
878 dev->vbi_stream_on = 0;
881 static int check_dev(struct cx231xx *dev)
883 if (dev->state & DEV_DISCONNECTED) {
884 cx231xx_errdev("v4l2 ioctl: device not present\n");
888 if (dev->state & DEV_MISCONFIGURED) {
889 cx231xx_errdev("v4l2 ioctl: device is misconfigured; "
890 "close and open it again\n");
896 void get_scale(struct cx231xx *dev,
897 unsigned int width, unsigned int height,
898 unsigned int *hscale, unsigned int *vscale)
900 unsigned int maxw = norm_maxw(dev);
901 unsigned int maxh = norm_maxh(dev);
903 *hscale = (((unsigned long)maxw) << 12) / width - 4096L;
904 if (*hscale >= 0x4000)
907 *vscale = (((unsigned long)maxh) << 12) / height - 4096L;
908 if (*vscale >= 0x4000)
911 dev->hscale = *hscale;
912 dev->vscale = *vscale;
916 /* ------------------------------------------------------------------
917 IOCTL vidioc handling
918 ------------------------------------------------------------------*/
920 static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
921 struct v4l2_format *f)
923 struct cx231xx_fh *fh = priv;
924 struct cx231xx *dev = fh->dev;
926 mutex_lock(&dev->lock);
928 f->fmt.pix.width = dev->width;
929 f->fmt.pix.height = dev->height;
930 f->fmt.pix.pixelformat = dev->format->fourcc;;
931 f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3;;
932 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * dev->height;
933 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
935 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
937 mutex_unlock(&dev->lock);
942 static struct cx231xx_fmt *format_by_fourcc(unsigned int fourcc)
946 for (i = 0; i < ARRAY_SIZE(format); i++)
947 if (format[i].fourcc == fourcc)
953 static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
954 struct v4l2_format *f)
956 struct cx231xx_fh *fh = priv;
957 struct cx231xx *dev = fh->dev;
958 int width = f->fmt.pix.width;
959 int height = f->fmt.pix.height;
960 unsigned int maxw = norm_maxw(dev);
961 unsigned int maxh = norm_maxh(dev);
962 unsigned int hscale, vscale;
963 struct cx231xx_fmt *fmt;
965 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
967 cx231xx_videodbg("Fourcc format (%08x) invalid.\n",
968 f->fmt.pix.pixelformat);
972 /* width must even because of the YUYV format
973 height must be even because of interlacing */
977 if (unlikely(height < 32))
979 if (unlikely(height > maxh))
981 if (unlikely(width < 48))
983 if (unlikely(width > maxw))
986 get_scale(dev, width, height, &hscale, &vscale);
988 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
989 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
991 f->fmt.pix.width = width;
992 f->fmt.pix.height = height;
993 f->fmt.pix.pixelformat = fmt->fourcc;
994 f->fmt.pix.bytesperline = (dev->width * fmt->depth + 7) >> 3;
995 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * height;
996 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
997 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
1002 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
1003 struct v4l2_format *f)
1005 struct cx231xx_fh *fh = priv;
1006 struct cx231xx *dev = fh->dev;
1008 struct cx231xx_fmt *fmt;
1010 rc = check_dev(dev);
1014 mutex_lock(&dev->lock);
1016 vidioc_try_fmt_vid_cap(file, priv, f);
1018 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1024 if (videobuf_queue_is_busy(&fh->vb_vidq)) {
1025 cx231xx_errdev("%s queue busy\n", __func__);
1030 if (dev->stream_on && !fh->stream_on) {
1031 cx231xx_errdev("%s device in use by another fh\n", __func__);
1036 /* set new image size */
1037 dev->width = f->fmt.pix.width;
1038 dev->height = f->fmt.pix.height;
1040 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
1042 call_all(dev, video, s_fmt, f);
1044 /* Set the correct alternate setting for this resolution */
1045 cx231xx_resolution_set(dev);
1048 mutex_unlock(&dev->lock);
1052 static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id * id)
1054 struct cx231xx_fh *fh = priv;
1055 struct cx231xx *dev = fh->dev;
1061 static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
1063 struct cx231xx_fh *fh = priv;
1064 struct cx231xx *dev = fh->dev;
1065 struct v4l2_format f;
1068 rc = check_dev(dev);
1072 cx231xx_info("vidioc_s_std : 0x%x\n", (unsigned int)*norm);
1074 mutex_lock(&dev->lock);
1077 /* Adjusts width/height, if needed */
1078 f.fmt.pix.width = dev->width;
1079 f.fmt.pix.height = dev->height;
1080 vidioc_try_fmt_vid_cap(file, priv, &f);
1082 /* set new image size */
1083 dev->width = f.fmt.pix.width;
1084 dev->height = f.fmt.pix.height;
1085 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
1087 call_all(dev, core, s_std, dev->norm);
1089 mutex_unlock(&dev->lock);
1091 cx231xx_resolution_set(dev);
1093 /* do mode control overrides */
1094 cx231xx_do_mode_ctrl_overrides(dev);
1099 static const char *iname[] = {
1100 [CX231XX_VMUX_COMPOSITE1] = "Composite1",
1101 [CX231XX_VMUX_SVIDEO] = "S-Video",
1102 [CX231XX_VMUX_TELEVISION] = "Television",
1103 [CX231XX_VMUX_CABLE] = "Cable TV",
1104 [CX231XX_VMUX_DVB] = "DVB",
1105 [CX231XX_VMUX_DEBUG] = "for debug only",
1108 static int vidioc_enum_input(struct file *file, void *priv,
1109 struct v4l2_input *i)
1111 struct cx231xx_fh *fh = priv;
1112 struct cx231xx *dev = fh->dev;
1116 if (n >= MAX_CX231XX_INPUT)
1118 if (0 == INPUT(n)->type)
1122 i->type = V4L2_INPUT_TYPE_CAMERA;
1124 strcpy(i->name, iname[INPUT(n)->type]);
1126 if ((CX231XX_VMUX_TELEVISION == INPUT(n)->type) ||
1127 (CX231XX_VMUX_CABLE == INPUT(n)->type))
1128 i->type = V4L2_INPUT_TYPE_TUNER;
1130 i->std = dev->vdev->tvnorms;
1135 static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1137 struct cx231xx_fh *fh = priv;
1138 struct cx231xx *dev = fh->dev;
1140 *i = dev->video_input;
1145 static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1147 struct cx231xx_fh *fh = priv;
1148 struct cx231xx *dev = fh->dev;
1151 rc = check_dev(dev);
1155 if (i >= MAX_CX231XX_INPUT)
1157 if (0 == INPUT(i)->type)
1160 mutex_lock(&dev->lock);
1164 mutex_unlock(&dev->lock);
1168 static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1170 struct cx231xx_fh *fh = priv;
1171 struct cx231xx *dev = fh->dev;
1174 case CX231XX_AMUX_VIDEO:
1175 strcpy(a->name, "Television");
1177 case CX231XX_AMUX_LINE_IN:
1178 strcpy(a->name, "Line In");
1184 a->index = dev->ctl_ainput;
1185 a->capability = V4L2_AUDCAP_STEREO;
1190 static int vidioc_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
1192 struct cx231xx_fh *fh = priv;
1193 struct cx231xx *dev = fh->dev;
1196 /* Doesn't allow manual routing */
1197 if (a->index != dev->ctl_ainput)
1200 dev->ctl_ainput = INPUT(a->index)->amux;
1201 status = cx231xx_set_audio_input(dev, dev->ctl_ainput);
1206 static int vidioc_queryctrl(struct file *file, void *priv,
1207 struct v4l2_queryctrl *qc)
1209 struct cx231xx_fh *fh = priv;
1210 struct cx231xx *dev = fh->dev;
1215 rc = check_dev(dev);
1219 qc->id = v4l2_ctrl_next(ctrl_classes, qc->id);
1220 if (unlikely(qc->id == 0))
1223 memset(qc, 0, sizeof(*qc));
1227 if (qc->id < V4L2_CID_BASE || qc->id >= V4L2_CID_LASTP1)
1230 for (i = 0; i < CX231XX_CTLS; i++)
1231 if (cx231xx_ctls[i].v.id == qc->id)
1234 if (i == CX231XX_CTLS) {
1238 *qc = cx231xx_ctls[i].v;
1240 mutex_lock(&dev->lock);
1241 call_all(dev, core, queryctrl, qc);
1242 mutex_unlock(&dev->lock);
1250 static int vidioc_g_ctrl(struct file *file, void *priv,
1251 struct v4l2_control *ctrl)
1253 struct cx231xx_fh *fh = priv;
1254 struct cx231xx *dev = fh->dev;
1257 rc = check_dev(dev);
1261 mutex_lock(&dev->lock);
1262 call_all(dev, core, g_ctrl, ctrl);
1263 mutex_unlock(&dev->lock);
1267 static int vidioc_s_ctrl(struct file *file, void *priv,
1268 struct v4l2_control *ctrl)
1270 struct cx231xx_fh *fh = priv;
1271 struct cx231xx *dev = fh->dev;
1274 rc = check_dev(dev);
1278 mutex_lock(&dev->lock);
1279 call_all(dev, core, s_ctrl, ctrl);
1280 mutex_unlock(&dev->lock);
1284 static int vidioc_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
1286 struct cx231xx_fh *fh = priv;
1287 struct cx231xx *dev = fh->dev;
1290 rc = check_dev(dev);
1297 strcpy(t->name, "Tuner");
1299 t->type = V4L2_TUNER_ANALOG_TV;
1300 t->capability = V4L2_TUNER_CAP_NORM;
1301 t->rangehigh = 0xffffffffUL;
1302 t->signal = 0xffff; /* LOCKED */
1307 static int vidioc_s_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
1309 struct cx231xx_fh *fh = priv;
1310 struct cx231xx *dev = fh->dev;
1313 rc = check_dev(dev);
1320 mutex_lock(&dev->lock);
1321 call_all(dev, tuner, s_tuner, t);
1322 mutex_unlock(&dev->lock);
1327 static int vidioc_g_frequency(struct file *file, void *priv,
1328 struct v4l2_frequency *f)
1330 struct cx231xx_fh *fh = priv;
1331 struct cx231xx *dev = fh->dev;
1333 mutex_lock(&dev->lock);
1334 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1335 f->frequency = dev->ctl_freq;
1337 call_all(dev, tuner, g_frequency, f);
1339 mutex_unlock(&dev->lock);
1344 static int vidioc_s_frequency(struct file *file, void *priv,
1345 struct v4l2_frequency *f)
1347 struct cx231xx_fh *fh = priv;
1348 struct cx231xx *dev = fh->dev;
1351 rc = check_dev(dev);
1358 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1360 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
1363 /* set pre channel change settings in DIF first */
1364 rc = cx231xx_tuner_pre_channel_change(dev);
1366 mutex_lock(&dev->lock);
1368 dev->ctl_freq = f->frequency;
1370 if (dev->tuner_type == TUNER_XC5000) {
1371 if (dev->cx231xx_set_analog_freq != NULL)
1372 dev->cx231xx_set_analog_freq(dev, f->frequency);
1374 call_all(dev, tuner, s_frequency, f);
1376 mutex_unlock(&dev->lock);
1378 /* set post channel change settings in DIF first */
1379 rc = cx231xx_tuner_post_channel_change(dev);
1381 cx231xx_info("Set New FREQUENCY to %d\n", f->frequency);
1386 #ifdef CONFIG_VIDEO_ADV_DEBUG
1389 -R, --list-registers=type=<host/i2cdrv/i2caddr>,
1390 chip=<chip>[,min=<addr>,max=<addr>]
1391 dump registers from <min> to <max> [VIDIOC_DBG_G_REGISTER]
1392 -r, --set-register=type=<host/i2cdrv/i2caddr>,
1393 chip=<chip>,reg=<addr>,val=<val>
1394 set the register [VIDIOC_DBG_S_REGISTER]
1396 if type == host, then <chip> is the hosts chip ID (default 0)
1397 if type == i2cdrv (default), then <chip> is the I2C driver name or ID
1398 if type == i2caddr, then <chip> is the 7-bit I2C address
1401 static int vidioc_g_register(struct file *file, void *priv,
1402 struct v4l2_dbg_register *reg)
1404 struct cx231xx_fh *fh = priv;
1405 struct cx231xx *dev = fh->dev;
1407 u8 value[4] = { 0, 0, 0, 0 };
1410 switch (reg->match.type) {
1411 case V4L2_CHIP_MATCH_HOST:
1412 switch (reg->match.addr) {
1413 case 0: /* Cx231xx - internal registers */
1414 ret = cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER,
1415 (u16)reg->reg, value, 4);
1416 reg->val = value[0] | value[1] << 8 |
1417 value[2] << 16 | value[3] << 24;
1419 case 1: /* AFE - read byte */
1420 ret = cx231xx_read_i2c_data(dev, AFE_DEVICE_ADDRESS,
1421 (u16)reg->reg, 2, &data, 1);
1422 reg->val = le32_to_cpu(data & 0xff);
1424 case 14: /* AFE - read dword */
1425 ret = cx231xx_read_i2c_data(dev, AFE_DEVICE_ADDRESS,
1426 (u16)reg->reg, 2, &data, 4);
1427 reg->val = le32_to_cpu(data);
1429 case 2: /* Video Block - read byte */
1430 ret = cx231xx_read_i2c_data(dev, VID_BLK_I2C_ADDRESS,
1431 (u16)reg->reg, 2, &data, 1);
1432 reg->val = le32_to_cpu(data & 0xff);
1434 case 24: /* Video Block - read dword */
1435 ret = cx231xx_read_i2c_data(dev, VID_BLK_I2C_ADDRESS,
1436 (u16)reg->reg, 2, &data, 4);
1437 reg->val = le32_to_cpu(data);
1439 case 3: /* I2S block - read byte */
1440 ret = cx231xx_read_i2c_data(dev,
1441 I2S_BLK_DEVICE_ADDRESS,
1444 reg->val = le32_to_cpu(data & 0xff);
1446 case 34: /* I2S Block - read dword */
1448 cx231xx_read_i2c_data(dev, I2S_BLK_DEVICE_ADDRESS,
1449 (u16)reg->reg, 1, &data, 4);
1450 reg->val = le32_to_cpu(data);
1453 return ret < 0 ? ret : 0;
1455 case V4L2_CHIP_MATCH_I2C_DRIVER:
1456 call_all(dev, core, g_register, reg);
1458 case V4L2_CHIP_MATCH_I2C_ADDR:
1459 /* Not supported yet */
1462 if (!v4l2_chip_match_host(®->match))
1466 mutex_lock(&dev->lock);
1467 call_all(dev, core, g_register, reg);
1468 mutex_unlock(&dev->lock);
1473 static int vidioc_s_register(struct file *file, void *priv,
1474 struct v4l2_dbg_register *reg)
1476 struct cx231xx_fh *fh = priv;
1477 struct cx231xx *dev = fh->dev;
1481 u8 data[4] = { 0, 0, 0, 0 };
1483 buf = cpu_to_le64(reg->val);
1485 switch (reg->match.type) {
1486 case V4L2_CHIP_MATCH_HOST:
1488 value = (u32) buf & 0xffffffff;
1490 switch (reg->match.addr) {
1491 case 0: /* cx231xx internal registers */
1492 data[0] = (u8) value;
1493 data[1] = (u8) (value >> 8);
1494 data[2] = (u8) (value >> 16);
1495 data[3] = (u8) (value >> 24);
1496 ret = cx231xx_write_ctrl_reg(dev,
1498 (u16)reg->reg, data,
1501 case 1: /* AFE - read byte */
1502 ret = cx231xx_write_i2c_data(dev,
1507 case 14: /* AFE - read dword */
1508 ret = cx231xx_write_i2c_data(dev,
1513 case 2: /* Video Block - read byte */
1515 cx231xx_write_i2c_data(dev,
1516 VID_BLK_I2C_ADDRESS,
1520 case 24: /* Video Block - read dword */
1522 cx231xx_write_i2c_data(dev,
1523 VID_BLK_I2C_ADDRESS,
1527 case 3: /* I2S block - read byte */
1529 cx231xx_write_i2c_data(dev,
1530 I2S_BLK_DEVICE_ADDRESS,
1534 case 34: /* I2S block - read dword */
1536 cx231xx_write_i2c_data(dev,
1537 I2S_BLK_DEVICE_ADDRESS,
1543 return ret < 0 ? ret : 0;
1549 mutex_lock(&dev->lock);
1550 call_all(dev, core, s_register, reg);
1551 mutex_unlock(&dev->lock);
1557 static int vidioc_cropcap(struct file *file, void *priv,
1558 struct v4l2_cropcap *cc)
1560 struct cx231xx_fh *fh = priv;
1561 struct cx231xx *dev = fh->dev;
1563 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1566 cc->bounds.left = 0;
1568 cc->bounds.width = dev->width;
1569 cc->bounds.height = dev->height;
1570 cc->defrect = cc->bounds;
1571 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1572 cc->pixelaspect.denominator = 59;
1577 static int vidioc_streamon(struct file *file, void *priv,
1578 enum v4l2_buf_type type)
1580 struct cx231xx_fh *fh = priv;
1581 struct cx231xx *dev = fh->dev;
1584 rc = check_dev(dev);
1588 mutex_lock(&dev->lock);
1591 if (likely(rc >= 0))
1592 rc = videobuf_streamon(&fh->vb_vidq);
1594 call_all(dev, video, s_stream, 1);
1596 mutex_unlock(&dev->lock);
1601 static int vidioc_streamoff(struct file *file, void *priv,
1602 enum v4l2_buf_type type)
1604 struct cx231xx_fh *fh = priv;
1605 struct cx231xx *dev = fh->dev;
1608 rc = check_dev(dev);
1612 if ((fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) &&
1613 (fh->type != V4L2_BUF_TYPE_VBI_CAPTURE))
1615 if (type != fh->type)
1618 mutex_lock(&dev->lock);
1620 cx25840_call(dev, video, s_stream, 0);
1622 videobuf_streamoff(&fh->vb_vidq);
1625 mutex_unlock(&dev->lock);
1630 static int vidioc_querycap(struct file *file, void *priv,
1631 struct v4l2_capability *cap)
1633 struct cx231xx_fh *fh = priv;
1634 struct cx231xx *dev = fh->dev;
1636 strlcpy(cap->driver, "cx231xx", sizeof(cap->driver));
1637 strlcpy(cap->card, cx231xx_boards[dev->model].name, sizeof(cap->card));
1638 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
1640 cap->version = CX231XX_VERSION_CODE;
1642 cap->capabilities = V4L2_CAP_VBI_CAPTURE |
1644 V4L2_CAP_SLICED_VBI_CAPTURE |
1646 V4L2_CAP_VIDEO_CAPTURE |
1648 V4L2_CAP_READWRITE |
1651 if (dev->tuner_type != TUNER_ABSENT)
1652 cap->capabilities |= V4L2_CAP_TUNER;
1657 static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
1658 struct v4l2_fmtdesc *f)
1660 if (unlikely(f->index >= ARRAY_SIZE(format)))
1663 strlcpy(f->description, format[f->index].name, sizeof(f->description));
1664 f->pixelformat = format[f->index].fourcc;
1669 /* Sliced VBI ioctls */
1670 static int vidioc_g_fmt_sliced_vbi_cap(struct file *file, void *priv,
1671 struct v4l2_format *f)
1673 struct cx231xx_fh *fh = priv;
1674 struct cx231xx *dev = fh->dev;
1677 rc = check_dev(dev);
1681 mutex_lock(&dev->lock);
1683 f->fmt.sliced.service_set = 0;
1685 call_all(dev, video, g_fmt, f);
1687 if (f->fmt.sliced.service_set == 0)
1690 mutex_unlock(&dev->lock);
1694 static int vidioc_try_set_sliced_vbi_cap(struct file *file, void *priv,
1695 struct v4l2_format *f)
1697 struct cx231xx_fh *fh = priv;
1698 struct cx231xx *dev = fh->dev;
1701 rc = check_dev(dev);
1705 mutex_lock(&dev->lock);
1706 call_all(dev, video, g_fmt, f);
1707 mutex_unlock(&dev->lock);
1709 if (f->fmt.sliced.service_set == 0)
1715 /* RAW VBI ioctls */
1717 static int vidioc_g_fmt_vbi_cap(struct file *file, void *priv,
1718 struct v4l2_format *f)
1720 struct cx231xx_fh *fh = priv;
1721 struct cx231xx *dev = fh->dev;
1723 f->fmt.vbi.sampling_rate = (dev->norm & V4L2_STD_625_50) ?
1724 35468950 : 28636363;
1725 f->fmt.vbi.samples_per_line = VBI_LINE_LENGTH;
1726 f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1727 f->fmt.vbi.offset = 64 * 4;
1728 f->fmt.vbi.start[0] = (dev->norm & V4L2_STD_625_50) ?
1729 PAL_VBI_START_LINE : NTSC_VBI_START_LINE;
1730 f->fmt.vbi.count[0] = (dev->norm & V4L2_STD_625_50) ?
1731 PAL_VBI_LINES : NTSC_VBI_LINES;
1732 f->fmt.vbi.start[1] = (dev->norm & V4L2_STD_625_50) ?
1733 PAL_VBI_START_LINE + 312 : NTSC_VBI_START_LINE + 263;
1734 f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
1740 static int vidioc_try_fmt_vbi_cap(struct file *file, void *priv,
1741 struct v4l2_format *f)
1743 struct cx231xx_fh *fh = priv;
1744 struct cx231xx *dev = fh->dev;
1746 if (dev->vbi_stream_on && !fh->stream_on) {
1747 cx231xx_errdev("%s device in use by another fh\n", __func__);
1751 f->type = V4L2_BUF_TYPE_VBI_CAPTURE;
1752 f->fmt.vbi.sampling_rate = (dev->norm & V4L2_STD_625_50) ?
1753 35468950 : 28636363;
1754 f->fmt.vbi.samples_per_line = VBI_LINE_LENGTH;
1755 f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1756 f->fmt.vbi.offset = 244;
1757 f->fmt.vbi.flags = 0;
1758 f->fmt.vbi.start[0] = (dev->norm & V4L2_STD_625_50) ?
1759 PAL_VBI_START_LINE : NTSC_VBI_START_LINE;
1760 f->fmt.vbi.count[0] = (dev->norm & V4L2_STD_625_50) ?
1761 PAL_VBI_LINES : NTSC_VBI_LINES;
1762 f->fmt.vbi.start[1] = (dev->norm & V4L2_STD_625_50) ?
1763 PAL_VBI_START_LINE + 312 : NTSC_VBI_START_LINE + 263;
1764 f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
1770 static int vidioc_reqbufs(struct file *file, void *priv,
1771 struct v4l2_requestbuffers *rb)
1773 struct cx231xx_fh *fh = priv;
1774 struct cx231xx *dev = fh->dev;
1777 rc = check_dev(dev);
1781 return videobuf_reqbufs(&fh->vb_vidq, rb);
1784 static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *b)
1786 struct cx231xx_fh *fh = priv;
1787 struct cx231xx *dev = fh->dev;
1790 rc = check_dev(dev);
1794 return videobuf_querybuf(&fh->vb_vidq, b);
1797 static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1799 struct cx231xx_fh *fh = priv;
1800 struct cx231xx *dev = fh->dev;
1803 rc = check_dev(dev);
1807 return videobuf_qbuf(&fh->vb_vidq, b);
1810 static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1812 struct cx231xx_fh *fh = priv;
1813 struct cx231xx *dev = fh->dev;
1816 rc = check_dev(dev);
1820 return videobuf_dqbuf(&fh->vb_vidq, b, file->f_flags & O_NONBLOCK);
1823 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1824 static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
1826 struct cx231xx_fh *fh = priv;
1828 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
1832 /* ----------------------------------------------------------- */
1833 /* RADIO ESPECIFIC IOCTLS */
1834 /* ----------------------------------------------------------- */
1836 static int radio_querycap(struct file *file, void *priv,
1837 struct v4l2_capability *cap)
1839 struct cx231xx *dev = ((struct cx231xx_fh *)priv)->dev;
1841 strlcpy(cap->driver, "cx231xx", sizeof(cap->driver));
1842 strlcpy(cap->card, cx231xx_boards[dev->model].name, sizeof(cap->card));
1843 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
1845 cap->version = CX231XX_VERSION_CODE;
1846 cap->capabilities = V4L2_CAP_TUNER;
1850 static int radio_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
1852 struct cx231xx *dev = ((struct cx231xx_fh *)priv)->dev;
1854 if (unlikely(t->index > 0))
1857 strcpy(t->name, "Radio");
1858 t->type = V4L2_TUNER_RADIO;
1860 mutex_lock(&dev->lock);
1861 call_all(dev, tuner, s_tuner, t);
1862 mutex_unlock(&dev->lock);
1867 static int radio_enum_input(struct file *file, void *priv, struct v4l2_input *i)
1871 strcpy(i->name, "Radio");
1872 i->type = V4L2_INPUT_TYPE_TUNER;
1877 static int radio_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1879 if (unlikely(a->index))
1882 strcpy(a->name, "Radio");
1886 static int radio_s_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
1888 struct cx231xx *dev = ((struct cx231xx_fh *)priv)->dev;
1893 mutex_lock(&dev->lock);
1894 call_all(dev, tuner, s_tuner, t);
1895 mutex_unlock(&dev->lock);
1900 static int radio_s_audio(struct file *file, void *fh, struct v4l2_audio *a)
1905 static int radio_s_input(struct file *file, void *fh, unsigned int i)
1910 static int radio_queryctrl(struct file *file, void *priv,
1911 struct v4l2_queryctrl *c)
1915 if (c->id < V4L2_CID_BASE || c->id >= V4L2_CID_LASTP1)
1917 if (c->id == V4L2_CID_AUDIO_MUTE) {
1918 for (i = 0; i < CX231XX_CTLS; i++)
1919 if (cx231xx_ctls[i].v.id == c->id)
1921 *c = cx231xx_ctls[i].v;
1928 * cx231xx_v4l2_open()
1929 * inits the device and starts isoc transfer
1931 static int cx231xx_v4l2_open(struct file *filp)
1933 int minor = video_devdata(filp)->minor;
1934 int errCode = 0, radio = 0;
1935 struct cx231xx *dev = NULL;
1936 struct cx231xx_fh *fh;
1937 enum v4l2_buf_type fh_type = 0;
1939 dev = cx231xx_get_device(minor, &fh_type, &radio);
1943 mutex_lock(&dev->lock);
1945 cx231xx_videodbg("open minor=%d type=%s users=%d\n",
1946 minor, v4l2_type_names[fh_type], dev->users);
1949 errCode = cx231xx_set_mode(dev, CX231XX_ANALOG_MODE);
1952 ("Device locked on digital mode. Can't open analog\n");
1953 mutex_unlock(&dev->lock);
1958 fh = kzalloc(sizeof(struct cx231xx_fh), GFP_KERNEL);
1960 cx231xx_errdev("cx231xx-video.c: Out of memory?!\n");
1961 mutex_unlock(&dev->lock);
1967 filp->private_data = fh;
1969 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->users == 0) {
1970 dev->width = norm_maxw(dev);
1971 dev->height = norm_maxh(dev);
1975 /* Power up in Analog TV mode */
1976 cx231xx_set_power_mode(dev, POLARIS_AVMODE_ANALOGT_TV);
1979 cx231xx_set_mode(dev, CX231XX_ANALOG_MODE);
1981 cx231xx_resolution_set(dev);
1983 /* set video alternate setting */
1984 cx231xx_set_video_alternate(dev);
1986 /* Needed, since GPIO might have disabled power of
1988 cx231xx_config_i2c(dev);
1990 /* device needs to be initialized before isoc transfer */
1991 dev->video_input = dev->video_input > 2 ? 2 : dev->video_input;
1992 video_mux(dev, dev->video_input);
1996 cx231xx_videodbg("video_open: setting radio device\n");
1998 /* cx231xx_start_radio(dev); */
2000 call_all(dev, tuner, s_radio);
2005 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
2006 videobuf_queue_vmalloc_init(&fh->vb_vidq, &cx231xx_video_qops,
2007 NULL, &dev->video_mode.slock,
2008 fh->type, V4L2_FIELD_INTERLACED,
2009 sizeof(struct cx231xx_buffer), fh);
2010 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
2011 /* Set the required alternate setting VBI interface works in
2013 cx231xx_set_alt_setting(dev, INDEX_VANC, 0);
2015 videobuf_queue_vmalloc_init(&fh->vb_vidq, &cx231xx_vbi_qops,
2016 NULL, &dev->vbi_mode.slock,
2017 fh->type, V4L2_FIELD_SEQ_TB,
2018 sizeof(struct cx231xx_buffer), fh);
2021 mutex_unlock(&dev->lock);
2027 * cx231xx_realease_resources()
2028 * unregisters the v4l2,i2c and usb devices
2029 * called when the device gets disconected or at module unload
2031 void cx231xx_release_analog_resources(struct cx231xx *dev)
2034 /*FIXME: I2C IR should be disconnected */
2036 if (dev->radio_dev) {
2037 if (-1 != dev->radio_dev->minor)
2038 video_unregister_device(dev->radio_dev);
2040 video_device_release(dev->radio_dev);
2041 dev->radio_dev = NULL;
2044 cx231xx_info("V4L2 device /dev/vbi%d deregistered\n",
2046 if (-1 != dev->vbi_dev->minor)
2047 video_unregister_device(dev->vbi_dev);
2049 video_device_release(dev->vbi_dev);
2050 dev->vbi_dev = NULL;
2053 cx231xx_info("V4L2 device /dev/video%d deregistered\n",
2055 if (-1 != dev->vdev->minor)
2056 video_unregister_device(dev->vdev);
2058 video_device_release(dev->vdev);
2064 * cx231xx_v4l2_close()
2065 * stops streaming and deallocates all resources allocated by the v4l2
2068 static int cx231xx_v4l2_close(struct file *filp)
2070 struct cx231xx_fh *fh = filp->private_data;
2071 struct cx231xx *dev = fh->dev;
2073 cx231xx_videodbg("users=%d\n", dev->users);
2075 mutex_lock(&dev->lock);
2080 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
2081 videobuf_stop(&fh->vb_vidq);
2082 videobuf_mmap_free(&fh->vb_vidq);
2084 /* the device is already disconnect,
2085 free the remaining resources */
2086 if (dev->state & DEV_DISCONNECTED) {
2087 cx231xx_release_resources(dev);
2088 mutex_unlock(&dev->lock);
2093 /* do this before setting alternate! */
2094 cx231xx_uninit_vbi_isoc(dev);
2096 /* set alternate 0 */
2097 if (!dev->vbi_or_sliced_cc_mode)
2098 cx231xx_set_alt_setting(dev, INDEX_VANC, 0);
2100 cx231xx_set_alt_setting(dev, INDEX_HANC, 0);
2104 wake_up_interruptible_nr(&dev->open, 1);
2105 mutex_unlock(&dev->lock);
2109 if (dev->users == 1) {
2110 videobuf_stop(&fh->vb_vidq);
2111 videobuf_mmap_free(&fh->vb_vidq);
2113 /* the device is already disconnect,
2114 free the remaining resources */
2115 if (dev->state & DEV_DISCONNECTED) {
2116 cx231xx_release_resources(dev);
2117 mutex_unlock(&dev->lock);
2122 /* Save some power by putting tuner to sleep */
2123 call_all(dev, tuner, s_standby);
2125 /* do this before setting alternate! */
2126 cx231xx_uninit_isoc(dev);
2127 cx231xx_set_mode(dev, CX231XX_SUSPEND);
2129 /* set alternate 0 */
2130 cx231xx_set_alt_setting(dev, INDEX_VIDEO, 0);
2134 wake_up_interruptible_nr(&dev->open, 1);
2135 mutex_unlock(&dev->lock);
2140 * cx231xx_v4l2_read()
2141 * will allocate buffers when called for the first time
2144 cx231xx_v4l2_read(struct file *filp, char __user *buf, size_t count,
2147 struct cx231xx_fh *fh = filp->private_data;
2148 struct cx231xx *dev = fh->dev;
2151 rc = check_dev(dev);
2155 if ((fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
2156 (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)) {
2157 mutex_lock(&dev->lock);
2159 mutex_unlock(&dev->lock);
2161 if (unlikely(rc < 0))
2164 return videobuf_read_stream(&fh->vb_vidq, buf, count, pos, 0,
2165 filp->f_flags & O_NONBLOCK);
2171 * cx231xx_v4l2_poll()
2172 * will allocate buffers when called for the first time
2174 static unsigned int cx231xx_v4l2_poll(struct file *filp, poll_table * wait)
2176 struct cx231xx_fh *fh = filp->private_data;
2177 struct cx231xx *dev = fh->dev;
2180 rc = check_dev(dev);
2184 mutex_lock(&dev->lock);
2186 mutex_unlock(&dev->lock);
2188 if (unlikely(rc < 0))
2191 if ((V4L2_BUF_TYPE_VIDEO_CAPTURE == fh->type) ||
2192 (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type))
2193 return videobuf_poll_stream(filp, &fh->vb_vidq, wait);
2199 * cx231xx_v4l2_mmap()
2201 static int cx231xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
2203 struct cx231xx_fh *fh = filp->private_data;
2204 struct cx231xx *dev = fh->dev;
2207 rc = check_dev(dev);
2211 mutex_lock(&dev->lock);
2213 mutex_unlock(&dev->lock);
2215 if (unlikely(rc < 0))
2218 rc = videobuf_mmap_mapper(&fh->vb_vidq, vma);
2220 cx231xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
2221 (unsigned long)vma->vm_start,
2222 (unsigned long)vma->vm_end -
2223 (unsigned long)vma->vm_start, rc);
2228 static const struct v4l2_file_operations cx231xx_v4l_fops = {
2229 .owner = THIS_MODULE,
2230 .open = cx231xx_v4l2_open,
2231 .release = cx231xx_v4l2_close,
2232 .read = cx231xx_v4l2_read,
2233 .poll = cx231xx_v4l2_poll,
2234 .mmap = cx231xx_v4l2_mmap,
2235 .ioctl = video_ioctl2,
2238 static const struct v4l2_ioctl_ops video_ioctl_ops = {
2239 .vidioc_querycap = vidioc_querycap,
2240 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
2241 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
2242 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
2243 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
2244 .vidioc_g_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
2245 .vidioc_try_fmt_vbi_cap = vidioc_try_fmt_vbi_cap,
2246 .vidioc_s_fmt_vbi_cap = vidioc_try_fmt_vbi_cap,
2247 .vidioc_g_audio = vidioc_g_audio,
2248 .vidioc_s_audio = vidioc_s_audio,
2249 .vidioc_cropcap = vidioc_cropcap,
2250 .vidioc_g_fmt_sliced_vbi_cap = vidioc_g_fmt_sliced_vbi_cap,
2251 .vidioc_try_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
2252 .vidioc_reqbufs = vidioc_reqbufs,
2253 .vidioc_querybuf = vidioc_querybuf,
2254 .vidioc_qbuf = vidioc_qbuf,
2255 .vidioc_dqbuf = vidioc_dqbuf,
2256 .vidioc_s_std = vidioc_s_std,
2257 .vidioc_g_std = vidioc_g_std,
2258 .vidioc_enum_input = vidioc_enum_input,
2259 .vidioc_g_input = vidioc_g_input,
2260 .vidioc_s_input = vidioc_s_input,
2261 .vidioc_queryctrl = vidioc_queryctrl,
2262 .vidioc_g_ctrl = vidioc_g_ctrl,
2263 .vidioc_s_ctrl = vidioc_s_ctrl,
2264 .vidioc_streamon = vidioc_streamon,
2265 .vidioc_streamoff = vidioc_streamoff,
2266 .vidioc_g_tuner = vidioc_g_tuner,
2267 .vidioc_s_tuner = vidioc_s_tuner,
2268 .vidioc_g_frequency = vidioc_g_frequency,
2269 .vidioc_s_frequency = vidioc_s_frequency,
2270 #ifdef CONFIG_VIDEO_ADV_DEBUG
2271 .vidioc_g_register = vidioc_g_register,
2272 .vidioc_s_register = vidioc_s_register,
2274 #ifdef CONFIG_VIDEO_V4L1_COMPAT
2275 .vidiocgmbuf = vidiocgmbuf,
2279 static struct video_device cx231xx_vbi_template;
2281 static const struct video_device cx231xx_video_template = {
2282 .fops = &cx231xx_v4l_fops,
2283 .release = video_device_release,
2284 .ioctl_ops = &video_ioctl_ops,
2286 .tvnorms = V4L2_STD_ALL,
2287 .current_norm = V4L2_STD_PAL,
2290 static const struct v4l2_file_operations radio_fops = {
2291 .owner = THIS_MODULE,
2292 .open = cx231xx_v4l2_open,
2293 .release = cx231xx_v4l2_close,
2294 .ioctl = video_ioctl2,
2297 static const struct v4l2_ioctl_ops radio_ioctl_ops = {
2298 .vidioc_querycap = radio_querycap,
2299 .vidioc_g_tuner = radio_g_tuner,
2300 .vidioc_enum_input = radio_enum_input,
2301 .vidioc_g_audio = radio_g_audio,
2302 .vidioc_s_tuner = radio_s_tuner,
2303 .vidioc_s_audio = radio_s_audio,
2304 .vidioc_s_input = radio_s_input,
2305 .vidioc_queryctrl = radio_queryctrl,
2306 .vidioc_g_ctrl = vidioc_g_ctrl,
2307 .vidioc_s_ctrl = vidioc_s_ctrl,
2308 .vidioc_g_frequency = vidioc_g_frequency,
2309 .vidioc_s_frequency = vidioc_s_frequency,
2310 #ifdef CONFIG_VIDEO_ADV_DEBUG
2311 .vidioc_g_register = vidioc_g_register,
2312 .vidioc_s_register = vidioc_s_register,
2316 static struct video_device cx231xx_radio_template = {
2317 .name = "cx231xx-radio",
2318 .fops = &radio_fops,
2319 .ioctl_ops = &radio_ioctl_ops,
2323 /******************************** usb interface ******************************/
2325 static struct video_device *cx231xx_vdev_init(struct cx231xx *dev,
2326 const struct video_device
2327 *template, const char *type_name)
2329 struct video_device *vfd;
2331 vfd = video_device_alloc();
2337 vfd->v4l2_dev = &dev->v4l2_dev;
2338 vfd->release = video_device_release;
2339 vfd->debug = video_debug;
2341 snprintf(vfd->name, sizeof(vfd->name), "%s %s", dev->name, type_name);
2346 int cx231xx_register_analog_devices(struct cx231xx *dev)
2350 cx231xx_info("%s: v4l2 driver version %d.%d.%d\n",
2352 (CX231XX_VERSION_CODE >> 16) & 0xff,
2353 (CX231XX_VERSION_CODE >> 8) & 0xff,
2354 CX231XX_VERSION_CODE & 0xff);
2356 /* set default norm */
2357 /*dev->norm = cx231xx_video_template.current_norm; */
2358 dev->width = norm_maxw(dev);
2359 dev->height = norm_maxh(dev);
2360 dev->interlaced = 0;
2364 /* Analog specific initialization */
2365 dev->format = &format[0];
2366 /* video_mux(dev, dev->video_input); */
2368 /* Audio defaults */
2372 /* enable vbi capturing */
2373 /* write code here... */
2375 /* allocate and fill video video_device struct */
2376 dev->vdev = cx231xx_vdev_init(dev, &cx231xx_video_template, "video");
2378 cx231xx_errdev("cannot allocate video_device.\n");
2382 /* register v4l2 video video_device */
2383 ret = video_register_device(dev->vdev, VFL_TYPE_GRABBER,
2384 video_nr[dev->devno]);
2386 cx231xx_errdev("unable to register video device (error=%i).\n",
2391 cx231xx_info("%s/0: registered device video%d [v4l2]\n",
2392 dev->name, dev->vdev->num);
2394 /* Initialize VBI template */
2395 memcpy(&cx231xx_vbi_template, &cx231xx_video_template,
2396 sizeof(cx231xx_vbi_template));
2397 strcpy(cx231xx_vbi_template.name, "cx231xx-vbi");
2399 /* Allocate and fill vbi video_device struct */
2400 dev->vbi_dev = cx231xx_vdev_init(dev, &cx231xx_vbi_template, "vbi");
2402 /* register v4l2 vbi video_device */
2403 ret = video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
2404 vbi_nr[dev->devno]);
2406 cx231xx_errdev("unable to register vbi device\n");
2410 cx231xx_info("%s/0: registered device vbi%d\n",
2411 dev->name, dev->vbi_dev->num);
2413 if (cx231xx_boards[dev->model].radio.type == CX231XX_RADIO) {
2414 dev->radio_dev = cx231xx_vdev_init(dev, &cx231xx_radio_template,
2416 if (!dev->radio_dev) {
2417 cx231xx_errdev("cannot allocate video_device.\n");
2420 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
2421 radio_nr[dev->devno]);
2423 cx231xx_errdev("can't register radio device\n");
2426 cx231xx_info("Registered radio device as /dev/radio%d\n",
2427 dev->radio_dev->num);
2430 cx231xx_info("V4L2 device registered as /dev/video%d and /dev/vbi%d\n",
2431 dev->vdev->num, dev->vbi_dev->num);