2 * tm6000-video.c - driver for TM5600/TM6000/TM6010 USB video capture devices
4 * Copyright (C) 2006-2007 Mauro Carvalho Chehab <mchehab@infradead.org>
6 * Copyright (C) 2007 Michel Ludwig <michel.ludwig@gmail.com>
7 * - Fixed module load/unload
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation version 2
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/module.h>
23 #include <linux/delay.h>
24 #include <linux/errno.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
29 #include <linux/ioport.h>
30 #include <linux/init.h>
31 #include <linux/sched.h>
32 #include <linux/random.h>
33 #include <linux/version.h>
34 #include <linux/usb.h>
35 #include <linux/videodev2.h>
36 #include <media/v4l2-ioctl.h>
37 #include <media/tuner.h>
38 #include <linux/interrupt.h>
39 #include <linux/kthread.h>
40 #include <linux/highmem.h>
41 #include <linux/freezer.h>
43 #include "tm6000-regs.h"
46 #define BUFFER_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
48 /* Limits minimum and default number of buffers */
49 #define TM6000_MIN_BUF 4
50 #define TM6000_DEF_BUF 8
52 #define TM6000_MAX_ISO_PACKETS 46 /* Max number of ISO packets */
54 /* Declare static vars that will be used as parameters */
55 static unsigned int vid_limit
= 16; /* Video memory limit, in Mb */
56 static int video_nr
= -1; /* /dev/videoN, -1 for autodetect */
57 static int radio_nr
= -1; /* /dev/radioN, -1 for autodetect */
61 EXPORT_SYMBOL_GPL(tm6000_debug
);
63 static const struct v4l2_queryctrl no_ctrl
= {
65 .flags
= V4L2_CTRL_FLAG_DISABLED
,
68 /* supported controls */
69 static struct v4l2_queryctrl tm6000_qctrl
[] = {
71 .id
= V4L2_CID_BRIGHTNESS
,
72 .type
= V4L2_CTRL_TYPE_INTEGER
,
80 .id
= V4L2_CID_CONTRAST
,
81 .type
= V4L2_CTRL_TYPE_INTEGER
,
89 .id
= V4L2_CID_SATURATION
,
90 .type
= V4L2_CTRL_TYPE_INTEGER
,
99 .type
= V4L2_CTRL_TYPE_INTEGER
,
109 .id
= V4L2_CID_AUDIO_MUTE
,
113 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
115 .id
= V4L2_CID_AUDIO_VOLUME
,
121 .type
= V4L2_CTRL_TYPE_INTEGER
,
125 static const unsigned int CTRLS
= ARRAY_SIZE(tm6000_qctrl
);
126 static int qctl_regs
[ARRAY_SIZE(tm6000_qctrl
)];
128 static struct tm6000_fmt format
[] = {
130 .name
= "4:2:2, packed, YVY2",
131 .fourcc
= V4L2_PIX_FMT_YUYV
,
134 .name
= "4:2:2, packed, UYVY",
135 .fourcc
= V4L2_PIX_FMT_UYVY
,
138 .name
= "A/V + VBI mux packet",
139 .fourcc
= V4L2_PIX_FMT_TM6000
,
144 static const struct v4l2_queryctrl
*ctrl_by_id(unsigned int id
)
148 for (i
= 0; i
< CTRLS
; i
++)
149 if (tm6000_qctrl
[i
].id
== id
)
150 return tm6000_qctrl
+i
;
154 /* ------------------------------------------------------------------
155 * DMA and thread functions
156 * ------------------------------------------------------------------
159 #define norm_maxw(a) 720
160 #define norm_maxh(a) 576
162 #define norm_minw(a) norm_maxw(a)
163 #define norm_minh(a) norm_maxh(a)
166 * video-buf generic routine to get the next available buffer
168 static inline void get_next_buf(struct tm6000_dmaqueue
*dma_q
,
169 struct tm6000_buffer
**buf
)
171 struct tm6000_core
*dev
= container_of(dma_q
, struct tm6000_core
, vidq
);
174 if (list_empty(&dma_q
->active
)) {
175 dprintk(dev
, V4L2_DEBUG_QUEUE
, "No active queue to serve\n");
180 *buf
= list_entry(dma_q
->active
.next
,
181 struct tm6000_buffer
, vb
.queue
);
186 /* Cleans up buffer - Useful for testing for frame/URB loss */
187 outp
= videobuf_to_vmalloc(&(*buf
)->vb
);
193 * Announces that a buffer were filled and request the next
195 static inline void buffer_filled(struct tm6000_core
*dev
,
196 struct tm6000_dmaqueue
*dma_q
,
197 struct tm6000_buffer
*buf
)
199 /* Advice that buffer was filled */
200 dprintk(dev
, V4L2_DEBUG_ISOC
, "[%p/%d] wakeup\n", buf
, buf
->vb
.i
);
201 buf
->vb
.state
= VIDEOBUF_DONE
;
202 buf
->vb
.field_count
++;
203 do_gettimeofday(&buf
->vb
.ts
);
205 list_del(&buf
->vb
.queue
);
206 wake_up(&buf
->vb
.done
);
209 const char *tm6000_msg_type
[] = {
210 "unknown(0)", /* 0 */
216 "unknown(6)", /* 6 */
217 "unknown(7)", /* 7 */
221 * Identify the tm5600/6000 buffer header type and properly handles
223 static int copy_streams(u8
*data
, unsigned long len
,
226 struct tm6000_dmaqueue
*dma_q
= urb
->context
;
227 struct tm6000_core
*dev
= container_of(dma_q
, struct tm6000_core
, vidq
);
228 u8
*ptr
= data
, *endp
= data
+len
, c
;
229 unsigned long header
= 0;
231 unsigned int cmd
, cpysize
, pktsize
, size
, field
, block
, line
, pos
= 0;
232 struct tm6000_buffer
*vbuf
= NULL
;
234 unsigned int linewidth
;
237 /* get video buffer */
238 get_next_buf(dma_q
, &vbuf
);
242 voutp
= videobuf_to_vmalloc(&vbuf
->vb
);
248 for (ptr
= data
; ptr
< endp
;) {
249 if (!dev
->isoc_ctl
.cmd
) {
251 if (dev
->isoc_ctl
.tmp_buf_len
> 0) {
252 /* from last urb or packet */
253 header
= dev
->isoc_ctl
.tmp_buf
;
254 if (4 - dev
->isoc_ctl
.tmp_buf_len
> 0) {
255 memcpy((u8
*)&header
+
256 dev
->isoc_ctl
.tmp_buf_len
,
258 4 - dev
->isoc_ctl
.tmp_buf_len
);
259 ptr
+= 4 - dev
->isoc_ctl
.tmp_buf_len
;
261 dev
->isoc_ctl
.tmp_buf_len
= 0;
263 if (ptr
+ 3 >= endp
) {
264 /* have incomplete header */
265 dev
->isoc_ctl
.tmp_buf_len
= endp
- ptr
;
266 memcpy(&dev
->isoc_ctl
.tmp_buf
, ptr
,
267 dev
->isoc_ctl
.tmp_buf_len
);
271 for (; ptr
< endp
- 3; ptr
++) {
272 if (*(ptr
+ 3) == 0x47)
275 /* Get message header */
276 header
= *(unsigned long *)ptr
;
280 /* split the header fields */
281 c
= (header
>> 24) & 0xff;
282 size
= ((header
& 0x7e) << 1);
285 block
= (header
>> 7) & 0xf;
286 field
= (header
>> 11) & 0x1;
287 line
= (header
>> 12) & 0x1ff;
288 cmd
= (header
>> 21) & 0x7;
289 /* Validates haeder fields */
290 if (size
> TM6000_URB_MSG_LEN
)
291 size
= TM6000_URB_MSG_LEN
;
292 pktsize
= TM6000_URB_MSG_LEN
;
293 /* calculate position in buffer
294 * and change the buffer
297 case TM6000_URB_MSG_VIDEO
:
299 if ((dev
->isoc_ctl
.vfield
!= field
) &&
301 /* Announces that a new buffer
304 buffer_filled(dev
, dma_q
, vbuf
);
305 dprintk(dev
, V4L2_DEBUG_ISOC
,
306 "new buffer filled\n");
307 get_next_buf(dma_q
, &vbuf
);
310 voutp
= videobuf_to_vmalloc(&vbuf
->vb
);
313 memset(voutp
, 0, vbuf
->vb
.size
);
315 linewidth
= vbuf
->vb
.width
<< 1;
316 pos
= ((line
<< 1) - field
- 1) *
317 linewidth
+ block
* TM6000_URB_MSG_LEN
;
318 /* Don't allow to write out of the buffer */
319 if (pos
+ size
> vbuf
->vb
.size
)
320 cmd
= TM6000_URB_MSG_ERR
;
321 dev
->isoc_ctl
.vfield
= field
;
324 case TM6000_URB_MSG_VBI
:
326 case TM6000_URB_MSG_AUDIO
:
327 case TM6000_URB_MSG_PTS
:
328 size
= pktsize
; /* Size is always 180 bytes */
332 /* Continue the last copy */
333 cmd
= dev
->isoc_ctl
.cmd
;
334 size
= dev
->isoc_ctl
.size
;
335 pos
= dev
->isoc_ctl
.pos
;
336 pktsize
= dev
->isoc_ctl
.pktsize
;
337 field
= dev
->isoc_ctl
.field
;
339 cpysize
= (endp
- ptr
> size
) ? size
: endp
- ptr
;
341 /* copy data in different buffers */
343 case TM6000_URB_MSG_VIDEO
:
344 /* Fills video buffer */
346 memcpy(&voutp
[pos
], ptr
, cpysize
);
348 case TM6000_URB_MSG_AUDIO
: {
350 for (i
= 0; i
< cpysize
; i
+= 2)
351 swab16s((u16
*)(ptr
+ i
));
353 tm6000_call_fillbuf(dev
, TM6000_AUDIO
, ptr
, cpysize
);
356 case TM6000_URB_MSG_VBI
:
357 /* Need some code to copy vbi buffer */
359 case TM6000_URB_MSG_PTS
: {
360 /* Need some code to copy pts */
363 dprintk(dev
, V4L2_DEBUG_ISOC
, "field %d, PTS %x",
369 if (ptr
+ pktsize
> endp
) {
370 /* End of URB packet, but cmd processing is not
371 * complete. Preserve the state for a next packet
373 dev
->isoc_ctl
.pos
= pos
+ cpysize
;
374 dev
->isoc_ctl
.size
= size
- cpysize
;
375 dev
->isoc_ctl
.cmd
= cmd
;
376 dev
->isoc_ctl
.field
= field
;
377 dev
->isoc_ctl
.pktsize
= pktsize
- (endp
- ptr
);
380 dev
->isoc_ctl
.cmd
= 0;
388 * Identify the tm5600/6000 buffer header type and properly handles
390 static int copy_multiplexed(u8
*ptr
, unsigned long len
,
393 struct tm6000_dmaqueue
*dma_q
= urb
->context
;
394 struct tm6000_core
*dev
= container_of(dma_q
, struct tm6000_core
, vidq
);
395 unsigned int pos
= dev
->isoc_ctl
.pos
, cpysize
;
397 struct tm6000_buffer
*buf
;
400 get_next_buf(dma_q
, &buf
);
402 outp
= videobuf_to_vmalloc(&buf
->vb
);
408 cpysize
= min(len
, buf
->vb
.size
-pos
);
409 memcpy(&outp
[pos
], ptr
, cpysize
);
413 if (pos
>= buf
->vb
.size
) {
415 /* Announces that a new buffer were filled */
416 buffer_filled(dev
, dma_q
, buf
);
417 dprintk(dev
, V4L2_DEBUG_ISOC
, "new buffer filled\n");
418 get_next_buf(dma_q
, &buf
);
421 outp
= videobuf_to_vmalloc(&(buf
->vb
));
428 dev
->isoc_ctl
.pos
= pos
;
432 static inline void print_err_status(struct tm6000_core
*dev
,
433 int packet
, int status
)
435 char *errmsg
= "Unknown";
439 errmsg
= "unlinked synchronuously";
442 errmsg
= "unlinked asynchronuously";
445 errmsg
= "Buffer error (overrun)";
448 errmsg
= "Stalled (device not responding)";
451 errmsg
= "Babble (bad cable?)";
454 errmsg
= "Bit-stuff error (bad cable?)";
457 errmsg
= "CRC/Timeout (could be anything)";
460 errmsg
= "Device does not respond";
464 dprintk(dev
, V4L2_DEBUG_QUEUE
, "URB status %d [%s].\n",
467 dprintk(dev
, V4L2_DEBUG_QUEUE
, "URB packet %d, status %d [%s].\n",
468 packet
, status
, errmsg
);
474 * Controls the isoc copy of each urb packet
476 static inline int tm6000_isoc_copy(struct urb
*urb
)
478 struct tm6000_dmaqueue
*dma_q
= urb
->context
;
479 struct tm6000_core
*dev
= container_of(dma_q
, struct tm6000_core
, vidq
);
480 int i
, len
= 0, rc
= 1, status
;
483 if (urb
->status
< 0) {
484 print_err_status(dev
, -1, urb
->status
);
488 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
489 status
= urb
->iso_frame_desc
[i
].status
;
492 print_err_status(dev
, i
, status
);
496 len
= urb
->iso_frame_desc
[i
].actual_length
;
499 p
= urb
->transfer_buffer
+ urb
->iso_frame_desc
[i
].offset
;
500 if (!urb
->iso_frame_desc
[i
].status
) {
501 if ((dev
->fourcc
) == V4L2_PIX_FMT_TM6000
) {
502 rc
= copy_multiplexed(p
, len
, urb
);
506 copy_streams(p
, len
, urb
);
514 /* ------------------------------------------------------------------
516 * ------------------------------------------------------------------
520 * IRQ callback, called by URB callback
522 static void tm6000_irq_callback(struct urb
*urb
)
524 struct tm6000_dmaqueue
*dma_q
= urb
->context
;
525 struct tm6000_core
*dev
= container_of(dma_q
, struct tm6000_core
, vidq
);
531 spin_lock(&dev
->slock
);
532 tm6000_isoc_copy(urb
);
533 spin_unlock(&dev
->slock
);
535 /* Reset urb buffers */
536 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
537 urb
->iso_frame_desc
[i
].status
= 0;
538 urb
->iso_frame_desc
[i
].actual_length
= 0;
541 urb
->status
= usb_submit_urb(urb
, GFP_ATOMIC
);
543 tm6000_err("urb resubmit failed (error=%i)\n",
548 * Stop and Deallocate URBs
550 static void tm6000_uninit_isoc(struct tm6000_core
*dev
)
555 dev
->isoc_ctl
.buf
= NULL
;
556 for (i
= 0; i
< dev
->isoc_ctl
.num_bufs
; i
++) {
557 urb
= dev
->isoc_ctl
.urb
[i
];
561 if (dev
->isoc_ctl
.transfer_buffer
[i
]) {
562 usb_free_coherent(dev
->udev
,
563 urb
->transfer_buffer_length
,
564 dev
->isoc_ctl
.transfer_buffer
[i
],
568 dev
->isoc_ctl
.urb
[i
] = NULL
;
570 dev
->isoc_ctl
.transfer_buffer
[i
] = NULL
;
573 kfree(dev
->isoc_ctl
.urb
);
574 kfree(dev
->isoc_ctl
.transfer_buffer
);
576 dev
->isoc_ctl
.urb
= NULL
;
577 dev
->isoc_ctl
.transfer_buffer
= NULL
;
578 dev
->isoc_ctl
.num_bufs
= 0;
582 * Allocate URBs and start IRQ
584 static int tm6000_prepare_isoc(struct tm6000_core
*dev
)
586 struct tm6000_dmaqueue
*dma_q
= &dev
->vidq
;
587 int i
, j
, sb_size
, pipe
, size
, max_packets
, num_bufs
= 8;
590 /* De-allocates all pending stuff */
591 tm6000_uninit_isoc(dev
);
592 /* Stop interrupt USB pipe */
593 tm6000_ir_int_stop(dev
);
595 usb_set_interface(dev
->udev
,
596 dev
->isoc_in
.bInterfaceNumber
,
597 dev
->isoc_in
.bAlternateSetting
);
599 /* Start interrupt USB pipe */
600 tm6000_ir_int_start(dev
);
602 pipe
= usb_rcvisocpipe(dev
->udev
,
603 dev
->isoc_in
.endp
->desc
.bEndpointAddress
&
604 USB_ENDPOINT_NUMBER_MASK
);
606 size
= usb_maxpacket(dev
->udev
, pipe
, usb_pipeout(pipe
));
608 if (size
> dev
->isoc_in
.maxsize
)
609 size
= dev
->isoc_in
.maxsize
;
611 dev
->isoc_ctl
.max_pkt_size
= size
;
613 max_packets
= TM6000_MAX_ISO_PACKETS
;
614 sb_size
= max_packets
* size
;
616 dev
->isoc_ctl
.num_bufs
= num_bufs
;
618 dev
->isoc_ctl
.urb
= kmalloc(sizeof(void *)*num_bufs
, GFP_KERNEL
);
619 if (!dev
->isoc_ctl
.urb
) {
620 tm6000_err("cannot alloc memory for usb buffers\n");
624 dev
->isoc_ctl
.transfer_buffer
= kmalloc(sizeof(void *)*num_bufs
,
626 if (!dev
->isoc_ctl
.transfer_buffer
) {
627 tm6000_err("cannot allocate memory for usbtransfer\n");
628 kfree(dev
->isoc_ctl
.urb
);
632 dprintk(dev
, V4L2_DEBUG_QUEUE
, "Allocating %d x %d packets"
633 " (%d bytes) of %d bytes each to handle %u size\n",
634 max_packets
, num_bufs
, sb_size
,
635 dev
->isoc_in
.maxsize
, size
);
637 /* allocate urbs and transfer buffers */
638 for (i
= 0; i
< dev
->isoc_ctl
.num_bufs
; i
++) {
639 urb
= usb_alloc_urb(max_packets
, GFP_KERNEL
);
641 tm6000_err("cannot alloc isoc_ctl.urb %i\n", i
);
642 tm6000_uninit_isoc(dev
);
646 dev
->isoc_ctl
.urb
[i
] = urb
;
648 dev
->isoc_ctl
.transfer_buffer
[i
] = usb_alloc_coherent(dev
->udev
,
649 sb_size
, GFP_KERNEL
, &urb
->transfer_dma
);
650 if (!dev
->isoc_ctl
.transfer_buffer
[i
]) {
651 tm6000_err("unable to allocate %i bytes for transfer"
654 in_interrupt() ? " while in int" : "");
655 tm6000_uninit_isoc(dev
);
658 memset(dev
->isoc_ctl
.transfer_buffer
[i
], 0, sb_size
);
660 usb_fill_bulk_urb(urb
, dev
->udev
, pipe
,
661 dev
->isoc_ctl
.transfer_buffer
[i
], sb_size
,
662 tm6000_irq_callback
, dma_q
);
663 urb
->interval
= dev
->isoc_in
.endp
->desc
.bInterval
;
664 urb
->number_of_packets
= max_packets
;
665 urb
->transfer_flags
= URB_ISO_ASAP
| URB_NO_TRANSFER_DMA_MAP
;
667 for (j
= 0; j
< max_packets
; j
++) {
668 urb
->iso_frame_desc
[j
].offset
= size
* j
;
669 urb
->iso_frame_desc
[j
].length
= size
;
676 static int tm6000_start_thread(struct tm6000_core
*dev
)
678 struct tm6000_dmaqueue
*dma_q
= &dev
->vidq
;
682 dma_q
->ini_jiffies
= jiffies
;
684 init_waitqueue_head(&dma_q
->wq
);
686 /* submit urbs and enables IRQ */
687 for (i
= 0; i
< dev
->isoc_ctl
.num_bufs
; i
++) {
688 int rc
= usb_submit_urb(dev
->isoc_ctl
.urb
[i
], GFP_ATOMIC
);
690 tm6000_err("submit of urb %i failed (error=%i)\n", i
,
692 tm6000_uninit_isoc(dev
);
700 /* ------------------------------------------------------------------
701 * Videobuf operations
702 * ------------------------------------------------------------------
706 buffer_setup(struct videobuf_queue
*vq
, unsigned int *count
, unsigned int *size
)
708 struct tm6000_fh
*fh
= vq
->priv_data
;
710 *size
= fh
->fmt
->depth
* fh
->width
* fh
->height
>> 3;
712 *count
= TM6000_DEF_BUF
;
714 if (*count
< TM6000_MIN_BUF
)
715 *count
= TM6000_MIN_BUF
;
717 while (*size
* *count
> vid_limit
* 1024 * 1024)
723 static void free_buffer(struct videobuf_queue
*vq
, struct tm6000_buffer
*buf
)
725 struct tm6000_fh
*fh
= vq
->priv_data
;
726 struct tm6000_core
*dev
= fh
->dev
;
732 /* We used to wait for the buffer to finish here, but this didn't work
733 because, as we were keeping the state as VIDEOBUF_QUEUED,
734 videobuf_queue_cancel marked it as finished for us.
735 (Also, it could wedge forever if the hardware was misconfigured.)
737 This should be safe; by the time we get here, the buffer isn't
738 queued anymore. If we ever start marking the buffers as
739 VIDEOBUF_ACTIVE, it won't be, though.
741 spin_lock_irqsave(&dev
->slock
, flags
);
742 if (dev
->isoc_ctl
.buf
== buf
)
743 dev
->isoc_ctl
.buf
= NULL
;
744 spin_unlock_irqrestore(&dev
->slock
, flags
);
746 videobuf_vmalloc_free(&buf
->vb
);
747 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
751 buffer_prepare(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
,
752 enum v4l2_field field
)
754 struct tm6000_fh
*fh
= vq
->priv_data
;
755 struct tm6000_buffer
*buf
= container_of(vb
, struct tm6000_buffer
, vb
);
756 struct tm6000_core
*dev
= fh
->dev
;
757 int rc
= 0, urb_init
= 0;
759 BUG_ON(NULL
== fh
->fmt
);
762 /* FIXME: It assumes depth=2 */
763 /* The only currently supported format is 16 bits/pixel */
764 buf
->vb
.size
= fh
->fmt
->depth
*fh
->width
*fh
->height
>> 3;
765 if (0 != buf
->vb
.baddr
&& buf
->vb
.bsize
< buf
->vb
.size
)
768 if (buf
->fmt
!= fh
->fmt
||
769 buf
->vb
.width
!= fh
->width
||
770 buf
->vb
.height
!= fh
->height
||
771 buf
->vb
.field
!= field
) {
773 buf
->vb
.width
= fh
->width
;
774 buf
->vb
.height
= fh
->height
;
775 buf
->vb
.field
= field
;
776 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
779 if (VIDEOBUF_NEEDS_INIT
== buf
->vb
.state
) {
780 if (0 != (rc
= videobuf_iolock(vq
, &buf
->vb
, NULL
)))
785 if (!dev
->isoc_ctl
.num_bufs
)
789 rc
= tm6000_prepare_isoc(dev
);
793 rc
= tm6000_start_thread(dev
);
799 buf
->vb
.state
= VIDEOBUF_PREPARED
;
803 free_buffer(vq
, buf
);
808 buffer_queue(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
810 struct tm6000_buffer
*buf
= container_of(vb
, struct tm6000_buffer
, vb
);
811 struct tm6000_fh
*fh
= vq
->priv_data
;
812 struct tm6000_core
*dev
= fh
->dev
;
813 struct tm6000_dmaqueue
*vidq
= &dev
->vidq
;
815 buf
->vb
.state
= VIDEOBUF_QUEUED
;
816 list_add_tail(&buf
->vb
.queue
, &vidq
->active
);
819 static void buffer_release(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
821 struct tm6000_buffer
*buf
= container_of(vb
, struct tm6000_buffer
, vb
);
823 free_buffer(vq
, buf
);
826 static struct videobuf_queue_ops tm6000_video_qops
= {
827 .buf_setup
= buffer_setup
,
828 .buf_prepare
= buffer_prepare
,
829 .buf_queue
= buffer_queue
,
830 .buf_release
= buffer_release
,
833 /* ------------------------------------------------------------------
835 * ------------------------------------------------------------------
838 static bool is_res_read(struct tm6000_core
*dev
, struct tm6000_fh
*fh
)
840 /* Is the current fh handling it? if so, that's OK */
841 if (dev
->resources
== fh
&& dev
->is_res_read
)
847 static bool is_res_streaming(struct tm6000_core
*dev
, struct tm6000_fh
*fh
)
849 /* Is the current fh handling it? if so, that's OK */
850 if (dev
->resources
== fh
)
856 static bool res_get(struct tm6000_core
*dev
, struct tm6000_fh
*fh
,
859 /* Is the current fh handling it? if so, that's OK */
860 if (dev
->resources
== fh
&& dev
->is_res_read
== is_res_read
)
869 dev
->is_res_read
= is_res_read
;
870 dprintk(dev
, V4L2_DEBUG_RES_LOCK
, "res: get\n");
874 static void res_free(struct tm6000_core
*dev
, struct tm6000_fh
*fh
)
876 /* Is the current fh handling it? if so, that's OK */
877 if (dev
->resources
!= fh
)
880 dev
->resources
= NULL
;
881 dprintk(dev
, V4L2_DEBUG_RES_LOCK
, "res: put\n");
884 /* ------------------------------------------------------------------
885 * IOCTL vidioc handling
886 * ------------------------------------------------------------------
888 static int vidioc_querycap(struct file
*file
, void *priv
,
889 struct v4l2_capability
*cap
)
891 struct tm6000_core
*dev
= ((struct tm6000_fh
*)priv
)->dev
;
893 strlcpy(cap
->driver
, "tm6000", sizeof(cap
->driver
));
894 strlcpy(cap
->card
, "Trident TVMaster TM5600/6000/6010", sizeof(cap
->card
));
895 cap
->version
= TM6000_VERSION
;
896 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
|
901 if (dev
->tuner_type
!= TUNER_ABSENT
)
902 cap
->capabilities
|= V4L2_CAP_TUNER
;
907 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
908 struct v4l2_fmtdesc
*f
)
910 if (unlikely(f
->index
>= ARRAY_SIZE(format
)))
913 strlcpy(f
->description
, format
[f
->index
].name
, sizeof(f
->description
));
914 f
->pixelformat
= format
[f
->index
].fourcc
;
918 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
919 struct v4l2_format
*f
)
921 struct tm6000_fh
*fh
= priv
;
923 f
->fmt
.pix
.width
= fh
->width
;
924 f
->fmt
.pix
.height
= fh
->height
;
925 f
->fmt
.pix
.field
= fh
->vb_vidq
.field
;
926 f
->fmt
.pix
.pixelformat
= fh
->fmt
->fourcc
;
927 f
->fmt
.pix
.bytesperline
=
928 (f
->fmt
.pix
.width
* fh
->fmt
->depth
) >> 3;
929 f
->fmt
.pix
.sizeimage
=
930 f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
935 static struct tm6000_fmt
*format_by_fourcc(unsigned int fourcc
)
939 for (i
= 0; i
< ARRAY_SIZE(format
); i
++)
940 if (format
[i
].fourcc
== fourcc
)
945 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
946 struct v4l2_format
*f
)
948 struct tm6000_core
*dev
= ((struct tm6000_fh
*)priv
)->dev
;
949 struct tm6000_fmt
*fmt
;
950 enum v4l2_field field
;
952 fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
954 dprintk(dev
, V4L2_DEBUG_IOCTL_ARG
, "Fourcc format (0x%08x)"
955 " invalid.\n", f
->fmt
.pix
.pixelformat
);
959 field
= f
->fmt
.pix
.field
;
961 if (field
== V4L2_FIELD_ANY
)
962 field
= V4L2_FIELD_SEQ_TB
;
963 else if (V4L2_FIELD_INTERLACED
!= field
) {
964 dprintk(dev
, V4L2_DEBUG_IOCTL_ARG
, "Field type invalid.\n");
968 tm6000_get_std_res(dev
);
970 f
->fmt
.pix
.width
= dev
->width
;
971 f
->fmt
.pix
.height
= dev
->height
;
973 f
->fmt
.pix
.width
&= ~0x01;
975 f
->fmt
.pix
.field
= field
;
977 f
->fmt
.pix
.bytesperline
=
978 (f
->fmt
.pix
.width
* fmt
->depth
) >> 3;
979 f
->fmt
.pix
.sizeimage
=
980 f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
985 /*FIXME: This seems to be generic enough to be at videodev2 */
986 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
987 struct v4l2_format
*f
)
989 struct tm6000_fh
*fh
= priv
;
990 struct tm6000_core
*dev
= fh
->dev
;
991 int ret
= vidioc_try_fmt_vid_cap(file
, fh
, f
);
995 fh
->fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
996 fh
->width
= f
->fmt
.pix
.width
;
997 fh
->height
= f
->fmt
.pix
.height
;
998 fh
->vb_vidq
.field
= f
->fmt
.pix
.field
;
1001 dev
->fourcc
= f
->fmt
.pix
.pixelformat
;
1003 tm6000_set_fourcc_format(dev
);
1008 static int vidioc_reqbufs(struct file
*file
, void *priv
,
1009 struct v4l2_requestbuffers
*p
)
1011 struct tm6000_fh
*fh
= priv
;
1013 return videobuf_reqbufs(&fh
->vb_vidq
, p
);
1016 static int vidioc_querybuf(struct file
*file
, void *priv
,
1017 struct v4l2_buffer
*p
)
1019 struct tm6000_fh
*fh
= priv
;
1021 return videobuf_querybuf(&fh
->vb_vidq
, p
);
1024 static int vidioc_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
1026 struct tm6000_fh
*fh
= priv
;
1028 return videobuf_qbuf(&fh
->vb_vidq
, p
);
1031 static int vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
1033 struct tm6000_fh
*fh
= priv
;
1035 return videobuf_dqbuf(&fh
->vb_vidq
, p
,
1036 file
->f_flags
& O_NONBLOCK
);
1039 static int vidioc_streamon(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
1041 struct tm6000_fh
*fh
= priv
;
1042 struct tm6000_core
*dev
= fh
->dev
;
1044 if (fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1049 if (!res_get(dev
, fh
, false))
1051 return (videobuf_streamon(&fh
->vb_vidq
));
1054 static int vidioc_streamoff(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
1056 struct tm6000_fh
*fh
=priv
;
1057 struct tm6000_core
*dev
= fh
->dev
;
1059 if (fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1064 videobuf_streamoff(&fh
->vb_vidq
);
1070 static int vidioc_s_std (struct file
*file
, void *priv
, v4l2_std_id
*norm
)
1073 struct tm6000_fh
*fh
=priv
;
1074 struct tm6000_core
*dev
= fh
->dev
;
1077 rc
= tm6000_init_analog_mode(dev
);
1079 fh
->width
= dev
->width
;
1080 fh
->height
= dev
->height
;
1085 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_std
, dev
->norm
);
1090 static const char *iname
[] = {
1091 [TM6000_INPUT_TV
] = "Television",
1092 [TM6000_INPUT_COMPOSITE1
] = "Composite 1",
1093 [TM6000_INPUT_COMPOSITE2
] = "Composite 2",
1094 [TM6000_INPUT_SVIDEO
] = "S-Video",
1097 static int vidioc_enum_input(struct file
*file
, void *priv
,
1098 struct v4l2_input
*i
)
1100 struct tm6000_fh
*fh
= priv
;
1101 struct tm6000_core
*dev
= fh
->dev
;
1108 if (!dev
->vinput
[n
].type
)
1113 if (dev
->vinput
[n
].type
== TM6000_INPUT_TV
)
1114 i
->type
= V4L2_INPUT_TYPE_TUNER
;
1116 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
1118 strcpy(i
->name
, iname
[dev
->vinput
[n
].type
]);
1120 i
->std
= TM6000_STD
;
1125 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
1127 struct tm6000_fh
*fh
= priv
;
1128 struct tm6000_core
*dev
= fh
->dev
;
1135 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
1137 struct tm6000_fh
*fh
= priv
;
1138 struct tm6000_core
*dev
= fh
->dev
;
1143 if (!dev
->vinput
[i
].type
)
1148 rc
= vidioc_s_std(file
, priv
, &dev
->vfd
->current_norm
);
1153 /* --- controls ---------------------------------------------- */
1154 static int vidioc_queryctrl(struct file
*file
, void *priv
,
1155 struct v4l2_queryctrl
*qc
)
1159 for (i
= 0; i
< ARRAY_SIZE(tm6000_qctrl
); i
++)
1160 if (qc
->id
&& qc
->id
== tm6000_qctrl
[i
].id
) {
1161 memcpy(qc
, &(tm6000_qctrl
[i
]),
1169 static int vidioc_g_ctrl(struct file
*file
, void *priv
,
1170 struct v4l2_control
*ctrl
)
1172 struct tm6000_fh
*fh
= priv
;
1173 struct tm6000_core
*dev
= fh
->dev
;
1176 /* FIXME: Probably, those won't work! Maybe we need shadow regs */
1178 case V4L2_CID_CONTRAST
:
1179 val
= tm6000_get_reg(dev
, TM6010_REQ07_R08_LUMA_CONTRAST_ADJ
, 0);
1181 case V4L2_CID_BRIGHTNESS
:
1182 val
= tm6000_get_reg(dev
, TM6010_REQ07_R09_LUMA_BRIGHTNESS_ADJ
, 0);
1184 case V4L2_CID_SATURATION
:
1185 val
= tm6000_get_reg(dev
, TM6010_REQ07_R0A_CHROMA_SATURATION_ADJ
, 0);
1188 val
= tm6000_get_reg(dev
, TM6010_REQ07_R0B_CHROMA_HUE_PHASE_ADJ
, 0);
1190 case V4L2_CID_AUDIO_MUTE
:
1191 val
= dev
->ctl_mute
;
1193 case V4L2_CID_AUDIO_VOLUME
:
1194 val
= dev
->ctl_volume
;
1207 static int vidioc_s_ctrl(struct file
*file
, void *priv
,
1208 struct v4l2_control
*ctrl
)
1210 struct tm6000_fh
*fh
= priv
;
1211 struct tm6000_core
*dev
= fh
->dev
;
1212 u8 val
= ctrl
->value
;
1215 case V4L2_CID_CONTRAST
:
1216 tm6000_set_reg(dev
, TM6010_REQ07_R08_LUMA_CONTRAST_ADJ
, val
);
1218 case V4L2_CID_BRIGHTNESS
:
1219 tm6000_set_reg(dev
, TM6010_REQ07_R09_LUMA_BRIGHTNESS_ADJ
, val
);
1221 case V4L2_CID_SATURATION
:
1222 tm6000_set_reg(dev
, TM6010_REQ07_R0A_CHROMA_SATURATION_ADJ
, val
);
1225 tm6000_set_reg(dev
, TM6010_REQ07_R0B_CHROMA_HUE_PHASE_ADJ
, val
);
1227 case V4L2_CID_AUDIO_MUTE
:
1228 dev
->ctl_mute
= val
;
1229 tm6000_tvaudio_set_mute(dev
, val
);
1231 case V4L2_CID_AUDIO_VOLUME
:
1232 dev
->ctl_volume
= val
;
1233 tm6000_set_volume(dev
, val
);
1239 static int vidioc_g_tuner(struct file
*file
, void *priv
,
1240 struct v4l2_tuner
*t
)
1242 struct tm6000_fh
*fh
= priv
;
1243 struct tm6000_core
*dev
= fh
->dev
;
1245 if (unlikely(UNSET
== dev
->tuner_type
))
1250 strcpy(t
->name
, "Television");
1251 t
->type
= V4L2_TUNER_ANALOG_TV
;
1252 t
->capability
= V4L2_TUNER_CAP_NORM
;
1253 t
->rangehigh
= 0xffffffffUL
;
1254 t
->rxsubchans
= V4L2_TUNER_SUB_STEREO
;
1256 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, g_tuner
, t
);
1258 t
->audmode
= dev
->amode
;
1263 static int vidioc_s_tuner(struct file
*file
, void *priv
,
1264 struct v4l2_tuner
*t
)
1266 struct tm6000_fh
*fh
= priv
;
1267 struct tm6000_core
*dev
= fh
->dev
;
1269 if (UNSET
== dev
->tuner_type
)
1274 dev
->amode
= t
->audmode
;
1275 dprintk(dev
, 3, "audio mode: %x\n", t
->audmode
);
1277 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_tuner
, t
);
1282 static int vidioc_g_frequency(struct file
*file
, void *priv
,
1283 struct v4l2_frequency
*f
)
1285 struct tm6000_fh
*fh
= priv
;
1286 struct tm6000_core
*dev
= fh
->dev
;
1288 if (unlikely(UNSET
== dev
->tuner_type
))
1291 f
->type
= fh
->radio
? V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
1292 f
->frequency
= dev
->freq
;
1294 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, g_frequency
, f
);
1299 static int vidioc_s_frequency(struct file
*file
, void *priv
,
1300 struct v4l2_frequency
*f
)
1302 struct tm6000_fh
*fh
= priv
;
1303 struct tm6000_core
*dev
= fh
->dev
;
1305 if (unlikely(UNSET
== dev
->tuner_type
))
1307 if (unlikely(f
->tuner
!= 0))
1309 if (0 == fh
->radio
&& V4L2_TUNER_ANALOG_TV
!= f
->type
)
1311 if (1 == fh
->radio
&& V4L2_TUNER_RADIO
!= f
->type
)
1314 dev
->freq
= f
->frequency
;
1315 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_frequency
, f
);
1320 static int radio_querycap(struct file
*file
, void *priv
,
1321 struct v4l2_capability
*cap
)
1323 struct tm6000_fh
*fh
= file
->private_data
;
1324 struct tm6000_core
*dev
= fh
->dev
;
1326 strcpy(cap
->driver
, "tm6000");
1327 strlcpy(cap
->card
, dev
->name
, sizeof(dev
->name
));
1328 sprintf(cap
->bus_info
, "USB%04x:%04x",
1329 le16_to_cpu(dev
->udev
->descriptor
.idVendor
),
1330 le16_to_cpu(dev
->udev
->descriptor
.idProduct
));
1331 cap
->version
= dev
->dev_type
;
1332 cap
->capabilities
= V4L2_CAP_TUNER
|
1335 V4L2_CAP_READWRITE
|
1341 static int radio_g_tuner(struct file
*file
, void *priv
,
1342 struct v4l2_tuner
*t
)
1344 struct tm6000_fh
*fh
= file
->private_data
;
1345 struct tm6000_core
*dev
= fh
->dev
;
1350 memset(t
, 0, sizeof(*t
));
1351 strcpy(t
->name
, "Radio");
1352 t
->type
= V4L2_TUNER_RADIO
;
1353 t
->rxsubchans
= V4L2_TUNER_SUB_STEREO
;
1355 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, g_tuner
, t
);
1360 static int radio_s_tuner(struct file
*file
, void *priv
,
1361 struct v4l2_tuner
*t
)
1363 struct tm6000_fh
*fh
= file
->private_data
;
1364 struct tm6000_core
*dev
= fh
->dev
;
1369 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_tuner
, t
);
1374 static int radio_enum_input(struct file
*file
, void *priv
,
1375 struct v4l2_input
*i
)
1377 struct tm6000_fh
*fh
= priv
;
1378 struct tm6000_core
*dev
= fh
->dev
;
1383 if (!dev
->rinput
.type
)
1386 strcpy(i
->name
, "Radio");
1387 i
->type
= V4L2_INPUT_TYPE_TUNER
;
1392 static int radio_g_input(struct file
*filp
, void *priv
, unsigned int *i
)
1394 struct tm6000_fh
*fh
= priv
;
1395 struct tm6000_core
*dev
= fh
->dev
;
1405 static int radio_g_audio(struct file
*file
, void *priv
,
1406 struct v4l2_audio
*a
)
1408 memset(a
, 0, sizeof(*a
));
1409 strcpy(a
->name
, "Radio");
1413 static int radio_s_audio(struct file
*file
, void *priv
,
1414 struct v4l2_audio
*a
)
1419 static int radio_s_input(struct file
*filp
, void *priv
, unsigned int i
)
1421 struct tm6000_fh
*fh
= priv
;
1422 struct tm6000_core
*dev
= fh
->dev
;
1427 if (!dev
->rinput
.type
)
1435 static int radio_s_std(struct file
*file
, void *fh
, v4l2_std_id
*norm
)
1440 static int radio_queryctrl(struct file
*file
, void *priv
,
1441 struct v4l2_queryctrl
*c
)
1443 const struct v4l2_queryctrl
*ctrl
;
1445 if (c
->id
< V4L2_CID_BASE
||
1446 c
->id
>= V4L2_CID_LASTP1
)
1448 if (c
->id
== V4L2_CID_AUDIO_MUTE
) {
1449 ctrl
= ctrl_by_id(c
->id
);
1457 /* ------------------------------------------------------------------
1458 File operations for the device
1459 ------------------------------------------------------------------*/
1461 static int tm6000_open(struct file
*file
)
1463 struct video_device
*vdev
= video_devdata(file
);
1464 struct tm6000_core
*dev
= video_drvdata(file
);
1465 struct tm6000_fh
*fh
;
1466 enum v4l2_buf_type type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1470 printk(KERN_INFO
"tm6000: open called (dev=%s)\n",
1471 video_device_node_name(vdev
));
1473 dprintk(dev
, V4L2_DEBUG_OPEN
, "tm6000: open called (dev=%s)\n",
1474 video_device_node_name(vdev
));
1476 switch (vdev
->vfl_type
) {
1477 case VFL_TYPE_GRABBER
:
1478 type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1481 type
= V4L2_BUF_TYPE_VBI_CAPTURE
;
1483 case VFL_TYPE_RADIO
:
1488 /* If more than one user, mutex should be added */
1491 dprintk(dev
, V4L2_DEBUG_OPEN
, "open dev=%s type=%s users=%d\n",
1492 video_device_node_name(vdev
), v4l2_type_names
[type
],
1495 /* allocate + initialize per filehandle data */
1496 fh
= kzalloc(sizeof(*fh
), GFP_KERNEL
);
1502 file
->private_data
= fh
;
1507 dev
->fourcc
= format
[0].fourcc
;
1509 fh
->fmt
= format_by_fourcc(dev
->fourcc
);
1511 tm6000_get_std_res (dev
);
1513 fh
->width
= dev
->width
;
1514 fh
->height
= dev
->height
;
1516 dprintk(dev
, V4L2_DEBUG_OPEN
, "Open: fh=0x%08lx, dev=0x%08lx, "
1517 "dev->vidq=0x%08lx\n",
1518 (unsigned long)fh
,(unsigned long)dev
,(unsigned long)&dev
->vidq
);
1519 dprintk(dev
, V4L2_DEBUG_OPEN
, "Open: list_empty "
1520 "queued=%d\n",list_empty(&dev
->vidq
.queued
));
1521 dprintk(dev
, V4L2_DEBUG_OPEN
, "Open: list_empty "
1522 "active=%d\n",list_empty(&dev
->vidq
.active
));
1524 /* initialize hardware on analog mode */
1525 rc
= tm6000_init_analog_mode(dev
);
1529 if (dev
->mode
!= TM6000_MODE_ANALOG
) {
1530 /* Put all controls at a sane state */
1531 for (i
= 0; i
< ARRAY_SIZE(tm6000_qctrl
); i
++)
1532 qctl_regs
[i
] = tm6000_qctrl
[i
].default_value
;
1534 dev
->mode
= TM6000_MODE_ANALOG
;
1537 videobuf_queue_vmalloc_init(&fh
->vb_vidq
, &tm6000_video_qops
,
1540 V4L2_FIELD_INTERLACED
,
1541 sizeof(struct tm6000_buffer
), fh
, &dev
->lock
);
1544 dprintk(dev
, V4L2_DEBUG_OPEN
, "video_open: setting radio device\n");
1546 tm6000_set_audio_rinput(dev
);
1547 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_radio
);
1548 tm6000_prepare_isoc(dev
);
1549 tm6000_start_thread(dev
);
1556 tm6000_read(struct file
*file
, char __user
*data
, size_t count
, loff_t
*pos
)
1558 struct tm6000_fh
*fh
= file
->private_data
;
1560 if (fh
->type
==V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
1561 if (!res_get(fh
->dev
, fh
, true))
1564 return videobuf_read_stream(&fh
->vb_vidq
, data
, count
, pos
, 0,
1565 file
->f_flags
& O_NONBLOCK
);
1571 tm6000_poll(struct file
*file
, struct poll_table_struct
*wait
)
1573 struct tm6000_fh
*fh
= file
->private_data
;
1574 struct tm6000_buffer
*buf
;
1576 if (V4L2_BUF_TYPE_VIDEO_CAPTURE
!= fh
->type
)
1579 if (!!is_res_streaming(fh
->dev
, fh
))
1582 if (!is_res_read(fh
->dev
, fh
)) {
1583 /* streaming capture */
1584 if (list_empty(&fh
->vb_vidq
.stream
))
1586 buf
= list_entry(fh
->vb_vidq
.stream
.next
,struct tm6000_buffer
,vb
.stream
);
1588 /* read() capture */
1589 return videobuf_poll_stream(file
, &fh
->vb_vidq
,
1592 poll_wait(file
, &buf
->vb
.done
, wait
);
1593 if (buf
->vb
.state
== VIDEOBUF_DONE
||
1594 buf
->vb
.state
== VIDEOBUF_ERROR
)
1595 return POLLIN
| POLLRDNORM
;
1599 static int tm6000_release(struct file
*file
)
1601 struct tm6000_fh
*fh
= file
->private_data
;
1602 struct tm6000_core
*dev
= fh
->dev
;
1603 struct video_device
*vdev
= video_devdata(file
);
1605 dprintk(dev
, V4L2_DEBUG_OPEN
, "tm6000: close called (dev=%s, users=%d)\n",
1606 video_device_node_name(vdev
), dev
->users
);
1612 tm6000_uninit_isoc(dev
);
1613 videobuf_mmap_free(&fh
->vb_vidq
);
1621 static int tm6000_mmap(struct file
*file
, struct vm_area_struct
* vma
)
1623 struct tm6000_fh
*fh
= file
->private_data
;
1626 ret
= videobuf_mmap_mapper(&fh
->vb_vidq
, vma
);
1631 static struct v4l2_file_operations tm6000_fops
= {
1632 .owner
= THIS_MODULE
,
1633 .open
= tm6000_open
,
1634 .release
= tm6000_release
,
1635 .unlocked_ioctl
= video_ioctl2
, /* V4L2 ioctl handler */
1636 .read
= tm6000_read
,
1637 .poll
= tm6000_poll
,
1638 .mmap
= tm6000_mmap
,
1641 static const struct v4l2_ioctl_ops video_ioctl_ops
= {
1642 .vidioc_querycap
= vidioc_querycap
,
1643 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
1644 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1645 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
1646 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
1647 .vidioc_s_std
= vidioc_s_std
,
1648 .vidioc_enum_input
= vidioc_enum_input
,
1649 .vidioc_g_input
= vidioc_g_input
,
1650 .vidioc_s_input
= vidioc_s_input
,
1651 .vidioc_queryctrl
= vidioc_queryctrl
,
1652 .vidioc_g_ctrl
= vidioc_g_ctrl
,
1653 .vidioc_s_ctrl
= vidioc_s_ctrl
,
1654 .vidioc_g_tuner
= vidioc_g_tuner
,
1655 .vidioc_s_tuner
= vidioc_s_tuner
,
1656 .vidioc_g_frequency
= vidioc_g_frequency
,
1657 .vidioc_s_frequency
= vidioc_s_frequency
,
1658 .vidioc_streamon
= vidioc_streamon
,
1659 .vidioc_streamoff
= vidioc_streamoff
,
1660 .vidioc_reqbufs
= vidioc_reqbufs
,
1661 .vidioc_querybuf
= vidioc_querybuf
,
1662 .vidioc_qbuf
= vidioc_qbuf
,
1663 .vidioc_dqbuf
= vidioc_dqbuf
,
1666 static struct video_device tm6000_template
= {
1668 .fops
= &tm6000_fops
,
1669 .ioctl_ops
= &video_ioctl_ops
,
1670 .release
= video_device_release
,
1671 .tvnorms
= TM6000_STD
,
1672 .current_norm
= V4L2_STD_NTSC_M
,
1675 static const struct v4l2_file_operations radio_fops
= {
1676 .owner
= THIS_MODULE
,
1677 .open
= tm6000_open
,
1678 .release
= tm6000_release
,
1679 .unlocked_ioctl
= video_ioctl2
,
1682 static const struct v4l2_ioctl_ops radio_ioctl_ops
= {
1683 .vidioc_querycap
= radio_querycap
,
1684 .vidioc_g_tuner
= radio_g_tuner
,
1685 .vidioc_enum_input
= radio_enum_input
,
1686 .vidioc_g_audio
= radio_g_audio
,
1687 .vidioc_s_tuner
= radio_s_tuner
,
1688 .vidioc_s_audio
= radio_s_audio
,
1689 .vidioc_s_input
= radio_s_input
,
1690 .vidioc_s_std
= radio_s_std
,
1691 .vidioc_queryctrl
= radio_queryctrl
,
1692 .vidioc_g_input
= radio_g_input
,
1693 .vidioc_g_ctrl
= vidioc_g_ctrl
,
1694 .vidioc_s_ctrl
= vidioc_s_ctrl
,
1695 .vidioc_g_frequency
= vidioc_g_frequency
,
1696 .vidioc_s_frequency
= vidioc_s_frequency
,
1699 struct video_device tm6000_radio_template
= {
1701 .fops
= &radio_fops
,
1702 .ioctl_ops
= &radio_ioctl_ops
,
1705 /* -----------------------------------------------------------------
1706 * Initialization and module stuff
1707 * ------------------------------------------------------------------
1710 static struct video_device
*vdev_init(struct tm6000_core
*dev
,
1711 const struct video_device
1712 *template, const char *type_name
)
1714 struct video_device
*vfd
;
1716 vfd
= video_device_alloc();
1721 vfd
->v4l2_dev
= &dev
->v4l2_dev
;
1722 vfd
->release
= video_device_release
;
1723 vfd
->debug
= tm6000_debug
;
1724 vfd
->lock
= &dev
->lock
;
1726 snprintf(vfd
->name
, sizeof(vfd
->name
), "%s %s", dev
->name
, type_name
);
1728 video_set_drvdata(vfd
, dev
);
1732 int tm6000_v4l2_register(struct tm6000_core
*dev
)
1736 dev
->vfd
= vdev_init(dev
, &tm6000_template
, "video");
1739 printk(KERN_INFO
"%s: can't register video device\n",
1744 /* init video dma queues */
1745 INIT_LIST_HEAD(&dev
->vidq
.active
);
1746 INIT_LIST_HEAD(&dev
->vidq
.queued
);
1748 ret
= video_register_device(dev
->vfd
, VFL_TYPE_GRABBER
, video_nr
);
1751 printk(KERN_INFO
"%s: can't register video device\n",
1756 printk(KERN_INFO
"%s: registered device %s\n",
1757 dev
->name
, video_device_node_name(dev
->vfd
));
1759 if (dev
->caps
.has_radio
) {
1760 dev
->radio_dev
= vdev_init(dev
, &tm6000_radio_template
,
1762 if (!dev
->radio_dev
) {
1763 printk(KERN_INFO
"%s: can't register radio device\n",
1765 return ret
; /* FIXME release resource */
1768 ret
= video_register_device(dev
->radio_dev
, VFL_TYPE_RADIO
,
1771 printk(KERN_INFO
"%s: can't register radio device\n",
1773 return ret
; /* FIXME release resource */
1776 printk(KERN_INFO
"%s: registered device %s\n",
1777 dev
->name
, video_device_node_name(dev
->radio_dev
));
1780 printk(KERN_INFO
"Trident TVMaster TM5600/TM6000/TM6010 USB2 board (Load status: %d)\n", ret
);
1784 int tm6000_v4l2_unregister(struct tm6000_core
*dev
)
1786 video_unregister_device(dev
->vfd
);
1788 if (dev
->radio_dev
) {
1789 if (video_is_registered(dev
->radio_dev
))
1790 video_unregister_device(dev
->radio_dev
);
1792 video_device_release(dev
->radio_dev
);
1793 dev
->radio_dev
= NULL
;
1799 int tm6000_v4l2_exit(void)
1804 module_param(video_nr
, int, 0);
1805 MODULE_PARM_DESC(video_nr
, "Allow changing video device number");
1807 module_param_named(debug
, tm6000_debug
, int, 0444);
1808 MODULE_PARM_DESC(debug
, "activates debug info");
1810 module_param(vid_limit
, int, 0644);
1811 MODULE_PARM_DESC(vid_limit
, "capture memory limit in megabytes");