2 * Hauppauge HD PVR USB driver - video 4 linux 2 interface
4 * Copyright (C) 2008 Janne Grunau (j@jannau.net)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.
12 #include <linux/kernel.h>
13 #include <linux/kconfig.h>
14 #include <linux/errno.h>
15 #include <linux/init.h>
16 #include <linux/slab.h>
17 #include <linux/module.h>
18 #include <linux/uaccess.h>
19 #include <linux/usb.h>
20 #include <linux/mutex.h>
21 #include <linux/workqueue.h>
23 #include <linux/videodev2.h>
24 #include <linux/v4l2-dv-timings.h>
25 #include <media/v4l2-dev.h>
26 #include <media/v4l2-common.h>
27 #include <media/v4l2-ioctl.h>
28 #include <media/v4l2-event.h>
31 #define BULK_URB_TIMEOUT 90 /* 0.09 seconds */
33 #define print_buffer_status() { \
34 v4l2_dbg(MSG_BUFFER, hdpvr_debug, &dev->v4l2_dev, \
35 "%s:%d buffer stat: %d free, %d proc\n", \
37 list_size(&dev->free_buff_list), \
38 list_size(&dev->rec_buff_list)); }
40 static const struct v4l2_dv_timings hdpvr_dv_timings
[] = {
41 V4L2_DV_BT_CEA_720X480I59_94
,
42 V4L2_DV_BT_CEA_720X576I50
,
43 V4L2_DV_BT_CEA_720X480P59_94
,
44 V4L2_DV_BT_CEA_720X576P50
,
45 V4L2_DV_BT_CEA_1280X720P50
,
46 V4L2_DV_BT_CEA_1280X720P60
,
47 V4L2_DV_BT_CEA_1920X1080I50
,
48 V4L2_DV_BT_CEA_1920X1080I60
,
51 /* Use 480i59 as the default timings */
52 #define HDPVR_DEF_DV_TIMINGS_IDX (0)
59 static uint
list_size(struct list_head
*list
)
61 struct list_head
*tmp
;
64 list_for_each(tmp
, list
) {
71 /*=========================================================================*/
73 static void hdpvr_read_bulk_callback(struct urb
*urb
)
75 struct hdpvr_buffer
*buf
= (struct hdpvr_buffer
*)urb
->context
;
76 struct hdpvr_device
*dev
= buf
->dev
;
78 /* marking buffer as received and wake waiting */
79 buf
->status
= BUFSTAT_READY
;
80 wake_up_interruptible(&dev
->wait_data
);
83 /*=========================================================================*/
86 /* function expects dev->io_mutex to be hold by caller */
87 int hdpvr_cancel_queue(struct hdpvr_device
*dev
)
89 struct hdpvr_buffer
*buf
;
91 list_for_each_entry(buf
, &dev
->rec_buff_list
, buff_list
) {
92 usb_kill_urb(buf
->urb
);
93 buf
->status
= BUFSTAT_AVAILABLE
;
96 list_splice_init(&dev
->rec_buff_list
, dev
->free_buff_list
.prev
);
101 static int hdpvr_free_queue(struct list_head
*q
)
103 struct list_head
*tmp
;
105 struct hdpvr_buffer
*buf
;
108 for (p
= q
->next
; p
!= q
;) {
109 buf
= list_entry(p
, struct hdpvr_buffer
, buff_list
);
112 usb_free_coherent(urb
->dev
, urb
->transfer_buffer_length
,
113 urb
->transfer_buffer
, urb
->transfer_dma
);
124 /* function expects dev->io_mutex to be hold by caller */
125 int hdpvr_free_buffers(struct hdpvr_device
*dev
)
127 hdpvr_cancel_queue(dev
);
129 hdpvr_free_queue(&dev
->free_buff_list
);
130 hdpvr_free_queue(&dev
->rec_buff_list
);
135 /* function expects dev->io_mutex to be hold by caller */
136 int hdpvr_alloc_buffers(struct hdpvr_device
*dev
, uint count
)
139 int retval
= -ENOMEM
;
141 struct hdpvr_buffer
*buf
;
144 v4l2_dbg(MSG_INFO
, hdpvr_debug
, &dev
->v4l2_dev
,
145 "allocating %u buffers\n", count
);
147 for (i
= 0; i
< count
; i
++) {
149 buf
= kzalloc(sizeof(struct hdpvr_buffer
), GFP_KERNEL
);
151 v4l2_err(&dev
->v4l2_dev
, "cannot allocate buffer\n");
156 urb
= usb_alloc_urb(0, GFP_KERNEL
);
158 v4l2_err(&dev
->v4l2_dev
, "cannot allocate urb\n");
163 mem
= usb_alloc_coherent(dev
->udev
, dev
->bulk_in_size
, GFP_KERNEL
,
166 v4l2_err(&dev
->v4l2_dev
,
167 "cannot allocate usb transfer buffer\n");
168 goto exit_urb_buffer
;
171 usb_fill_bulk_urb(buf
->urb
, dev
->udev
,
172 usb_rcvbulkpipe(dev
->udev
,
173 dev
->bulk_in_endpointAddr
),
174 mem
, dev
->bulk_in_size
,
175 hdpvr_read_bulk_callback
, buf
);
177 buf
->urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
178 buf
->status
= BUFSTAT_AVAILABLE
;
179 list_add_tail(&buf
->buff_list
, &dev
->free_buff_list
);
187 hdpvr_free_buffers(dev
);
191 static int hdpvr_submit_buffers(struct hdpvr_device
*dev
)
193 struct hdpvr_buffer
*buf
;
195 int ret
= 0, err_count
= 0;
197 mutex_lock(&dev
->io_mutex
);
199 while (dev
->status
== STATUS_STREAMING
&&
200 !list_empty(&dev
->free_buff_list
)) {
202 buf
= list_entry(dev
->free_buff_list
.next
, struct hdpvr_buffer
,
204 if (buf
->status
!= BUFSTAT_AVAILABLE
) {
205 v4l2_err(&dev
->v4l2_dev
,
206 "buffer not marked as available\n");
213 urb
->actual_length
= 0;
214 ret
= usb_submit_urb(urb
, GFP_KERNEL
);
216 v4l2_err(&dev
->v4l2_dev
,
217 "usb_submit_urb in %s returned %d\n",
223 buf
->status
= BUFSTAT_INPROGRESS
;
224 list_move_tail(&buf
->buff_list
, &dev
->rec_buff_list
);
227 print_buffer_status();
228 mutex_unlock(&dev
->io_mutex
);
232 static struct hdpvr_buffer
*hdpvr_get_next_buffer(struct hdpvr_device
*dev
)
234 struct hdpvr_buffer
*buf
;
236 mutex_lock(&dev
->io_mutex
);
238 if (list_empty(&dev
->rec_buff_list
)) {
239 mutex_unlock(&dev
->io_mutex
);
243 buf
= list_entry(dev
->rec_buff_list
.next
, struct hdpvr_buffer
,
245 mutex_unlock(&dev
->io_mutex
);
250 static void hdpvr_transmit_buffers(struct work_struct
*work
)
252 struct hdpvr_device
*dev
= container_of(work
, struct hdpvr_device
,
255 while (dev
->status
== STATUS_STREAMING
) {
257 if (hdpvr_submit_buffers(dev
)) {
258 v4l2_err(&dev
->v4l2_dev
, "couldn't submit buffers\n");
261 if (wait_event_interruptible(dev
->wait_buffer
,
262 !list_empty(&dev
->free_buff_list
) ||
263 dev
->status
!= STATUS_STREAMING
))
267 v4l2_dbg(MSG_INFO
, hdpvr_debug
, &dev
->v4l2_dev
,
268 "transmit worker exited\n");
271 v4l2_dbg(MSG_INFO
, hdpvr_debug
, &dev
->v4l2_dev
,
272 "transmit buffers errored\n");
273 dev
->status
= STATUS_ERROR
;
276 /* function expects dev->io_mutex to be hold by caller */
277 static int hdpvr_start_streaming(struct hdpvr_device
*dev
)
280 struct hdpvr_video_info vidinf
;
282 if (dev
->status
== STATUS_STREAMING
)
284 if (dev
->status
!= STATUS_IDLE
)
287 ret
= get_video_info(dev
, &vidinf
);
293 v4l2_dbg(MSG_INFO
, hdpvr_debug
, &dev
->v4l2_dev
,
294 "no video signal at input %d\n", dev
->options
.video_input
);
298 v4l2_dbg(MSG_BUFFER
, hdpvr_debug
, &dev
->v4l2_dev
,
299 "video signal: %dx%d@%dhz\n", vidinf
.width
,
300 vidinf
.height
, vidinf
.fps
);
302 /* start streaming 2 request */
303 ret
= usb_control_msg(dev
->udev
,
304 usb_sndctrlpipe(dev
->udev
, 0),
305 0xb8, 0x38, 0x1, 0, NULL
, 0, 8000);
306 v4l2_dbg(MSG_BUFFER
, hdpvr_debug
, &dev
->v4l2_dev
,
307 "encoder start control request returned %d\n", ret
);
311 ret
= hdpvr_config_call(dev
, CTRL_START_STREAMING_VALUE
, 0x00);
315 dev
->status
= STATUS_STREAMING
;
317 INIT_WORK(&dev
->worker
, hdpvr_transmit_buffers
);
318 queue_work(dev
->workqueue
, &dev
->worker
);
320 v4l2_dbg(MSG_BUFFER
, hdpvr_debug
, &dev
->v4l2_dev
,
321 "streaming started\n");
327 /* function expects dev->io_mutex to be hold by caller */
328 static int hdpvr_stop_streaming(struct hdpvr_device
*dev
)
334 if (dev
->status
== STATUS_IDLE
)
336 else if (dev
->status
!= STATUS_STREAMING
)
339 buf
= kmalloc(dev
->bulk_in_size
, GFP_KERNEL
);
341 v4l2_err(&dev
->v4l2_dev
, "failed to allocate temporary buffer "
342 "for emptying the internal device buffer. "
343 "Next capture start will be slow\n");
345 dev
->status
= STATUS_SHUTTING_DOWN
;
346 hdpvr_config_call(dev
, CTRL_STOP_STREAMING_VALUE
, 0x00);
347 mutex_unlock(&dev
->io_mutex
);
349 wake_up_interruptible(&dev
->wait_buffer
);
352 flush_workqueue(dev
->workqueue
);
354 mutex_lock(&dev
->io_mutex
);
355 /* kill the still outstanding urbs */
356 hdpvr_cancel_queue(dev
);
358 /* emptying the device buffer beforeshutting it down */
359 while (buf
&& ++c
< 500 &&
360 !usb_bulk_msg(dev
->udev
,
361 usb_rcvbulkpipe(dev
->udev
,
362 dev
->bulk_in_endpointAddr
),
363 buf
, dev
->bulk_in_size
, &actual_length
,
365 v4l2_dbg(MSG_BUFFER
, hdpvr_debug
, &dev
->v4l2_dev
,
366 "%2d: got %d bytes\n", c
, actual_length
);
369 v4l2_dbg(MSG_BUFFER
, hdpvr_debug
, &dev
->v4l2_dev
,
370 "used %d urbs to empty device buffers\n", c
-1);
373 dev
->status
= STATUS_IDLE
;
379 /*=======================================================================*/
381 * video 4 linux 2 file operations
384 static int hdpvr_open(struct file
*file
)
386 struct hdpvr_fh
*fh
= kzalloc(sizeof(*fh
), GFP_KERNEL
);
390 fh
->legacy_mode
= true;
391 v4l2_fh_init(&fh
->fh
, video_devdata(file
));
392 v4l2_fh_add(&fh
->fh
);
393 file
->private_data
= fh
;
397 static int hdpvr_release(struct file
*file
)
399 struct hdpvr_device
*dev
= video_drvdata(file
);
401 mutex_lock(&dev
->io_mutex
);
402 if (file
->private_data
== dev
->owner
) {
403 hdpvr_stop_streaming(dev
);
406 mutex_unlock(&dev
->io_mutex
);
408 return v4l2_fh_release(file
);
413 * will allocate buffers when called for the first time
415 static ssize_t
hdpvr_read(struct file
*file
, char __user
*buffer
, size_t count
,
418 struct hdpvr_device
*dev
= video_drvdata(file
);
419 struct hdpvr_buffer
*buf
= NULL
;
421 unsigned int ret
= 0;
427 mutex_lock(&dev
->io_mutex
);
428 if (dev
->status
== STATUS_IDLE
) {
429 if (hdpvr_start_streaming(dev
)) {
430 v4l2_dbg(MSG_INFO
, hdpvr_debug
, &dev
->v4l2_dev
,
431 "start_streaming failed\n");
434 dev
->status
= STATUS_IDLE
;
435 mutex_unlock(&dev
->io_mutex
);
438 dev
->owner
= file
->private_data
;
439 print_buffer_status();
441 mutex_unlock(&dev
->io_mutex
);
443 /* wait for the first buffer */
444 if (!(file
->f_flags
& O_NONBLOCK
)) {
445 if (wait_event_interruptible(dev
->wait_data
,
446 hdpvr_get_next_buffer(dev
)))
450 buf
= hdpvr_get_next_buffer(dev
);
452 while (count
> 0 && buf
) {
454 if (buf
->status
!= BUFSTAT_READY
&&
455 dev
->status
!= STATUS_DISCONNECTED
) {
456 /* return nonblocking */
457 if (file
->f_flags
& O_NONBLOCK
) {
463 if (wait_event_interruptible(dev
->wait_data
,
464 buf
->status
== BUFSTAT_READY
)) {
470 if (buf
->status
!= BUFSTAT_READY
)
473 /* set remaining bytes to copy */
475 rem
= urb
->actual_length
- buf
->pos
;
476 cnt
= rem
> count
? count
: rem
;
478 if (copy_to_user(buffer
, urb
->transfer_buffer
+ buf
->pos
,
480 v4l2_err(&dev
->v4l2_dev
, "read: copy_to_user failed\n");
491 /* finished, take next buffer */
492 if (buf
->pos
== urb
->actual_length
) {
493 mutex_lock(&dev
->io_mutex
);
495 buf
->status
= BUFSTAT_AVAILABLE
;
497 list_move_tail(&buf
->buff_list
, &dev
->free_buff_list
);
499 print_buffer_status();
501 mutex_unlock(&dev
->io_mutex
);
503 wake_up_interruptible(&dev
->wait_buffer
);
505 buf
= hdpvr_get_next_buffer(dev
);
514 static unsigned int hdpvr_poll(struct file
*filp
, poll_table
*wait
)
516 unsigned long req_events
= poll_requested_events(wait
);
517 struct hdpvr_buffer
*buf
= NULL
;
518 struct hdpvr_device
*dev
= video_drvdata(filp
);
519 unsigned int mask
= v4l2_ctrl_poll(filp
, wait
);
521 if (!(req_events
& (POLLIN
| POLLRDNORM
)))
524 mutex_lock(&dev
->io_mutex
);
526 if (dev
->status
== STATUS_IDLE
) {
527 if (hdpvr_start_streaming(dev
)) {
528 v4l2_dbg(MSG_BUFFER
, hdpvr_debug
, &dev
->v4l2_dev
,
529 "start_streaming failed\n");
530 dev
->status
= STATUS_IDLE
;
532 dev
->owner
= filp
->private_data
;
535 print_buffer_status();
537 mutex_unlock(&dev
->io_mutex
);
539 buf
= hdpvr_get_next_buffer(dev
);
540 /* only wait if no data is available */
541 if (!buf
|| buf
->status
!= BUFSTAT_READY
) {
542 poll_wait(filp
, &dev
->wait_data
, wait
);
543 buf
= hdpvr_get_next_buffer(dev
);
545 if (buf
&& buf
->status
== BUFSTAT_READY
)
546 mask
|= POLLIN
| POLLRDNORM
;
552 static const struct v4l2_file_operations hdpvr_fops
= {
553 .owner
= THIS_MODULE
,
555 .release
= hdpvr_release
,
558 .unlocked_ioctl
= video_ioctl2
,
561 /*=======================================================================*/
563 * V4L2 ioctl handling
566 static int vidioc_querycap(struct file
*file
, void *priv
,
567 struct v4l2_capability
*cap
)
569 struct hdpvr_device
*dev
= video_drvdata(file
);
571 strcpy(cap
->driver
, "hdpvr");
572 strcpy(cap
->card
, "Hauppauge HD PVR");
573 usb_make_path(dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
574 cap
->device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_AUDIO
|
576 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
580 static int vidioc_s_std(struct file
*file
, void *_fh
,
583 struct hdpvr_device
*dev
= video_drvdata(file
);
584 struct hdpvr_fh
*fh
= _fh
;
587 if (!fh
->legacy_mode
&& dev
->options
.video_input
== HDPVR_COMPONENT
)
589 if (dev
->status
!= STATUS_IDLE
)
591 if (std
& V4L2_STD_525_60
)
595 dev
->height
= std_type
? 576 : 480;
597 return hdpvr_config_call(dev
, CTRL_VIDEO_STD_TYPE
, std_type
);
600 static int vidioc_g_std(struct file
*file
, void *_fh
,
603 struct hdpvr_device
*dev
= video_drvdata(file
);
604 struct hdpvr_fh
*fh
= _fh
;
606 if (!fh
->legacy_mode
&& dev
->options
.video_input
== HDPVR_COMPONENT
)
612 static int vidioc_querystd(struct file
*file
, void *_fh
, v4l2_std_id
*a
)
614 struct hdpvr_device
*dev
= video_drvdata(file
);
615 struct hdpvr_video_info vid_info
;
616 struct hdpvr_fh
*fh
= _fh
;
619 *a
= V4L2_STD_UNKNOWN
;
620 if (dev
->options
.video_input
== HDPVR_COMPONENT
)
621 return fh
->legacy_mode
? 0 : -ENODATA
;
622 ret
= get_video_info(dev
, &vid_info
);
623 if (vid_info
.valid
&& vid_info
.width
== 720 &&
624 (vid_info
.height
== 480 || vid_info
.height
== 576)) {
625 *a
= (vid_info
.height
== 480) ?
626 V4L2_STD_525_60
: V4L2_STD_625_50
;
631 static int vidioc_s_dv_timings(struct file
*file
, void *_fh
,
632 struct v4l2_dv_timings
*timings
)
634 struct hdpvr_device
*dev
= video_drvdata(file
);
635 struct hdpvr_fh
*fh
= _fh
;
638 fh
->legacy_mode
= false;
639 if (dev
->options
.video_input
)
641 if (dev
->status
!= STATUS_IDLE
)
643 for (i
= 0; i
< ARRAY_SIZE(hdpvr_dv_timings
); i
++)
644 if (v4l_match_dv_timings(timings
, hdpvr_dv_timings
+ i
, 0))
646 if (i
== ARRAY_SIZE(hdpvr_dv_timings
))
648 dev
->cur_dv_timings
= hdpvr_dv_timings
[i
];
649 dev
->width
= hdpvr_dv_timings
[i
].bt
.width
;
650 dev
->height
= hdpvr_dv_timings
[i
].bt
.height
;
654 static int vidioc_g_dv_timings(struct file
*file
, void *_fh
,
655 struct v4l2_dv_timings
*timings
)
657 struct hdpvr_device
*dev
= video_drvdata(file
);
658 struct hdpvr_fh
*fh
= _fh
;
660 fh
->legacy_mode
= false;
661 if (dev
->options
.video_input
)
663 *timings
= dev
->cur_dv_timings
;
667 static int vidioc_query_dv_timings(struct file
*file
, void *_fh
,
668 struct v4l2_dv_timings
*timings
)
670 struct hdpvr_device
*dev
= video_drvdata(file
);
671 struct hdpvr_fh
*fh
= _fh
;
672 struct hdpvr_video_info vid_info
;
677 fh
->legacy_mode
= false;
678 if (dev
->options
.video_input
)
680 ret
= get_video_info(dev
, &vid_info
);
685 interlaced
= vid_info
.fps
<= 30;
686 for (i
= 0; i
< ARRAY_SIZE(hdpvr_dv_timings
); i
++) {
687 const struct v4l2_bt_timings
*bt
= &hdpvr_dv_timings
[i
].bt
;
692 hsize
= bt
->hfrontporch
+ bt
->hsync
+ bt
->hbackporch
+ bt
->width
;
693 vsize
= bt
->vfrontporch
+ bt
->vsync
+ bt
->vbackporch
+
694 bt
->il_vfrontporch
+ bt
->il_vsync
+ bt
->il_vbackporch
+
696 fps
= (unsigned)bt
->pixelclock
/ (hsize
* vsize
);
697 if (bt
->width
!= vid_info
.width
||
698 bt
->height
!= vid_info
.height
||
699 bt
->interlaced
!= interlaced
||
700 (fps
!= vid_info
.fps
&& fps
+ 1 != vid_info
.fps
))
702 *timings
= hdpvr_dv_timings
[i
];
705 if (i
== ARRAY_SIZE(hdpvr_dv_timings
))
711 static int vidioc_enum_dv_timings(struct file
*file
, void *_fh
,
712 struct v4l2_enum_dv_timings
*timings
)
714 struct hdpvr_device
*dev
= video_drvdata(file
);
715 struct hdpvr_fh
*fh
= _fh
;
717 fh
->legacy_mode
= false;
718 memset(timings
->reserved
, 0, sizeof(timings
->reserved
));
719 if (dev
->options
.video_input
)
721 if (timings
->index
>= ARRAY_SIZE(hdpvr_dv_timings
))
723 timings
->timings
= hdpvr_dv_timings
[timings
->index
];
727 static int vidioc_dv_timings_cap(struct file
*file
, void *_fh
,
728 struct v4l2_dv_timings_cap
*cap
)
730 struct hdpvr_device
*dev
= video_drvdata(file
);
731 struct hdpvr_fh
*fh
= _fh
;
733 fh
->legacy_mode
= false;
734 if (dev
->options
.video_input
)
736 cap
->type
= V4L2_DV_BT_656_1120
;
737 cap
->bt
.min_width
= 720;
738 cap
->bt
.max_width
= 1920;
739 cap
->bt
.min_height
= 480;
740 cap
->bt
.max_height
= 1080;
741 cap
->bt
.min_pixelclock
= 27000000;
742 cap
->bt
.max_pixelclock
= 74250000;
743 cap
->bt
.standards
= V4L2_DV_BT_STD_CEA861
;
744 cap
->bt
.capabilities
= V4L2_DV_BT_CAP_INTERLACED
| V4L2_DV_BT_CAP_PROGRESSIVE
;
748 static const char *iname
[] = {
749 [HDPVR_COMPONENT
] = "Component",
750 [HDPVR_SVIDEO
] = "S-Video",
751 [HDPVR_COMPOSITE
] = "Composite",
754 static int vidioc_enum_input(struct file
*file
, void *_fh
, struct v4l2_input
*i
)
759 if (n
>= HDPVR_VIDEO_INPUTS
)
762 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
764 strncpy(i
->name
, iname
[n
], sizeof(i
->name
) - 1);
765 i
->name
[sizeof(i
->name
) - 1] = '\0';
767 i
->audioset
= 1<<HDPVR_RCA_FRONT
| 1<<HDPVR_RCA_BACK
| 1<<HDPVR_SPDIF
;
769 i
->capabilities
= n
? V4L2_IN_CAP_STD
: V4L2_IN_CAP_DV_TIMINGS
;
770 i
->std
= n
? V4L2_STD_ALL
: 0;
775 static int vidioc_s_input(struct file
*file
, void *_fh
,
778 struct hdpvr_device
*dev
= video_drvdata(file
);
781 if (index
>= HDPVR_VIDEO_INPUTS
)
784 if (dev
->status
!= STATUS_IDLE
)
787 retval
= hdpvr_config_call(dev
, CTRL_VIDEO_INPUT_VALUE
, index
+1);
789 dev
->options
.video_input
= index
;
791 * Unfortunately gstreamer calls ENUMSTD and bails out if it
792 * won't find any formats, even though component input is
793 * selected. This means that we have to leave tvnorms at
794 * V4L2_STD_ALL. We cannot use the 'legacy' trick since
795 * tvnorms is set at the device node level and not at the
798 * Comment this out for now, but if the legacy mode can be
799 * removed in the future, then this code should be enabled
801 dev->video_dev->tvnorms =
802 (index != HDPVR_COMPONENT) ? V4L2_STD_ALL : 0;
809 static int vidioc_g_input(struct file
*file
, void *private_data
,
812 struct hdpvr_device
*dev
= video_drvdata(file
);
814 *index
= dev
->options
.video_input
;
819 static const char *audio_iname
[] = {
820 [HDPVR_RCA_FRONT
] = "RCA front",
821 [HDPVR_RCA_BACK
] = "RCA back",
822 [HDPVR_SPDIF
] = "SPDIF",
825 static int vidioc_enumaudio(struct file
*file
, void *priv
,
826 struct v4l2_audio
*audio
)
831 if (n
>= HDPVR_AUDIO_INPUTS
)
834 audio
->capability
= V4L2_AUDCAP_STEREO
;
836 strncpy(audio
->name
, audio_iname
[n
], sizeof(audio
->name
) - 1);
837 audio
->name
[sizeof(audio
->name
) - 1] = '\0';
842 static int vidioc_s_audio(struct file
*file
, void *private_data
,
843 const struct v4l2_audio
*audio
)
845 struct hdpvr_device
*dev
= video_drvdata(file
);
848 if (audio
->index
>= HDPVR_AUDIO_INPUTS
)
851 if (dev
->status
!= STATUS_IDLE
)
854 retval
= hdpvr_set_audio(dev
, audio
->index
+1, dev
->options
.audio_codec
);
856 dev
->options
.audio_input
= audio
->index
;
861 static int vidioc_g_audio(struct file
*file
, void *private_data
,
862 struct v4l2_audio
*audio
)
864 struct hdpvr_device
*dev
= video_drvdata(file
);
866 audio
->index
= dev
->options
.audio_input
;
867 audio
->capability
= V4L2_AUDCAP_STEREO
;
868 strncpy(audio
->name
, audio_iname
[audio
->index
], sizeof(audio
->name
));
869 audio
->name
[sizeof(audio
->name
) - 1] = '\0';
873 static int hdpvr_try_ctrl(struct v4l2_ctrl
*ctrl
)
875 struct hdpvr_device
*dev
=
876 container_of(ctrl
->handler
, struct hdpvr_device
, hdl
);
879 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE
:
880 if (ctrl
->val
== V4L2_MPEG_VIDEO_BITRATE_MODE_VBR
&&
881 dev
->video_bitrate
->val
>= dev
->video_bitrate_peak
->val
)
882 dev
->video_bitrate_peak
->val
=
883 dev
->video_bitrate
->val
+ 100000;
889 static int hdpvr_s_ctrl(struct v4l2_ctrl
*ctrl
)
891 struct hdpvr_device
*dev
=
892 container_of(ctrl
->handler
, struct hdpvr_device
, hdl
);
893 struct hdpvr_options
*opt
= &dev
->options
;
897 case V4L2_CID_BRIGHTNESS
:
898 ret
= hdpvr_config_call(dev
, CTRL_BRIGHTNESS
, ctrl
->val
);
901 dev
->options
.brightness
= ctrl
->val
;
903 case V4L2_CID_CONTRAST
:
904 ret
= hdpvr_config_call(dev
, CTRL_CONTRAST
, ctrl
->val
);
907 dev
->options
.contrast
= ctrl
->val
;
909 case V4L2_CID_SATURATION
:
910 ret
= hdpvr_config_call(dev
, CTRL_SATURATION
, ctrl
->val
);
913 dev
->options
.saturation
= ctrl
->val
;
916 ret
= hdpvr_config_call(dev
, CTRL_HUE
, ctrl
->val
);
919 dev
->options
.hue
= ctrl
->val
;
921 case V4L2_CID_SHARPNESS
:
922 ret
= hdpvr_config_call(dev
, CTRL_SHARPNESS
, ctrl
->val
);
925 dev
->options
.sharpness
= ctrl
->val
;
927 case V4L2_CID_MPEG_AUDIO_ENCODING
:
928 if (dev
->flags
& HDPVR_FLAG_AC3_CAP
) {
929 opt
->audio_codec
= ctrl
->val
;
930 return hdpvr_set_audio(dev
, opt
->audio_input
,
934 case V4L2_CID_MPEG_VIDEO_ENCODING
:
936 /* case V4L2_CID_MPEG_VIDEO_B_FRAMES: */
937 /* if (ctrl->value == 0 && !(opt->gop_mode & 0x2)) { */
938 /* opt->gop_mode |= 0x2; */
939 /* hdpvr_config_call(dev, CTRL_GOP_MODE_VALUE, */
940 /* opt->gop_mode); */
942 /* if (ctrl->value == 128 && opt->gop_mode & 0x2) { */
943 /* opt->gop_mode &= ~0x2; */
944 /* hdpvr_config_call(dev, CTRL_GOP_MODE_VALUE, */
945 /* opt->gop_mode); */
948 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE
: {
949 uint peak_bitrate
= dev
->video_bitrate_peak
->val
/ 100000;
950 uint bitrate
= dev
->video_bitrate
->val
/ 100000;
953 if (ctrl
->val
== V4L2_MPEG_VIDEO_BITRATE_MODE_CBR
)
954 opt
->bitrate_mode
= HDPVR_CONSTANT
;
956 opt
->bitrate_mode
= HDPVR_VARIABLE_AVERAGE
;
957 hdpvr_config_call(dev
, CTRL_BITRATE_MODE_VALUE
,
959 v4l2_ctrl_activate(dev
->video_bitrate_peak
,
960 ctrl
->val
!= V4L2_MPEG_VIDEO_BITRATE_MODE_CBR
);
963 if (dev
->video_bitrate_peak
->is_new
||
964 dev
->video_bitrate
->is_new
) {
965 opt
->bitrate
= bitrate
;
966 opt
->peak_bitrate
= peak_bitrate
;
967 hdpvr_set_bitrate(dev
);
971 case V4L2_CID_MPEG_STREAM_TYPE
:
979 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *private_data
,
980 struct v4l2_fmtdesc
*f
)
985 f
->flags
= V4L2_FMT_FLAG_COMPRESSED
;
986 strncpy(f
->description
, "MPEG2-TS with AVC/AAC streams", 32);
987 f
->pixelformat
= V4L2_PIX_FMT_MPEG
;
992 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *_fh
,
993 struct v4l2_format
*f
)
995 struct hdpvr_device
*dev
= video_drvdata(file
);
996 struct hdpvr_fh
*fh
= _fh
;
1000 * The original driver would always returns the current detected
1001 * resolution as the format (and EFAULT if it couldn't be detected).
1002 * With the introduction of VIDIOC_QUERY_DV_TIMINGS there is now a
1003 * better way of doing this, but to stay compatible with existing
1004 * applications we assume legacy mode every time an application opens
1005 * the device. Only if one of the new DV_TIMINGS ioctls is called
1006 * will the filehandle go into 'normal' mode where g_fmt returns the
1009 if (fh
->legacy_mode
) {
1010 struct hdpvr_video_info vid_info
;
1012 ret
= get_video_info(dev
, &vid_info
);
1015 if (!vid_info
.valid
)
1017 f
->fmt
.pix
.width
= vid_info
.width
;
1018 f
->fmt
.pix
.height
= vid_info
.height
;
1020 f
->fmt
.pix
.width
= dev
->width
;
1021 f
->fmt
.pix
.height
= dev
->height
;
1023 f
->fmt
.pix
.pixelformat
= V4L2_PIX_FMT_MPEG
;
1024 f
->fmt
.pix
.sizeimage
= dev
->bulk_in_size
;
1025 f
->fmt
.pix
.bytesperline
= 0;
1026 f
->fmt
.pix
.priv
= 0;
1027 if (f
->fmt
.pix
.width
== 720) {
1029 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
1030 f
->fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
1033 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE240M
;
1034 f
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
1039 static int vidioc_encoder_cmd(struct file
*filp
, void *priv
,
1040 struct v4l2_encoder_cmd
*a
)
1042 struct hdpvr_device
*dev
= video_drvdata(filp
);
1045 mutex_lock(&dev
->io_mutex
);
1049 case V4L2_ENC_CMD_START
:
1050 if (dev
->owner
&& filp
->private_data
!= dev
->owner
) {
1054 if (dev
->status
== STATUS_STREAMING
)
1056 res
= hdpvr_start_streaming(dev
);
1058 dev
->owner
= filp
->private_data
;
1060 dev
->status
= STATUS_IDLE
;
1062 case V4L2_ENC_CMD_STOP
:
1063 if (dev
->owner
&& filp
->private_data
!= dev
->owner
) {
1067 if (dev
->status
== STATUS_IDLE
)
1069 res
= hdpvr_stop_streaming(dev
);
1074 v4l2_dbg(MSG_INFO
, hdpvr_debug
, &dev
->v4l2_dev
,
1075 "Unsupported encoder cmd %d\n", a
->cmd
);
1080 mutex_unlock(&dev
->io_mutex
);
1084 static int vidioc_try_encoder_cmd(struct file
*filp
, void *priv
,
1085 struct v4l2_encoder_cmd
*a
)
1089 case V4L2_ENC_CMD_START
:
1090 case V4L2_ENC_CMD_STOP
:
1097 static const struct v4l2_ioctl_ops hdpvr_ioctl_ops
= {
1098 .vidioc_querycap
= vidioc_querycap
,
1099 .vidioc_s_std
= vidioc_s_std
,
1100 .vidioc_g_std
= vidioc_g_std
,
1101 .vidioc_querystd
= vidioc_querystd
,
1102 .vidioc_s_dv_timings
= vidioc_s_dv_timings
,
1103 .vidioc_g_dv_timings
= vidioc_g_dv_timings
,
1104 .vidioc_query_dv_timings
= vidioc_query_dv_timings
,
1105 .vidioc_enum_dv_timings
= vidioc_enum_dv_timings
,
1106 .vidioc_dv_timings_cap
= vidioc_dv_timings_cap
,
1107 .vidioc_enum_input
= vidioc_enum_input
,
1108 .vidioc_g_input
= vidioc_g_input
,
1109 .vidioc_s_input
= vidioc_s_input
,
1110 .vidioc_enumaudio
= vidioc_enumaudio
,
1111 .vidioc_g_audio
= vidioc_g_audio
,
1112 .vidioc_s_audio
= vidioc_s_audio
,
1113 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
1114 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1115 .vidioc_s_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1116 .vidioc_try_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1117 .vidioc_encoder_cmd
= vidioc_encoder_cmd
,
1118 .vidioc_try_encoder_cmd
= vidioc_try_encoder_cmd
,
1119 .vidioc_log_status
= v4l2_ctrl_log_status
,
1120 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1121 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1124 static void hdpvr_device_release(struct video_device
*vdev
)
1126 struct hdpvr_device
*dev
= video_get_drvdata(vdev
);
1129 mutex_lock(&dev
->io_mutex
);
1130 destroy_workqueue(dev
->workqueue
);
1131 mutex_unlock(&dev
->io_mutex
);
1133 v4l2_device_unregister(&dev
->v4l2_dev
);
1134 v4l2_ctrl_handler_free(&dev
->hdl
);
1136 /* deregister I2C adapter */
1137 #if IS_ENABLED(CONFIG_I2C)
1138 mutex_lock(&dev
->i2c_mutex
);
1139 i2c_del_adapter(&dev
->i2c_adapter
);
1140 mutex_unlock(&dev
->i2c_mutex
);
1141 #endif /* CONFIG_I2C */
1143 kfree(dev
->usbc_buf
);
1147 static const struct video_device hdpvr_video_template
= {
1148 .fops
= &hdpvr_fops
,
1149 .release
= hdpvr_device_release
,
1150 .ioctl_ops
= &hdpvr_ioctl_ops
,
1151 .tvnorms
= V4L2_STD_ALL
,
1154 static const struct v4l2_ctrl_ops hdpvr_ctrl_ops
= {
1155 .try_ctrl
= hdpvr_try_ctrl
,
1156 .s_ctrl
= hdpvr_s_ctrl
,
1159 int hdpvr_register_videodev(struct hdpvr_device
*dev
, struct device
*parent
,
1162 struct v4l2_ctrl_handler
*hdl
= &dev
->hdl
;
1163 bool ac3
= dev
->flags
& HDPVR_FLAG_AC3_CAP
;
1166 dev
->cur_std
= V4L2_STD_525_60
;
1169 dev
->cur_dv_timings
= hdpvr_dv_timings
[HDPVR_DEF_DV_TIMINGS_IDX
];
1170 v4l2_ctrl_handler_init(hdl
, 11);
1171 if (dev
->fw_ver
> 0x15) {
1172 v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1173 V4L2_CID_BRIGHTNESS
, 0x0, 0xff, 1, 0x80);
1174 v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1175 V4L2_CID_CONTRAST
, 0x0, 0xff, 1, 0x40);
1176 v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1177 V4L2_CID_SATURATION
, 0x0, 0xff, 1, 0x40);
1178 v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1179 V4L2_CID_HUE
, 0x0, 0x1e, 1, 0xf);
1180 v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1181 V4L2_CID_SHARPNESS
, 0x0, 0xff, 1, 0x80);
1183 v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1184 V4L2_CID_BRIGHTNESS
, 0x0, 0xff, 1, 0x86);
1185 v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1186 V4L2_CID_CONTRAST
, 0x0, 0xff, 1, 0x80);
1187 v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1188 V4L2_CID_SATURATION
, 0x0, 0xff, 1, 0x80);
1189 v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1190 V4L2_CID_HUE
, 0x0, 0xff, 1, 0x80);
1191 v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1192 V4L2_CID_SHARPNESS
, 0x0, 0xff, 1, 0x80);
1195 v4l2_ctrl_new_std_menu(hdl
, &hdpvr_ctrl_ops
,
1196 V4L2_CID_MPEG_STREAM_TYPE
,
1197 V4L2_MPEG_STREAM_TYPE_MPEG2_TS
,
1198 0x1, V4L2_MPEG_STREAM_TYPE_MPEG2_TS
);
1199 v4l2_ctrl_new_std_menu(hdl
, &hdpvr_ctrl_ops
,
1200 V4L2_CID_MPEG_AUDIO_ENCODING
,
1201 ac3
? V4L2_MPEG_AUDIO_ENCODING_AC3
: V4L2_MPEG_AUDIO_ENCODING_AAC
,
1202 0x7, V4L2_MPEG_AUDIO_ENCODING_AAC
);
1203 v4l2_ctrl_new_std_menu(hdl
, &hdpvr_ctrl_ops
,
1204 V4L2_CID_MPEG_VIDEO_ENCODING
,
1205 V4L2_MPEG_VIDEO_ENCODING_MPEG_4_AVC
, 0x3,
1206 V4L2_MPEG_VIDEO_ENCODING_MPEG_4_AVC
);
1208 dev
->video_mode
= v4l2_ctrl_new_std_menu(hdl
, &hdpvr_ctrl_ops
,
1209 V4L2_CID_MPEG_VIDEO_BITRATE_MODE
,
1210 V4L2_MPEG_VIDEO_BITRATE_MODE_CBR
, 0,
1211 V4L2_MPEG_VIDEO_BITRATE_MODE_CBR
);
1213 dev
->video_bitrate
= v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1214 V4L2_CID_MPEG_VIDEO_BITRATE
,
1215 1000000, 13500000, 100000, 6500000);
1216 dev
->video_bitrate_peak
= v4l2_ctrl_new_std(hdl
, &hdpvr_ctrl_ops
,
1217 V4L2_CID_MPEG_VIDEO_BITRATE_PEAK
,
1218 1100000, 20200000, 100000, 9000000);
1219 dev
->v4l2_dev
.ctrl_handler
= hdl
;
1222 v4l2_err(&dev
->v4l2_dev
, "Could not register controls\n");
1225 v4l2_ctrl_cluster(3, &dev
->video_mode
);
1226 res
= v4l2_ctrl_handler_setup(hdl
);
1228 v4l2_err(&dev
->v4l2_dev
, "Could not setup controls\n");
1232 /* setup and register video device */
1233 dev
->video_dev
= video_device_alloc();
1234 if (!dev
->video_dev
) {
1235 v4l2_err(&dev
->v4l2_dev
, "video_device_alloc() failed\n");
1240 *dev
->video_dev
= hdpvr_video_template
;
1241 strcpy(dev
->video_dev
->name
, "Hauppauge HD PVR");
1242 dev
->video_dev
->v4l2_dev
= &dev
->v4l2_dev
;
1243 video_set_drvdata(dev
->video_dev
, dev
);
1244 set_bit(V4L2_FL_USE_FH_PRIO
, &dev
->video_dev
->flags
);
1246 res
= video_register_device(dev
->video_dev
, VFL_TYPE_GRABBER
, devnum
);
1248 v4l2_err(&dev
->v4l2_dev
, "video_device registration failed\n");
1254 v4l2_ctrl_handler_free(hdl
);