1 #include <media/saa7146_vv.h>
3 /****************************************************************************/
4 /* resource management functions, shamelessly stolen from saa7134 driver */
6 int saa7146_res_get(struct saa7146_fh
*fh
, unsigned int bit
)
8 struct saa7146_dev
*dev
= fh
->dev
;
9 struct saa7146_vv
*vv
= dev
->vv_data
;
11 if (fh
->resources
& bit
) {
12 DEB_D(("already allocated! want: 0x%02x, cur:0x%02x\n",bit
,vv
->resources
));
13 /* have it already allocated */
18 if (vv
->resources
& bit
) {
19 DEB_D(("locked! vv->resources:0x%02x, we want:0x%02x\n",vv
->resources
,bit
));
20 /* no, someone else uses it */
23 /* it's free, grab it */
26 DEB_D(("res: get 0x%02x, cur:0x%02x\n",bit
,vv
->resources
));
30 void saa7146_res_free(struct saa7146_fh
*fh
, unsigned int bits
)
32 struct saa7146_dev
*dev
= fh
->dev
;
33 struct saa7146_vv
*vv
= dev
->vv_data
;
35 BUG_ON((fh
->resources
& bits
) != bits
);
37 fh
->resources
&= ~bits
;
38 vv
->resources
&= ~bits
;
39 DEB_D(("res: put 0x%02x, cur:0x%02x\n",bits
,vv
->resources
));
43 /********************************************************************************/
44 /* common dma functions */
46 void saa7146_dma_free(struct saa7146_dev
*dev
,struct videobuf_queue
*q
,
47 struct saa7146_buf
*buf
)
49 struct videobuf_dmabuf
*dma
=videobuf_to_dma(&buf
->vb
);
50 DEB_EE(("dev:%p, buf:%p\n",dev
,buf
));
52 BUG_ON(in_interrupt());
54 videobuf_waiton(q
, &buf
->vb
, 0, 0);
55 videobuf_dma_unmap(q
->dev
, dma
);
56 videobuf_dma_free(dma
);
57 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
61 /********************************************************************************/
62 /* common buffer functions */
64 int saa7146_buffer_queue(struct saa7146_dev
*dev
,
65 struct saa7146_dmaqueue
*q
,
66 struct saa7146_buf
*buf
)
68 assert_spin_locked(&dev
->slock
);
69 DEB_EE(("dev:%p, dmaq:%p, buf:%p\n", dev
, q
, buf
));
73 if (NULL
== q
->curr
) {
75 DEB_D(("immediately activating buffer %p\n", buf
));
76 buf
->activate(dev
,buf
,NULL
);
78 list_add_tail(&buf
->vb
.queue
,&q
->queue
);
79 buf
->vb
.state
= VIDEOBUF_QUEUED
;
80 DEB_D(("adding buffer %p to queue. (active buffer present)\n", buf
));
85 void saa7146_buffer_finish(struct saa7146_dev
*dev
,
86 struct saa7146_dmaqueue
*q
,
89 assert_spin_locked(&dev
->slock
);
90 DEB_EE(("dev:%p, dmaq:%p, state:%d\n", dev
, q
, state
));
91 DEB_EE(("q->curr:%p\n",q
->curr
));
95 /* finish current buffer */
96 if (NULL
== q
->curr
) {
97 DEB_D(("aiii. no current buffer\n"));
101 q
->curr
->vb
.state
= state
;
102 do_gettimeofday(&q
->curr
->vb
.ts
);
103 wake_up(&q
->curr
->vb
.done
);
108 void saa7146_buffer_next(struct saa7146_dev
*dev
,
109 struct saa7146_dmaqueue
*q
, int vbi
)
111 struct saa7146_buf
*buf
,*next
= NULL
;
115 DEB_INT(("dev:%p, dmaq:%p, vbi:%d\n", dev
, q
, vbi
));
117 assert_spin_locked(&dev
->slock
);
118 if (!list_empty(&q
->queue
)) {
119 /* activate next one from queue */
120 buf
= list_entry(q
->queue
.next
,struct saa7146_buf
,vb
.queue
);
121 list_del(&buf
->vb
.queue
);
122 if (!list_empty(&q
->queue
))
123 next
= list_entry(q
->queue
.next
,struct saa7146_buf
, vb
.queue
);
125 DEB_INT(("next buffer: buf:%p, prev:%p, next:%p\n", buf
, q
->queue
.prev
,q
->queue
.next
));
126 buf
->activate(dev
,buf
,next
);
128 DEB_INT(("no next buffer. stopping.\n"));
130 /* turn off video-dma3 */
131 saa7146_write(dev
,MC1
, MASK_20
);
133 /* nothing to do -- just prevent next video-dma1 transfer
134 by lowering the protection address */
136 // fixme: fix this for vflip != 0
138 saa7146_write(dev
, PROT_ADDR1
, 0);
139 saa7146_write(dev
, MC2
, (MASK_02
|MASK_18
));
141 /* write the address of the rps-program */
142 saa7146_write(dev
, RPS_ADDR0
, dev
->d_rps0
.dma_handle
);
144 saa7146_write(dev
, MC1
, (MASK_12
| MASK_28
));
147 printk("vdma%d.base_even: 0x%08x\n", 1,saa7146_read(dev,BASE_EVEN1));
148 printk("vdma%d.base_odd: 0x%08x\n", 1,saa7146_read(dev,BASE_ODD1));
149 printk("vdma%d.prot_addr: 0x%08x\n", 1,saa7146_read(dev,PROT_ADDR1));
150 printk("vdma%d.base_page: 0x%08x\n", 1,saa7146_read(dev,BASE_PAGE1));
151 printk("vdma%d.pitch: 0x%08x\n", 1,saa7146_read(dev,PITCH1));
152 printk("vdma%d.num_line_byte: 0x%08x\n", 1,saa7146_read(dev,NUM_LINE_BYTE1));
155 del_timer(&q
->timeout
);
159 void saa7146_buffer_timeout(unsigned long data
)
161 struct saa7146_dmaqueue
*q
= (struct saa7146_dmaqueue
*)data
;
162 struct saa7146_dev
*dev
= q
->dev
;
165 DEB_EE(("dev:%p, dmaq:%p\n", dev
, q
));
167 spin_lock_irqsave(&dev
->slock
,flags
);
169 DEB_D(("timeout on %p\n", q
->curr
));
170 saa7146_buffer_finish(dev
,q
,VIDEOBUF_ERROR
);
173 /* we don't restart the transfer here like other drivers do. when
174 a streaming capture is disabled, the timeout function will be
175 called for the current buffer. if we activate the next buffer now,
176 we mess up our capture logic. if a timeout occurs on another buffer,
177 then something is seriously broken before, so no need to buffer the
178 next capture IMHO... */
180 saa7146_buffer_next(dev,q);
182 spin_unlock_irqrestore(&dev
->slock
,flags
);
185 /********************************************************************************/
186 /* file operations */
188 static int fops_open(struct file
*file
)
190 struct video_device
*vdev
= video_devdata(file
);
191 struct saa7146_dev
*dev
= video_drvdata(file
);
192 struct saa7146_fh
*fh
= NULL
;
195 enum v4l2_buf_type type
;
197 DEB_EE(("file:%p, dev:%s\n", file
, video_device_node_name(vdev
)));
199 if (mutex_lock_interruptible(&saa7146_devices_lock
))
202 DEB_D(("using: %p\n",dev
));
204 type
= vdev
->vfl_type
== VFL_TYPE_GRABBER
205 ? V4L2_BUF_TYPE_VIDEO_CAPTURE
206 : V4L2_BUF_TYPE_VBI_CAPTURE
;
208 /* check if an extension is registered */
209 if( NULL
== dev
->ext
) {
210 DEB_S(("no extension registered for this device.\n"));
215 /* allocate per open data */
216 fh
= kzalloc(sizeof(*fh
),GFP_KERNEL
);
218 DEB_S(("cannot allocate memory for per open data.\n"));
223 file
->private_data
= fh
;
227 if( fh
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
) {
228 DEB_S(("initializing vbi...\n"));
229 if (dev
->ext_vv_data
->capabilities
& V4L2_CAP_VBI_CAPTURE
)
230 result
= saa7146_vbi_uops
.open(dev
,file
);
231 if (dev
->ext_vv_data
->vbi_fops
.open
)
232 dev
->ext_vv_data
->vbi_fops
.open(file
);
234 DEB_S(("initializing video...\n"));
235 result
= saa7146_video_uops
.open(dev
,file
);
242 if( 0 == try_module_get(dev
->ext
->module
)) {
249 if (fh
&& result
!= 0) {
251 file
->private_data
= NULL
;
253 mutex_unlock(&saa7146_devices_lock
);
257 static int fops_release(struct file
*file
)
259 struct saa7146_fh
*fh
= file
->private_data
;
260 struct saa7146_dev
*dev
= fh
->dev
;
262 DEB_EE(("file:%p\n", file
));
264 if (mutex_lock_interruptible(&saa7146_devices_lock
))
267 if( fh
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
) {
268 if (dev
->ext_vv_data
->capabilities
& V4L2_CAP_VBI_CAPTURE
)
269 saa7146_vbi_uops
.release(dev
,file
);
270 if (dev
->ext_vv_data
->vbi_fops
.release
)
271 dev
->ext_vv_data
->vbi_fops
.release(file
);
273 saa7146_video_uops
.release(dev
,file
);
276 module_put(dev
->ext
->module
);
277 file
->private_data
= NULL
;
280 mutex_unlock(&saa7146_devices_lock
);
285 static int fops_mmap(struct file
*file
, struct vm_area_struct
* vma
)
287 struct saa7146_fh
*fh
= file
->private_data
;
288 struct videobuf_queue
*q
;
291 case V4L2_BUF_TYPE_VIDEO_CAPTURE
: {
292 DEB_EE(("V4L2_BUF_TYPE_VIDEO_CAPTURE: file:%p, vma:%p\n",file
, vma
));
296 case V4L2_BUF_TYPE_VBI_CAPTURE
: {
297 DEB_EE(("V4L2_BUF_TYPE_VBI_CAPTURE: file:%p, vma:%p\n",file
, vma
));
306 return videobuf_mmap_mapper(q
,vma
);
309 static unsigned int fops_poll(struct file
*file
, struct poll_table_struct
*wait
)
311 struct saa7146_fh
*fh
= file
->private_data
;
312 struct videobuf_buffer
*buf
= NULL
;
313 struct videobuf_queue
*q
;
315 DEB_EE(("file:%p, poll:%p\n",file
, wait
));
317 if (V4L2_BUF_TYPE_VBI_CAPTURE
== fh
->type
) {
318 if( 0 == fh
->vbi_q
.streaming
)
319 return videobuf_poll_stream(file
, &fh
->vbi_q
, wait
);
322 DEB_D(("using video queue.\n"));
326 if (!list_empty(&q
->stream
))
327 buf
= list_entry(q
->stream
.next
, struct videobuf_buffer
, stream
);
330 DEB_D(("buf == NULL!\n"));
334 poll_wait(file
, &buf
->done
, wait
);
335 if (buf
->state
== VIDEOBUF_DONE
|| buf
->state
== VIDEOBUF_ERROR
) {
336 DEB_D(("poll succeeded!\n"));
337 return POLLIN
|POLLRDNORM
;
340 DEB_D(("nothing to poll for, buf->state:%d\n",buf
->state
));
344 static ssize_t
fops_read(struct file
*file
, char __user
*data
, size_t count
, loff_t
*ppos
)
346 struct saa7146_fh
*fh
= file
->private_data
;
349 case V4L2_BUF_TYPE_VIDEO_CAPTURE
: {
350 // DEB_EE(("V4L2_BUF_TYPE_VIDEO_CAPTURE: file:%p, data:%p, count:%lun", file, data, (unsigned long)count));
351 return saa7146_video_uops
.read(file
,data
,count
,ppos
);
353 case V4L2_BUF_TYPE_VBI_CAPTURE
: {
354 // DEB_EE(("V4L2_BUF_TYPE_VBI_CAPTURE: file:%p, data:%p, count:%lu\n", file, data, (unsigned long)count));
355 if (fh
->dev
->ext_vv_data
->capabilities
& V4L2_CAP_VBI_CAPTURE
)
356 return saa7146_vbi_uops
.read(file
,data
,count
,ppos
);
367 static ssize_t
fops_write(struct file
*file
, const char __user
*data
, size_t count
, loff_t
*ppos
)
369 struct saa7146_fh
*fh
= file
->private_data
;
372 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
374 case V4L2_BUF_TYPE_VBI_CAPTURE
:
375 if (fh
->dev
->ext_vv_data
->vbi_fops
.write
)
376 return fh
->dev
->ext_vv_data
->vbi_fops
.write(file
, data
, count
, ppos
);
385 static const struct v4l2_file_operations video_fops
=
387 .owner
= THIS_MODULE
,
389 .release
= fops_release
,
394 .unlocked_ioctl
= video_ioctl2
,
397 static void vv_callback(struct saa7146_dev
*dev
, unsigned long status
)
401 DEB_INT(("dev:%p, isr:0x%08x\n",dev
,(u32
)status
));
403 if (0 != (isr
& (MASK_27
))) {
404 DEB_INT(("irq: RPS0 (0x%08x).\n",isr
));
405 saa7146_video_uops
.irq_done(dev
,isr
);
408 if (0 != (isr
& (MASK_28
))) {
409 u32 mc2
= saa7146_read(dev
, MC2
);
410 if( 0 != (mc2
& MASK_15
)) {
411 DEB_INT(("irq: RPS1 vbi workaround (0x%08x).\n",isr
));
412 wake_up(&dev
->vv_data
->vbi_wq
);
413 saa7146_write(dev
,MC2
, MASK_31
);
416 DEB_INT(("irq: RPS1 (0x%08x).\n",isr
));
417 saa7146_vbi_uops
.irq_done(dev
,isr
);
421 int saa7146_vv_init(struct saa7146_dev
* dev
, struct saa7146_ext_vv
*ext_vv
)
423 struct saa7146_vv
*vv
;
426 err
= v4l2_device_register(&dev
->pci
->dev
, &dev
->v4l2_dev
);
430 vv
= kzalloc(sizeof(struct saa7146_vv
), GFP_KERNEL
);
432 ERR(("out of memory. aborting.\n"));
435 ext_vv
->ops
= saa7146_video_ioctl_ops
;
436 ext_vv
->core_ops
= &saa7146_video_ioctl_ops
;
438 DEB_EE(("dev:%p\n",dev
));
440 /* set default values for video parts of the saa7146 */
441 saa7146_write(dev
, BCS_CTRL
, 0x80400040);
443 /* enable video-port pins */
444 saa7146_write(dev
, MC1
, (MASK_10
| MASK_26
));
446 /* save per-device extension data (one extension can
447 handle different devices that might need different
448 configuration data) */
449 dev
->ext_vv_data
= ext_vv
;
451 vv
->d_clipping
.cpu_addr
= pci_alloc_consistent(dev
->pci
, SAA7146_CLIPPING_MEM
, &vv
->d_clipping
.dma_handle
);
452 if( NULL
== vv
->d_clipping
.cpu_addr
) {
453 ERR(("out of memory. aborting.\n"));
457 memset(vv
->d_clipping
.cpu_addr
, 0x0, SAA7146_CLIPPING_MEM
);
459 saa7146_video_uops
.init(dev
,vv
);
460 if (dev
->ext_vv_data
->capabilities
& V4L2_CAP_VBI_CAPTURE
)
461 saa7146_vbi_uops
.init(dev
,vv
);
464 dev
->vv_callback
= &vv_callback
;
468 EXPORT_SYMBOL_GPL(saa7146_vv_init
);
470 int saa7146_vv_release(struct saa7146_dev
* dev
)
472 struct saa7146_vv
*vv
= dev
->vv_data
;
474 DEB_EE(("dev:%p\n",dev
));
476 v4l2_device_unregister(&dev
->v4l2_dev
);
477 pci_free_consistent(dev
->pci
, SAA7146_CLIPPING_MEM
, vv
->d_clipping
.cpu_addr
, vv
->d_clipping
.dma_handle
);
480 dev
->vv_callback
= NULL
;
484 EXPORT_SYMBOL_GPL(saa7146_vv_release
);
486 int saa7146_register_device(struct video_device
**vid
, struct saa7146_dev
* dev
,
487 char *name
, int type
)
489 struct video_device
*vfd
;
493 DEB_EE(("dev:%p, name:'%s', type:%d\n",dev
,name
,type
));
495 // released by vfd->release
496 vfd
= video_device_alloc();
500 vfd
->fops
= &video_fops
;
501 vfd
->ioctl_ops
= &dev
->ext_vv_data
->ops
;
502 vfd
->release
= video_device_release
;
503 vfd
->lock
= &dev
->v4l2_lock
;
505 for (i
= 0; i
< dev
->ext_vv_data
->num_stds
; i
++)
506 vfd
->tvnorms
|= dev
->ext_vv_data
->stds
[i
].id
;
507 strlcpy(vfd
->name
, name
, sizeof(vfd
->name
));
508 video_set_drvdata(vfd
, dev
);
510 err
= video_register_device(vfd
, type
, -1);
512 ERR(("cannot register v4l2 device. skipping.\n"));
513 video_device_release(vfd
);
517 INFO(("%s: registered device %s [v4l2]\n",
518 dev
->name
, video_device_node_name(vfd
)));
523 EXPORT_SYMBOL_GPL(saa7146_register_device
);
525 int saa7146_unregister_device(struct video_device
**vid
, struct saa7146_dev
* dev
)
527 DEB_EE(("dev:%p\n",dev
));
529 video_unregister_device(*vid
);
534 EXPORT_SYMBOL_GPL(saa7146_unregister_device
);
536 static int __init
saa7146_vv_init_module(void)
542 static void __exit
saa7146_vv_cleanup_module(void)
546 module_init(saa7146_vv_init_module
);
547 module_exit(saa7146_vv_cleanup_module
);
549 MODULE_AUTHOR("Michael Hunold <michael@mihu.de>");
550 MODULE_DESCRIPTION("video4linux driver for saa7146-based hardware");
551 MODULE_LICENSE("GPL");