Commit 7ddf4633 authored by Michael Hunold's avatar Michael Hunold Committed by Linus Torvalds

[PATCH] Fix vbi handling in saa7146 core driver

 - add some debug and safety checks for video/vbi capture buffer
   handling
 - add new flag SAA7146_USE_PORT_B_FOR_VBI, so we can distinguish on
   which video port to apply the vbi workaround
 - add del_timer(...) for vbi capture queue and vbi_read timers,
   prevents oopses on vbi usage
parent 26a64442
...@@ -61,8 +61,14 @@ void saa7146_buffer_finish(struct saa7146_dev *dev, ...@@ -61,8 +61,14 @@ void saa7146_buffer_finish(struct saa7146_dev *dev,
} }
DEB_EE(("dev:%p, dmaq:%p, state:%d\n", dev, q, state)); DEB_EE(("dev:%p, dmaq:%p, state:%d\n", dev, q, state));
DEB_EE(("q->curr:%p\n",q->curr));
/* finish current buffer */ /* finish current buffer */
if (NULL == q->curr) {
DEB_D(("aiii. no current buffer\n"));
return;
}
q->curr->vb.state = state; q->curr->vb.state = state;
do_gettimeofday(&q->curr->vb.ts); do_gettimeofday(&q->curr->vb.ts);
wake_up(&q->curr->vb.done); wake_up(&q->curr->vb.done);
...@@ -221,9 +227,12 @@ static int fops_open(struct inode *inode, struct file *file) ...@@ -221,9 +227,12 @@ static int fops_open(struct inode *inode, struct file *file)
fh->dev = dev; fh->dev = dev;
fh->type = type; fh->type = type;
saa7146_video_uops.open(dev,fh); if( fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
if( 0 != BOARD_CAN_DO_VBI(dev) ) { DEB_S(("initializing vbi...\n"));
saa7146_vbi_uops.open(dev,fh); saa7146_vbi_uops.open(dev,fh);
} else {
DEB_S(("initializing video...\n"));
saa7146_video_uops.open(dev,fh);
} }
result = 0; result = 0;
...@@ -245,9 +254,10 @@ static int fops_release(struct inode *inode, struct file *file) ...@@ -245,9 +254,10 @@ static int fops_release(struct inode *inode, struct file *file)
if (down_interruptible(&saa7146_devices_lock)) if (down_interruptible(&saa7146_devices_lock))
return -ERESTARTSYS; return -ERESTARTSYS;
saa7146_video_uops.release(dev,fh,file); if( fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
if( 0 != BOARD_CAN_DO_VBI(dev) ) {
saa7146_vbi_uops.release(dev,fh,file); saa7146_vbi_uops.release(dev,fh,file);
} else {
saa7146_video_uops.release(dev,fh,file);
} }
module_put(dev->ext->module); module_put(dev->ext->module);
...@@ -332,11 +342,11 @@ static ssize_t fops_read(struct file *file, char *data, size_t count, loff_t *pp ...@@ -332,11 +342,11 @@ static ssize_t fops_read(struct file *file, char *data, size_t count, loff_t *pp
switch (fh->type) { switch (fh->type) {
case V4L2_BUF_TYPE_VIDEO_CAPTURE: { case V4L2_BUF_TYPE_VIDEO_CAPTURE: {
DEB_EE(("V4L2_BUF_TYPE_VIDEO_CAPTURE: file:%p, data:%p, count:%lun", file, data, (unsigned long)count)); // DEB_EE(("V4L2_BUF_TYPE_VIDEO_CAPTURE: file:%p, data:%p, count:%lun", file, data, (unsigned long)count));
return saa7146_video_uops.read(file,data,count,ppos); return saa7146_video_uops.read(file,data,count,ppos);
} }
case V4L2_BUF_TYPE_VBI_CAPTURE: { case V4L2_BUF_TYPE_VBI_CAPTURE: {
DEB_EE(("V4L2_BUF_TYPE_VBI_CAPTURE: file:%p, data:%p, count:%lu\n", file, data, (unsigned long)count)); // DEB_EE(("V4L2_BUF_TYPE_VBI_CAPTURE: file:%p, data:%p, count:%lu\n", file, data, (unsigned long)count));
return saa7146_vbi_uops.read(file,data,count,ppos); return saa7146_vbi_uops.read(file,data,count,ppos);
} }
break; break;
...@@ -443,7 +453,7 @@ int saa7146_register_device(struct video_device *vid, struct saa7146_dev* dev, c ...@@ -443,7 +453,7 @@ int saa7146_register_device(struct video_device *vid, struct saa7146_dev* dev, c
{ {
struct saa7146_vv *vv = dev->vv_data; struct saa7146_vv *vv = dev->vv_data;
DEB_EE(("dev:%p, name:'%s'\n",dev,name)); DEB_EE(("dev:%p, name:'%s', type:%d\n",dev,name,type));
*vid = device_template; *vid = device_template;
strlcpy(vid->name, name, sizeof(vid->name)); strlcpy(vid->name, name, sizeof(vid->name));
...@@ -451,7 +461,7 @@ int saa7146_register_device(struct video_device *vid, struct saa7146_dev* dev, c ...@@ -451,7 +461,7 @@ int saa7146_register_device(struct video_device *vid, struct saa7146_dev* dev, c
// fixme: -1 should be an insmod parameter *for the extension* (like "video_nr"); // fixme: -1 should be an insmod parameter *for the extension* (like "video_nr");
if (video_register_device(vid,type,-1) < 0) { if (video_register_device(vid,type,-1) < 0) {
ERR(("cannot register vbi v4l2 device. skipping.\n")); ERR(("cannot register v4l2 device. skipping.\n"));
return -1; return -1;
} }
......
...@@ -38,8 +38,14 @@ static int vbi_workaround(struct saa7146_dev *dev) ...@@ -38,8 +38,14 @@ static int vbi_workaround(struct saa7146_dev *dev)
WRITE_RPS1(CMD_WR_REG | (1 << 8) | (BRS_CTRL/4)); WRITE_RPS1(CMD_WR_REG | (1 << 8) | (BRS_CTRL/4));
/* BXO = 1h, BRS to outbound */ /* BXO = 1h, BRS to outbound */
WRITE_RPS1(0xc000008c); WRITE_RPS1(0xc000008c);
/* wait for vbi_a */ /* wait for vbi_a or vbi_b*/
if ( 0 != (SAA7146_USE_PORT_B_FOR_VBI & dev->ext_vv_data->flags)) {
DEB_D(("...using port b\n"));
WRITE_RPS1(CMD_PAUSE | MASK_09);
} else {
DEB_D(("...using port a\n"));
WRITE_RPS1(CMD_PAUSE | MASK_10); WRITE_RPS1(CMD_PAUSE | MASK_10);
}
/* upload brs */ /* upload brs */
WRITE_RPS1(CMD_UPLOAD | MASK_08); WRITE_RPS1(CMD_UPLOAD | MASK_08);
/* load brs-control register */ /* load brs-control register */
...@@ -106,7 +112,7 @@ static int vbi_workaround(struct saa7146_dev *dev) ...@@ -106,7 +112,7 @@ static int vbi_workaround(struct saa7146_dev *dev)
if(signal_pending(current)) { if(signal_pending(current)) {
DEB_VBI(("aborted.\n")); DEB_VBI(("aborted (rps:0x%08x).\n",saa7146_read(dev,RPS_ADDR1)));
/* stop rps1 for sure */ /* stop rps1 for sure */
saa7146_write(dev, MC1, MASK_29); saa7146_write(dev, MC1, MASK_29);
...@@ -316,6 +322,11 @@ static void vbi_stop(struct saa7146_fh *fh) ...@@ -316,6 +322,11 @@ static void vbi_stop(struct saa7146_fh *fh)
saa7146_write(dev, MC1, MASK_20); saa7146_write(dev, MC1, MASK_20);
vv->vbi_streaming = NULL; vv->vbi_streaming = NULL;
del_timer(&vv->vbi_q.timeout);
del_timer(&fh->vbi_read_timeout);
DEB_VBI(("out\n"));
spin_unlock_irqrestore(&dev->slock, flags); spin_unlock_irqrestore(&dev->slock, flags);
} }
...@@ -371,7 +382,10 @@ static void vbi_open(struct saa7146_dev *dev, struct saa7146_fh *fh) ...@@ -371,7 +382,10 @@ static void vbi_open(struct saa7146_dev *dev, struct saa7146_fh *fh)
fh->vbi_read_timeout.function = vbi_read_timeout; fh->vbi_read_timeout.function = vbi_read_timeout;
fh->vbi_read_timeout.data = (unsigned long)fh; fh->vbi_read_timeout.data = (unsigned long)fh;
/* fixme: enable this again, if the dvb-c w/ analog module work properly */
/*
vbi_workaround(dev); vbi_workaround(dev);
*/
} }
static void vbi_close(struct saa7146_dev *dev, struct saa7146_fh *fh, struct file *file) static void vbi_close(struct saa7146_dev *dev, struct saa7146_fh *fh, struct file *file)
......
...@@ -1319,7 +1319,7 @@ static int buffer_prepare(struct file *file, struct videobuf_buffer *vb, enum v4 ...@@ -1319,7 +1319,7 @@ static int buffer_prepare(struct file *file, struct videobuf_buffer *vb, enum v4
saa7146_pgtable_alloc(dev->pci, &buf->pt[0]); saa7146_pgtable_alloc(dev->pci, &buf->pt[0]);
} }
err = videobuf_iolock(dev->pci,&buf->vb,NULL); err = videobuf_iolock(dev->pci,&buf->vb, &vv->ov_fb);
if (err) if (err)
goto oops; goto oops;
err = saa7146_pgtable_build(dev,buf); err = saa7146_pgtable_build(dev,buf);
......
...@@ -150,6 +150,7 @@ struct saa7146_extension_ioctls ...@@ -150,6 +150,7 @@ struct saa7146_extension_ioctls
/* flags */ /* flags */
#define SAA7146_EXT_SWAP_ODD_EVEN 0x1 /* needs odd/even fields swapped */ #define SAA7146_EXT_SWAP_ODD_EVEN 0x1 /* needs odd/even fields swapped */
#define SAA7146_USE_PORT_B_FOR_VBI 0x2 /* use input port b for vbi hardware bug workaround */
struct saa7146_ext_vv struct saa7146_ext_vv
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment