1 // SPDX-License-Identifier: GPL-2.0
2 // tm6000-video.c - driver for TM5600/TM6000/TM6010 USB video capture devices
4 // Copyright (c) 2006-2007 Mauro Carvalho Chehab <mchehab@kernel.org>
6 // Copyright (c) 2007 Michel Ludwig <michel.ludwig@gmail.com>
7 // - Fixed module load/unload
9 #include <linux/module.h>
10 #include <linux/delay.h>
11 #include <linux/errno.h>
13 #include <linux/kernel.h>
14 #include <linux/slab.h>
16 #include <linux/ioport.h>
17 #include <linux/init.h>
18 #include <linux/sched.h>
19 #include <linux/random.h>
20 #include <linux/usb.h>
21 #include <linux/videodev2.h>
22 #include <media/v4l2-ioctl.h>
23 #include <media/v4l2-event.h>
24 #include <media/tuner.h>
25 #include <linux/interrupt.h>
26 #include <linux/kthread.h>
27 #include <linux/highmem.h>
28 #include <linux/freezer.h>
30 #include "tm6000-regs.h"
33 #define BUFFER_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
35 /* Limits minimum and default number of buffers */
36 #define TM6000_MIN_BUF 4
37 #define TM6000_DEF_BUF 8
39 #define TM6000_NUM_URB_BUF 8
41 #define TM6000_MAX_ISO_PACKETS 46 /* Max number of ISO packets */
43 /* Declare static vars that will be used as parameters */
44 static unsigned int vid_limit
= 16; /* Video memory limit, in Mb */
45 static int video_nr
= -1; /* /dev/videoN, -1 for autodetect */
46 static int radio_nr
= -1; /* /dev/radioN, -1 for autodetect */
47 static bool keep_urb
; /* keep urb buffers allocated */
51 EXPORT_SYMBOL_GPL(tm6000_debug
);
53 static struct tm6000_fmt format
[] = {
55 .fourcc
= V4L2_PIX_FMT_YUYV
,
58 .fourcc
= V4L2_PIX_FMT_UYVY
,
61 .fourcc
= V4L2_PIX_FMT_TM6000
,
66 /* ------------------------------------------------------------------
67 * DMA and thread functions
68 * ------------------------------------------------------------------
71 #define norm_maxw(a) 720
72 #define norm_maxh(a) 576
74 #define norm_minw(a) norm_maxw(a)
75 #define norm_minh(a) norm_maxh(a)
78 * video-buf generic routine to get the next available buffer
80 static inline void get_next_buf(struct tm6000_dmaqueue
*dma_q
,
81 struct tm6000_buffer
**buf
)
83 struct tm6000_core
*dev
= container_of(dma_q
, struct tm6000_core
, vidq
);
85 if (list_empty(&dma_q
->active
)) {
86 dprintk(dev
, V4L2_DEBUG_QUEUE
, "No active queue to serve\n");
91 *buf
= list_entry(dma_q
->active
.next
,
92 struct tm6000_buffer
, vb
.queue
);
96 * Announces that a buffer were filled and request the next
98 static inline void buffer_filled(struct tm6000_core
*dev
,
99 struct tm6000_dmaqueue
*dma_q
,
100 struct tm6000_buffer
*buf
)
102 /* Advice that buffer was filled */
103 dprintk(dev
, V4L2_DEBUG_ISOC
, "[%p/%d] wakeup\n", buf
, buf
->vb
.i
);
104 buf
->vb
.state
= VIDEOBUF_DONE
;
105 buf
->vb
.field_count
++;
106 buf
->vb
.ts
= ktime_get_ns();
108 list_del(&buf
->vb
.queue
);
109 wake_up(&buf
->vb
.done
);
113 * Identify the tm5600/6000 buffer header type and properly handles
115 static int copy_streams(u8
*data
, unsigned long len
,
118 struct tm6000_dmaqueue
*dma_q
= urb
->context
;
119 struct tm6000_core
*dev
= container_of(dma_q
, struct tm6000_core
, vidq
);
120 u8
*ptr
= data
, *endp
= data
+len
;
121 unsigned long header
= 0;
123 unsigned int cmd
, cpysize
, pktsize
, size
, field
, block
, line
, pos
= 0;
124 struct tm6000_buffer
*vbuf
= NULL
;
126 unsigned int linewidth
;
129 /* get video buffer */
130 get_next_buf(dma_q
, &vbuf
);
134 voutp
= videobuf_to_vmalloc(&vbuf
->vb
);
140 for (ptr
= data
; ptr
< endp
;) {
141 if (!dev
->isoc_ctl
.cmd
) {
143 if (dev
->isoc_ctl
.tmp_buf_len
> 0) {
144 /* from last urb or packet */
145 header
= dev
->isoc_ctl
.tmp_buf
;
146 if (4 - dev
->isoc_ctl
.tmp_buf_len
> 0) {
147 memcpy((u8
*)&header
+
148 dev
->isoc_ctl
.tmp_buf_len
,
150 4 - dev
->isoc_ctl
.tmp_buf_len
);
151 ptr
+= 4 - dev
->isoc_ctl
.tmp_buf_len
;
153 dev
->isoc_ctl
.tmp_buf_len
= 0;
155 if (ptr
+ 3 >= endp
) {
156 /* have incomplete header */
157 dev
->isoc_ctl
.tmp_buf_len
= endp
- ptr
;
158 memcpy(&dev
->isoc_ctl
.tmp_buf
, ptr
,
159 dev
->isoc_ctl
.tmp_buf_len
);
163 for (; ptr
< endp
- 3; ptr
++) {
164 if (*(ptr
+ 3) == 0x47)
167 /* Get message header */
168 header
= *(unsigned long *)ptr
;
172 /* split the header fields */
173 size
= ((header
& 0x7e) << 1);
176 block
= (header
>> 7) & 0xf;
177 field
= (header
>> 11) & 0x1;
178 line
= (header
>> 12) & 0x1ff;
179 cmd
= (header
>> 21) & 0x7;
180 /* Validates header fields */
181 if (size
> TM6000_URB_MSG_LEN
)
182 size
= TM6000_URB_MSG_LEN
;
183 pktsize
= TM6000_URB_MSG_LEN
;
185 * calculate position in buffer and change the buffer
188 case TM6000_URB_MSG_VIDEO
:
190 if ((dev
->isoc_ctl
.vfield
!= field
) &&
193 * Announces that a new buffer
196 buffer_filled(dev
, dma_q
, vbuf
);
197 dprintk(dev
, V4L2_DEBUG_ISOC
,
198 "new buffer filled\n");
199 get_next_buf(dma_q
, &vbuf
);
202 voutp
= videobuf_to_vmalloc(&vbuf
->vb
);
205 memset(voutp
, 0, vbuf
->vb
.size
);
207 linewidth
= vbuf
->vb
.width
<< 1;
208 pos
= ((line
<< 1) - field
- 1) *
209 linewidth
+ block
* TM6000_URB_MSG_LEN
;
210 /* Don't allow to write out of the buffer */
211 if (pos
+ size
> vbuf
->vb
.size
)
212 cmd
= TM6000_URB_MSG_ERR
;
213 dev
->isoc_ctl
.vfield
= field
;
216 case TM6000_URB_MSG_VBI
:
218 case TM6000_URB_MSG_AUDIO
:
219 case TM6000_URB_MSG_PTS
:
220 size
= pktsize
; /* Size is always 180 bytes */
224 /* Continue the last copy */
225 cmd
= dev
->isoc_ctl
.cmd
;
226 size
= dev
->isoc_ctl
.size
;
227 pos
= dev
->isoc_ctl
.pos
;
228 pktsize
= dev
->isoc_ctl
.pktsize
;
229 field
= dev
->isoc_ctl
.field
;
231 cpysize
= (endp
- ptr
> size
) ? size
: endp
- ptr
;
233 /* copy data in different buffers */
235 case TM6000_URB_MSG_VIDEO
:
236 /* Fills video buffer */
238 memcpy(&voutp
[pos
], ptr
, cpysize
);
240 case TM6000_URB_MSG_AUDIO
: {
242 for (i
= 0; i
< cpysize
; i
+= 2)
243 swab16s((u16
*)(ptr
+ i
));
245 tm6000_call_fillbuf(dev
, TM6000_AUDIO
, ptr
, cpysize
);
248 case TM6000_URB_MSG_VBI
:
249 /* Need some code to copy vbi buffer */
251 case TM6000_URB_MSG_PTS
: {
252 /* Need some code to copy pts */
255 dprintk(dev
, V4L2_DEBUG_ISOC
, "field %d, PTS %x",
261 if (ptr
+ pktsize
> endp
) {
263 * End of URB packet, but cmd processing is not
264 * complete. Preserve the state for a next packet
266 dev
->isoc_ctl
.pos
= pos
+ cpysize
;
267 dev
->isoc_ctl
.size
= size
- cpysize
;
268 dev
->isoc_ctl
.cmd
= cmd
;
269 dev
->isoc_ctl
.field
= field
;
270 dev
->isoc_ctl
.pktsize
= pktsize
- (endp
- ptr
);
273 dev
->isoc_ctl
.cmd
= 0;
281 * Identify the tm5600/6000 buffer header type and properly handles
283 static int copy_multiplexed(u8
*ptr
, unsigned long len
,
286 struct tm6000_dmaqueue
*dma_q
= urb
->context
;
287 struct tm6000_core
*dev
= container_of(dma_q
, struct tm6000_core
, vidq
);
288 unsigned int pos
= dev
->isoc_ctl
.pos
, cpysize
;
290 struct tm6000_buffer
*buf
;
293 get_next_buf(dma_q
, &buf
);
295 outp
= videobuf_to_vmalloc(&buf
->vb
);
301 cpysize
= min(len
, buf
->vb
.size
-pos
);
302 memcpy(&outp
[pos
], ptr
, cpysize
);
306 if (pos
>= buf
->vb
.size
) {
308 /* Announces that a new buffer were filled */
309 buffer_filled(dev
, dma_q
, buf
);
310 dprintk(dev
, V4L2_DEBUG_ISOC
, "new buffer filled\n");
311 get_next_buf(dma_q
, &buf
);
314 outp
= videobuf_to_vmalloc(&(buf
->vb
));
321 dev
->isoc_ctl
.pos
= pos
;
325 static inline void print_err_status(struct tm6000_core
*dev
,
326 int packet
, int status
)
328 char *errmsg
= "Unknown";
332 errmsg
= "unlinked synchronously";
335 errmsg
= "unlinked asynchronously";
338 errmsg
= "Buffer error (overrun)";
341 errmsg
= "Stalled (device not responding)";
344 errmsg
= "Babble (bad cable?)";
347 errmsg
= "Bit-stuff error (bad cable?)";
350 errmsg
= "CRC/Timeout (could be anything)";
353 errmsg
= "Device does not respond";
357 dprintk(dev
, V4L2_DEBUG_QUEUE
, "URB status %d [%s].\n",
360 dprintk(dev
, V4L2_DEBUG_QUEUE
, "URB packet %d, status %d [%s].\n",
361 packet
, status
, errmsg
);
367 * Controls the isoc copy of each urb packet
369 static inline int tm6000_isoc_copy(struct urb
*urb
)
371 struct tm6000_dmaqueue
*dma_q
= urb
->context
;
372 struct tm6000_core
*dev
= container_of(dma_q
, struct tm6000_core
, vidq
);
373 int i
, len
= 0, rc
= 1, status
;
376 if (urb
->status
< 0) {
377 print_err_status(dev
, -1, urb
->status
);
381 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
382 status
= urb
->iso_frame_desc
[i
].status
;
385 print_err_status(dev
, i
, status
);
389 len
= urb
->iso_frame_desc
[i
].actual_length
;
392 p
= urb
->transfer_buffer
+ urb
->iso_frame_desc
[i
].offset
;
393 if (!urb
->iso_frame_desc
[i
].status
) {
394 if ((dev
->fourcc
) == V4L2_PIX_FMT_TM6000
) {
395 rc
= copy_multiplexed(p
, len
, urb
);
399 copy_streams(p
, len
, urb
);
407 /* ------------------------------------------------------------------
409 * ------------------------------------------------------------------
413 * IRQ callback, called by URB callback
415 static void tm6000_irq_callback(struct urb
*urb
)
417 struct tm6000_dmaqueue
*dma_q
= urb
->context
;
418 struct tm6000_core
*dev
= container_of(dma_q
, struct tm6000_core
, vidq
);
422 switch (urb
->status
) {
433 tm6000_err("urb completion error %d.\n", urb
->status
);
437 spin_lock_irqsave(&dev
->slock
, flags
);
438 tm6000_isoc_copy(urb
);
439 spin_unlock_irqrestore(&dev
->slock
, flags
);
441 /* Reset urb buffers */
442 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
443 urb
->iso_frame_desc
[i
].status
= 0;
444 urb
->iso_frame_desc
[i
].actual_length
= 0;
447 urb
->status
= usb_submit_urb(urb
, GFP_ATOMIC
);
449 tm6000_err("urb resubmit failed (error=%i)\n",
454 * Allocate URB buffers
456 static int tm6000_alloc_urb_buffers(struct tm6000_core
*dev
)
458 int num_bufs
= TM6000_NUM_URB_BUF
;
464 dev
->urb_buffer
= kmalloc_array(num_bufs
, sizeof(void *), GFP_KERNEL
);
465 if (!dev
->urb_buffer
)
468 dev
->urb_dma
= kmalloc_array(num_bufs
, sizeof(dma_addr_t
*),
473 for (i
= 0; i
< num_bufs
; i
++) {
474 dev
->urb_buffer
[i
] = usb_alloc_coherent(
475 dev
->udev
, dev
->urb_size
,
476 GFP_KERNEL
, &dev
->urb_dma
[i
]);
477 if (!dev
->urb_buffer
[i
]) {
478 tm6000_err("unable to allocate %i bytes for transfer buffer %i\n",
482 memset(dev
->urb_buffer
[i
], 0, dev
->urb_size
);
491 static int tm6000_free_urb_buffers(struct tm6000_core
*dev
)
495 if (!dev
->urb_buffer
)
498 for (i
= 0; i
< TM6000_NUM_URB_BUF
; i
++) {
499 if (dev
->urb_buffer
[i
]) {
500 usb_free_coherent(dev
->udev
,
504 dev
->urb_buffer
[i
] = NULL
;
507 kfree(dev
->urb_buffer
);
509 dev
->urb_buffer
= NULL
;
516 * Stop and Deallocate URBs
518 static void tm6000_uninit_isoc(struct tm6000_core
*dev
)
523 dev
->isoc_ctl
.buf
= NULL
;
524 for (i
= 0; i
< dev
->isoc_ctl
.num_bufs
; i
++) {
525 urb
= dev
->isoc_ctl
.urb
[i
];
530 dev
->isoc_ctl
.urb
[i
] = NULL
;
532 dev
->isoc_ctl
.transfer_buffer
[i
] = NULL
;
536 tm6000_free_urb_buffers(dev
);
538 kfree(dev
->isoc_ctl
.urb
);
539 kfree(dev
->isoc_ctl
.transfer_buffer
);
541 dev
->isoc_ctl
.urb
= NULL
;
542 dev
->isoc_ctl
.transfer_buffer
= NULL
;
543 dev
->isoc_ctl
.num_bufs
= 0;
547 * Assign URBs and start IRQ
549 static int tm6000_prepare_isoc(struct tm6000_core
*dev
)
551 struct tm6000_dmaqueue
*dma_q
= &dev
->vidq
;
552 int i
, j
, sb_size
, pipe
, size
, max_packets
;
553 int num_bufs
= TM6000_NUM_URB_BUF
;
556 /* De-allocates all pending stuff */
557 tm6000_uninit_isoc(dev
);
558 /* Stop interrupt USB pipe */
559 tm6000_ir_int_stop(dev
);
561 usb_set_interface(dev
->udev
,
562 dev
->isoc_in
.bInterfaceNumber
,
563 dev
->isoc_in
.bAlternateSetting
);
565 /* Start interrupt USB pipe */
566 tm6000_ir_int_start(dev
);
568 pipe
= usb_rcvisocpipe(dev
->udev
,
569 dev
->isoc_in
.endp
->desc
.bEndpointAddress
&
570 USB_ENDPOINT_NUMBER_MASK
);
572 size
= usb_maxpacket(dev
->udev
, pipe
, usb_pipeout(pipe
));
574 if (size
> dev
->isoc_in
.maxsize
)
575 size
= dev
->isoc_in
.maxsize
;
577 dev
->isoc_ctl
.max_pkt_size
= size
;
579 max_packets
= TM6000_MAX_ISO_PACKETS
;
580 sb_size
= max_packets
* size
;
581 dev
->urb_size
= sb_size
;
583 dev
->isoc_ctl
.num_bufs
= num_bufs
;
585 dev
->isoc_ctl
.urb
= kmalloc_array(num_bufs
, sizeof(void *),
587 if (!dev
->isoc_ctl
.urb
)
590 dev
->isoc_ctl
.transfer_buffer
= kmalloc_array(num_bufs
,
593 if (!dev
->isoc_ctl
.transfer_buffer
) {
594 kfree(dev
->isoc_ctl
.urb
);
598 dprintk(dev
, V4L2_DEBUG_QUEUE
, "Allocating %d x %d packets (%d bytes) of %d bytes each to handle %u size\n",
599 max_packets
, num_bufs
, sb_size
,
600 dev
->isoc_in
.maxsize
, size
);
603 if (tm6000_alloc_urb_buffers(dev
) < 0) {
604 tm6000_err("cannot allocate memory for urb buffers\n");
606 /* call free, as some buffers might have been allocated */
607 tm6000_free_urb_buffers(dev
);
608 kfree(dev
->isoc_ctl
.urb
);
609 kfree(dev
->isoc_ctl
.transfer_buffer
);
613 /* allocate urbs and transfer buffers */
614 for (i
= 0; i
< dev
->isoc_ctl
.num_bufs
; i
++) {
615 urb
= usb_alloc_urb(max_packets
, GFP_KERNEL
);
617 tm6000_uninit_isoc(dev
);
618 tm6000_free_urb_buffers(dev
);
621 dev
->isoc_ctl
.urb
[i
] = urb
;
623 urb
->transfer_dma
= dev
->urb_dma
[i
];
624 dev
->isoc_ctl
.transfer_buffer
[i
] = dev
->urb_buffer
[i
];
626 usb_fill_bulk_urb(urb
, dev
->udev
, pipe
,
627 dev
->isoc_ctl
.transfer_buffer
[i
], sb_size
,
628 tm6000_irq_callback
, dma_q
);
629 urb
->interval
= dev
->isoc_in
.endp
->desc
.bInterval
;
630 urb
->number_of_packets
= max_packets
;
631 urb
->transfer_flags
= URB_ISO_ASAP
| URB_NO_TRANSFER_DMA_MAP
;
633 for (j
= 0; j
< max_packets
; j
++) {
634 urb
->iso_frame_desc
[j
].offset
= size
* j
;
635 urb
->iso_frame_desc
[j
].length
= size
;
642 static int tm6000_start_thread(struct tm6000_core
*dev
)
644 struct tm6000_dmaqueue
*dma_q
= &dev
->vidq
;
648 dma_q
->ini_jiffies
= jiffies
;
650 init_waitqueue_head(&dma_q
->wq
);
652 /* submit urbs and enables IRQ */
653 for (i
= 0; i
< dev
->isoc_ctl
.num_bufs
; i
++) {
654 int rc
= usb_submit_urb(dev
->isoc_ctl
.urb
[i
], GFP_ATOMIC
);
656 tm6000_err("submit of urb %i failed (error=%i)\n", i
,
658 tm6000_uninit_isoc(dev
);
666 /* ------------------------------------------------------------------
667 * Videobuf operations
668 * ------------------------------------------------------------------
672 buffer_setup(struct videobuf_queue
*vq
, unsigned int *count
, unsigned int *size
)
674 struct tm6000_fh
*fh
= vq
->priv_data
;
676 *size
= fh
->fmt
->depth
* fh
->width
* fh
->height
>> 3;
678 *count
= TM6000_DEF_BUF
;
680 if (*count
< TM6000_MIN_BUF
)
681 *count
= TM6000_MIN_BUF
;
683 while (*size
* *count
> vid_limit
* 1024 * 1024)
689 static void free_buffer(struct videobuf_queue
*vq
, struct tm6000_buffer
*buf
)
691 struct tm6000_fh
*fh
= vq
->priv_data
;
692 struct tm6000_core
*dev
= fh
->dev
;
695 BUG_ON(in_interrupt());
697 /* We used to wait for the buffer to finish here, but this didn't work
698 because, as we were keeping the state as VIDEOBUF_QUEUED,
699 videobuf_queue_cancel marked it as finished for us.
700 (Also, it could wedge forever if the hardware was misconfigured.)
702 This should be safe; by the time we get here, the buffer isn't
703 queued anymore. If we ever start marking the buffers as
704 VIDEOBUF_ACTIVE, it won't be, though.
706 spin_lock_irqsave(&dev
->slock
, flags
);
707 if (dev
->isoc_ctl
.buf
== buf
)
708 dev
->isoc_ctl
.buf
= NULL
;
709 spin_unlock_irqrestore(&dev
->slock
, flags
);
711 videobuf_vmalloc_free(&buf
->vb
);
712 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
716 buffer_prepare(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
,
717 enum v4l2_field field
)
719 struct tm6000_fh
*fh
= vq
->priv_data
;
720 struct tm6000_buffer
*buf
= container_of(vb
, struct tm6000_buffer
, vb
);
721 struct tm6000_core
*dev
= fh
->dev
;
724 BUG_ON(NULL
== fh
->fmt
);
727 /* FIXME: It assumes depth=2 */
728 /* The only currently supported format is 16 bits/pixel */
729 buf
->vb
.size
= fh
->fmt
->depth
*fh
->width
*fh
->height
>> 3;
730 if (0 != buf
->vb
.baddr
&& buf
->vb
.bsize
< buf
->vb
.size
)
733 if (buf
->fmt
!= fh
->fmt
||
734 buf
->vb
.width
!= fh
->width
||
735 buf
->vb
.height
!= fh
->height
||
736 buf
->vb
.field
!= field
) {
738 buf
->vb
.width
= fh
->width
;
739 buf
->vb
.height
= fh
->height
;
740 buf
->vb
.field
= field
;
741 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
744 if (VIDEOBUF_NEEDS_INIT
== buf
->vb
.state
) {
745 rc
= videobuf_iolock(vq
, &buf
->vb
, NULL
);
750 if (!dev
->isoc_ctl
.num_bufs
) {
751 rc
= tm6000_prepare_isoc(dev
);
755 rc
= tm6000_start_thread(dev
);
761 buf
->vb
.state
= VIDEOBUF_PREPARED
;
765 free_buffer(vq
, buf
);
770 buffer_queue(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
772 struct tm6000_buffer
*buf
= container_of(vb
, struct tm6000_buffer
, vb
);
773 struct tm6000_fh
*fh
= vq
->priv_data
;
774 struct tm6000_core
*dev
= fh
->dev
;
775 struct tm6000_dmaqueue
*vidq
= &dev
->vidq
;
777 buf
->vb
.state
= VIDEOBUF_QUEUED
;
778 list_add_tail(&buf
->vb
.queue
, &vidq
->active
);
781 static void buffer_release(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
783 struct tm6000_buffer
*buf
= container_of(vb
, struct tm6000_buffer
, vb
);
785 free_buffer(vq
, buf
);
788 static const struct videobuf_queue_ops tm6000_video_qops
= {
789 .buf_setup
= buffer_setup
,
790 .buf_prepare
= buffer_prepare
,
791 .buf_queue
= buffer_queue
,
792 .buf_release
= buffer_release
,
795 /* ------------------------------------------------------------------
797 * ------------------------------------------------------------------
800 static bool is_res_read(struct tm6000_core
*dev
, struct tm6000_fh
*fh
)
802 /* Is the current fh handling it? if so, that's OK */
803 if (dev
->resources
== fh
&& dev
->is_res_read
)
809 static bool is_res_streaming(struct tm6000_core
*dev
, struct tm6000_fh
*fh
)
811 /* Is the current fh handling it? if so, that's OK */
812 if (dev
->resources
== fh
)
818 static bool res_get(struct tm6000_core
*dev
, struct tm6000_fh
*fh
,
821 /* Is the current fh handling it? if so, that's OK */
822 if (dev
->resources
== fh
&& dev
->is_res_read
== is_res_read
)
831 dev
->is_res_read
= is_res_read
;
832 dprintk(dev
, V4L2_DEBUG_RES_LOCK
, "res: get\n");
836 static void res_free(struct tm6000_core
*dev
, struct tm6000_fh
*fh
)
838 /* Is the current fh handling it? if so, that's OK */
839 if (dev
->resources
!= fh
)
842 dev
->resources
= NULL
;
843 dprintk(dev
, V4L2_DEBUG_RES_LOCK
, "res: put\n");
846 /* ------------------------------------------------------------------
847 * IOCTL vidioc handling
848 * ------------------------------------------------------------------
850 static int vidioc_querycap(struct file
*file
, void *priv
,
851 struct v4l2_capability
*cap
)
853 struct tm6000_core
*dev
= ((struct tm6000_fh
*)priv
)->dev
;
855 strscpy(cap
->driver
, "tm6000", sizeof(cap
->driver
));
856 strscpy(cap
->card
, "Trident TVMaster TM5600/6000/6010",
858 usb_make_path(dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
859 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_READWRITE
|
860 V4L2_CAP_DEVICE_CAPS
;
861 if (dev
->tuner_type
!= TUNER_ABSENT
)
862 cap
->capabilities
|= V4L2_CAP_TUNER
;
863 if (dev
->caps
.has_radio
)
864 cap
->capabilities
|= V4L2_CAP_RADIO
;
869 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
870 struct v4l2_fmtdesc
*f
)
872 if (f
->index
>= ARRAY_SIZE(format
))
875 f
->pixelformat
= format
[f
->index
].fourcc
;
879 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
880 struct v4l2_format
*f
)
882 struct tm6000_fh
*fh
= priv
;
884 f
->fmt
.pix
.width
= fh
->width
;
885 f
->fmt
.pix
.height
= fh
->height
;
886 f
->fmt
.pix
.field
= fh
->vb_vidq
.field
;
887 f
->fmt
.pix
.pixelformat
= fh
->fmt
->fourcc
;
888 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
889 f
->fmt
.pix
.bytesperline
=
890 (f
->fmt
.pix
.width
* fh
->fmt
->depth
) >> 3;
891 f
->fmt
.pix
.sizeimage
=
892 f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
897 static struct tm6000_fmt
*format_by_fourcc(unsigned int fourcc
)
901 for (i
= 0; i
< ARRAY_SIZE(format
); i
++)
902 if (format
[i
].fourcc
== fourcc
)
907 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
908 struct v4l2_format
*f
)
910 struct tm6000_core
*dev
= ((struct tm6000_fh
*)priv
)->dev
;
911 struct tm6000_fmt
*fmt
;
912 enum v4l2_field field
;
914 fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
916 dprintk(dev
, 2, "Fourcc format (0x%08x) invalid.\n",
917 f
->fmt
.pix
.pixelformat
);
921 field
= f
->fmt
.pix
.field
;
923 field
= V4L2_FIELD_INTERLACED
;
925 tm6000_get_std_res(dev
);
927 f
->fmt
.pix
.width
= dev
->width
;
928 f
->fmt
.pix
.height
= dev
->height
;
930 f
->fmt
.pix
.width
&= ~0x01;
932 f
->fmt
.pix
.field
= field
;
934 f
->fmt
.pix
.bytesperline
=
935 (f
->fmt
.pix
.width
* fmt
->depth
) >> 3;
936 f
->fmt
.pix
.sizeimage
=
937 f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
938 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
943 /*FIXME: This seems to be generic enough to be at videodev2 */
944 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
945 struct v4l2_format
*f
)
947 struct tm6000_fh
*fh
= priv
;
948 struct tm6000_core
*dev
= fh
->dev
;
949 int ret
= vidioc_try_fmt_vid_cap(file
, fh
, f
);
953 fh
->fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
954 fh
->width
= f
->fmt
.pix
.width
;
955 fh
->height
= f
->fmt
.pix
.height
;
956 fh
->vb_vidq
.field
= f
->fmt
.pix
.field
;
959 dev
->fourcc
= f
->fmt
.pix
.pixelformat
;
961 tm6000_set_fourcc_format(dev
);
966 static int vidioc_reqbufs(struct file
*file
, void *priv
,
967 struct v4l2_requestbuffers
*p
)
969 struct tm6000_fh
*fh
= priv
;
971 return videobuf_reqbufs(&fh
->vb_vidq
, p
);
974 static int vidioc_querybuf(struct file
*file
, void *priv
,
975 struct v4l2_buffer
*p
)
977 struct tm6000_fh
*fh
= priv
;
979 return videobuf_querybuf(&fh
->vb_vidq
, p
);
982 static int vidioc_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
984 struct tm6000_fh
*fh
= priv
;
986 return videobuf_qbuf(&fh
->vb_vidq
, p
);
989 static int vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
991 struct tm6000_fh
*fh
= priv
;
993 return videobuf_dqbuf(&fh
->vb_vidq
, p
,
994 file
->f_flags
& O_NONBLOCK
);
997 static int vidioc_streamon(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
999 struct tm6000_fh
*fh
= priv
;
1000 struct tm6000_core
*dev
= fh
->dev
;
1002 if (fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1007 if (!res_get(dev
, fh
, false))
1009 return videobuf_streamon(&fh
->vb_vidq
);
1012 static int vidioc_streamoff(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
1014 struct tm6000_fh
*fh
= priv
;
1015 struct tm6000_core
*dev
= fh
->dev
;
1017 if (fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1023 videobuf_streamoff(&fh
->vb_vidq
);
1029 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id norm
)
1032 struct tm6000_fh
*fh
= priv
;
1033 struct tm6000_core
*dev
= fh
->dev
;
1036 rc
= tm6000_init_analog_mode(dev
);
1038 fh
->width
= dev
->width
;
1039 fh
->height
= dev
->height
;
1044 v4l2_device_call_all(&dev
->v4l2_dev
, 0, video
, s_std
, dev
->norm
);
1049 static int vidioc_g_std(struct file
*file
, void *priv
, v4l2_std_id
*norm
)
1051 struct tm6000_fh
*fh
= priv
;
1052 struct tm6000_core
*dev
= fh
->dev
;
1058 static const char *iname
[] = {
1059 [TM6000_INPUT_TV
] = "Television",
1060 [TM6000_INPUT_COMPOSITE1
] = "Composite 1",
1061 [TM6000_INPUT_COMPOSITE2
] = "Composite 2",
1062 [TM6000_INPUT_SVIDEO
] = "S-Video",
1065 static int vidioc_enum_input(struct file
*file
, void *priv
,
1066 struct v4l2_input
*i
)
1068 struct tm6000_fh
*fh
= priv
;
1069 struct tm6000_core
*dev
= fh
->dev
;
1076 if (!dev
->vinput
[n
].type
)
1081 if (dev
->vinput
[n
].type
== TM6000_INPUT_TV
)
1082 i
->type
= V4L2_INPUT_TYPE_TUNER
;
1084 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
1086 strscpy(i
->name
, iname
[dev
->vinput
[n
].type
], sizeof(i
->name
));
1088 i
->std
= TM6000_STD
;
1093 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
1095 struct tm6000_fh
*fh
= priv
;
1096 struct tm6000_core
*dev
= fh
->dev
;
1103 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
1105 struct tm6000_fh
*fh
= priv
;
1106 struct tm6000_core
*dev
= fh
->dev
;
1111 if (!dev
->vinput
[i
].type
)
1116 rc
= vidioc_s_std(file
, priv
, dev
->norm
);
1121 /* --- controls ---------------------------------------------- */
1123 static int tm6000_s_ctrl(struct v4l2_ctrl
*ctrl
)
1125 struct tm6000_core
*dev
= container_of(ctrl
->handler
, struct tm6000_core
, ctrl_handler
);
1129 case V4L2_CID_CONTRAST
:
1130 tm6000_set_reg(dev
, TM6010_REQ07_R08_LUMA_CONTRAST_ADJ
, val
);
1132 case V4L2_CID_BRIGHTNESS
:
1133 tm6000_set_reg(dev
, TM6010_REQ07_R09_LUMA_BRIGHTNESS_ADJ
, val
);
1135 case V4L2_CID_SATURATION
:
1136 tm6000_set_reg(dev
, TM6010_REQ07_R0A_CHROMA_SATURATION_ADJ
, val
);
1139 tm6000_set_reg(dev
, TM6010_REQ07_R0B_CHROMA_HUE_PHASE_ADJ
, val
);
1145 static const struct v4l2_ctrl_ops tm6000_ctrl_ops
= {
1146 .s_ctrl
= tm6000_s_ctrl
,
1149 static int tm6000_radio_s_ctrl(struct v4l2_ctrl
*ctrl
)
1151 struct tm6000_core
*dev
= container_of(ctrl
->handler
,
1152 struct tm6000_core
, radio_ctrl_handler
);
1156 case V4L2_CID_AUDIO_MUTE
:
1157 dev
->ctl_mute
= val
;
1158 tm6000_tvaudio_set_mute(dev
, val
);
1160 case V4L2_CID_AUDIO_VOLUME
:
1161 dev
->ctl_volume
= val
;
1162 tm6000_set_volume(dev
, val
);
1168 static const struct v4l2_ctrl_ops tm6000_radio_ctrl_ops
= {
1169 .s_ctrl
= tm6000_radio_s_ctrl
,
1172 static int vidioc_g_tuner(struct file
*file
, void *priv
,
1173 struct v4l2_tuner
*t
)
1175 struct tm6000_fh
*fh
= priv
;
1176 struct tm6000_core
*dev
= fh
->dev
;
1178 if (UNSET
== dev
->tuner_type
)
1183 strscpy(t
->name
, "Television", sizeof(t
->name
));
1184 t
->type
= V4L2_TUNER_ANALOG_TV
;
1185 t
->capability
= V4L2_TUNER_CAP_NORM
| V4L2_TUNER_CAP_STEREO
;
1186 t
->rangehigh
= 0xffffffffUL
;
1187 t
->rxsubchans
= V4L2_TUNER_SUB_STEREO
;
1189 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, g_tuner
, t
);
1191 t
->audmode
= dev
->amode
;
1196 static int vidioc_s_tuner(struct file
*file
, void *priv
,
1197 const struct v4l2_tuner
*t
)
1199 struct tm6000_fh
*fh
= priv
;
1200 struct tm6000_core
*dev
= fh
->dev
;
1202 if (UNSET
== dev
->tuner_type
)
1207 if (t
->audmode
> V4L2_TUNER_MODE_STEREO
)
1208 dev
->amode
= V4L2_TUNER_MODE_STEREO
;
1210 dev
->amode
= t
->audmode
;
1211 dprintk(dev
, 3, "audio mode: %x\n", t
->audmode
);
1213 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_tuner
, t
);
1218 static int vidioc_g_frequency(struct file
*file
, void *priv
,
1219 struct v4l2_frequency
*f
)
1221 struct tm6000_fh
*fh
= priv
;
1222 struct tm6000_core
*dev
= fh
->dev
;
1224 if (UNSET
== dev
->tuner_type
)
1229 f
->frequency
= dev
->freq
;
1231 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, g_frequency
, f
);
1236 static int vidioc_s_frequency(struct file
*file
, void *priv
,
1237 const struct v4l2_frequency
*f
)
1239 struct tm6000_fh
*fh
= priv
;
1240 struct tm6000_core
*dev
= fh
->dev
;
1242 if (UNSET
== dev
->tuner_type
)
1247 dev
->freq
= f
->frequency
;
1248 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_frequency
, f
);
1253 static int radio_g_tuner(struct file
*file
, void *priv
,
1254 struct v4l2_tuner
*t
)
1256 struct tm6000_fh
*fh
= file
->private_data
;
1257 struct tm6000_core
*dev
= fh
->dev
;
1262 memset(t
, 0, sizeof(*t
));
1263 strscpy(t
->name
, "Radio", sizeof(t
->name
));
1264 t
->type
= V4L2_TUNER_RADIO
;
1265 t
->capability
= V4L2_TUNER_CAP_LOW
| V4L2_TUNER_CAP_STEREO
;
1266 t
->rxsubchans
= V4L2_TUNER_SUB_STEREO
;
1267 t
->audmode
= V4L2_TUNER_MODE_STEREO
;
1269 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, g_tuner
, t
);
1274 static int radio_s_tuner(struct file
*file
, void *priv
,
1275 const struct v4l2_tuner
*t
)
1277 struct tm6000_fh
*fh
= file
->private_data
;
1278 struct tm6000_core
*dev
= fh
->dev
;
1282 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_tuner
, t
);
1286 /* ------------------------------------------------------------------
1287 File operations for the device
1288 ------------------------------------------------------------------*/
1290 static int __tm6000_open(struct file
*file
)
1292 struct video_device
*vdev
= video_devdata(file
);
1293 struct tm6000_core
*dev
= video_drvdata(file
);
1294 struct tm6000_fh
*fh
;
1295 enum v4l2_buf_type type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1299 dprintk(dev
, V4L2_DEBUG_OPEN
, "tm6000: open called (dev=%s)\n",
1300 video_device_node_name(vdev
));
1302 switch (vdev
->vfl_type
) {
1303 case VFL_TYPE_GRABBER
:
1304 type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1307 type
= V4L2_BUF_TYPE_VBI_CAPTURE
;
1309 case VFL_TYPE_RADIO
:
1316 /* If more than one user, mutex should be added */
1319 dprintk(dev
, V4L2_DEBUG_OPEN
, "open dev=%s type=%s users=%d\n",
1320 video_device_node_name(vdev
), v4l2_type_names
[type
],
1323 /* allocate + initialize per filehandle data */
1324 fh
= kzalloc(sizeof(*fh
), GFP_KERNEL
);
1330 v4l2_fh_init(&fh
->fh
, vdev
);
1331 file
->private_data
= fh
;
1336 dev
->fourcc
= format
[0].fourcc
;
1338 fh
->fmt
= format_by_fourcc(dev
->fourcc
);
1340 tm6000_get_std_res(dev
);
1342 fh
->width
= dev
->width
;
1343 fh
->height
= dev
->height
;
1345 dprintk(dev
, V4L2_DEBUG_OPEN
, "Open: fh=%p, dev=%p, dev->vidq=%p\n",
1346 fh
, dev
, &dev
->vidq
);
1347 dprintk(dev
, V4L2_DEBUG_OPEN
, "Open: list_empty queued=%d\n",
1348 list_empty(&dev
->vidq
.queued
));
1349 dprintk(dev
, V4L2_DEBUG_OPEN
, "Open: list_empty active=%d\n",
1350 list_empty(&dev
->vidq
.active
));
1352 /* initialize hardware on analog mode */
1353 rc
= tm6000_init_analog_mode(dev
);
1355 v4l2_fh_exit(&fh
->fh
);
1360 dev
->mode
= TM6000_MODE_ANALOG
;
1363 videobuf_queue_vmalloc_init(&fh
->vb_vidq
, &tm6000_video_qops
,
1366 V4L2_FIELD_INTERLACED
,
1367 sizeof(struct tm6000_buffer
), fh
, &dev
->lock
);
1369 dprintk(dev
, V4L2_DEBUG_OPEN
, "video_open: setting radio device\n");
1370 tm6000_set_audio_rinput(dev
);
1371 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_radio
);
1372 tm6000_prepare_isoc(dev
);
1373 tm6000_start_thread(dev
);
1375 v4l2_fh_add(&fh
->fh
);
1380 static int tm6000_open(struct file
*file
)
1382 struct video_device
*vdev
= video_devdata(file
);
1385 mutex_lock(vdev
->lock
);
1386 res
= __tm6000_open(file
);
1387 mutex_unlock(vdev
->lock
);
1392 tm6000_read(struct file
*file
, char __user
*data
, size_t count
, loff_t
*pos
)
1394 struct tm6000_fh
*fh
= file
->private_data
;
1395 struct tm6000_core
*dev
= fh
->dev
;
1397 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
1400 if (!res_get(fh
->dev
, fh
, true))
1403 if (mutex_lock_interruptible(&dev
->lock
))
1404 return -ERESTARTSYS
;
1405 res
= videobuf_read_stream(&fh
->vb_vidq
, data
, count
, pos
, 0,
1406 file
->f_flags
& O_NONBLOCK
);
1407 mutex_unlock(&dev
->lock
);
1414 __tm6000_poll(struct file
*file
, struct poll_table_struct
*wait
)
1416 __poll_t req_events
= poll_requested_events(wait
);
1417 struct tm6000_fh
*fh
= file
->private_data
;
1418 struct tm6000_buffer
*buf
;
1421 if (v4l2_event_pending(&fh
->fh
))
1423 else if (req_events
& EPOLLPRI
)
1424 poll_wait(file
, &fh
->fh
.wait
, wait
);
1425 if (V4L2_BUF_TYPE_VIDEO_CAPTURE
!= fh
->type
)
1426 return res
| EPOLLERR
;
1428 if (!!is_res_streaming(fh
->dev
, fh
))
1429 return res
| EPOLLERR
;
1431 if (!is_res_read(fh
->dev
, fh
)) {
1432 /* streaming capture */
1433 if (list_empty(&fh
->vb_vidq
.stream
))
1434 return res
| EPOLLERR
;
1435 buf
= list_entry(fh
->vb_vidq
.stream
.next
, struct tm6000_buffer
, vb
.stream
);
1436 poll_wait(file
, &buf
->vb
.done
, wait
);
1437 if (buf
->vb
.state
== VIDEOBUF_DONE
||
1438 buf
->vb
.state
== VIDEOBUF_ERROR
)
1439 return res
| EPOLLIN
| EPOLLRDNORM
;
1440 } else if (req_events
& (EPOLLIN
| EPOLLRDNORM
)) {
1441 /* read() capture */
1442 return res
| videobuf_poll_stream(file
, &fh
->vb_vidq
, wait
);
1447 static __poll_t
tm6000_poll(struct file
*file
, struct poll_table_struct
*wait
)
1449 struct tm6000_fh
*fh
= file
->private_data
;
1450 struct tm6000_core
*dev
= fh
->dev
;
1453 mutex_lock(&dev
->lock
);
1454 res
= __tm6000_poll(file
, wait
);
1455 mutex_unlock(&dev
->lock
);
1459 static int tm6000_release(struct file
*file
)
1461 struct tm6000_fh
*fh
= file
->private_data
;
1462 struct tm6000_core
*dev
= fh
->dev
;
1463 struct video_device
*vdev
= video_devdata(file
);
1465 dprintk(dev
, V4L2_DEBUG_OPEN
, "tm6000: close called (dev=%s, users=%d)\n",
1466 video_device_node_name(vdev
), dev
->users
);
1468 mutex_lock(&dev
->lock
);
1474 tm6000_uninit_isoc(dev
);
1476 /* Stop interrupt USB pipe */
1477 tm6000_ir_int_stop(dev
);
1479 usb_reset_configuration(dev
->udev
);
1481 if (dev
->int_in
.endp
)
1482 usb_set_interface(dev
->udev
,
1483 dev
->isoc_in
.bInterfaceNumber
, 2);
1485 usb_set_interface(dev
->udev
,
1486 dev
->isoc_in
.bInterfaceNumber
, 0);
1488 /* Start interrupt USB pipe */
1489 tm6000_ir_int_start(dev
);
1492 videobuf_mmap_free(&fh
->vb_vidq
);
1494 v4l2_fh_del(&fh
->fh
);
1495 v4l2_fh_exit(&fh
->fh
);
1497 mutex_unlock(&dev
->lock
);
1502 static int tm6000_mmap(struct file
*file
, struct vm_area_struct
* vma
)
1504 struct tm6000_fh
*fh
= file
->private_data
;
1505 struct tm6000_core
*dev
= fh
->dev
;
1508 if (mutex_lock_interruptible(&dev
->lock
))
1509 return -ERESTARTSYS
;
1510 res
= videobuf_mmap_mapper(&fh
->vb_vidq
, vma
);
1511 mutex_unlock(&dev
->lock
);
1515 static const struct v4l2_file_operations tm6000_fops
= {
1516 .owner
= THIS_MODULE
,
1517 .open
= tm6000_open
,
1518 .release
= tm6000_release
,
1519 .unlocked_ioctl
= video_ioctl2
, /* V4L2 ioctl handler */
1520 .read
= tm6000_read
,
1521 .poll
= tm6000_poll
,
1522 .mmap
= tm6000_mmap
,
1525 static const struct v4l2_ioctl_ops video_ioctl_ops
= {
1526 .vidioc_querycap
= vidioc_querycap
,
1527 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
1528 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1529 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
1530 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
1531 .vidioc_s_std
= vidioc_s_std
,
1532 .vidioc_g_std
= vidioc_g_std
,
1533 .vidioc_enum_input
= vidioc_enum_input
,
1534 .vidioc_g_input
= vidioc_g_input
,
1535 .vidioc_s_input
= vidioc_s_input
,
1536 .vidioc_g_tuner
= vidioc_g_tuner
,
1537 .vidioc_s_tuner
= vidioc_s_tuner
,
1538 .vidioc_g_frequency
= vidioc_g_frequency
,
1539 .vidioc_s_frequency
= vidioc_s_frequency
,
1540 .vidioc_streamon
= vidioc_streamon
,
1541 .vidioc_streamoff
= vidioc_streamoff
,
1542 .vidioc_reqbufs
= vidioc_reqbufs
,
1543 .vidioc_querybuf
= vidioc_querybuf
,
1544 .vidioc_qbuf
= vidioc_qbuf
,
1545 .vidioc_dqbuf
= vidioc_dqbuf
,
1546 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1547 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1550 static struct video_device tm6000_template
= {
1552 .fops
= &tm6000_fops
,
1553 .ioctl_ops
= &video_ioctl_ops
,
1554 .release
= video_device_release_empty
,
1555 .tvnorms
= TM6000_STD
,
1558 static const struct v4l2_file_operations radio_fops
= {
1559 .owner
= THIS_MODULE
,
1560 .open
= tm6000_open
,
1561 .poll
= v4l2_ctrl_poll
,
1562 .release
= tm6000_release
,
1563 .unlocked_ioctl
= video_ioctl2
,
1566 static const struct v4l2_ioctl_ops radio_ioctl_ops
= {
1567 .vidioc_querycap
= vidioc_querycap
,
1568 .vidioc_g_tuner
= radio_g_tuner
,
1569 .vidioc_s_tuner
= radio_s_tuner
,
1570 .vidioc_g_frequency
= vidioc_g_frequency
,
1571 .vidioc_s_frequency
= vidioc_s_frequency
,
1572 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1573 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1576 static struct video_device tm6000_radio_template
= {
1578 .fops
= &radio_fops
,
1579 .ioctl_ops
= &radio_ioctl_ops
,
1582 /* -----------------------------------------------------------------
1583 * Initialization and module stuff
1584 * ------------------------------------------------------------------
1587 static void vdev_init(struct tm6000_core
*dev
,
1588 struct video_device
*vfd
,
1589 const struct video_device
1590 *template, const char *type_name
)
1593 vfd
->v4l2_dev
= &dev
->v4l2_dev
;
1594 vfd
->release
= video_device_release_empty
;
1595 vfd
->lock
= &dev
->lock
;
1597 snprintf(vfd
->name
, sizeof(vfd
->name
), "%s %s", dev
->name
, type_name
);
1599 video_set_drvdata(vfd
, dev
);
1602 int tm6000_v4l2_register(struct tm6000_core
*dev
)
1606 v4l2_ctrl_handler_init(&dev
->ctrl_handler
, 6);
1607 v4l2_ctrl_handler_init(&dev
->radio_ctrl_handler
, 2);
1608 v4l2_ctrl_new_std(&dev
->radio_ctrl_handler
, &tm6000_radio_ctrl_ops
,
1609 V4L2_CID_AUDIO_MUTE
, 0, 1, 1, 0);
1610 v4l2_ctrl_new_std(&dev
->radio_ctrl_handler
, &tm6000_radio_ctrl_ops
,
1611 V4L2_CID_AUDIO_VOLUME
, -15, 15, 1, 0);
1612 v4l2_ctrl_new_std(&dev
->ctrl_handler
, &tm6000_ctrl_ops
,
1613 V4L2_CID_BRIGHTNESS
, 0, 255, 1, 54);
1614 v4l2_ctrl_new_std(&dev
->ctrl_handler
, &tm6000_ctrl_ops
,
1615 V4L2_CID_CONTRAST
, 0, 255, 1, 119);
1616 v4l2_ctrl_new_std(&dev
->ctrl_handler
, &tm6000_ctrl_ops
,
1617 V4L2_CID_SATURATION
, 0, 255, 1, 112);
1618 v4l2_ctrl_new_std(&dev
->ctrl_handler
, &tm6000_ctrl_ops
,
1619 V4L2_CID_HUE
, -128, 127, 1, 0);
1620 v4l2_ctrl_add_handler(&dev
->ctrl_handler
,
1621 &dev
->radio_ctrl_handler
, NULL
, false);
1623 if (dev
->radio_ctrl_handler
.error
)
1624 ret
= dev
->radio_ctrl_handler
.error
;
1625 if (!ret
&& dev
->ctrl_handler
.error
)
1626 ret
= dev
->ctrl_handler
.error
;
1630 vdev_init(dev
, &dev
->vfd
, &tm6000_template
, "video");
1632 dev
->vfd
.ctrl_handler
= &dev
->ctrl_handler
;
1633 dev
->vfd
.device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
|
1635 if (dev
->tuner_type
!= TUNER_ABSENT
)
1636 dev
->vfd
.device_caps
|= V4L2_CAP_TUNER
;
1638 /* init video dma queues */
1639 INIT_LIST_HEAD(&dev
->vidq
.active
);
1640 INIT_LIST_HEAD(&dev
->vidq
.queued
);
1642 ret
= video_register_device(&dev
->vfd
, VFL_TYPE_GRABBER
, video_nr
);
1645 printk(KERN_INFO
"%s: can't register video device\n",
1650 printk(KERN_INFO
"%s: registered device %s\n",
1651 dev
->name
, video_device_node_name(&dev
->vfd
));
1653 if (dev
->caps
.has_radio
) {
1654 vdev_init(dev
, &dev
->radio_dev
, &tm6000_radio_template
,
1656 dev
->radio_dev
.ctrl_handler
= &dev
->radio_ctrl_handler
;
1657 dev
->radio_dev
.device_caps
= V4L2_CAP_RADIO
| V4L2_CAP_TUNER
;
1658 ret
= video_register_device(&dev
->radio_dev
, VFL_TYPE_RADIO
,
1661 printk(KERN_INFO
"%s: can't register radio device\n",
1666 printk(KERN_INFO
"%s: registered device %s\n",
1667 dev
->name
, video_device_node_name(&dev
->radio_dev
));
1670 printk(KERN_INFO
"Trident TVMaster TM5600/TM6000/TM6010 USB2 board (Load status: %d)\n", ret
);
1674 video_unregister_device(&dev
->vfd
);
1676 v4l2_ctrl_handler_free(&dev
->ctrl_handler
);
1677 v4l2_ctrl_handler_free(&dev
->radio_ctrl_handler
);
1681 int tm6000_v4l2_unregister(struct tm6000_core
*dev
)
1683 video_unregister_device(&dev
->vfd
);
1685 /* if URB buffers are still allocated free them now */
1686 tm6000_free_urb_buffers(dev
);
1688 video_unregister_device(&dev
->radio_dev
);
1692 int tm6000_v4l2_exit(void)
1697 module_param(video_nr
, int, 0);
1698 MODULE_PARM_DESC(video_nr
, "Allow changing video device number");
1700 module_param_named(debug
, tm6000_debug
, int, 0444);
1701 MODULE_PARM_DESC(debug
, "activates debug info");
1703 module_param(vid_limit
, int, 0644);
1704 MODULE_PARM_DESC(vid_limit
, "capture memory limit in megabytes");
1706 module_param(keep_urb
, bool, 0);
1707 MODULE_PARM_DESC(keep_urb
, "Keep urb buffers allocated even when the device is closed by the user");