5 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
6 * Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/kernel.h>
24 #include <linux/version.h>
25 #include "pvrusb2-context.h"
26 #include "pvrusb2-hdw.h"
28 #include "pvrusb2-debug.h"
29 #include "pvrusb2-v4l2.h"
30 #include "pvrusb2-ioread.h"
31 #include <linux/videodev2.h>
32 #include <media/v4l2-common.h>
38 /* V4L no longer provide the ability to set / get a private context pointer
39 (i.e. video_get_drvdata / video_set_drvdata), which means we have to
40 concoct our own context locating mechanism. Supposedly this is intended
41 to simplify driver implementation. It's not clear to me how that can
42 possibly be true. Our solution here is to maintain a lookup table of
43 our context instances, indexed by the minor device number of the V4L
44 device. See pvr2_v4l2_open() for some implications of this approach. */
45 static struct pvr2_v4l2_dev *devices[256];
46 static DEFINE_MUTEX(device_lock);
48 struct pvr2_v4l2_dev {
49 struct pvr2_v4l2 *v4lp;
50 struct video_device *vdev;
51 struct pvr2_context_stream *stream;
53 enum pvr2_config config;
57 struct pvr2_channel channel;
58 struct pvr2_v4l2_dev *dev_info;
59 enum v4l2_priority prio;
60 struct pvr2_ioread *rhp;
62 struct pvr2_v4l2 *vhead;
63 struct pvr2_v4l2_fh *vnext;
64 struct pvr2_v4l2_fh *vprev;
65 wait_queue_head_t wait_data;
70 struct pvr2_channel channel;
71 struct pvr2_v4l2_fh *vfirst;
72 struct pvr2_v4l2_fh *vlast;
74 struct v4l2_prio_state prio;
77 struct pvr2_v4l2_dev video_dev;
80 static int video_nr[PVR_NUM] = {[0 ... PVR_NUM-1] = -1};
81 module_param_array(video_nr, int, NULL, 0444);
82 MODULE_PARM_DESC(video_nr, "Offset for device's minor");
84 static struct v4l2_capability pvr_capability ={
86 .card = "Hauppauge WinTV pvr-usb2",
88 .version = KERNEL_VERSION(0,8,0),
89 .capabilities = (V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VBI_CAPTURE |
90 V4L2_CAP_TUNER | V4L2_CAP_AUDIO |
95 static struct v4l2_tuner pvr_v4l2_tuners[]= {
99 .type = V4L2_TUNER_ANALOG_TV,
100 .capability = (V4L2_TUNER_CAP_NORM |
101 V4L2_TUNER_CAP_STEREO |
102 V4L2_TUNER_CAP_LANG1 |
103 V4L2_TUNER_CAP_LANG2),
106 .rxsubchans = V4L2_TUNER_SUB_STEREO,
107 .audmode = V4L2_TUNER_MODE_STEREO,
110 .reserved = {0,0,0,0}
114 static struct v4l2_fmtdesc pvr_fmtdesc [] = {
117 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
118 .flags = V4L2_FMT_FLAG_COMPRESSED,
119 .description = "MPEG1/2",
120 // This should really be V4L2_PIX_FMT_MPEG, but xawtv
121 // breaks when I do that.
122 .pixelformat = 0, // V4L2_PIX_FMT_MPEG,
123 .reserved = { 0, 0, 0, 0 }
127 #define PVR_FORMAT_PIX 0
128 #define PVR_FORMAT_VBI 1
130 static struct v4l2_format pvr_format [] = {
132 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
137 // This should really be V4L2_PIX_FMT_MPEG,
138 // but xawtv breaks when I do that.
139 .pixelformat = 0, // V4L2_PIX_FMT_MPEG,
140 .field = V4L2_FIELD_INTERLACED,
141 .bytesperline = 0, // doesn't make sense
143 //FIXME : Don't know what to put here...
144 .sizeimage = (32*1024),
145 .colorspace = 0, // doesn't make sense here
151 .type = V4L2_BUF_TYPE_VBI_CAPTURE,
154 .sampling_rate = 27000000,
156 .samples_per_line = 1443,
157 .sample_format = V4L2_PIX_FMT_GREY,
170 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
173 static int pvr2_v4l2_do_ioctl(struct inode *inode, struct file *file,
174 unsigned int cmd, void *arg)
176 struct pvr2_v4l2_fh *fh = file->private_data;
177 struct pvr2_v4l2 *vp = fh->vhead;
178 struct pvr2_v4l2_dev *dev_info = fh->dev_info;
179 struct pvr2_hdw *hdw = fh->channel.mc_head->hdw;
182 if (pvrusb2_debug & PVR2_TRACE_V4LIOCTL) {
183 v4l_print_ioctl(pvr2_hdw_get_driver_name(hdw),cmd);
186 if (!pvr2_hdw_dev_ok(hdw)) {
187 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
188 "ioctl failed - bad or no context");
198 case VIDIOC_S_FREQUENCY:
199 ret = v4l2_prio_check(&vp->prio, &fh->prio);
205 case VIDIOC_QUERYCAP:
207 struct v4l2_capability *cap = arg;
209 memcpy(cap, &pvr_capability, sizeof(struct v4l2_capability));
215 case VIDIOC_G_PRIORITY:
217 enum v4l2_priority *p = arg;
219 *p = v4l2_prio_max(&vp->prio);
224 case VIDIOC_S_PRIORITY:
226 enum v4l2_priority *prio = arg;
228 ret = v4l2_prio_change(&vp->prio, &fh->prio, *prio);
234 struct v4l2_standard *vs = (struct v4l2_standard *)arg;
236 ret = pvr2_hdw_get_stdenum_value(hdw,vs,idx+1);
243 ret = pvr2_ctrl_get_value(
244 pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDCUR),&val);
245 *(v4l2_std_id *)arg = val;
251 ret = pvr2_ctrl_set_value(
252 pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDCUR),
253 *(v4l2_std_id *)arg);
257 case VIDIOC_ENUMINPUT:
259 struct pvr2_ctrl *cptr;
260 struct v4l2_input *vi = (struct v4l2_input *)arg;
261 struct v4l2_input tmp;
264 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_INPUT);
266 memset(&tmp,0,sizeof(tmp));
267 tmp.index = vi->index;
270 case PVR2_CVAL_INPUT_TV:
271 case PVR2_CVAL_INPUT_RADIO:
272 tmp.type = V4L2_INPUT_TYPE_TUNER;
274 case PVR2_CVAL_INPUT_SVIDEO:
275 case PVR2_CVAL_INPUT_COMPOSITE:
276 tmp.type = V4L2_INPUT_TYPE_CAMERA;
285 pvr2_ctrl_get_valname(cptr,vi->index,
286 tmp.name,sizeof(tmp.name)-1,&cnt);
289 /* Don't bother with audioset, since this driver currently
290 always switches the audio whenever the video is
293 /* Handling std is a tougher problem. It doesn't make
294 sense in cases where a device might be multi-standard.
295 We could just copy out the current value for the
296 standard, but it can change over time. For now just
299 memcpy(vi, &tmp, sizeof(tmp));
307 struct pvr2_ctrl *cptr;
308 struct v4l2_input *vi = (struct v4l2_input *)arg;
310 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_INPUT);
312 ret = pvr2_ctrl_get_value(cptr,&val);
319 struct v4l2_input *vi = (struct v4l2_input *)arg;
320 ret = pvr2_ctrl_set_value(
321 pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_INPUT),
326 case VIDIOC_ENUMAUDIO:
345 struct v4l2_tuner *vt = (struct v4l2_tuner *)arg;
346 unsigned int status_mask;
348 if (vt->index !=0) break;
350 status_mask = pvr2_hdw_get_signal_status(hdw);
352 memcpy(vt, &pvr_v4l2_tuners[vt->index],
353 sizeof(struct v4l2_tuner));
356 if (status_mask & PVR2_SIGNAL_OK) {
357 if (status_mask & PVR2_SIGNAL_STEREO) {
358 vt->rxsubchans = V4L2_TUNER_SUB_STEREO;
360 vt->rxsubchans = V4L2_TUNER_SUB_MONO;
362 if (status_mask & PVR2_SIGNAL_SAP) {
363 vt->rxsubchans |= (V4L2_TUNER_SUB_LANG1 |
364 V4L2_TUNER_SUB_LANG2);
370 ret = pvr2_ctrl_get_value(
371 pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_AUDIOMODE),
379 struct v4l2_tuner *vt=(struct v4l2_tuner *)arg;
384 ret = pvr2_ctrl_set_value(
385 pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_AUDIOMODE),
389 case VIDIOC_S_FREQUENCY:
391 const struct v4l2_frequency *vf = (struct v4l2_frequency *)arg;
392 ret = pvr2_ctrl_set_value(
393 pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_FREQUENCY),
394 vf->frequency * 62500);
398 case VIDIOC_G_FREQUENCY:
400 struct v4l2_frequency *vf = (struct v4l2_frequency *)arg;
402 ret = pvr2_ctrl_get_value(
403 pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_FREQUENCY),
410 case VIDIOC_ENUM_FMT:
412 struct v4l2_fmtdesc *fd = (struct v4l2_fmtdesc *)arg;
414 /* Only one format is supported : mpeg.*/
418 memcpy(fd, pvr_fmtdesc, sizeof(struct v4l2_fmtdesc));
425 struct v4l2_format *vf = (struct v4l2_format *)arg;
428 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
429 memcpy(vf, &pvr_format[PVR_FORMAT_PIX],
430 sizeof(struct v4l2_format));
433 pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_HRES),
435 vf->fmt.pix.width = val;
438 pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_VRES),
440 vf->fmt.pix.height = val;
443 case V4L2_BUF_TYPE_VBI_CAPTURE:
444 // ????? Still need to figure out to do VBI correctly
457 struct v4l2_format *vf = (struct v4l2_format *)arg;
461 case V4L2_BUF_TYPE_VIDEO_CAPTURE: {
462 int h = vf->fmt.pix.height;
463 int w = vf->fmt.pix.width;
467 } else if (h > 625) {
472 } else if (w > 720) {
476 memcpy(vf, &pvr_format[PVR_FORMAT_PIX],
477 sizeof(struct v4l2_format));
478 vf->fmt.pix.width = w;
479 vf->fmt.pix.height = h;
481 if (cmd == VIDIOC_S_FMT) {
483 pvr2_hdw_get_ctrl_by_id(hdw,
487 pvr2_hdw_get_ctrl_by_id(hdw,
492 case V4L2_BUF_TYPE_VBI_CAPTURE:
493 // ????? Still need to figure out to do VBI correctly
503 case VIDIOC_STREAMON:
505 ret = pvr2_hdw_set_stream_type(hdw,dev_info->config);
506 if (ret < 0) return ret;
507 ret = pvr2_hdw_set_streaming(hdw,!0);
511 case VIDIOC_STREAMOFF:
513 ret = pvr2_hdw_set_streaming(hdw,0);
517 case VIDIOC_QUERYCTRL:
519 struct pvr2_ctrl *cptr;
520 struct v4l2_queryctrl *vc = (struct v4l2_queryctrl *)arg;
522 if (vc->id & V4L2_CTRL_FLAG_NEXT_CTRL) {
523 cptr = pvr2_hdw_get_ctrl_nextv4l(
524 hdw,(vc->id & ~V4L2_CTRL_FLAG_NEXT_CTRL));
525 if (cptr) vc->id = pvr2_ctrl_get_v4lid(cptr);
527 cptr = pvr2_hdw_get_ctrl_v4l(hdw,vc->id);
530 pvr2_trace(PVR2_TRACE_V4LIOCTL,
531 "QUERYCTRL id=0x%x not implemented here",
537 pvr2_trace(PVR2_TRACE_V4LIOCTL,
538 "QUERYCTRL id=0x%x mapping name=%s (%s)",
539 vc->id,pvr2_ctrl_get_name(cptr),
540 pvr2_ctrl_get_desc(cptr));
541 strlcpy(vc->name,pvr2_ctrl_get_desc(cptr),sizeof(vc->name));
542 vc->flags = pvr2_ctrl_get_v4lflags(cptr);
543 vc->default_value = pvr2_ctrl_get_def(cptr);
544 switch (pvr2_ctrl_get_type(cptr)) {
546 vc->type = V4L2_CTRL_TYPE_MENU;
548 vc->maximum = pvr2_ctrl_get_cnt(cptr) - 1;
552 vc->type = V4L2_CTRL_TYPE_BOOLEAN;
558 vc->type = V4L2_CTRL_TYPE_INTEGER;
559 vc->minimum = pvr2_ctrl_get_min(cptr);
560 vc->maximum = pvr2_ctrl_get_max(cptr);
564 pvr2_trace(PVR2_TRACE_V4LIOCTL,
565 "QUERYCTRL id=0x%x name=%s not mappable",
566 vc->id,pvr2_ctrl_get_name(cptr));
573 case VIDIOC_QUERYMENU:
575 struct v4l2_querymenu *vm = (struct v4l2_querymenu *)arg;
576 unsigned int cnt = 0;
577 ret = pvr2_ctrl_get_valname(pvr2_hdw_get_ctrl_v4l(hdw,vm->id),
579 vm->name,sizeof(vm->name)-1,
587 struct v4l2_control *vc = (struct v4l2_control *)arg;
589 ret = pvr2_ctrl_get_value(pvr2_hdw_get_ctrl_v4l(hdw,vc->id),
597 struct v4l2_control *vc = (struct v4l2_control *)arg;
598 ret = pvr2_ctrl_set_value(pvr2_hdw_get_ctrl_v4l(hdw,vc->id),
603 case VIDIOC_G_EXT_CTRLS:
605 struct v4l2_ext_controls *ctls =
606 (struct v4l2_ext_controls *)arg;
607 struct v4l2_ext_control *ctrl;
610 for (idx = 0; idx < ctls->count; idx++) {
611 ctrl = ctls->controls + idx;
612 ret = pvr2_ctrl_get_value(
613 pvr2_hdw_get_ctrl_v4l(hdw,ctrl->id),&val);
615 ctls->error_idx = idx;
618 /* Ensure that if read as a 64 bit value, the user
619 will still get a hopefully sane value */
626 case VIDIOC_S_EXT_CTRLS:
628 struct v4l2_ext_controls *ctls =
629 (struct v4l2_ext_controls *)arg;
630 struct v4l2_ext_control *ctrl;
632 for (idx = 0; idx < ctls->count; idx++) {
633 ctrl = ctls->controls + idx;
634 ret = pvr2_ctrl_set_value(
635 pvr2_hdw_get_ctrl_v4l(hdw,ctrl->id),
638 ctls->error_idx = idx;
645 case VIDIOC_TRY_EXT_CTRLS:
647 struct v4l2_ext_controls *ctls =
648 (struct v4l2_ext_controls *)arg;
649 struct v4l2_ext_control *ctrl;
650 struct pvr2_ctrl *pctl;
652 /* For the moment just validate that the requested control
654 for (idx = 0; idx < ctls->count; idx++) {
655 ctrl = ctls->controls + idx;
656 pctl = pvr2_hdw_get_ctrl_v4l(hdw,ctrl->id);
659 ctls->error_idx = idx;
666 case VIDIOC_LOG_STATUS:
668 pvr2_hdw_trigger_module_log(hdw);
674 ret = v4l_compat_translate_ioctl(inode,file,cmd,
675 arg,pvr2_v4l2_do_ioctl);
678 pvr2_hdw_commit_ctl(hdw);
681 if (pvrusb2_debug & PVR2_TRACE_V4LIOCTL) {
682 pvr2_trace(PVR2_TRACE_V4LIOCTL,
683 "pvr2_v4l2_do_ioctl failure, ret=%d",ret);
685 if (pvrusb2_debug & PVR2_TRACE_V4LIOCTL) {
686 pvr2_trace(PVR2_TRACE_V4LIOCTL,
687 "pvr2_v4l2_do_ioctl failure, ret=%d"
688 " command was:",ret);
689 v4l_print_ioctl(pvr2_hdw_get_driver_name(hdw),
694 pvr2_trace(PVR2_TRACE_V4LIOCTL,
695 "pvr2_v4l2_do_ioctl complete, ret=%d (0x%x)",
702 static void pvr2_v4l2_dev_destroy(struct pvr2_v4l2_dev *dip)
704 printk(KERN_INFO "pvrusb2: unregistering device video%d [%s]\n",
705 dip->vdev->minor,pvr2_config_get_name(dip->config));
706 if (dip->ctxt_idx >= 0) {
707 mutex_lock(&device_lock);
708 devices[dip->ctxt_idx] = NULL;
710 mutex_unlock(&device_lock);
712 video_unregister_device(dip->vdev);
716 static void pvr2_v4l2_destroy_no_lock(struct pvr2_v4l2 *vp)
718 pvr2_hdw_v4l_store_minor_number(vp->channel.mc_head->hdw,-1);
719 pvr2_v4l2_dev_destroy(&vp->video_dev);
721 pvr2_trace(PVR2_TRACE_STRUCT,"Destroying pvr2_v4l2 id=%p",vp);
722 pvr2_channel_done(&vp->channel);
727 static void pvr2_v4l2_internal_check(struct pvr2_channel *chp)
729 struct pvr2_v4l2 *vp;
730 vp = container_of(chp,struct pvr2_v4l2,channel);
731 if (!vp->channel.mc_head->disconnect_flag) return;
732 if (vp->vfirst) return;
733 pvr2_v4l2_destroy_no_lock(vp);
737 static int pvr2_v4l2_ioctl(struct inode *inode, struct file *file,
738 unsigned int cmd, unsigned long arg)
741 /* Temporary hack : use ivtv api until a v4l2 one is available. */
742 #define IVTV_IOC_G_CODEC 0xFFEE7703
743 #define IVTV_IOC_S_CODEC 0xFFEE7704
744 if (cmd == IVTV_IOC_G_CODEC || cmd == IVTV_IOC_S_CODEC) return 0;
745 return video_usercopy(inode, file, cmd, arg, pvr2_v4l2_do_ioctl);
749 static int pvr2_v4l2_release(struct inode *inode, struct file *file)
751 struct pvr2_v4l2_fh *fhp = file->private_data;
752 struct pvr2_v4l2 *vp = fhp->vhead;
753 struct pvr2_context *mp = fhp->vhead->channel.mc_head;
755 pvr2_trace(PVR2_TRACE_OPEN_CLOSE,"pvr2_v4l2_release");
758 struct pvr2_stream *sp;
759 struct pvr2_hdw *hdw;
760 hdw = fhp->channel.mc_head->hdw;
761 pvr2_hdw_set_streaming(hdw,0);
762 sp = pvr2_ioread_get_stream(fhp->rhp);
763 if (sp) pvr2_stream_set_callback(sp,NULL,NULL);
764 pvr2_ioread_destroy(fhp->rhp);
767 v4l2_prio_close(&vp->prio, &fhp->prio);
768 file->private_data = NULL;
770 pvr2_context_enter(mp); do {
772 fhp->vnext->vprev = fhp->vprev;
774 vp->vlast = fhp->vprev;
777 fhp->vprev->vnext = fhp->vnext;
779 vp->vfirst = fhp->vnext;
784 pvr2_channel_done(&fhp->channel);
785 pvr2_trace(PVR2_TRACE_STRUCT,
786 "Destroying pvr_v4l2_fh id=%p",fhp);
788 if (vp->channel.mc_head->disconnect_flag && !vp->vfirst) {
789 pvr2_v4l2_destroy_no_lock(vp);
791 } while (0); pvr2_context_exit(mp);
796 static int pvr2_v4l2_open(struct inode *inode, struct file *file)
798 struct pvr2_v4l2_dev *dip = NULL; /* Our own context pointer */
799 struct pvr2_v4l2_fh *fhp;
800 struct pvr2_v4l2 *vp;
801 struct pvr2_hdw *hdw;
803 mutex_lock(&device_lock);
804 /* MCI 7-Jun-2006 Even though we're just doing what amounts to an
805 atomic read of the device mapping array here, we still need the
806 mutex. The problem is that there is a tiny race possible when
807 we register the device. We can't update the device mapping
808 array until after the device has been registered, owing to the
809 fact that we can't know the minor device number until after the
810 registration succeeds. And if another thread tries to open the
811 device in the window of time after registration but before the
812 map is updated, then it will get back an erroneous null pointer
813 and the open will result in a spurious failure. The only way to
814 prevent that is to (a) be inside the mutex here before we access
815 the array, and (b) cover the entire registration process later
816 on with this same mutex. Thus if we get inside the mutex here,
817 then we can be assured that the registration process actually
818 completed correctly. This is an unhappy complication from the
819 use of global data in a driver that lives in a preemptible
820 environment. It sure would be nice if the video device itself
821 had a means for storing and retrieving a local context pointer.
822 Oh wait. It did. But now it's gone. Silly me. */
824 unsigned int midx = iminor(file->f_dentry->d_inode);
825 if (midx < sizeof(devices)/sizeof(devices[0])) {
829 mutex_unlock(&device_lock);
831 if (!dip) return -ENODEV; /* Should be impossible but I'm paranoid */
834 hdw = vp->channel.hdw;
836 pvr2_trace(PVR2_TRACE_OPEN_CLOSE,"pvr2_v4l2_open");
838 if (!pvr2_hdw_dev_ok(hdw)) {
839 pvr2_trace(PVR2_TRACE_OPEN_CLOSE,
840 "pvr2_v4l2_open: hardware not ready");
844 fhp = kmalloc(sizeof(*fhp),GFP_KERNEL);
848 memset(fhp,0,sizeof(*fhp));
850 init_waitqueue_head(&fhp->wait_data);
853 pvr2_context_enter(vp->channel.mc_head); do {
854 pvr2_trace(PVR2_TRACE_STRUCT,"Creating pvr_v4l2_fh id=%p",fhp);
855 pvr2_channel_init(&fhp->channel,vp->channel.mc_head);
857 fhp->vprev = vp->vlast;
859 vp->vlast->vnext = fhp;
865 } while (0); pvr2_context_exit(vp->channel.mc_head);
868 file->private_data = fhp;
869 v4l2_prio_open(&vp->prio,&fhp->prio);
871 fhp->fw_mode_flag = pvr2_hdw_cpufw_get_enabled(hdw);
877 static void pvr2_v4l2_notify(struct pvr2_v4l2_fh *fhp)
879 wake_up(&fhp->wait_data);
882 static int pvr2_v4l2_iosetup(struct pvr2_v4l2_fh *fh)
885 struct pvr2_stream *sp;
886 struct pvr2_hdw *hdw;
887 if (fh->rhp) return 0;
889 /* First read() attempt. Try to claim the stream and start
891 if ((ret = pvr2_channel_claim_stream(&fh->channel,
892 fh->dev_info->stream)) != 0) {
893 /* Someone else must already have it */
897 fh->rhp = pvr2_channel_create_mpeg_stream(fh->dev_info->stream);
899 pvr2_channel_claim_stream(&fh->channel,NULL);
903 hdw = fh->channel.mc_head->hdw;
904 sp = fh->dev_info->stream->stream;
905 pvr2_stream_set_callback(sp,(pvr2_stream_callback)pvr2_v4l2_notify,fh);
906 pvr2_hdw_set_stream_type(hdw,fh->dev_info->config);
907 pvr2_hdw_set_streaming(hdw,!0);
908 ret = pvr2_ioread_set_enabled(fh->rhp,!0);
914 static ssize_t pvr2_v4l2_read(struct file *file,
915 char __user *buff, size_t count, loff_t *ppos)
917 struct pvr2_v4l2_fh *fh = file->private_data;
920 if (fh->fw_mode_flag) {
921 struct pvr2_hdw *hdw = fh->channel.mc_head->hdw;
925 unsigned int offs = *ppos;
927 tbuf = kmalloc(PAGE_SIZE,GFP_KERNEL);
928 if (!tbuf) return -ENOMEM;
932 if (c1 > PAGE_SIZE) c1 = PAGE_SIZE;
933 c2 = pvr2_hdw_cpufw_get(hdw,offs,tbuf,c1);
939 if (copy_to_user(buff,tbuf,c2)) {
954 ret = pvr2_v4l2_iosetup(fh);
961 ret = pvr2_ioread_read(fh->rhp,buff,count);
963 if (ret != -EAGAIN) break;
964 if (file->f_flags & O_NONBLOCK) break;
965 /* Doing blocking I/O. Wait here. */
966 ret = wait_event_interruptible(
968 pvr2_ioread_avail(fh->rhp) >= 0);
976 static unsigned int pvr2_v4l2_poll(struct file *file, poll_table *wait)
978 unsigned int mask = 0;
979 struct pvr2_v4l2_fh *fh = file->private_data;
982 if (fh->fw_mode_flag) {
983 mask |= POLLIN | POLLRDNORM;
988 ret = pvr2_v4l2_iosetup(fh);
989 if (ret) return POLLERR;
992 poll_wait(file,&fh->wait_data,wait);
994 if (pvr2_ioread_avail(fh->rhp) >= 0) {
995 mask |= POLLIN | POLLRDNORM;
1002 static struct file_operations vdev_fops = {
1003 .owner = THIS_MODULE,
1004 .open = pvr2_v4l2_open,
1005 .release = pvr2_v4l2_release,
1006 .read = pvr2_v4l2_read,
1007 .ioctl = pvr2_v4l2_ioctl,
1008 .llseek = no_llseek,
1009 .poll = pvr2_v4l2_poll,
1013 #define VID_HARDWARE_PVRUSB2 38 /* FIXME : need a good value */
1015 static struct video_device vdev_template = {
1016 .owner = THIS_MODULE,
1017 .type = VID_TYPE_CAPTURE | VID_TYPE_TUNER,
1018 .type2 = (V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VBI_CAPTURE
1019 | V4L2_CAP_TUNER | V4L2_CAP_AUDIO
1020 | V4L2_CAP_READWRITE),
1021 .hardware = VID_HARDWARE_PVRUSB2,
1026 static void pvr2_v4l2_dev_init(struct pvr2_v4l2_dev *dip,
1027 struct pvr2_v4l2 *vp,
1028 enum pvr2_config cfg)
1038 case pvr2_config_mpeg:
1039 v4l_type = VFL_TYPE_GRABBER;
1040 dip->stream = &vp->channel.mc_head->video_stream;
1042 case pvr2_config_vbi:
1043 v4l_type = VFL_TYPE_VBI;
1045 case pvr2_config_radio:
1046 v4l_type = VFL_TYPE_RADIO;
1049 /* Bail out (this should be impossible) */
1050 err("Failed to set up pvrusb2 v4l dev"
1051 " due to unrecognized config");
1056 err("Failed to set up pvrusb2 v4l dev"
1057 " due to missing stream instance");
1061 dip->vdev = video_device_alloc();
1063 err("Alloc of pvrusb2 v4l video device failed");
1067 memcpy(dip->vdev,&vdev_template,sizeof(vdev_template));
1068 dip->vdev->release = video_device_release;
1069 mutex_lock(&device_lock);
1072 unit_number = pvr2_hdw_get_unit_number(vp->channel.mc_head->hdw);
1073 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1074 mindevnum = video_nr[unit_number];
1076 if ((video_register_device(dip->vdev, v4l_type, mindevnum) < 0) &&
1077 (video_register_device(dip->vdev, v4l_type, -1) < 0)) {
1078 err("Failed to register pvrusb2 v4l video device");
1080 printk(KERN_INFO "pvrusb2: registered device video%d [%s]\n",
1081 dip->vdev->minor,pvr2_config_get_name(dip->config));
1084 if ((dip->vdev->minor < sizeof(devices)/sizeof(devices[0])) &&
1085 (devices[dip->vdev->minor] == NULL)) {
1086 dip->ctxt_idx = dip->vdev->minor;
1087 devices[dip->ctxt_idx] = dip;
1089 mutex_unlock(&device_lock);
1091 pvr2_hdw_v4l_store_minor_number(vp->channel.mc_head->hdw,
1096 struct pvr2_v4l2 *pvr2_v4l2_create(struct pvr2_context *mnp)
1098 struct pvr2_v4l2 *vp;
1100 vp = kmalloc(sizeof(*vp),GFP_KERNEL);
1102 memset(vp,0,sizeof(*vp));
1103 vp->video_dev.ctxt_idx = -1;
1104 pvr2_channel_init(&vp->channel,mnp);
1105 pvr2_trace(PVR2_TRACE_STRUCT,"Creating pvr2_v4l2 id=%p",vp);
1107 vp->channel.check_func = pvr2_v4l2_internal_check;
1109 /* register streams */
1110 pvr2_v4l2_dev_init(&vp->video_dev,vp,pvr2_config_mpeg);
1117 Stuff for Emacs to see, in order to encourage consistent editing style:
1118 *** Local Variables: ***
1120 *** fill-column: 75 ***
1121 *** tab-width: 8 ***
1122 *** c-basic-offset: 8 ***