1 #include <media/saa7146_vv.h>
2 #include <linux/version.h>
4 #define BOARD_CAN_DO_VBI(dev) (dev->revision != 0 && dev->vv_data->vbi_minor != -1)
6 /****************************************************************************/
7 /* resource management functions, shamelessly stolen from saa7134 driver */
9 int saa7146_res_get(struct saa7146_fh
*fh
, unsigned int bit
)
11 struct saa7146_dev
*dev
= fh
->dev
;
12 struct saa7146_vv
*vv
= dev
->vv_data
;
14 if (fh
->resources
& bit
) {
15 DEB_D(("already allocated! want: 0x%02x, cur:0x%02x\n",bit
,vv
->resources
));
16 /* have it already allocated */
22 if (vv
->resources
& bit
) {
23 DEB_D(("locked! vv->resources:0x%02x, we want:0x%02x\n",vv
->resources
,bit
));
24 /* no, someone else uses it */
28 /* it's free, grab it */
31 DEB_D(("res: get 0x%02x, cur:0x%02x\n",bit
,vv
->resources
));
36 void saa7146_res_free(struct saa7146_fh
*fh
, unsigned int bits
)
38 struct saa7146_dev
*dev
= fh
->dev
;
39 struct saa7146_vv
*vv
= dev
->vv_data
;
41 if ((fh
->resources
& bits
) != bits
)
45 fh
->resources
&= ~bits
;
46 vv
->resources
&= ~bits
;
47 DEB_D(("res: put 0x%02x, cur:0x%02x\n",bits
,vv
->resources
));
52 /********************************************************************************/
53 /* common dma functions */
55 void saa7146_dma_free(struct saa7146_dev
*dev
,struct saa7146_buf
*buf
)
57 DEB_EE(("dev:%p, buf:%p\n",dev
,buf
));
62 videobuf_waiton(&buf
->vb
,0,0);
63 videobuf_dma_pci_unmap(dev
->pci
, &buf
->vb
.dma
);
64 videobuf_dma_free(&buf
->vb
.dma
);
65 buf
->vb
.state
= STATE_NEEDS_INIT
;
69 /********************************************************************************/
70 /* common buffer functions */
72 int saa7146_buffer_queue(struct saa7146_dev
*dev
,
73 struct saa7146_dmaqueue
*q
,
74 struct saa7146_buf
*buf
)
76 assert_spin_locked(&dev
->slock
);
77 DEB_EE(("dev:%p, dmaq:%p, buf:%p\n", dev
, q
, buf
));
81 if (NULL
== q
->curr
) {
83 DEB_D(("immediately activating buffer %p\n", buf
));
84 buf
->activate(dev
,buf
,NULL
);
86 list_add_tail(&buf
->vb
.queue
,&q
->queue
);
87 buf
->vb
.state
= STATE_QUEUED
;
88 DEB_D(("adding buffer %p to queue. (active buffer present)\n", buf
));
93 void saa7146_buffer_finish(struct saa7146_dev
*dev
,
94 struct saa7146_dmaqueue
*q
,
97 assert_spin_locked(&dev
->slock
);
98 DEB_EE(("dev:%p, dmaq:%p, state:%d\n", dev
, q
, state
));
99 DEB_EE(("q->curr:%p\n",q
->curr
));
103 /* finish current buffer */
104 if (NULL
== q
->curr
) {
105 DEB_D(("aiii. no current buffer\n"));
109 q
->curr
->vb
.state
= state
;
110 do_gettimeofday(&q
->curr
->vb
.ts
);
111 wake_up(&q
->curr
->vb
.done
);
116 void saa7146_buffer_next(struct saa7146_dev
*dev
,
117 struct saa7146_dmaqueue
*q
, int vbi
)
119 struct saa7146_buf
*buf
,*next
= NULL
;
123 DEB_INT(("dev:%p, dmaq:%p, vbi:%d\n", dev
, q
, vbi
));
125 assert_spin_locked(&dev
->slock
);
126 if (!list_empty(&q
->queue
)) {
127 /* activate next one from queue */
128 buf
= list_entry(q
->queue
.next
,struct saa7146_buf
,vb
.queue
);
129 list_del(&buf
->vb
.queue
);
130 if (!list_empty(&q
->queue
))
131 next
= list_entry(q
->queue
.next
,struct saa7146_buf
, vb
.queue
);
133 DEB_INT(("next buffer: buf:%p, prev:%p, next:%p\n", buf
, q
->queue
.prev
,q
->queue
.next
));
134 buf
->activate(dev
,buf
,next
);
136 DEB_INT(("no next buffer. stopping.\n"));
138 /* turn off video-dma3 */
139 saa7146_write(dev
,MC1
, MASK_20
);
141 /* nothing to do -- just prevent next video-dma1 transfer
142 by lowering the protection address */
144 // fixme: fix this for vflip != 0
146 saa7146_write(dev
, PROT_ADDR1
, 0);
147 saa7146_write(dev
, MC2
, (MASK_02
|MASK_18
));
149 /* write the address of the rps-program */
150 saa7146_write(dev
, RPS_ADDR0
, dev
->d_rps0
.dma_handle
);
152 saa7146_write(dev
, MC1
, (MASK_12
| MASK_28
));
155 printk("vdma%d.base_even: 0x%08x\n", 1,saa7146_read(dev,BASE_EVEN1));
156 printk("vdma%d.base_odd: 0x%08x\n", 1,saa7146_read(dev,BASE_ODD1));
157 printk("vdma%d.prot_addr: 0x%08x\n", 1,saa7146_read(dev,PROT_ADDR1));
158 printk("vdma%d.base_page: 0x%08x\n", 1,saa7146_read(dev,BASE_PAGE1));
159 printk("vdma%d.pitch: 0x%08x\n", 1,saa7146_read(dev,PITCH1));
160 printk("vdma%d.num_line_byte: 0x%08x\n", 1,saa7146_read(dev,NUM_LINE_BYTE1));
163 del_timer(&q
->timeout
);
167 void saa7146_buffer_timeout(unsigned long data
)
169 struct saa7146_dmaqueue
*q
= (struct saa7146_dmaqueue
*)data
;
170 struct saa7146_dev
*dev
= q
->dev
;
173 DEB_EE(("dev:%p, dmaq:%p\n", dev
, q
));
175 spin_lock_irqsave(&dev
->slock
,flags
);
177 DEB_D(("timeout on %p\n", q
->curr
));
178 saa7146_buffer_finish(dev
,q
,STATE_ERROR
);
181 /* we don't restart the transfer here like other drivers do. when
182 a streaming capture is disabled, the timeout function will be
183 called for the current buffer. if we activate the next buffer now,
184 we mess up our capture logic. if a timeout occurs on another buffer,
185 then something is seriously broken before, so no need to buffer the
186 next capture IMHO... */
188 saa7146_buffer_next(dev,q);
190 spin_unlock_irqrestore(&dev
->slock
,flags
);
193 /********************************************************************************/
194 /* file operations */
196 static int fops_open(struct inode
*inode
, struct file
*file
)
198 unsigned int minor
= iminor(inode
);
199 struct saa7146_dev
*h
= NULL
, *dev
= NULL
;
200 struct list_head
*list
;
201 struct saa7146_fh
*fh
= NULL
;
204 enum v4l2_buf_type type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
206 DEB_EE(("inode:%p, file:%p, minor:%d\n",inode
,file
,minor
));
208 if (down_interruptible(&saa7146_devices_lock
))
211 list_for_each(list
,&saa7146_devices
) {
212 h
= list_entry(list
, struct saa7146_dev
, item
);
213 if( NULL
== h
->vv_data
) {
214 DEB_D(("device %p has not registered video devices.\n",h
));
217 DEB_D(("trying: %p @ major %d,%d\n",h
,h
->vv_data
->video_minor
,h
->vv_data
->vbi_minor
));
219 if (h
->vv_data
->video_minor
== minor
) {
222 if (h
->vv_data
->vbi_minor
== minor
) {
223 type
= V4L2_BUF_TYPE_VBI_CAPTURE
;
228 DEB_S(("no such video device.\n"));
233 DEB_D(("using: %p\n",dev
));
235 /* check if an extension is registered */
236 if( NULL
== dev
->ext
) {
237 DEB_S(("no extension registered for this device.\n"));
242 /* allocate per open data */
243 fh
= kmalloc(sizeof(*fh
),GFP_KERNEL
);
245 DEB_S(("cannot allocate memory for per open data.\n"));
249 memset(fh
,0,sizeof(*fh
));
251 file
->private_data
= fh
;
255 if( fh
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
) {
256 DEB_S(("initializing vbi...\n"));
257 result
= saa7146_vbi_uops
.open(dev
,file
);
259 DEB_S(("initializing video...\n"));
260 result
= saa7146_video_uops
.open(dev
,file
);
267 if( 0 == try_module_get(dev
->ext
->module
)) {
274 if( fh
!= 0 && result
!= 0 ) {
276 file
->private_data
= NULL
;
278 up(&saa7146_devices_lock
);
282 static int fops_release(struct inode
*inode
, struct file
*file
)
284 struct saa7146_fh
*fh
= file
->private_data
;
285 struct saa7146_dev
*dev
= fh
->dev
;
287 DEB_EE(("inode:%p, file:%p\n",inode
,file
));
289 if (down_interruptible(&saa7146_devices_lock
))
292 if( fh
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
) {
293 saa7146_vbi_uops
.release(dev
,file
);
295 saa7146_video_uops
.release(dev
,file
);
298 module_put(dev
->ext
->module
);
299 file
->private_data
= NULL
;
302 up(&saa7146_devices_lock
);
307 int saa7146_video_do_ioctl(struct inode
*inode
, struct file
*file
, unsigned int cmd
, void *arg
);
308 static int fops_ioctl(struct inode
*inode
, struct file
*file
, unsigned int cmd
, unsigned long arg
)
311 DEB_EE(("inode:%p, file:%p, cmd:%d, arg:%li\n",inode, file, cmd, arg));
313 return video_usercopy(inode
, file
, cmd
, arg
, saa7146_video_do_ioctl
);
316 static int fops_mmap(struct file
*file
, struct vm_area_struct
* vma
)
318 struct saa7146_fh
*fh
= file
->private_data
;
319 struct videobuf_queue
*q
;
322 case V4L2_BUF_TYPE_VIDEO_CAPTURE
: {
323 DEB_EE(("V4L2_BUF_TYPE_VIDEO_CAPTURE: file:%p, vma:%p\n",file
, vma
));
327 case V4L2_BUF_TYPE_VBI_CAPTURE
: {
328 DEB_EE(("V4L2_BUF_TYPE_VBI_CAPTURE: file:%p, vma:%p\n",file
, vma
));
336 return videobuf_mmap_mapper(q
,vma
);
339 static unsigned int fops_poll(struct file
*file
, struct poll_table_struct
*wait
)
341 struct saa7146_fh
*fh
= file
->private_data
;
342 struct videobuf_buffer
*buf
= NULL
;
343 struct videobuf_queue
*q
;
345 DEB_EE(("file:%p, poll:%p\n",file
, wait
));
347 if (V4L2_BUF_TYPE_VBI_CAPTURE
== fh
->type
) {
348 if( 0 == fh
->vbi_q
.streaming
)
349 return videobuf_poll_stream(file
, &fh
->vbi_q
, wait
);
352 DEB_D(("using video queue.\n"));
356 if (!list_empty(&q
->stream
))
357 buf
= list_entry(q
->stream
.next
, struct videobuf_buffer
, stream
);
360 DEB_D(("buf == NULL!\n"));
364 poll_wait(file
, &buf
->done
, wait
);
365 if (buf
->state
== STATE_DONE
|| buf
->state
== STATE_ERROR
) {
366 DEB_D(("poll succeeded!\n"));
367 return POLLIN
|POLLRDNORM
;
370 DEB_D(("nothing to poll for, buf->state:%d\n",buf
->state
));
374 static ssize_t
fops_read(struct file
*file
, char __user
*data
, size_t count
, loff_t
*ppos
)
376 struct saa7146_fh
*fh
= file
->private_data
;
379 case V4L2_BUF_TYPE_VIDEO_CAPTURE
: {
380 // DEB_EE(("V4L2_BUF_TYPE_VIDEO_CAPTURE: file:%p, data:%p, count:%lun", file, data, (unsigned long)count));
381 return saa7146_video_uops
.read(file
,data
,count
,ppos
);
383 case V4L2_BUF_TYPE_VBI_CAPTURE
: {
384 // DEB_EE(("V4L2_BUF_TYPE_VBI_CAPTURE: file:%p, data:%p, count:%lu\n", file, data, (unsigned long)count));
385 return saa7146_vbi_uops
.read(file
,data
,count
,ppos
);
394 static struct file_operations video_fops
=
396 .owner
= THIS_MODULE
,
398 .release
= fops_release
,
406 void vv_callback(struct saa7146_dev
*dev
, unsigned long status
)
410 DEB_INT(("dev:%p, isr:0x%08x\n",dev
,(u32
)status
));
412 if (0 != (isr
& (MASK_27
))) {
413 DEB_INT(("irq: RPS0 (0x%08x).\n",isr
));
414 saa7146_video_uops
.irq_done(dev
,isr
);
417 if (0 != (isr
& (MASK_28
))) {
418 u32 mc2
= saa7146_read(dev
, MC2
);
419 if( 0 != (mc2
& MASK_15
)) {
420 DEB_INT(("irq: RPS1 vbi workaround (0x%08x).\n",isr
));
421 wake_up(&dev
->vv_data
->vbi_wq
);
422 saa7146_write(dev
,MC2
, MASK_31
);
425 DEB_INT(("irq: RPS1 (0x%08x).\n",isr
));
426 saa7146_vbi_uops
.irq_done(dev
,isr
);
430 static struct video_device device_template
=
432 .hardware
= VID_HARDWARE_SAA7146
,
437 int saa7146_vv_init(struct saa7146_dev
* dev
, struct saa7146_ext_vv
*ext_vv
)
439 struct saa7146_vv
*vv
= kmalloc (sizeof(struct saa7146_vv
),GFP_KERNEL
);
441 ERR(("out of memory. aborting.\n"));
444 memset(vv
, 0x0, sizeof(*vv
));
446 DEB_EE(("dev:%p\n",dev
));
448 /* set default values for video parts of the saa7146 */
449 saa7146_write(dev
, BCS_CTRL
, 0x80400040);
451 /* enable video-port pins */
452 saa7146_write(dev
, MC1
, (MASK_10
| MASK_26
));
454 /* save per-device extension data (one extension can
455 handle different devices that might need different
456 configuration data) */
457 dev
->ext_vv_data
= ext_vv
;
459 vv
->video_minor
= -1;
462 vv
->d_clipping
.cpu_addr
= pci_alloc_consistent(dev
->pci
, SAA7146_CLIPPING_MEM
, &vv
->d_clipping
.dma_handle
);
463 if( NULL
== vv
->d_clipping
.cpu_addr
) {
464 ERR(("out of memory. aborting.\n"));
468 memset(vv
->d_clipping
.cpu_addr
, 0x0, SAA7146_CLIPPING_MEM
);
470 saa7146_video_uops
.init(dev
,vv
);
471 saa7146_vbi_uops
.init(dev
,vv
);
474 dev
->vv_callback
= &vv_callback
;
479 int saa7146_vv_release(struct saa7146_dev
* dev
)
481 struct saa7146_vv
*vv
= dev
->vv_data
;
483 DEB_EE(("dev:%p\n",dev
));
485 pci_free_consistent(dev
->pci
, SAA7146_RPS_MEM
, vv
->d_clipping
.cpu_addr
, vv
->d_clipping
.dma_handle
);
488 dev
->vv_callback
= NULL
;
493 int saa7146_register_device(struct video_device
**vid
, struct saa7146_dev
* dev
,
494 char *name
, int type
)
496 struct saa7146_vv
*vv
= dev
->vv_data
;
497 struct video_device
*vfd
;
499 DEB_EE(("dev:%p, name:'%s', type:%d\n",dev
,name
,type
));
501 // released by vfd->release
502 vfd
= video_device_alloc();
506 memcpy(vfd
, &device_template
, sizeof(struct video_device
));
507 strlcpy(vfd
->name
, name
, sizeof(vfd
->name
));
508 vfd
->release
= video_device_release
;
511 // fixme: -1 should be an insmod parameter *for the extension* (like "video_nr");
512 if (video_register_device(vfd
, type
, -1) < 0) {
513 ERR(("cannot register v4l2 device. skipping.\n"));
517 if( VFL_TYPE_GRABBER
== type
) {
518 vv
->video_minor
= vfd
->minor
;
519 INFO(("%s: registered device video%d [v4l2]\n",
520 dev
->name
, vfd
->minor
& 0x1f));
522 vv
->vbi_minor
= vfd
->minor
;
523 INFO(("%s: registered device vbi%d [v4l2]\n",
524 dev
->name
, vfd
->minor
& 0x1f));
531 int saa7146_unregister_device(struct video_device
**vid
, struct saa7146_dev
* dev
)
533 struct saa7146_vv
*vv
= dev
->vv_data
;
535 DEB_EE(("dev:%p\n",dev
));
537 if( VFL_TYPE_GRABBER
== (*vid
)->type
) {
538 vv
->video_minor
= -1;
543 video_unregister_device(*vid
);
549 static int __init
saa7146_vv_init_module(void)
555 static void __exit
saa7146_vv_cleanup_module(void)
559 module_init(saa7146_vv_init_module
);
560 module_exit(saa7146_vv_cleanup_module
);
562 MODULE_AUTHOR("Michael Hunold <michael@mihu.de>");
563 MODULE_DESCRIPTION("video4linux driver for saa7146-based hardware");
564 MODULE_LICENSE("GPL");