1 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
3 #include <media/drv-intf/saa7146_vv.h>
4 #include <media/v4l2-event.h>
5 #include <media/v4l2-ctrls.h>
6 #include <linux/module.h>
7 #include <linux/kernel.h>
9 static int max_memory
= 32;
11 module_param(max_memory
, int, 0644);
12 MODULE_PARM_DESC(max_memory
, "maximum memory usage for capture buffers (default: 32Mb)");
14 #define IS_CAPTURE_ACTIVE(fh) \
15 (((vv->video_status & STATUS_CAPTURE) != 0) && (vv->video_fh == fh))
17 #define IS_OVERLAY_ACTIVE(fh) \
18 (((vv->video_status & STATUS_OVERLAY) != 0) && (vv->video_fh == fh))
20 /* format descriptions for capture and preview */
21 static struct saa7146_format formats
[] = {
23 .name
= "RGB-8 (3-3-2)",
24 .pixelformat
= V4L2_PIX_FMT_RGB332
,
25 .trans
= RGB08_COMPOSED
,
29 .name
= "RGB-16 (5/B-6/G-5/R)",
30 .pixelformat
= V4L2_PIX_FMT_RGB565
,
31 .trans
= RGB16_COMPOSED
,
35 .name
= "RGB-24 (B-G-R)",
36 .pixelformat
= V4L2_PIX_FMT_BGR24
,
37 .trans
= RGB24_COMPOSED
,
41 .name
= "RGB-32 (B-G-R)",
42 .pixelformat
= V4L2_PIX_FMT_BGR32
,
43 .trans
= RGB32_COMPOSED
,
47 .name
= "RGB-32 (R-G-B)",
48 .pixelformat
= V4L2_PIX_FMT_RGB32
,
49 .trans
= RGB32_COMPOSED
,
54 .name
= "Greyscale-8",
55 .pixelformat
= V4L2_PIX_FMT_GREY
,
60 .name
= "YUV 4:2:2 planar (Y-Cb-Cr)",
61 .pixelformat
= V4L2_PIX_FMT_YUV422P
,
62 .trans
= YUV422_DECOMPOSED
,
64 .flags
= FORMAT_BYTE_SWAP
|FORMAT_IS_PLANAR
,
66 .name
= "YVU 4:2:0 planar (Y-Cb-Cr)",
67 .pixelformat
= V4L2_PIX_FMT_YVU420
,
68 .trans
= YUV420_DECOMPOSED
,
70 .flags
= FORMAT_BYTE_SWAP
|FORMAT_IS_PLANAR
,
72 .name
= "YUV 4:2:0 planar (Y-Cb-Cr)",
73 .pixelformat
= V4L2_PIX_FMT_YUV420
,
74 .trans
= YUV420_DECOMPOSED
,
76 .flags
= FORMAT_IS_PLANAR
,
78 .name
= "YUV 4:2:2 (U-Y-V-Y)",
79 .pixelformat
= V4L2_PIX_FMT_UYVY
,
80 .trans
= YUV422_COMPOSED
,
86 /* unfortunately, the saa7146 contains a bug which prevents it from doing on-the-fly byte swaps.
87 due to this, it's impossible to provide additional *packed* formats, which are simply byte swapped
88 (like V4L2_PIX_FMT_YUYV) ... 8-( */
90 struct saa7146_format
* saa7146_format_by_fourcc(struct saa7146_dev
*dev
, int fourcc
)
94 for (i
= 0; i
< ARRAY_SIZE(formats
); i
++) {
95 if (formats
[i
].pixelformat
== fourcc
) {
100 DEB_D("unknown pixelformat:'%4.4s'\n", (char *)&fourcc
);
104 static int vidioc_try_fmt_vid_overlay(struct file
*file
, void *fh
, struct v4l2_format
*f
);
106 int saa7146_start_preview(struct saa7146_fh
*fh
)
108 struct saa7146_dev
*dev
= fh
->dev
;
109 struct saa7146_vv
*vv
= dev
->vv_data
;
110 struct v4l2_format fmt
;
111 int ret
= 0, err
= 0;
113 DEB_EE("dev:%p, fh:%p\n", dev
, fh
);
115 /* check if we have overlay information */
116 if (vv
->ov
.fh
== NULL
) {
117 DEB_D("no overlay data available. try S_FMT first.\n");
121 /* check if streaming capture is running */
122 if (IS_CAPTURE_ACTIVE(fh
) != 0) {
123 DEB_D("streaming capture is active\n");
127 /* check if overlay is running */
128 if (IS_OVERLAY_ACTIVE(fh
) != 0) {
129 if (vv
->video_fh
== fh
) {
130 DEB_D("overlay is already active\n");
133 DEB_D("overlay is already active in another open\n");
137 if (0 == saa7146_res_get(fh
, RESOURCE_DMA1_HPS
|RESOURCE_DMA2_CLP
)) {
138 DEB_D("cannot get necessary overlay resources\n");
142 fmt
.fmt
.win
= vv
->ov
.win
;
143 err
= vidioc_try_fmt_vid_overlay(NULL
, fh
, &fmt
);
145 saa7146_res_free(vv
->video_fh
, RESOURCE_DMA1_HPS
|RESOURCE_DMA2_CLP
);
148 vv
->ov
.win
= fmt
.fmt
.win
;
150 DEB_D("%dx%d+%d+%d %s field=%s\n",
151 vv
->ov
.win
.w
.width
, vv
->ov
.win
.w
.height
,
152 vv
->ov
.win
.w
.left
, vv
->ov
.win
.w
.top
,
153 vv
->ov_fmt
->name
, v4l2_field_names
[vv
->ov
.win
.field
]);
155 if (0 != (ret
= saa7146_enable_overlay(fh
))) {
156 DEB_D("enabling overlay failed: %d\n", ret
);
157 saa7146_res_free(vv
->video_fh
, RESOURCE_DMA1_HPS
|RESOURCE_DMA2_CLP
);
161 vv
->video_status
= STATUS_OVERLAY
;
166 EXPORT_SYMBOL_GPL(saa7146_start_preview
);
168 int saa7146_stop_preview(struct saa7146_fh
*fh
)
170 struct saa7146_dev
*dev
= fh
->dev
;
171 struct saa7146_vv
*vv
= dev
->vv_data
;
173 DEB_EE("dev:%p, fh:%p\n", dev
, fh
);
175 /* check if streaming capture is running */
176 if (IS_CAPTURE_ACTIVE(fh
) != 0) {
177 DEB_D("streaming capture is active\n");
181 /* check if overlay is running at all */
182 if ((vv
->video_status
& STATUS_OVERLAY
) == 0) {
183 DEB_D("no active overlay\n");
187 if (vv
->video_fh
!= fh
) {
188 DEB_D("overlay is active, but in another open\n");
192 vv
->video_status
= 0;
195 saa7146_disable_overlay(fh
);
197 saa7146_res_free(fh
, RESOURCE_DMA1_HPS
|RESOURCE_DMA2_CLP
);
201 EXPORT_SYMBOL_GPL(saa7146_stop_preview
);
203 /********************************************************************************/
204 /* common pagetable functions */
206 static int saa7146_pgtable_build(struct saa7146_dev
*dev
, struct saa7146_buf
*buf
)
208 struct pci_dev
*pci
= dev
->pci
;
209 struct videobuf_dmabuf
*dma
=videobuf_to_dma(&buf
->vb
);
210 struct scatterlist
*list
= dma
->sglist
;
211 int length
= dma
->sglen
;
212 struct saa7146_format
*sfmt
= saa7146_format_by_fourcc(dev
,buf
->fmt
->pixelformat
);
214 DEB_EE("dev:%p, buf:%p, sg_len:%d\n", dev
, buf
, length
);
216 if( 0 != IS_PLANAR(sfmt
->trans
)) {
217 struct saa7146_pgtable
*pt1
= &buf
->pt
[0];
218 struct saa7146_pgtable
*pt2
= &buf
->pt
[1];
219 struct saa7146_pgtable
*pt3
= &buf
->pt
[2];
220 __le32
*ptr1
, *ptr2
, *ptr3
;
223 int size
= buf
->fmt
->width
*buf
->fmt
->height
;
224 int i
,p
,m1
,m2
,m3
,o1
,o2
;
226 switch( sfmt
->depth
) {
228 /* create some offsets inside the page table */
229 m1
= ((size
+PAGE_SIZE
)/PAGE_SIZE
)-1;
230 m2
= ((size
+(size
/4)+PAGE_SIZE
)/PAGE_SIZE
)-1;
231 m3
= ((size
+(size
/2)+PAGE_SIZE
)/PAGE_SIZE
)-1;
233 o2
= (size
+(size
/4))%PAGE_SIZE
;
234 DEB_CAP("size:%d, m1:%d, m2:%d, m3:%d, o1:%d, o2:%d\n",
235 size
, m1
, m2
, m3
, o1
, o2
);
239 /* create some offsets inside the page table */
240 m1
= ((size
+PAGE_SIZE
)/PAGE_SIZE
)-1;
241 m2
= ((size
+(size
/2)+PAGE_SIZE
)/PAGE_SIZE
)-1;
242 m3
= ((2*size
+PAGE_SIZE
)/PAGE_SIZE
)-1;
244 o2
= (size
+(size
/2))%PAGE_SIZE
;
245 DEB_CAP("size:%d, m1:%d, m2:%d, m3:%d, o1:%d, o2:%d\n",
246 size
, m1
, m2
, m3
, o1
, o2
);
258 /* walk all pages, copy all page addresses to ptr1 */
259 for (i
= 0; i
< length
; i
++, list
++) {
260 for (p
= 0; p
* 4096 < list
->length
; p
++, ptr1
++) {
261 *ptr1
= cpu_to_le32(sg_dma_address(list
) - list
->offset
);
267 printk("ptr1 %d: 0x%08x\n",j,ptr1[j]);
271 /* if we have a user buffer, the first page may not be
272 aligned to a page boundary. */
273 pt1
->offset
= dma
->sglist
->offset
;
274 pt2
->offset
= pt1
->offset
+o1
;
275 pt3
->offset
= pt1
->offset
+o2
;
277 /* create video-dma2 page table */
279 for(i
= m1
; i
<= m2
; i
++, ptr2
++) {
283 for(;i
<1024;i
++,ptr2
++) {
286 /* create video-dma3 page table */
288 for(i
= m2
; i
<= m3
; i
++,ptr3
++) {
292 for(;i
<1024;i
++,ptr3
++) {
295 /* finally: finish up video-dma1 page table */
298 for(i
=m1
;i
<1024;i
++,ptr1
++) {
306 printk("ptr1 %d: 0x%08x\n",j,ptr1[j]);
309 printk("ptr2 %d: 0x%08x\n",j,ptr2[j]);
312 printk("ptr3 %d: 0x%08x\n",j,ptr3[j]);
316 struct saa7146_pgtable
*pt
= &buf
->pt
[0];
317 return saa7146_pgtable_build_single(pci
, pt
, list
, length
);
324 /********************************************************************************/
325 /* file operations */
327 static int video_begin(struct saa7146_fh
*fh
)
329 struct saa7146_dev
*dev
= fh
->dev
;
330 struct saa7146_vv
*vv
= dev
->vv_data
;
331 struct saa7146_format
*fmt
= NULL
;
332 unsigned int resource
;
333 int ret
= 0, err
= 0;
335 DEB_EE("dev:%p, fh:%p\n", dev
, fh
);
337 if ((vv
->video_status
& STATUS_CAPTURE
) != 0) {
338 if (vv
->video_fh
== fh
) {
339 DEB_S("already capturing\n");
342 DEB_S("already capturing in another open\n");
346 if ((vv
->video_status
& STATUS_OVERLAY
) != 0) {
347 DEB_S("warning: suspending overlay video for streaming capture\n");
348 vv
->ov_suspend
= vv
->video_fh
;
349 err
= saa7146_stop_preview(vv
->video_fh
); /* side effect: video_status is now 0, video_fh is NULL */
351 DEB_D("suspending video failed. aborting\n");
356 fmt
= saa7146_format_by_fourcc(dev
, vv
->video_fmt
.pixelformat
);
357 /* we need to have a valid format set here */
360 if (0 != (fmt
->flags
& FORMAT_IS_PLANAR
)) {
361 resource
= RESOURCE_DMA1_HPS
|RESOURCE_DMA2_CLP
|RESOURCE_DMA3_BRS
;
363 resource
= RESOURCE_DMA1_HPS
;
366 ret
= saa7146_res_get(fh
, resource
);
368 DEB_S("cannot get capture resource %d\n", resource
);
369 if (vv
->ov_suspend
!= NULL
) {
370 saa7146_start_preview(vv
->ov_suspend
);
371 vv
->ov_suspend
= NULL
;
376 /* clear out beginning of streaming bit (rps register 0)*/
377 saa7146_write(dev
, MC2
, MASK_27
);
379 /* enable rps0 irqs */
380 SAA7146_IER_ENABLE(dev
, MASK_27
);
383 vv
->video_status
= STATUS_CAPTURE
;
388 static int video_end(struct saa7146_fh
*fh
, struct file
*file
)
390 struct saa7146_dev
*dev
= fh
->dev
;
391 struct saa7146_vv
*vv
= dev
->vv_data
;
392 struct saa7146_dmaqueue
*q
= &vv
->video_dmaq
;
393 struct saa7146_format
*fmt
= NULL
;
395 unsigned int resource
;
397 DEB_EE("dev:%p, fh:%p\n", dev
, fh
);
399 if ((vv
->video_status
& STATUS_CAPTURE
) != STATUS_CAPTURE
) {
400 DEB_S("not capturing\n");
404 if (vv
->video_fh
!= fh
) {
405 DEB_S("capturing, but in another open\n");
409 fmt
= saa7146_format_by_fourcc(dev
, vv
->video_fmt
.pixelformat
);
410 /* we need to have a valid format set here */
413 if (0 != (fmt
->flags
& FORMAT_IS_PLANAR
)) {
414 resource
= RESOURCE_DMA1_HPS
|RESOURCE_DMA2_CLP
|RESOURCE_DMA3_BRS
;
415 dmas
= MASK_22
| MASK_21
| MASK_20
;
417 resource
= RESOURCE_DMA1_HPS
;
420 spin_lock_irqsave(&dev
->slock
,flags
);
423 saa7146_write(dev
, MC1
, MASK_28
);
425 /* disable rps0 irqs */
426 SAA7146_IER_DISABLE(dev
, MASK_27
);
428 /* shut down all used video dma transfers */
429 saa7146_write(dev
, MC1
, dmas
);
432 saa7146_buffer_finish(dev
, q
, VIDEOBUF_DONE
);
434 spin_unlock_irqrestore(&dev
->slock
, flags
);
437 vv
->video_status
= 0;
439 saa7146_res_free(fh
, resource
);
441 if (vv
->ov_suspend
!= NULL
) {
442 saa7146_start_preview(vv
->ov_suspend
);
443 vv
->ov_suspend
= NULL
;
449 static int vidioc_querycap(struct file
*file
, void *fh
, struct v4l2_capability
*cap
)
451 struct video_device
*vdev
= video_devdata(file
);
452 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
454 strscpy((char *)cap
->driver
, "saa7146 v4l2", sizeof(cap
->driver
));
455 strscpy((char *)cap
->card
, dev
->ext
->name
, sizeof(cap
->card
));
456 sprintf((char *)cap
->bus_info
, "PCI:%s", pci_name(dev
->pci
));
458 V4L2_CAP_VIDEO_CAPTURE
|
459 V4L2_CAP_VIDEO_OVERLAY
|
462 cap
->device_caps
|= dev
->ext_vv_data
->capabilities
;
463 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
464 if (vdev
->vfl_type
== VFL_TYPE_GRABBER
)
466 ~(V4L2_CAP_VBI_CAPTURE
| V4L2_CAP_SLICED_VBI_OUTPUT
);
469 ~(V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_VIDEO_OVERLAY
| V4L2_CAP_AUDIO
);
473 static int vidioc_g_fbuf(struct file
*file
, void *fh
, struct v4l2_framebuffer
*fb
)
475 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
476 struct saa7146_vv
*vv
= dev
->vv_data
;
479 fb
->capability
= V4L2_FBUF_CAP_LIST_CLIPPING
;
480 fb
->flags
= V4L2_FBUF_FLAG_PRIMARY
;
484 static int vidioc_s_fbuf(struct file
*file
, void *fh
, const struct v4l2_framebuffer
*fb
)
486 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
487 struct saa7146_vv
*vv
= dev
->vv_data
;
488 struct saa7146_format
*fmt
;
490 DEB_EE("VIDIOC_S_FBUF\n");
492 if (!capable(CAP_SYS_ADMIN
) && !capable(CAP_SYS_RAWIO
))
496 fmt
= saa7146_format_by_fourcc(dev
, fb
->fmt
.pixelformat
);
500 /* planar formats are not allowed for overlay video, clipping and video dma would clash */
501 if (fmt
->flags
& FORMAT_IS_PLANAR
)
502 DEB_S("planar pixelformat '%4.4s' not allowed for overlay\n",
503 (char *)&fmt
->pixelformat
);
505 /* check if overlay is running */
506 if (IS_OVERLAY_ACTIVE(fh
) != 0) {
507 if (vv
->video_fh
!= fh
) {
508 DEB_D("refusing to change framebuffer information while overlay is active in another open\n");
517 if (vv
->ov_fb
.fmt
.bytesperline
< vv
->ov_fb
.fmt
.width
) {
518 vv
->ov_fb
.fmt
.bytesperline
= vv
->ov_fb
.fmt
.width
* fmt
->depth
/ 8;
519 DEB_D("setting bytesperline to %d\n", vv
->ov_fb
.fmt
.bytesperline
);
524 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *fh
, struct v4l2_fmtdesc
*f
)
526 if (f
->index
>= ARRAY_SIZE(formats
))
528 strscpy((char *)f
->description
, formats
[f
->index
].name
,
529 sizeof(f
->description
));
530 f
->pixelformat
= formats
[f
->index
].pixelformat
;
534 int saa7146_s_ctrl(struct v4l2_ctrl
*ctrl
)
536 struct saa7146_dev
*dev
= container_of(ctrl
->handler
,
537 struct saa7146_dev
, ctrl_handler
);
538 struct saa7146_vv
*vv
= dev
->vv_data
;
542 case V4L2_CID_BRIGHTNESS
:
543 val
= saa7146_read(dev
, BCS_CTRL
);
545 val
|= (ctrl
->val
<< 24);
546 saa7146_write(dev
, BCS_CTRL
, val
);
547 saa7146_write(dev
, MC2
, MASK_22
| MASK_06
);
550 case V4L2_CID_CONTRAST
:
551 val
= saa7146_read(dev
, BCS_CTRL
);
553 val
|= (ctrl
->val
<< 16);
554 saa7146_write(dev
, BCS_CTRL
, val
);
555 saa7146_write(dev
, MC2
, MASK_22
| MASK_06
);
558 case V4L2_CID_SATURATION
:
559 val
= saa7146_read(dev
, BCS_CTRL
);
561 val
|= (ctrl
->val
<< 0);
562 saa7146_write(dev
, BCS_CTRL
, val
);
563 saa7146_write(dev
, MC2
, MASK_22
| MASK_06
);
567 /* fixme: we can support changing VFLIP and HFLIP here... */
568 if ((vv
->video_status
& STATUS_CAPTURE
))
570 vv
->hflip
= ctrl
->val
;
574 if ((vv
->video_status
& STATUS_CAPTURE
))
576 vv
->vflip
= ctrl
->val
;
583 if ((vv
->video_status
& STATUS_OVERLAY
) != 0) { /* CHECK: && (vv->video_fh == fh)) */
584 struct saa7146_fh
*fh
= vv
->video_fh
;
586 saa7146_stop_preview(fh
);
587 saa7146_start_preview(fh
);
592 static int vidioc_g_parm(struct file
*file
, void *fh
,
593 struct v4l2_streamparm
*parm
)
595 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
596 struct saa7146_vv
*vv
= dev
->vv_data
;
598 if (parm
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
600 parm
->parm
.capture
.readbuffers
= 1;
601 v4l2_video_std_frame_period(vv
->standard
->id
,
602 &parm
->parm
.capture
.timeperframe
);
606 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *fh
, struct v4l2_format
*f
)
608 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
609 struct saa7146_vv
*vv
= dev
->vv_data
;
611 f
->fmt
.pix
= vv
->video_fmt
;
615 static int vidioc_g_fmt_vid_overlay(struct file
*file
, void *fh
, struct v4l2_format
*f
)
617 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
618 struct saa7146_vv
*vv
= dev
->vv_data
;
620 f
->fmt
.win
= vv
->ov
.win
;
624 static int vidioc_g_fmt_vbi_cap(struct file
*file
, void *fh
, struct v4l2_format
*f
)
626 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
627 struct saa7146_vv
*vv
= dev
->vv_data
;
629 f
->fmt
.vbi
= vv
->vbi_fmt
;
633 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *fh
, struct v4l2_format
*f
)
635 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
636 struct saa7146_vv
*vv
= dev
->vv_data
;
637 struct saa7146_format
*fmt
;
638 enum v4l2_field field
;
642 DEB_EE("V4L2_BUF_TYPE_VIDEO_CAPTURE: dev:%p, fh:%p\n", dev
, fh
);
644 fmt
= saa7146_format_by_fourcc(dev
, f
->fmt
.pix
.pixelformat
);
648 field
= f
->fmt
.pix
.field
;
649 maxw
= vv
->standard
->h_max_out
;
650 maxh
= vv
->standard
->v_max_out
;
652 if (V4L2_FIELD_ANY
== field
) {
653 field
= (f
->fmt
.pix
.height
> maxh
/ 2)
654 ? V4L2_FIELD_INTERLACED
658 case V4L2_FIELD_ALTERNATE
:
659 vv
->last_field
= V4L2_FIELD_TOP
;
663 case V4L2_FIELD_BOTTOM
:
664 vv
->last_field
= V4L2_FIELD_INTERLACED
;
667 case V4L2_FIELD_INTERLACED
:
668 vv
->last_field
= V4L2_FIELD_INTERLACED
;
671 DEB_D("no known field mode '%d'\n", field
);
675 f
->fmt
.pix
.field
= field
;
676 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
677 if (f
->fmt
.pix
.width
> maxw
)
678 f
->fmt
.pix
.width
= maxw
;
679 if (f
->fmt
.pix
.height
> maxh
)
680 f
->fmt
.pix
.height
= maxh
;
682 calc_bpl
= (f
->fmt
.pix
.width
* fmt
->depth
) / 8;
684 if (f
->fmt
.pix
.bytesperline
< calc_bpl
)
685 f
->fmt
.pix
.bytesperline
= calc_bpl
;
687 if (f
->fmt
.pix
.bytesperline
> (2 * PAGE_SIZE
* fmt
->depth
) / 8) /* arbitrary constraint */
688 f
->fmt
.pix
.bytesperline
= calc_bpl
;
690 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.bytesperline
* f
->fmt
.pix
.height
;
691 DEB_D("w:%d, h:%d, bytesperline:%d, sizeimage:%d\n",
692 f
->fmt
.pix
.width
, f
->fmt
.pix
.height
,
693 f
->fmt
.pix
.bytesperline
, f
->fmt
.pix
.sizeimage
);
699 static int vidioc_try_fmt_vid_overlay(struct file
*file
, void *fh
, struct v4l2_format
*f
)
701 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
702 struct saa7146_vv
*vv
= dev
->vv_data
;
703 struct v4l2_window
*win
= &f
->fmt
.win
;
704 enum v4l2_field field
;
707 DEB_EE("dev:%p\n", dev
);
709 if (NULL
== vv
->ov_fb
.base
) {
710 DEB_D("no fb base set\n");
713 if (NULL
== vv
->ov_fmt
) {
714 DEB_D("no fb fmt set\n");
717 if (win
->w
.width
< 48 || win
->w
.height
< 32) {
718 DEB_D("min width/height. (%d,%d)\n",
719 win
->w
.width
, win
->w
.height
);
722 if (win
->clipcount
> 16) {
723 DEB_D("clipcount too big\n");
728 maxw
= vv
->standard
->h_max_out
;
729 maxh
= vv
->standard
->v_max_out
;
731 if (V4L2_FIELD_ANY
== field
) {
732 field
= (win
->w
.height
> maxh
/ 2)
733 ? V4L2_FIELD_INTERLACED
738 case V4L2_FIELD_BOTTOM
:
739 case V4L2_FIELD_ALTERNATE
:
742 case V4L2_FIELD_INTERLACED
:
745 DEB_D("no known field mode '%d'\n", field
);
750 if (win
->w
.width
> maxw
)
752 if (win
->w
.height
> maxh
)
753 win
->w
.height
= maxh
;
758 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *__fh
, struct v4l2_format
*f
)
760 struct saa7146_fh
*fh
= __fh
;
761 struct saa7146_dev
*dev
= fh
->dev
;
762 struct saa7146_vv
*vv
= dev
->vv_data
;
765 DEB_EE("V4L2_BUF_TYPE_VIDEO_CAPTURE: dev:%p, fh:%p\n", dev
, fh
);
766 if (IS_CAPTURE_ACTIVE(fh
) != 0) {
767 DEB_EE("streaming capture is active\n");
770 err
= vidioc_try_fmt_vid_cap(file
, fh
, f
);
773 vv
->video_fmt
= f
->fmt
.pix
;
774 DEB_EE("set to pixelformat '%4.4s'\n",
775 (char *)&vv
->video_fmt
.pixelformat
);
779 static int vidioc_s_fmt_vid_overlay(struct file
*file
, void *__fh
, struct v4l2_format
*f
)
781 struct saa7146_fh
*fh
= __fh
;
782 struct saa7146_dev
*dev
= fh
->dev
;
783 struct saa7146_vv
*vv
= dev
->vv_data
;
786 DEB_EE("V4L2_BUF_TYPE_VIDEO_OVERLAY: dev:%p, fh:%p\n", dev
, fh
);
787 err
= vidioc_try_fmt_vid_overlay(file
, fh
, f
);
790 vv
->ov
.win
= f
->fmt
.win
;
791 vv
->ov
.nclips
= f
->fmt
.win
.clipcount
;
792 if (vv
->ov
.nclips
> 16)
794 if (copy_from_user(vv
->ov
.clips
, f
->fmt
.win
.clips
,
795 sizeof(struct v4l2_clip
) * vv
->ov
.nclips
)) {
799 /* vv->ov.fh is used to indicate that we have valid overlay informations, too */
802 /* check if our current overlay is active */
803 if (IS_OVERLAY_ACTIVE(fh
) != 0) {
804 saa7146_stop_preview(fh
);
805 saa7146_start_preview(fh
);
810 static int vidioc_g_std(struct file
*file
, void *fh
, v4l2_std_id
*norm
)
812 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
813 struct saa7146_vv
*vv
= dev
->vv_data
;
815 *norm
= vv
->standard
->id
;
819 /* the saa7146 supfhrts (used in conjunction with the saa7111a for example)
820 PAL / NTSC / SECAM. if your hardware does not (or does more)
821 -- override this function in your extension */
825 struct v4l2_standard *e = arg;
828 if( e->index < dev->ext_vv_data->num_stds ) {
829 DEB_EE("VIDIOC_ENUMSTD: index:%d\n", e->index);
830 v4l2_video_std_construct(e, dev->ext_vv_data->stds[e->index].id, dev->ext_vv_data->stds[e->index].name);
837 static int vidioc_s_std(struct file
*file
, void *fh
, v4l2_std_id id
)
839 struct saa7146_dev
*dev
= ((struct saa7146_fh
*)fh
)->dev
;
840 struct saa7146_vv
*vv
= dev
->vv_data
;
844 DEB_EE("VIDIOC_S_STD\n");
846 if ((vv
->video_status
& STATUS_CAPTURE
) == STATUS_CAPTURE
) {
847 DEB_D("cannot change video standard while streaming capture is active\n");
851 if ((vv
->video_status
& STATUS_OVERLAY
) != 0) {
852 vv
->ov_suspend
= vv
->video_fh
;
853 err
= saa7146_stop_preview(vv
->video_fh
); /* side effect: video_status is now 0, video_fh is NULL */
855 DEB_D("suspending video failed. aborting\n");
860 for (i
= 0; i
< dev
->ext_vv_data
->num_stds
; i
++)
861 if (id
& dev
->ext_vv_data
->stds
[i
].id
)
863 if (i
!= dev
->ext_vv_data
->num_stds
) {
864 vv
->standard
= &dev
->ext_vv_data
->stds
[i
];
865 if (NULL
!= dev
->ext_vv_data
->std_callback
)
866 dev
->ext_vv_data
->std_callback(dev
, vv
->standard
);
870 if (vv
->ov_suspend
!= NULL
) {
871 saa7146_start_preview(vv
->ov_suspend
);
872 vv
->ov_suspend
= NULL
;
876 DEB_EE("VIDIOC_S_STD: standard not found\n");
880 DEB_EE("VIDIOC_S_STD: set to standard to '%s'\n", vv
->standard
->name
);
884 static int vidioc_overlay(struct file
*file
, void *fh
, unsigned int on
)
888 DEB_D("VIDIOC_OVERLAY on:%d\n", on
);
890 err
= saa7146_start_preview(fh
);
892 err
= saa7146_stop_preview(fh
);
896 static int vidioc_reqbufs(struct file
*file
, void *__fh
, struct v4l2_requestbuffers
*b
)
898 struct saa7146_fh
*fh
= __fh
;
900 if (b
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
901 return videobuf_reqbufs(&fh
->video_q
, b
);
902 if (b
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
)
903 return videobuf_reqbufs(&fh
->vbi_q
, b
);
907 static int vidioc_querybuf(struct file
*file
, void *__fh
, struct v4l2_buffer
*buf
)
909 struct saa7146_fh
*fh
= __fh
;
911 if (buf
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
912 return videobuf_querybuf(&fh
->video_q
, buf
);
913 if (buf
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
)
914 return videobuf_querybuf(&fh
->vbi_q
, buf
);
918 static int vidioc_qbuf(struct file
*file
, void *__fh
, struct v4l2_buffer
*buf
)
920 struct saa7146_fh
*fh
= __fh
;
922 if (buf
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
923 return videobuf_qbuf(&fh
->video_q
, buf
);
924 if (buf
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
)
925 return videobuf_qbuf(&fh
->vbi_q
, buf
);
929 static int vidioc_dqbuf(struct file
*file
, void *__fh
, struct v4l2_buffer
*buf
)
931 struct saa7146_fh
*fh
= __fh
;
933 if (buf
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
934 return videobuf_dqbuf(&fh
->video_q
, buf
, file
->f_flags
& O_NONBLOCK
);
935 if (buf
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
)
936 return videobuf_dqbuf(&fh
->vbi_q
, buf
, file
->f_flags
& O_NONBLOCK
);
940 static int vidioc_streamon(struct file
*file
, void *__fh
, enum v4l2_buf_type type
)
942 struct saa7146_fh
*fh
= __fh
;
945 DEB_D("VIDIOC_STREAMON, type:%d\n", type
);
947 err
= video_begin(fh
);
950 if (type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
951 return videobuf_streamon(&fh
->video_q
);
952 if (type
== V4L2_BUF_TYPE_VBI_CAPTURE
)
953 return videobuf_streamon(&fh
->vbi_q
);
957 static int vidioc_streamoff(struct file
*file
, void *__fh
, enum v4l2_buf_type type
)
959 struct saa7146_fh
*fh
= __fh
;
960 struct saa7146_dev
*dev
= fh
->dev
;
961 struct saa7146_vv
*vv
= dev
->vv_data
;
964 DEB_D("VIDIOC_STREAMOFF, type:%d\n", type
);
966 /* ugly: we need to copy some checks from video_end(),
967 because videobuf_streamoff() relies on the capture running.
968 check and fix this */
969 if ((vv
->video_status
& STATUS_CAPTURE
) != STATUS_CAPTURE
) {
970 DEB_S("not capturing\n");
974 if (vv
->video_fh
!= fh
) {
975 DEB_S("capturing, but in another open\n");
980 if (type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
981 err
= videobuf_streamoff(&fh
->video_q
);
982 else if (type
== V4L2_BUF_TYPE_VBI_CAPTURE
)
983 err
= videobuf_streamoff(&fh
->vbi_q
);
985 DEB_D("warning: videobuf_streamoff() failed\n");
988 err
= video_end(fh
, file
);
993 const struct v4l2_ioctl_ops saa7146_video_ioctl_ops
= {
994 .vidioc_querycap
= vidioc_querycap
,
995 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
996 .vidioc_enum_fmt_vid_overlay
= vidioc_enum_fmt_vid_cap
,
997 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
998 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
999 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
1000 .vidioc_g_fmt_vid_overlay
= vidioc_g_fmt_vid_overlay
,
1001 .vidioc_try_fmt_vid_overlay
= vidioc_try_fmt_vid_overlay
,
1002 .vidioc_s_fmt_vid_overlay
= vidioc_s_fmt_vid_overlay
,
1004 .vidioc_overlay
= vidioc_overlay
,
1005 .vidioc_g_fbuf
= vidioc_g_fbuf
,
1006 .vidioc_s_fbuf
= vidioc_s_fbuf
,
1007 .vidioc_reqbufs
= vidioc_reqbufs
,
1008 .vidioc_querybuf
= vidioc_querybuf
,
1009 .vidioc_qbuf
= vidioc_qbuf
,
1010 .vidioc_dqbuf
= vidioc_dqbuf
,
1011 .vidioc_g_std
= vidioc_g_std
,
1012 .vidioc_s_std
= vidioc_s_std
,
1013 .vidioc_streamon
= vidioc_streamon
,
1014 .vidioc_streamoff
= vidioc_streamoff
,
1015 .vidioc_g_parm
= vidioc_g_parm
,
1016 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1017 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1020 const struct v4l2_ioctl_ops saa7146_vbi_ioctl_ops
= {
1021 .vidioc_querycap
= vidioc_querycap
,
1022 .vidioc_g_fmt_vbi_cap
= vidioc_g_fmt_vbi_cap
,
1024 .vidioc_reqbufs
= vidioc_reqbufs
,
1025 .vidioc_querybuf
= vidioc_querybuf
,
1026 .vidioc_qbuf
= vidioc_qbuf
,
1027 .vidioc_dqbuf
= vidioc_dqbuf
,
1028 .vidioc_g_std
= vidioc_g_std
,
1029 .vidioc_s_std
= vidioc_s_std
,
1030 .vidioc_streamon
= vidioc_streamon
,
1031 .vidioc_streamoff
= vidioc_streamoff
,
1032 .vidioc_g_parm
= vidioc_g_parm
,
1033 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1034 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1037 /*********************************************************************************/
1038 /* buffer handling functions */
1040 static int buffer_activate (struct saa7146_dev
*dev
,
1041 struct saa7146_buf
*buf
,
1042 struct saa7146_buf
*next
)
1044 struct saa7146_vv
*vv
= dev
->vv_data
;
1046 buf
->vb
.state
= VIDEOBUF_ACTIVE
;
1047 saa7146_set_capture(dev
,buf
,next
);
1049 mod_timer(&vv
->video_dmaq
.timeout
, jiffies
+BUFFER_TIMEOUT
);
1053 static void release_all_pagetables(struct saa7146_dev
*dev
, struct saa7146_buf
*buf
)
1055 saa7146_pgtable_free(dev
->pci
, &buf
->pt
[0]);
1056 saa7146_pgtable_free(dev
->pci
, &buf
->pt
[1]);
1057 saa7146_pgtable_free(dev
->pci
, &buf
->pt
[2]);
1060 static int buffer_prepare(struct videobuf_queue
*q
,
1061 struct videobuf_buffer
*vb
, enum v4l2_field field
)
1063 struct file
*file
= q
->priv_data
;
1064 struct saa7146_fh
*fh
= file
->private_data
;
1065 struct saa7146_dev
*dev
= fh
->dev
;
1066 struct saa7146_vv
*vv
= dev
->vv_data
;
1067 struct saa7146_buf
*buf
= (struct saa7146_buf
*)vb
;
1070 DEB_CAP("vbuf:%p\n", vb
);
1073 if (vv
->video_fmt
.width
< 48 ||
1074 vv
->video_fmt
.height
< 32 ||
1075 vv
->video_fmt
.width
> vv
->standard
->h_max_out
||
1076 vv
->video_fmt
.height
> vv
->standard
->v_max_out
) {
1077 DEB_D("w (%d) / h (%d) out of bounds\n",
1078 vv
->video_fmt
.width
, vv
->video_fmt
.height
);
1082 size
= vv
->video_fmt
.sizeimage
;
1083 if (0 != buf
->vb
.baddr
&& buf
->vb
.bsize
< size
) {
1084 DEB_D("size mismatch\n");
1088 DEB_CAP("buffer_prepare [size=%dx%d,bytes=%d,fields=%s]\n",
1089 vv
->video_fmt
.width
, vv
->video_fmt
.height
,
1090 size
, v4l2_field_names
[vv
->video_fmt
.field
]);
1091 if (buf
->vb
.width
!= vv
->video_fmt
.width
||
1092 buf
->vb
.bytesperline
!= vv
->video_fmt
.bytesperline
||
1093 buf
->vb
.height
!= vv
->video_fmt
.height
||
1094 buf
->vb
.size
!= size
||
1095 buf
->vb
.field
!= field
||
1096 buf
->vb
.field
!= vv
->video_fmt
.field
||
1097 buf
->fmt
!= &vv
->video_fmt
) {
1098 saa7146_dma_free(dev
,q
,buf
);
1101 if (VIDEOBUF_NEEDS_INIT
== buf
->vb
.state
) {
1102 struct saa7146_format
*sfmt
;
1104 buf
->vb
.bytesperline
= vv
->video_fmt
.bytesperline
;
1105 buf
->vb
.width
= vv
->video_fmt
.width
;
1106 buf
->vb
.height
= vv
->video_fmt
.height
;
1107 buf
->vb
.size
= size
;
1108 buf
->vb
.field
= field
;
1109 buf
->fmt
= &vv
->video_fmt
;
1110 buf
->vb
.field
= vv
->video_fmt
.field
;
1112 sfmt
= saa7146_format_by_fourcc(dev
,buf
->fmt
->pixelformat
);
1114 release_all_pagetables(dev
, buf
);
1115 if( 0 != IS_PLANAR(sfmt
->trans
)) {
1116 saa7146_pgtable_alloc(dev
->pci
, &buf
->pt
[0]);
1117 saa7146_pgtable_alloc(dev
->pci
, &buf
->pt
[1]);
1118 saa7146_pgtable_alloc(dev
->pci
, &buf
->pt
[2]);
1120 saa7146_pgtable_alloc(dev
->pci
, &buf
->pt
[0]);
1123 err
= videobuf_iolock(q
,&buf
->vb
, &vv
->ov_fb
);
1126 err
= saa7146_pgtable_build(dev
,buf
);
1130 buf
->vb
.state
= VIDEOBUF_PREPARED
;
1131 buf
->activate
= buffer_activate
;
1136 DEB_D("error out\n");
1137 saa7146_dma_free(dev
,q
,buf
);
1142 static int buffer_setup(struct videobuf_queue
*q
, unsigned int *count
, unsigned int *size
)
1144 struct file
*file
= q
->priv_data
;
1145 struct saa7146_fh
*fh
= file
->private_data
;
1146 struct saa7146_vv
*vv
= fh
->dev
->vv_data
;
1148 if (0 == *count
|| *count
> MAX_SAA7146_CAPTURE_BUFFERS
)
1149 *count
= MAX_SAA7146_CAPTURE_BUFFERS
;
1151 *size
= vv
->video_fmt
.sizeimage
;
1153 /* check if we exceed the "max_memory" parameter */
1154 if( (*count
* *size
) > (max_memory
*1048576) ) {
1155 *count
= (max_memory
*1048576) / *size
;
1158 DEB_CAP("%d buffers, %d bytes each\n", *count
, *size
);
1163 static void buffer_queue(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
)
1165 struct file
*file
= q
->priv_data
;
1166 struct saa7146_fh
*fh
= file
->private_data
;
1167 struct saa7146_dev
*dev
= fh
->dev
;
1168 struct saa7146_vv
*vv
= dev
->vv_data
;
1169 struct saa7146_buf
*buf
= (struct saa7146_buf
*)vb
;
1171 DEB_CAP("vbuf:%p\n", vb
);
1172 saa7146_buffer_queue(fh
->dev
, &vv
->video_dmaq
, buf
);
1175 static void buffer_release(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
)
1177 struct file
*file
= q
->priv_data
;
1178 struct saa7146_fh
*fh
= file
->private_data
;
1179 struct saa7146_dev
*dev
= fh
->dev
;
1180 struct saa7146_buf
*buf
= (struct saa7146_buf
*)vb
;
1182 DEB_CAP("vbuf:%p\n", vb
);
1184 saa7146_dma_free(dev
,q
,buf
);
1186 release_all_pagetables(dev
, buf
);
1189 static const struct videobuf_queue_ops video_qops
= {
1190 .buf_setup
= buffer_setup
,
1191 .buf_prepare
= buffer_prepare
,
1192 .buf_queue
= buffer_queue
,
1193 .buf_release
= buffer_release
,
1196 /********************************************************************************/
1197 /* file operations */
1199 static void video_init(struct saa7146_dev
*dev
, struct saa7146_vv
*vv
)
1201 INIT_LIST_HEAD(&vv
->video_dmaq
.queue
);
1203 timer_setup(&vv
->video_dmaq
.timeout
, saa7146_buffer_timeout
, 0);
1204 vv
->video_dmaq
.dev
= dev
;
1206 /* set some default values */
1207 vv
->standard
= &dev
->ext_vv_data
->stds
[0];
1209 /* FIXME: what's this? */
1210 vv
->current_hps_source
= SAA7146_HPS_SOURCE_PORT_A
;
1211 vv
->current_hps_sync
= SAA7146_HPS_SYNC_PORT_A
;
1215 static int video_open(struct saa7146_dev
*dev
, struct file
*file
)
1217 struct saa7146_fh
*fh
= file
->private_data
;
1219 videobuf_queue_sg_init(&fh
->video_q
, &video_qops
,
1220 &dev
->pci
->dev
, &dev
->slock
,
1221 V4L2_BUF_TYPE_VIDEO_CAPTURE
,
1222 V4L2_FIELD_INTERLACED
,
1223 sizeof(struct saa7146_buf
),
1224 file
, &dev
->v4l2_lock
);
1230 static void video_close(struct saa7146_dev
*dev
, struct file
*file
)
1232 struct saa7146_fh
*fh
= file
->private_data
;
1233 struct saa7146_vv
*vv
= dev
->vv_data
;
1234 struct videobuf_queue
*q
= &fh
->video_q
;
1236 if (IS_CAPTURE_ACTIVE(fh
) != 0)
1237 video_end(fh
, file
);
1238 else if (IS_OVERLAY_ACTIVE(fh
) != 0)
1239 saa7146_stop_preview(fh
);
1242 /* hmm, why is this function declared void? */
1246 static void video_irq_done(struct saa7146_dev
*dev
, unsigned long st
)
1248 struct saa7146_vv
*vv
= dev
->vv_data
;
1249 struct saa7146_dmaqueue
*q
= &vv
->video_dmaq
;
1251 spin_lock(&dev
->slock
);
1252 DEB_CAP("called\n");
1254 /* only finish the buffer if we have one... */
1255 if( NULL
!= q
->curr
) {
1256 saa7146_buffer_finish(dev
,q
,VIDEOBUF_DONE
);
1258 saa7146_buffer_next(dev
,q
,0);
1260 spin_unlock(&dev
->slock
);
1263 static ssize_t
video_read(struct file
*file
, char __user
*data
, size_t count
, loff_t
*ppos
)
1265 struct saa7146_fh
*fh
= file
->private_data
;
1266 struct saa7146_dev
*dev
= fh
->dev
;
1267 struct saa7146_vv
*vv
= dev
->vv_data
;
1272 if ((vv
->video_status
& STATUS_CAPTURE
) != 0) {
1273 /* fixme: should we allow read() captures while streaming capture? */
1274 if (vv
->video_fh
== fh
) {
1275 DEB_S("already capturing\n");
1278 DEB_S("already capturing in another open\n");
1282 ret
= video_begin(fh
);
1287 ret
= videobuf_read_one(&fh
->video_q
, data
, count
, ppos
,
1288 file
->f_flags
& O_NONBLOCK
);
1290 video_end(fh
, file
);
1292 ret
= video_end(fh
, file
);
1295 /* restart overlay if it was active before */
1296 if (vv
->ov_suspend
!= NULL
) {
1297 saa7146_start_preview(vv
->ov_suspend
);
1298 vv
->ov_suspend
= NULL
;
1304 const struct saa7146_use_ops saa7146_video_uops
= {
1307 .release
= video_close
,
1308 .irq_done
= video_irq_done
,