1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * Copyright (C) 2012 Ezequiel Garcia
6 * <elezegarcia--a.t--gmail.com>
8 * Based on Easycap driver by R.M. Thomas
9 * Copyright (C) 2010 R.M. Thomas
10 * <rmthomas--a.t--sciolus.org>
13 #include <linux/module.h>
14 #include <linux/usb.h>
16 #include <linux/slab.h>
18 #include <linux/videodev2.h>
19 #include <media/v4l2-device.h>
20 #include <media/v4l2-common.h>
21 #include <media/v4l2-ioctl.h>
22 #include <media/v4l2-fh.h>
23 #include <media/v4l2-event.h>
24 #include <media/videobuf2-vmalloc.h>
26 #include <media/i2c/saa7115.h>
29 #include "stk1160-reg.h"
31 static bool keep_buffers
;
32 module_param(keep_buffers
, bool, 0644);
33 MODULE_PARM_DESC(keep_buffers
, "don't release buffers upon stop streaming");
35 enum stk1160_decimate_mode
{
36 STK1160_DECIMATE_MORE_THAN_HALF
,
37 STK1160_DECIMATE_LESS_THAN_HALF
,
40 struct stk1160_decimate_ctrl
{
42 enum stk1160_decimate_mode col_mode
, row_mode
;
43 unsigned int col_n
, row_n
;
46 /* supported video standards */
47 static struct stk1160_fmt format
[] = {
49 .fourcc
= V4L2_PIX_FMT_UYVY
,
55 * Helper to find the next divisor that results in modulo being zero.
56 * This is required to guarantee valid decimation unit counts.
59 div_round_integer(unsigned int x
, unsigned int y
)
67 static void stk1160_set_std(struct stk1160
*dev
)
71 static struct regval std525
[] = {
76 {STK116_CFSPO_STX_L
, 0x0000},
77 {STK116_CFSPO_STX_H
, 0x0000},
78 {STK116_CFSPO_STY_L
, 0x0003},
79 {STK116_CFSPO_STY_H
, 0x0000},
82 {STK116_CFEPO_ENX_L
, 0x05a0},
83 {STK116_CFEPO_ENX_H
, 0x0005},
84 {STK116_CFEPO_ENY_L
, 0x00f3},
85 {STK116_CFEPO_ENY_H
, 0x0000},
90 static struct regval std625
[] = {
94 /* TODO: Each line of frame has some junk at the end */
96 {STK116_CFSPO
, 0x0000},
97 {STK116_CFSPO
+1, 0x0000},
98 {STK116_CFSPO
+2, 0x0001},
99 {STK116_CFSPO
+3, 0x0000},
102 {STK116_CFEPO
, 0x05a0},
103 {STK116_CFEPO
+1, 0x0005},
104 {STK116_CFEPO
+2, 0x0121},
105 {STK116_CFEPO
+3, 0x0001},
110 if (dev
->norm
& V4L2_STD_525_60
) {
111 stk1160_dbg("registers to NTSC like standard\n");
112 for (i
= 0; std525
[i
].reg
!= 0xffff; i
++)
113 stk1160_write_reg(dev
, std525
[i
].reg
, std525
[i
].val
);
115 stk1160_dbg("registers to PAL like standard\n");
116 for (i
= 0; std625
[i
].reg
!= 0xffff; i
++)
117 stk1160_write_reg(dev
, std625
[i
].reg
, std625
[i
].val
);
122 static void stk1160_set_fmt(struct stk1160
*dev
,
123 struct stk1160_decimate_ctrl
*ctrl
)
129 * Since the format is UYVY, the device must skip or send
130 * a number of rows/columns multiple of four. This way, the
131 * colour format is preserved. The STK1160_DEC_UNIT_SIZE bit
134 val
|= STK1160_DEC_UNIT_SIZE
;
135 val
|= ctrl
->col_en
? STK1160_H_DEC_EN
: 0;
136 val
|= ctrl
->row_en
? STK1160_V_DEC_EN
: 0;
137 val
|= ctrl
->col_mode
==
138 STK1160_DECIMATE_MORE_THAN_HALF
?
139 STK1160_H_DEC_MODE
: 0;
140 val
|= ctrl
->row_mode
==
141 STK1160_DECIMATE_MORE_THAN_HALF
?
142 STK1160_V_DEC_MODE
: 0;
144 /* Horizontal count units */
145 stk1160_write_reg(dev
, STK1160_DMCTRL_H_UNITS
, ctrl
->col_n
);
146 /* Vertical count units */
147 stk1160_write_reg(dev
, STK1160_DMCTRL_V_UNITS
, ctrl
->row_n
);
149 stk1160_dbg("decimate 0x%x, column units %d, row units %d\n",
150 val
, ctrl
->col_n
, ctrl
->row_n
);
153 /* Decimation control */
154 stk1160_write_reg(dev
, STK1160_DMCTRL
, val
);
158 * Set a new alternate setting.
159 * Returns true is dev->max_pkt_size has changed, false otherwise.
161 static bool stk1160_set_alternate(struct stk1160
*dev
)
163 int i
, prev_alt
= dev
->alt
;
164 unsigned int min_pkt_size
;
168 * If we don't set right alternate,
169 * then we will get a green screen with junk.
171 min_pkt_size
= STK1160_MIN_PKT_SIZE
;
173 for (i
= 0; i
< dev
->num_alt
; i
++) {
174 /* stop when the selected alt setting offers enough bandwidth */
175 if (dev
->alt_max_pkt_size
[i
] >= min_pkt_size
) {
179 * otherwise make sure that we end up with the maximum bandwidth
180 * because the min_pkt_size equation might be wrong...
182 } else if (dev
->alt_max_pkt_size
[i
] >
183 dev
->alt_max_pkt_size
[dev
->alt
])
187 stk1160_dbg("setting alternate %d\n", dev
->alt
);
189 if (dev
->alt
!= prev_alt
) {
190 stk1160_dbg("minimum isoc packet size: %u (alt=%d)\n",
191 min_pkt_size
, dev
->alt
);
192 stk1160_dbg("setting alt %d with wMaxPacketSize=%u\n",
193 dev
->alt
, dev
->alt_max_pkt_size
[dev
->alt
]);
194 usb_set_interface(dev
->udev
, 0, dev
->alt
);
197 new_pkt_size
= dev
->max_pkt_size
!= dev
->alt_max_pkt_size
[dev
->alt
];
198 dev
->max_pkt_size
= dev
->alt_max_pkt_size
[dev
->alt
];
203 static int stk1160_start_streaming(struct stk1160
*dev
)
209 /* Check device presence */
213 if (mutex_lock_interruptible(&dev
->v4l_lock
))
216 * For some reason it is mandatory to set alternate *first*
217 * and only *then* initialize isoc urbs.
218 * Someone please explain me why ;)
220 new_pkt_size
= stk1160_set_alternate(dev
);
223 * We (re)allocate isoc urbs if:
224 * there is no allocated isoc urbs, OR
225 * a new dev->max_pkt_size is detected
227 if (!dev
->isoc_ctl
.num_bufs
|| new_pkt_size
) {
228 rc
= stk1160_alloc_isoc(dev
);
233 /* submit urbs and enables IRQ */
234 for (i
= 0; i
< dev
->isoc_ctl
.num_bufs
; i
++) {
235 rc
= usb_submit_urb(dev
->isoc_ctl
.urb
[i
], GFP_KERNEL
);
237 stk1160_err("cannot submit urb[%d] (%d)\n", i
, rc
);
243 v4l2_device_call_all(&dev
->v4l2_dev
, 0, video
, s_stream
, 1);
248 stk1160_write_reg(dev
, STK1160_DCTRL
, 0xb3);
249 stk1160_write_reg(dev
, STK1160_DCTRL
+3, 0x00);
251 stk1160_dbg("streaming started\n");
253 mutex_unlock(&dev
->v4l_lock
);
258 stk1160_uninit_isoc(dev
);
260 usb_set_interface(dev
->udev
, 0, 0);
261 stk1160_clear_queue(dev
);
263 mutex_unlock(&dev
->v4l_lock
);
268 /* Must be called with v4l_lock hold */
269 static void stk1160_stop_hw(struct stk1160
*dev
)
271 /* If the device is not physically present, there is nothing to do */
275 /* set alternate 0 */
277 stk1160_dbg("setting alternate %d\n", dev
->alt
);
278 usb_set_interface(dev
->udev
, 0, 0);
281 stk1160_write_reg(dev
, STK1160_DCTRL
, 0x00);
282 stk1160_write_reg(dev
, STK1160_DCTRL
+3, 0x00);
285 v4l2_device_call_all(&dev
->v4l2_dev
, 0, video
, s_stream
, 0);
288 static int stk1160_stop_streaming(struct stk1160
*dev
)
290 if (mutex_lock_interruptible(&dev
->v4l_lock
))
294 * Once URBs are cancelled, the URB complete handler
295 * won't be running. This is required to safely release the
296 * current buffer (dev->isoc_ctl.buf).
298 stk1160_cancel_isoc(dev
);
301 * It is possible to keep buffers around using a module parameter.
302 * This is intended to avoid memory fragmentation.
305 stk1160_free_isoc(dev
);
307 stk1160_stop_hw(dev
);
309 stk1160_clear_queue(dev
);
311 stk1160_dbg("streaming stopped\n");
313 mutex_unlock(&dev
->v4l_lock
);
318 static const struct v4l2_file_operations stk1160_fops
= {
319 .owner
= THIS_MODULE
,
320 .open
= v4l2_fh_open
,
321 .release
= vb2_fop_release
,
322 .read
= vb2_fop_read
,
323 .poll
= vb2_fop_poll
,
324 .mmap
= vb2_fop_mmap
,
325 .unlocked_ioctl
= video_ioctl2
,
331 static int vidioc_querycap(struct file
*file
,
332 void *priv
, struct v4l2_capability
*cap
)
334 struct stk1160
*dev
= video_drvdata(file
);
336 strscpy(cap
->driver
, "stk1160", sizeof(cap
->driver
));
337 strscpy(cap
->card
, "stk1160", sizeof(cap
->card
));
338 usb_make_path(dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
342 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
343 struct v4l2_fmtdesc
*f
)
348 f
->pixelformat
= format
[f
->index
].fourcc
;
352 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
353 struct v4l2_format
*f
)
355 struct stk1160
*dev
= video_drvdata(file
);
357 f
->fmt
.pix
.width
= dev
->width
;
358 f
->fmt
.pix
.height
= dev
->height
;
359 f
->fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
360 f
->fmt
.pix
.pixelformat
= dev
->fmt
->fourcc
;
361 f
->fmt
.pix
.bytesperline
= dev
->width
* 2;
362 f
->fmt
.pix
.sizeimage
= dev
->height
* f
->fmt
.pix
.bytesperline
;
363 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
368 static int stk1160_try_fmt(struct stk1160
*dev
, struct v4l2_format
*f
,
369 struct stk1160_decimate_ctrl
*ctrl
)
371 unsigned int width
, height
;
372 unsigned int base_width
, base_height
;
373 unsigned int col_n
, row_n
;
374 enum stk1160_decimate_mode col_mode
, row_mode
;
378 base_height
= (dev
->norm
& V4L2_STD_525_60
) ? 480 : 576;
380 /* Minimum width and height is 5% the frame size */
381 width
= clamp_t(unsigned int, f
->fmt
.pix
.width
,
382 base_width
/ 20, base_width
);
383 height
= clamp_t(unsigned int, f
->fmt
.pix
.height
,
384 base_height
/ 20, base_height
);
386 /* Let's set default no decimation values */
391 f
->fmt
.pix
.width
= base_width
;
392 f
->fmt
.pix
.height
= base_height
;
393 row_mode
= STK1160_DECIMATE_LESS_THAN_HALF
;
394 col_mode
= STK1160_DECIMATE_LESS_THAN_HALF
;
396 if (width
< base_width
&& width
> base_width
/ 2) {
398 * The device will send count units for each
399 * unit skipped. This means count unit is:
401 * n = width / (frame width - width)
405 * width = (n / n + 1) * frame width
407 col_n
= div_round_integer(width
, base_width
- width
);
408 if (col_n
> 0 && col_n
<= 255) {
410 col_mode
= STK1160_DECIMATE_LESS_THAN_HALF
;
411 f
->fmt
.pix
.width
= (base_width
* col_n
) / (col_n
+ 1);
414 } else if (width
<= base_width
/ 2) {
417 * The device will skip count units for each
418 * unit sent. This means count is:
420 * n = (frame width / width) - 1
424 * width = frame width / (n + 1)
426 col_n
= div_round_integer(base_width
, width
) - 1;
427 if (col_n
> 0 && col_n
<= 255) {
429 col_mode
= STK1160_DECIMATE_MORE_THAN_HALF
;
430 f
->fmt
.pix
.width
= base_width
/ (col_n
+ 1);
434 if (height
< base_height
&& height
> base_height
/ 2) {
435 row_n
= div_round_integer(height
, base_height
- height
);
436 if (row_n
> 0 && row_n
<= 255) {
438 row_mode
= STK1160_DECIMATE_LESS_THAN_HALF
;
439 f
->fmt
.pix
.height
= (base_height
* row_n
) / (row_n
+ 1);
442 } else if (height
<= base_height
/ 2) {
443 row_n
= div_round_integer(base_height
, height
) - 1;
444 if (row_n
> 0 && row_n
<= 255) {
446 row_mode
= STK1160_DECIMATE_MORE_THAN_HALF
;
447 f
->fmt
.pix
.height
= base_height
/ (row_n
+ 1);
451 f
->fmt
.pix
.pixelformat
= dev
->fmt
->fourcc
;
452 f
->fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
453 f
->fmt
.pix
.bytesperline
= f
->fmt
.pix
.width
* 2;
454 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
455 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
458 ctrl
->col_en
= col_en
;
460 ctrl
->col_mode
= col_mode
;
461 ctrl
->row_en
= row_en
;
463 ctrl
->row_mode
= row_mode
;
466 stk1160_dbg("width %d, height %d\n",
467 f
->fmt
.pix
.width
, f
->fmt
.pix
.height
);
471 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
472 struct v4l2_format
*f
)
474 struct stk1160
*dev
= video_drvdata(file
);
476 return stk1160_try_fmt(dev
, f
, NULL
);
479 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
480 struct v4l2_format
*f
)
482 struct stk1160
*dev
= video_drvdata(file
);
483 struct vb2_queue
*q
= &dev
->vb_vidq
;
484 struct stk1160_decimate_ctrl ctrl
;
490 rc
= stk1160_try_fmt(dev
, f
, &ctrl
);
493 dev
->width
= f
->fmt
.pix
.width
;
494 dev
->height
= f
->fmt
.pix
.height
;
495 stk1160_set_fmt(dev
, &ctrl
);
500 static int vidioc_querystd(struct file
*file
, void *priv
, v4l2_std_id
*norm
)
502 struct stk1160
*dev
= video_drvdata(file
);
503 v4l2_device_call_all(&dev
->v4l2_dev
, 0, video
, querystd
, norm
);
507 static int vidioc_g_std(struct file
*file
, void *priv
, v4l2_std_id
*norm
)
509 struct stk1160
*dev
= video_drvdata(file
);
515 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id norm
)
517 struct stk1160
*dev
= video_drvdata(file
);
518 struct vb2_queue
*q
= &dev
->vb_vidq
;
520 if (dev
->norm
== norm
)
526 /* Check device presence */
530 /* We need to set this now, before we call stk1160_set_std */
532 dev
->height
= (norm
& V4L2_STD_525_60
) ? 480 : 576;
535 stk1160_set_std(dev
);
537 /* Calling with NULL disables frame decimation */
538 stk1160_set_fmt(dev
, NULL
);
540 v4l2_device_call_all(&dev
->v4l2_dev
, 0, video
, s_std
,
547 static int vidioc_enum_input(struct file
*file
, void *priv
,
548 struct v4l2_input
*i
)
550 struct stk1160
*dev
= video_drvdata(file
);
552 if (i
->index
> STK1160_MAX_INPUT
)
555 /* S-Video special handling */
556 if (i
->index
== STK1160_SVIDEO_INPUT
)
557 sprintf(i
->name
, "S-Video");
559 sprintf(i
->name
, "Composite%d", i
->index
);
561 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
562 i
->std
= dev
->vdev
.tvnorms
;
566 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
568 struct stk1160
*dev
= video_drvdata(file
);
573 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
575 struct stk1160
*dev
= video_drvdata(file
);
577 if (i
> STK1160_MAX_INPUT
)
582 stk1160_select_input(dev
);
587 #ifdef CONFIG_VIDEO_ADV_DEBUG
588 static int vidioc_g_register(struct file
*file
, void *priv
,
589 struct v4l2_dbg_register
*reg
)
591 struct stk1160
*dev
= video_drvdata(file
);
596 rc
= stk1160_read_reg(dev
, reg
->reg
, &val
);
603 static int vidioc_s_register(struct file
*file
, void *priv
,
604 const struct v4l2_dbg_register
*reg
)
606 struct stk1160
*dev
= video_drvdata(file
);
609 return stk1160_write_reg(dev
, reg
->reg
, reg
->val
);
613 static const struct v4l2_ioctl_ops stk1160_ioctl_ops
= {
614 .vidioc_querycap
= vidioc_querycap
,
615 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
616 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
617 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
618 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
619 .vidioc_querystd
= vidioc_querystd
,
620 .vidioc_g_std
= vidioc_g_std
,
621 .vidioc_s_std
= vidioc_s_std
,
622 .vidioc_enum_input
= vidioc_enum_input
,
623 .vidioc_g_input
= vidioc_g_input
,
624 .vidioc_s_input
= vidioc_s_input
,
626 /* vb2 takes care of these */
627 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
628 .vidioc_querybuf
= vb2_ioctl_querybuf
,
629 .vidioc_qbuf
= vb2_ioctl_qbuf
,
630 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
631 .vidioc_streamon
= vb2_ioctl_streamon
,
632 .vidioc_streamoff
= vb2_ioctl_streamoff
,
633 .vidioc_expbuf
= vb2_ioctl_expbuf
,
635 .vidioc_log_status
= v4l2_ctrl_log_status
,
636 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
637 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
639 #ifdef CONFIG_VIDEO_ADV_DEBUG
640 .vidioc_g_register
= vidioc_g_register
,
641 .vidioc_s_register
= vidioc_s_register
,
645 /********************************************************************/
648 * Videobuf2 operations
650 static int queue_setup(struct vb2_queue
*vq
,
651 unsigned int *nbuffers
, unsigned int *nplanes
,
652 unsigned int sizes
[], struct device
*alloc_devs
[])
654 struct stk1160
*dev
= vb2_get_drv_priv(vq
);
657 size
= dev
->width
* dev
->height
* 2;
660 * Here we can change the number of buffers being requested.
661 * So, we set a minimum and a maximum like this:
663 *nbuffers
= clamp_t(unsigned int, *nbuffers
,
664 STK1160_MIN_VIDEO_BUFFERS
, STK1160_MAX_VIDEO_BUFFERS
);
667 return sizes
[0] < size
? -EINVAL
: 0;
669 /* This means a packed colorformat */
674 stk1160_dbg("%s: buffer count %d, each %ld bytes\n",
675 __func__
, *nbuffers
, size
);
680 static void buffer_queue(struct vb2_buffer
*vb
)
683 struct stk1160
*dev
= vb2_get_drv_priv(vb
->vb2_queue
);
684 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
685 struct stk1160_buffer
*buf
=
686 container_of(vbuf
, struct stk1160_buffer
, vb
);
688 spin_lock_irqsave(&dev
->buf_lock
, flags
);
691 * If the device is disconnected return the buffer to userspace
692 * directly. The next QBUF call will fail with -ENODEV.
694 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_ERROR
);
697 buf
->mem
= vb2_plane_vaddr(vb
, 0);
698 buf
->length
= vb2_plane_size(vb
, 0);
703 * If buffer length is less from expected then we return
704 * the buffer to userspace directly.
706 if (buf
->length
< dev
->width
* dev
->height
* 2)
707 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_ERROR
);
709 list_add_tail(&buf
->list
, &dev
->avail_bufs
);
712 spin_unlock_irqrestore(&dev
->buf_lock
, flags
);
715 static int start_streaming(struct vb2_queue
*vq
, unsigned int count
)
717 struct stk1160
*dev
= vb2_get_drv_priv(vq
);
718 return stk1160_start_streaming(dev
);
721 /* abort streaming and wait for last buffer */
722 static void stop_streaming(struct vb2_queue
*vq
)
724 struct stk1160
*dev
= vb2_get_drv_priv(vq
);
725 stk1160_stop_streaming(dev
);
728 static const struct vb2_ops stk1160_video_qops
= {
729 .queue_setup
= queue_setup
,
730 .buf_queue
= buffer_queue
,
731 .start_streaming
= start_streaming
,
732 .stop_streaming
= stop_streaming
,
733 .wait_prepare
= vb2_ops_wait_prepare
,
734 .wait_finish
= vb2_ops_wait_finish
,
737 static const struct video_device v4l_template
= {
739 .tvnorms
= V4L2_STD_525_60
| V4L2_STD_625_50
,
740 .fops
= &stk1160_fops
,
741 .ioctl_ops
= &stk1160_ioctl_ops
,
742 .release
= video_device_release_empty
,
745 /********************************************************************/
747 /* Must be called with both v4l_lock and vb_queue_lock hold */
748 void stk1160_clear_queue(struct stk1160
*dev
)
750 struct stk1160_buffer
*buf
;
753 /* Release all active buffers */
754 spin_lock_irqsave(&dev
->buf_lock
, flags
);
755 while (!list_empty(&dev
->avail_bufs
)) {
756 buf
= list_first_entry(&dev
->avail_bufs
,
757 struct stk1160_buffer
, list
);
758 list_del(&buf
->list
);
759 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_ERROR
);
760 stk1160_dbg("buffer [%p/%d] aborted\n",
761 buf
, buf
->vb
.vb2_buf
.index
);
764 /* It's important to release the current buffer */
765 if (dev
->isoc_ctl
.buf
) {
766 buf
= dev
->isoc_ctl
.buf
;
767 dev
->isoc_ctl
.buf
= NULL
;
769 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_ERROR
);
770 stk1160_dbg("buffer [%p/%d] aborted\n",
771 buf
, buf
->vb
.vb2_buf
.index
);
773 spin_unlock_irqrestore(&dev
->buf_lock
, flags
);
776 int stk1160_vb2_setup(struct stk1160
*dev
)
782 q
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
783 q
->io_modes
= VB2_READ
| VB2_MMAP
| VB2_USERPTR
| VB2_DMABUF
;
785 q
->buf_struct_size
= sizeof(struct stk1160_buffer
);
786 q
->ops
= &stk1160_video_qops
;
787 q
->mem_ops
= &vb2_vmalloc_memops
;
788 q
->lock
= &dev
->vb_queue_lock
;
789 q
->timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
791 rc
= vb2_queue_init(q
);
795 /* initialize video dma queue */
796 INIT_LIST_HEAD(&dev
->avail_bufs
);
801 int stk1160_video_register(struct stk1160
*dev
)
805 /* Initialize video_device with a template structure */
806 dev
->vdev
= v4l_template
;
807 dev
->vdev
.queue
= &dev
->vb_vidq
;
810 * Provide mutexes for v4l2 core and for videobuf2 queue.
811 * It will be used to protect *only* v4l2 ioctls.
813 dev
->vdev
.lock
= &dev
->v4l_lock
;
815 /* This will be used to set video_device parent */
816 dev
->vdev
.v4l2_dev
= &dev
->v4l2_dev
;
817 dev
->vdev
.device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
|
820 /* NTSC is default */
821 dev
->norm
= V4L2_STD_NTSC_M
;
825 /* set default format */
826 dev
->fmt
= &format
[0];
827 stk1160_set_std(dev
);
829 v4l2_device_call_all(&dev
->v4l2_dev
, 0, video
, s_std
,
832 video_set_drvdata(&dev
->vdev
, dev
);
833 rc
= video_register_device(&dev
->vdev
, VFL_TYPE_VIDEO
, -1);
835 stk1160_err("video_register_device failed (%d)\n", rc
);
839 v4l2_info(&dev
->v4l2_dev
, "V4L2 device registered as %s\n",
840 video_device_node_name(&dev
->vdev
));