2 * vivid-vid-cap.c - video capture support functions.
4 * Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
6 * This program is free software; you may redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
11 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
12 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
13 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
14 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
15 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
16 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 #include <linux/errno.h>
21 #include <linux/kernel.h>
22 #include <linux/sched.h>
23 #include <linux/vmalloc.h>
24 #include <linux/videodev2.h>
25 #include <linux/v4l2-dv-timings.h>
26 #include <media/v4l2-common.h>
27 #include <media/v4l2-event.h>
28 #include <media/v4l2-dv-timings.h>
30 #include "vivid-core.h"
31 #include "vivid-vid-common.h"
32 #include "vivid-kthread-cap.h"
33 #include "vivid-vid-cap.h"
35 /* timeperframe: min/max and default */
36 static const struct v4l2_fract
37 tpf_min
= {.numerator
= 1, .denominator
= FPS_MAX
},
38 tpf_max
= {.numerator
= FPS_MAX
, .denominator
= 1},
39 tpf_default
= {.numerator
= 1, .denominator
= 30};
41 static const struct vivid_fmt formats_ovl
[] = {
43 .fourcc
= V4L2_PIX_FMT_RGB565
, /* gggbbbbb rrrrrggg */
44 .vdownsampling
= { 1 },
50 .fourcc
= V4L2_PIX_FMT_XRGB555
, /* gggbbbbb arrrrrgg */
51 .vdownsampling
= { 1 },
57 .fourcc
= V4L2_PIX_FMT_ARGB555
, /* gggbbbbb arrrrrgg */
58 .vdownsampling
= { 1 },
65 /* The number of discrete webcam framesizes */
66 #define VIVID_WEBCAM_SIZES 4
67 /* The number of discrete webcam frameintervals */
68 #define VIVID_WEBCAM_IVALS (VIVID_WEBCAM_SIZES * 2)
70 /* Sizes must be in increasing order */
71 static const struct v4l2_frmsize_discrete webcam_sizes
[VIVID_WEBCAM_SIZES
] = {
79 * Intervals must be in increasing order and there must be twice as many
80 * elements in this array as there are in webcam_sizes.
82 static const struct v4l2_fract webcam_intervals
[VIVID_WEBCAM_IVALS
] = {
93 static const struct v4l2_discrete_probe webcam_probe
= {
98 static int vid_cap_queue_setup(struct vb2_queue
*vq
,
99 unsigned *nbuffers
, unsigned *nplanes
,
100 unsigned sizes
[], void *alloc_ctxs
[])
102 struct vivid_dev
*dev
= vb2_get_drv_priv(vq
);
103 unsigned buffers
= tpg_g_buffers(&dev
->tpg
);
104 unsigned h
= dev
->fmt_cap_rect
.height
;
107 if (dev
->field_cap
== V4L2_FIELD_ALTERNATE
) {
109 * You cannot use read() with FIELD_ALTERNATE since the field
110 * information (TOP/BOTTOM) cannot be passed back to the user.
112 if (vb2_fileio_is_active(vq
))
116 if (dev
->queue_setup_error
) {
118 * Error injection: test what happens if queue_setup() returns
121 dev
->queue_setup_error
= false;
126 * Check if the number of requested planes match
127 * the number of buffers in the current format. You can't mix that.
129 if (*nplanes
!= buffers
)
131 for (p
= 0; p
< buffers
; p
++) {
132 if (sizes
[p
] < tpg_g_line_width(&dev
->tpg
, p
) * h
+
133 dev
->fmt_cap
->data_offset
[p
])
137 for (p
= 0; p
< buffers
; p
++)
138 sizes
[p
] = tpg_g_line_width(&dev
->tpg
, p
) * h
+
139 dev
->fmt_cap
->data_offset
[p
];
142 if (vq
->num_buffers
+ *nbuffers
< 2)
143 *nbuffers
= 2 - vq
->num_buffers
;
148 * videobuf2-vmalloc allocator is context-less so no need to set
152 dprintk(dev
, 1, "%s: count=%d\n", __func__
, *nbuffers
);
153 for (p
= 0; p
< buffers
; p
++)
154 dprintk(dev
, 1, "%s: size[%u]=%u\n", __func__
, p
, sizes
[p
]);
159 static int vid_cap_buf_prepare(struct vb2_buffer
*vb
)
161 struct vivid_dev
*dev
= vb2_get_drv_priv(vb
->vb2_queue
);
163 unsigned buffers
= tpg_g_buffers(&dev
->tpg
);
166 dprintk(dev
, 1, "%s\n", __func__
);
168 if (WARN_ON(NULL
== dev
->fmt_cap
))
171 if (dev
->buf_prepare_error
) {
173 * Error injection: test what happens if buf_prepare() returns
176 dev
->buf_prepare_error
= false;
179 for (p
= 0; p
< buffers
; p
++) {
180 size
= tpg_g_line_width(&dev
->tpg
, p
) * dev
->fmt_cap_rect
.height
+
181 dev
->fmt_cap
->data_offset
[p
];
183 if (vb2_plane_size(vb
, p
) < size
) {
184 dprintk(dev
, 1, "%s data will not fit into plane %u (%lu < %lu)\n",
185 __func__
, p
, vb2_plane_size(vb
, p
), size
);
189 vb2_set_plane_payload(vb
, p
, size
);
190 vb
->planes
[p
].data_offset
= dev
->fmt_cap
->data_offset
[p
];
196 static void vid_cap_buf_finish(struct vb2_buffer
*vb
)
198 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
199 struct vivid_dev
*dev
= vb2_get_drv_priv(vb
->vb2_queue
);
200 struct v4l2_timecode
*tc
= &vbuf
->timecode
;
202 unsigned seq
= vbuf
->sequence
;
204 if (!vivid_is_sdtv_cap(dev
))
208 * Set the timecode. Rarely used, so it is interesting to
211 vbuf
->flags
|= V4L2_BUF_FLAG_TIMECODE
;
212 if (dev
->std_cap
& V4L2_STD_525_60
)
214 tc
->type
= (fps
== 30) ? V4L2_TC_TYPE_30FPS
: V4L2_TC_TYPE_25FPS
;
216 tc
->frames
= seq
% fps
;
217 tc
->seconds
= (seq
/ fps
) % 60;
218 tc
->minutes
= (seq
/ (60 * fps
)) % 60;
219 tc
->hours
= (seq
/ (60 * 60 * fps
)) % 24;
222 static void vid_cap_buf_queue(struct vb2_buffer
*vb
)
224 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
225 struct vivid_dev
*dev
= vb2_get_drv_priv(vb
->vb2_queue
);
226 struct vivid_buffer
*buf
= container_of(vbuf
, struct vivid_buffer
, vb
);
228 dprintk(dev
, 1, "%s\n", __func__
);
230 spin_lock(&dev
->slock
);
231 list_add_tail(&buf
->list
, &dev
->vid_cap_active
);
232 spin_unlock(&dev
->slock
);
235 static int vid_cap_start_streaming(struct vb2_queue
*vq
, unsigned count
)
237 struct vivid_dev
*dev
= vb2_get_drv_priv(vq
);
241 if (vb2_is_streaming(&dev
->vb_vid_out_q
))
242 dev
->can_loop_video
= vivid_vid_can_loop(dev
);
244 if (dev
->kthread_vid_cap
)
247 dev
->vid_cap_seq_count
= 0;
248 dprintk(dev
, 1, "%s\n", __func__
);
249 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++)
250 dev
->must_blank
[i
] = tpg_g_perc_fill(&dev
->tpg
) < 100;
251 if (dev
->start_streaming_error
) {
252 dev
->start_streaming_error
= false;
255 err
= vivid_start_generating_vid_cap(dev
, &dev
->vid_cap_streaming
);
258 struct vivid_buffer
*buf
, *tmp
;
260 list_for_each_entry_safe(buf
, tmp
, &dev
->vid_cap_active
, list
) {
261 list_del(&buf
->list
);
262 vb2_buffer_done(&buf
->vb
.vb2_buf
,
263 VB2_BUF_STATE_QUEUED
);
269 /* abort streaming and wait for last buffer */
270 static void vid_cap_stop_streaming(struct vb2_queue
*vq
)
272 struct vivid_dev
*dev
= vb2_get_drv_priv(vq
);
274 dprintk(dev
, 1, "%s\n", __func__
);
275 vivid_stop_generating_vid_cap(dev
, &dev
->vid_cap_streaming
);
276 dev
->can_loop_video
= false;
279 const struct vb2_ops vivid_vid_cap_qops
= {
280 .queue_setup
= vid_cap_queue_setup
,
281 .buf_prepare
= vid_cap_buf_prepare
,
282 .buf_finish
= vid_cap_buf_finish
,
283 .buf_queue
= vid_cap_buf_queue
,
284 .start_streaming
= vid_cap_start_streaming
,
285 .stop_streaming
= vid_cap_stop_streaming
,
286 .wait_prepare
= vb2_ops_wait_prepare
,
287 .wait_finish
= vb2_ops_wait_finish
,
291 * Determine the 'picture' quality based on the current TV frequency: either
292 * COLOR for a good 'signal', GRAY (grayscale picture) for a slightly off
293 * signal or NOISE for no signal.
295 void vivid_update_quality(struct vivid_dev
*dev
)
297 unsigned freq_modulus
;
299 if (dev
->loop_video
&& (vivid_is_svid_cap(dev
) || vivid_is_hdmi_cap(dev
))) {
301 * The 'noise' will only be replaced by the actual video
302 * if the output video matches the input video settings.
304 tpg_s_quality(&dev
->tpg
, TPG_QUAL_NOISE
, 0);
307 if (vivid_is_hdmi_cap(dev
) && VIVID_INVALID_SIGNAL(dev
->dv_timings_signal_mode
)) {
308 tpg_s_quality(&dev
->tpg
, TPG_QUAL_NOISE
, 0);
311 if (vivid_is_sdtv_cap(dev
) && VIVID_INVALID_SIGNAL(dev
->std_signal_mode
)) {
312 tpg_s_quality(&dev
->tpg
, TPG_QUAL_NOISE
, 0);
315 if (!vivid_is_tv_cap(dev
)) {
316 tpg_s_quality(&dev
->tpg
, TPG_QUAL_COLOR
, 0);
321 * There is a fake channel every 6 MHz at 49.25, 55.25, etc.
322 * From +/- 0.25 MHz around the channel there is color, and from
323 * +/- 1 MHz there is grayscale (chroma is lost).
324 * Everywhere else it is just noise.
326 freq_modulus
= (dev
->tv_freq
- 676 /* (43.25-1) * 16 */) % (6 * 16);
327 if (freq_modulus
> 2 * 16) {
328 tpg_s_quality(&dev
->tpg
, TPG_QUAL_NOISE
,
329 next_pseudo_random32(dev
->tv_freq
^ 0x55) & 0x3f);
332 if (freq_modulus
< 12 /*0.75 * 16*/ || freq_modulus
> 20 /*1.25 * 16*/)
333 tpg_s_quality(&dev
->tpg
, TPG_QUAL_GRAY
, 0);
335 tpg_s_quality(&dev
->tpg
, TPG_QUAL_COLOR
, 0);
339 * Get the current picture quality and the associated afc value.
341 static enum tpg_quality
vivid_get_quality(struct vivid_dev
*dev
, s32
*afc
)
343 unsigned freq_modulus
;
347 if (tpg_g_quality(&dev
->tpg
) == TPG_QUAL_COLOR
||
348 tpg_g_quality(&dev
->tpg
) == TPG_QUAL_NOISE
)
349 return tpg_g_quality(&dev
->tpg
);
352 * There is a fake channel every 6 MHz at 49.25, 55.25, etc.
353 * From +/- 0.25 MHz around the channel there is color, and from
354 * +/- 1 MHz there is grayscale (chroma is lost).
355 * Everywhere else it is just gray.
357 freq_modulus
= (dev
->tv_freq
- 676 /* (43.25-1) * 16 */) % (6 * 16);
359 *afc
= freq_modulus
- 1 * 16;
360 return TPG_QUAL_GRAY
;
363 enum tpg_video_aspect
vivid_get_video_aspect(const struct vivid_dev
*dev
)
365 if (vivid_is_sdtv_cap(dev
))
366 return dev
->std_aspect_ratio
;
368 if (vivid_is_hdmi_cap(dev
))
369 return dev
->dv_timings_aspect_ratio
;
371 return TPG_VIDEO_ASPECT_IMAGE
;
374 static enum tpg_pixel_aspect
vivid_get_pixel_aspect(const struct vivid_dev
*dev
)
376 if (vivid_is_sdtv_cap(dev
))
377 return (dev
->std_cap
& V4L2_STD_525_60
) ?
378 TPG_PIXEL_ASPECT_NTSC
: TPG_PIXEL_ASPECT_PAL
;
380 if (vivid_is_hdmi_cap(dev
) &&
381 dev
->src_rect
.width
== 720 && dev
->src_rect
.height
<= 576)
382 return dev
->src_rect
.height
== 480 ?
383 TPG_PIXEL_ASPECT_NTSC
: TPG_PIXEL_ASPECT_PAL
;
385 return TPG_PIXEL_ASPECT_SQUARE
;
389 * Called whenever the format has to be reset which can occur when
390 * changing inputs, standard, timings, etc.
392 void vivid_update_format_cap(struct vivid_dev
*dev
, bool keep_controls
)
394 struct v4l2_bt_timings
*bt
= &dev
->dv_timings_cap
.bt
;
398 switch (dev
->input_type
[dev
->input
]) {
401 dev
->src_rect
.width
= webcam_sizes
[dev
->webcam_size_idx
].width
;
402 dev
->src_rect
.height
= webcam_sizes
[dev
->webcam_size_idx
].height
;
403 dev
->timeperframe_vid_cap
= webcam_intervals
[dev
->webcam_ival_idx
];
404 dev
->field_cap
= V4L2_FIELD_NONE
;
405 tpg_s_rgb_range(&dev
->tpg
, V4L2_DV_RGB_RANGE_AUTO
);
409 dev
->field_cap
= dev
->tv_field_cap
;
410 dev
->src_rect
.width
= 720;
411 if (dev
->std_cap
& V4L2_STD_525_60
) {
412 dev
->src_rect
.height
= 480;
413 dev
->timeperframe_vid_cap
= (struct v4l2_fract
) { 1001, 30000 };
414 dev
->service_set_cap
= V4L2_SLICED_CAPTION_525
;
416 dev
->src_rect
.height
= 576;
417 dev
->timeperframe_vid_cap
= (struct v4l2_fract
) { 1000, 25000 };
418 dev
->service_set_cap
= V4L2_SLICED_WSS_625
| V4L2_SLICED_TELETEXT_B
;
420 tpg_s_rgb_range(&dev
->tpg
, V4L2_DV_RGB_RANGE_AUTO
);
423 dev
->src_rect
.width
= bt
->width
;
424 dev
->src_rect
.height
= bt
->height
;
425 size
= V4L2_DV_BT_FRAME_WIDTH(bt
) * V4L2_DV_BT_FRAME_HEIGHT(bt
);
426 if (dev
->reduced_fps
&& can_reduce_fps(bt
)) {
427 pixelclock
= div_u64(bt
->pixelclock
* 1000, 1001);
428 bt
->flags
|= V4L2_DV_FL_REDUCED_FPS
;
430 pixelclock
= bt
->pixelclock
;
431 bt
->flags
&= ~V4L2_DV_FL_REDUCED_FPS
;
433 dev
->timeperframe_vid_cap
= (struct v4l2_fract
) {
434 size
/ 100, (u32
)pixelclock
/ 100
437 dev
->field_cap
= V4L2_FIELD_ALTERNATE
;
439 dev
->field_cap
= V4L2_FIELD_NONE
;
442 * We can be called from within s_ctrl, in that case we can't
443 * set/get controls. Luckily we don't need to in that case.
445 if (keep_controls
|| !dev
->colorspace
)
447 if (bt
->flags
& V4L2_DV_FL_IS_CE_VIDEO
) {
448 if (bt
->width
== 720 && bt
->height
<= 576)
449 v4l2_ctrl_s_ctrl(dev
->colorspace
, VIVID_CS_170M
);
451 v4l2_ctrl_s_ctrl(dev
->colorspace
, VIVID_CS_709
);
452 v4l2_ctrl_s_ctrl(dev
->real_rgb_range_cap
, 1);
454 v4l2_ctrl_s_ctrl(dev
->colorspace
, VIVID_CS_SRGB
);
455 v4l2_ctrl_s_ctrl(dev
->real_rgb_range_cap
, 0);
457 tpg_s_rgb_range(&dev
->tpg
, v4l2_ctrl_g_ctrl(dev
->rgb_range_cap
));
460 vivid_update_quality(dev
);
461 tpg_reset_source(&dev
->tpg
, dev
->src_rect
.width
, dev
->src_rect
.height
, dev
->field_cap
);
462 dev
->crop_cap
= dev
->src_rect
;
463 dev
->crop_bounds_cap
= dev
->src_rect
;
464 dev
->compose_cap
= dev
->crop_cap
;
465 if (V4L2_FIELD_HAS_T_OR_B(dev
->field_cap
))
466 dev
->compose_cap
.height
/= 2;
467 dev
->fmt_cap_rect
= dev
->compose_cap
;
468 tpg_s_video_aspect(&dev
->tpg
, vivid_get_video_aspect(dev
));
469 tpg_s_pixel_aspect(&dev
->tpg
, vivid_get_pixel_aspect(dev
));
470 tpg_update_mv_step(&dev
->tpg
);
473 /* Map the field to something that is valid for the current input */
474 static enum v4l2_field
vivid_field_cap(struct vivid_dev
*dev
, enum v4l2_field field
)
476 if (vivid_is_sdtv_cap(dev
)) {
478 case V4L2_FIELD_INTERLACED_TB
:
479 case V4L2_FIELD_INTERLACED_BT
:
480 case V4L2_FIELD_SEQ_TB
:
481 case V4L2_FIELD_SEQ_BT
:
483 case V4L2_FIELD_BOTTOM
:
484 case V4L2_FIELD_ALTERNATE
:
486 case V4L2_FIELD_INTERLACED
:
488 return V4L2_FIELD_INTERLACED
;
491 if (vivid_is_hdmi_cap(dev
))
492 return dev
->dv_timings_cap
.bt
.interlaced
? V4L2_FIELD_ALTERNATE
:
494 return V4L2_FIELD_NONE
;
497 static unsigned vivid_colorspace_cap(struct vivid_dev
*dev
)
499 if (!dev
->loop_video
|| vivid_is_webcam(dev
) || vivid_is_tv_cap(dev
))
500 return tpg_g_colorspace(&dev
->tpg
);
501 return dev
->colorspace_out
;
504 static unsigned vivid_xfer_func_cap(struct vivid_dev
*dev
)
506 if (!dev
->loop_video
|| vivid_is_webcam(dev
) || vivid_is_tv_cap(dev
))
507 return tpg_g_xfer_func(&dev
->tpg
);
508 return dev
->xfer_func_out
;
511 static unsigned vivid_ycbcr_enc_cap(struct vivid_dev
*dev
)
513 if (!dev
->loop_video
|| vivid_is_webcam(dev
) || vivid_is_tv_cap(dev
))
514 return tpg_g_ycbcr_enc(&dev
->tpg
);
515 return dev
->ycbcr_enc_out
;
518 static unsigned vivid_quantization_cap(struct vivid_dev
*dev
)
520 if (!dev
->loop_video
|| vivid_is_webcam(dev
) || vivid_is_tv_cap(dev
))
521 return tpg_g_quantization(&dev
->tpg
);
522 return dev
->quantization_out
;
525 int vivid_g_fmt_vid_cap(struct file
*file
, void *priv
,
526 struct v4l2_format
*f
)
528 struct vivid_dev
*dev
= video_drvdata(file
);
529 struct v4l2_pix_format_mplane
*mp
= &f
->fmt
.pix_mp
;
532 mp
->width
= dev
->fmt_cap_rect
.width
;
533 mp
->height
= dev
->fmt_cap_rect
.height
;
534 mp
->field
= dev
->field_cap
;
535 mp
->pixelformat
= dev
->fmt_cap
->fourcc
;
536 mp
->colorspace
= vivid_colorspace_cap(dev
);
537 mp
->xfer_func
= vivid_xfer_func_cap(dev
);
538 mp
->ycbcr_enc
= vivid_ycbcr_enc_cap(dev
);
539 mp
->quantization
= vivid_quantization_cap(dev
);
540 mp
->num_planes
= dev
->fmt_cap
->buffers
;
541 for (p
= 0; p
< mp
->num_planes
; p
++) {
542 mp
->plane_fmt
[p
].bytesperline
= tpg_g_bytesperline(&dev
->tpg
, p
);
543 mp
->plane_fmt
[p
].sizeimage
=
544 tpg_g_line_width(&dev
->tpg
, p
) * mp
->height
+
545 dev
->fmt_cap
->data_offset
[p
];
550 int vivid_try_fmt_vid_cap(struct file
*file
, void *priv
,
551 struct v4l2_format
*f
)
553 struct v4l2_pix_format_mplane
*mp
= &f
->fmt
.pix_mp
;
554 struct v4l2_plane_pix_format
*pfmt
= mp
->plane_fmt
;
555 struct vivid_dev
*dev
= video_drvdata(file
);
556 const struct vivid_fmt
*fmt
;
557 unsigned bytesperline
, max_bpl
;
562 fmt
= vivid_get_format(dev
, mp
->pixelformat
);
564 dprintk(dev
, 1, "Fourcc format (0x%08x) unknown.\n",
566 mp
->pixelformat
= V4L2_PIX_FMT_YUYV
;
567 fmt
= vivid_get_format(dev
, mp
->pixelformat
);
570 mp
->field
= vivid_field_cap(dev
, mp
->field
);
571 if (vivid_is_webcam(dev
)) {
572 const struct v4l2_frmsize_discrete
*sz
=
573 v4l2_find_nearest_format(&webcam_probe
, mp
->width
, mp
->height
);
577 } else if (vivid_is_sdtv_cap(dev
)) {
579 h
= (dev
->std_cap
& V4L2_STD_525_60
) ? 480 : 576;
581 w
= dev
->src_rect
.width
;
582 h
= dev
->src_rect
.height
;
584 if (V4L2_FIELD_HAS_T_OR_B(mp
->field
))
586 if (vivid_is_webcam(dev
) ||
587 (!dev
->has_scaler_cap
&& !dev
->has_crop_cap
&& !dev
->has_compose_cap
)) {
589 mp
->height
= h
/ factor
;
591 struct v4l2_rect r
= { 0, 0, mp
->width
, mp
->height
* factor
};
593 rect_set_min_size(&r
, &vivid_min_rect
);
594 rect_set_max_size(&r
, &vivid_max_rect
);
595 if (dev
->has_scaler_cap
&& !dev
->has_compose_cap
) {
596 struct v4l2_rect max_r
= { 0, 0, MAX_ZOOM
* w
, MAX_ZOOM
* h
};
598 rect_set_max_size(&r
, &max_r
);
599 } else if (!dev
->has_scaler_cap
&& dev
->has_crop_cap
&& !dev
->has_compose_cap
) {
600 rect_set_max_size(&r
, &dev
->src_rect
);
601 } else if (!dev
->has_scaler_cap
&& !dev
->has_crop_cap
) {
602 rect_set_min_size(&r
, &dev
->src_rect
);
605 mp
->height
= r
.height
/ factor
;
608 /* This driver supports custom bytesperline values */
610 mp
->num_planes
= fmt
->buffers
;
611 for (p
= 0; p
< mp
->num_planes
; p
++) {
612 /* Calculate the minimum supported bytesperline value */
613 bytesperline
= (mp
->width
* fmt
->bit_depth
[p
]) >> 3;
614 /* Calculate the maximum supported bytesperline value */
615 max_bpl
= (MAX_ZOOM
* MAX_WIDTH
* fmt
->bit_depth
[p
]) >> 3;
617 if (pfmt
[p
].bytesperline
> max_bpl
)
618 pfmt
[p
].bytesperline
= max_bpl
;
619 if (pfmt
[p
].bytesperline
< bytesperline
)
620 pfmt
[p
].bytesperline
= bytesperline
;
621 pfmt
[p
].sizeimage
= tpg_calc_line_width(&dev
->tpg
, p
, pfmt
[p
].bytesperline
) *
622 mp
->height
+ fmt
->data_offset
[p
];
623 memset(pfmt
[p
].reserved
, 0, sizeof(pfmt
[p
].reserved
));
625 mp
->colorspace
= vivid_colorspace_cap(dev
);
626 mp
->ycbcr_enc
= vivid_ycbcr_enc_cap(dev
);
627 mp
->xfer_func
= vivid_xfer_func_cap(dev
);
628 mp
->quantization
= vivid_quantization_cap(dev
);
629 memset(mp
->reserved
, 0, sizeof(mp
->reserved
));
633 int vivid_s_fmt_vid_cap(struct file
*file
, void *priv
,
634 struct v4l2_format
*f
)
636 struct v4l2_pix_format_mplane
*mp
= &f
->fmt
.pix_mp
;
637 struct vivid_dev
*dev
= video_drvdata(file
);
638 struct v4l2_rect
*crop
= &dev
->crop_cap
;
639 struct v4l2_rect
*compose
= &dev
->compose_cap
;
640 struct vb2_queue
*q
= &dev
->vb_vid_cap_q
;
641 int ret
= vivid_try_fmt_vid_cap(file
, priv
, f
);
649 if (vb2_is_busy(q
)) {
650 dprintk(dev
, 1, "%s device busy\n", __func__
);
654 if (dev
->overlay_cap_owner
&& dev
->fb_cap
.fmt
.pixelformat
!= mp
->pixelformat
) {
655 dprintk(dev
, 1, "overlay is active, can't change pixelformat\n");
659 dev
->fmt_cap
= vivid_get_format(dev
, mp
->pixelformat
);
660 if (V4L2_FIELD_HAS_T_OR_B(mp
->field
))
663 /* Note: the webcam input doesn't support scaling, cropping or composing */
665 if (!vivid_is_webcam(dev
) &&
666 (dev
->has_scaler_cap
|| dev
->has_crop_cap
|| dev
->has_compose_cap
)) {
667 struct v4l2_rect r
= { 0, 0, mp
->width
, mp
->height
};
669 if (dev
->has_scaler_cap
) {
670 if (dev
->has_compose_cap
)
671 rect_map_inside(compose
, &r
);
674 if (dev
->has_crop_cap
&& !dev
->has_compose_cap
) {
675 struct v4l2_rect min_r
= {
678 factor
* r
.height
/ MAX_ZOOM
680 struct v4l2_rect max_r
= {
683 factor
* r
.height
* MAX_ZOOM
686 rect_set_min_size(crop
, &min_r
);
687 rect_set_max_size(crop
, &max_r
);
688 rect_map_inside(crop
, &dev
->crop_bounds_cap
);
689 } else if (dev
->has_crop_cap
) {
690 struct v4l2_rect min_r
= {
692 compose
->width
/ MAX_ZOOM
,
693 factor
* compose
->height
/ MAX_ZOOM
695 struct v4l2_rect max_r
= {
697 compose
->width
* MAX_ZOOM
,
698 factor
* compose
->height
* MAX_ZOOM
701 rect_set_min_size(crop
, &min_r
);
702 rect_set_max_size(crop
, &max_r
);
703 rect_map_inside(crop
, &dev
->crop_bounds_cap
);
705 } else if (dev
->has_crop_cap
&& !dev
->has_compose_cap
) {
707 rect_set_size_to(crop
, &r
);
708 rect_map_inside(crop
, &dev
->crop_bounds_cap
);
711 rect_set_size_to(compose
, &r
);
712 } else if (!dev
->has_crop_cap
) {
713 rect_map_inside(compose
, &r
);
716 rect_set_max_size(crop
, &r
);
717 rect_map_inside(crop
, &dev
->crop_bounds_cap
);
718 compose
->top
*= factor
;
719 compose
->height
*= factor
;
720 rect_set_size_to(compose
, crop
);
721 rect_map_inside(compose
, &r
);
722 compose
->top
/= factor
;
723 compose
->height
/= factor
;
725 } else if (vivid_is_webcam(dev
)) {
726 /* Guaranteed to be a match */
727 for (i
= 0; i
< ARRAY_SIZE(webcam_sizes
); i
++)
728 if (webcam_sizes
[i
].width
== mp
->width
&&
729 webcam_sizes
[i
].height
== mp
->height
)
731 dev
->webcam_size_idx
= i
;
732 if (dev
->webcam_ival_idx
>= 2 * (VIVID_WEBCAM_SIZES
- i
))
733 dev
->webcam_ival_idx
= 2 * (VIVID_WEBCAM_SIZES
- i
) - 1;
734 vivid_update_format_cap(dev
, false);
736 struct v4l2_rect r
= { 0, 0, mp
->width
, mp
->height
};
738 rect_set_size_to(compose
, &r
);
740 rect_set_size_to(crop
, &r
);
743 dev
->fmt_cap_rect
.width
= mp
->width
;
744 dev
->fmt_cap_rect
.height
= mp
->height
;
745 tpg_s_buf_height(&dev
->tpg
, mp
->height
);
746 tpg_s_fourcc(&dev
->tpg
, dev
->fmt_cap
->fourcc
);
747 for (p
= 0; p
< tpg_g_buffers(&dev
->tpg
); p
++)
748 tpg_s_bytesperline(&dev
->tpg
, p
, mp
->plane_fmt
[p
].bytesperline
);
749 dev
->field_cap
= mp
->field
;
750 if (dev
->field_cap
== V4L2_FIELD_ALTERNATE
)
751 tpg_s_field(&dev
->tpg
, V4L2_FIELD_TOP
, true);
753 tpg_s_field(&dev
->tpg
, dev
->field_cap
, false);
754 tpg_s_crop_compose(&dev
->tpg
, &dev
->crop_cap
, &dev
->compose_cap
);
755 if (vivid_is_sdtv_cap(dev
))
756 dev
->tv_field_cap
= mp
->field
;
757 tpg_update_mv_step(&dev
->tpg
);
761 int vidioc_g_fmt_vid_cap_mplane(struct file
*file
, void *priv
,
762 struct v4l2_format
*f
)
764 struct vivid_dev
*dev
= video_drvdata(file
);
766 if (!dev
->multiplanar
)
768 return vivid_g_fmt_vid_cap(file
, priv
, f
);
771 int vidioc_try_fmt_vid_cap_mplane(struct file
*file
, void *priv
,
772 struct v4l2_format
*f
)
774 struct vivid_dev
*dev
= video_drvdata(file
);
776 if (!dev
->multiplanar
)
778 return vivid_try_fmt_vid_cap(file
, priv
, f
);
781 int vidioc_s_fmt_vid_cap_mplane(struct file
*file
, void *priv
,
782 struct v4l2_format
*f
)
784 struct vivid_dev
*dev
= video_drvdata(file
);
786 if (!dev
->multiplanar
)
788 return vivid_s_fmt_vid_cap(file
, priv
, f
);
791 int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
792 struct v4l2_format
*f
)
794 struct vivid_dev
*dev
= video_drvdata(file
);
796 if (dev
->multiplanar
)
798 return fmt_sp2mp_func(file
, priv
, f
, vivid_g_fmt_vid_cap
);
801 int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
802 struct v4l2_format
*f
)
804 struct vivid_dev
*dev
= video_drvdata(file
);
806 if (dev
->multiplanar
)
808 return fmt_sp2mp_func(file
, priv
, f
, vivid_try_fmt_vid_cap
);
811 int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
812 struct v4l2_format
*f
)
814 struct vivid_dev
*dev
= video_drvdata(file
);
816 if (dev
->multiplanar
)
818 return fmt_sp2mp_func(file
, priv
, f
, vivid_s_fmt_vid_cap
);
821 int vivid_vid_cap_g_selection(struct file
*file
, void *priv
,
822 struct v4l2_selection
*sel
)
824 struct vivid_dev
*dev
= video_drvdata(file
);
826 if (!dev
->has_crop_cap
&& !dev
->has_compose_cap
)
828 if (sel
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
830 if (vivid_is_webcam(dev
))
833 sel
->r
.left
= sel
->r
.top
= 0;
834 switch (sel
->target
) {
835 case V4L2_SEL_TGT_CROP
:
836 if (!dev
->has_crop_cap
)
838 sel
->r
= dev
->crop_cap
;
840 case V4L2_SEL_TGT_CROP_DEFAULT
:
841 case V4L2_SEL_TGT_CROP_BOUNDS
:
842 if (!dev
->has_crop_cap
)
844 sel
->r
= dev
->src_rect
;
846 case V4L2_SEL_TGT_COMPOSE_BOUNDS
:
847 if (!dev
->has_compose_cap
)
849 sel
->r
= vivid_max_rect
;
851 case V4L2_SEL_TGT_COMPOSE
:
852 if (!dev
->has_compose_cap
)
854 sel
->r
= dev
->compose_cap
;
856 case V4L2_SEL_TGT_COMPOSE_DEFAULT
:
857 if (!dev
->has_compose_cap
)
859 sel
->r
= dev
->fmt_cap_rect
;
867 int vivid_vid_cap_s_selection(struct file
*file
, void *fh
, struct v4l2_selection
*s
)
869 struct vivid_dev
*dev
= video_drvdata(file
);
870 struct v4l2_rect
*crop
= &dev
->crop_cap
;
871 struct v4l2_rect
*compose
= &dev
->compose_cap
;
872 unsigned factor
= V4L2_FIELD_HAS_T_OR_B(dev
->field_cap
) ? 2 : 1;
875 if (!dev
->has_crop_cap
&& !dev
->has_compose_cap
)
877 if (s
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
879 if (vivid_is_webcam(dev
))
883 case V4L2_SEL_TGT_CROP
:
884 if (!dev
->has_crop_cap
)
886 ret
= vivid_vid_adjust_sel(s
->flags
, &s
->r
);
889 rect_set_min_size(&s
->r
, &vivid_min_rect
);
890 rect_set_max_size(&s
->r
, &dev
->src_rect
);
891 rect_map_inside(&s
->r
, &dev
->crop_bounds_cap
);
893 s
->r
.height
/= factor
;
894 if (dev
->has_scaler_cap
) {
895 struct v4l2_rect fmt
= dev
->fmt_cap_rect
;
896 struct v4l2_rect max_rect
= {
898 s
->r
.width
* MAX_ZOOM
,
899 s
->r
.height
* MAX_ZOOM
901 struct v4l2_rect min_rect
= {
903 s
->r
.width
/ MAX_ZOOM
,
904 s
->r
.height
/ MAX_ZOOM
907 rect_set_min_size(&fmt
, &min_rect
);
908 if (!dev
->has_compose_cap
)
909 rect_set_max_size(&fmt
, &max_rect
);
910 if (!rect_same_size(&dev
->fmt_cap_rect
, &fmt
) &&
911 vb2_is_busy(&dev
->vb_vid_cap_q
))
913 if (dev
->has_compose_cap
) {
914 rect_set_min_size(compose
, &min_rect
);
915 rect_set_max_size(compose
, &max_rect
);
917 dev
->fmt_cap_rect
= fmt
;
918 tpg_s_buf_height(&dev
->tpg
, fmt
.height
);
919 } else if (dev
->has_compose_cap
) {
920 struct v4l2_rect fmt
= dev
->fmt_cap_rect
;
922 rect_set_min_size(&fmt
, &s
->r
);
923 if (!rect_same_size(&dev
->fmt_cap_rect
, &fmt
) &&
924 vb2_is_busy(&dev
->vb_vid_cap_q
))
926 dev
->fmt_cap_rect
= fmt
;
927 tpg_s_buf_height(&dev
->tpg
, fmt
.height
);
928 rect_set_size_to(compose
, &s
->r
);
929 rect_map_inside(compose
, &dev
->fmt_cap_rect
);
931 if (!rect_same_size(&s
->r
, &dev
->fmt_cap_rect
) &&
932 vb2_is_busy(&dev
->vb_vid_cap_q
))
934 rect_set_size_to(&dev
->fmt_cap_rect
, &s
->r
);
935 rect_set_size_to(compose
, &s
->r
);
936 rect_map_inside(compose
, &dev
->fmt_cap_rect
);
937 tpg_s_buf_height(&dev
->tpg
, dev
->fmt_cap_rect
.height
);
940 s
->r
.height
*= factor
;
943 case V4L2_SEL_TGT_COMPOSE
:
944 if (!dev
->has_compose_cap
)
946 ret
= vivid_vid_adjust_sel(s
->flags
, &s
->r
);
949 rect_set_min_size(&s
->r
, &vivid_min_rect
);
950 rect_set_max_size(&s
->r
, &dev
->fmt_cap_rect
);
951 if (dev
->has_scaler_cap
) {
952 struct v4l2_rect max_rect
= {
954 dev
->src_rect
.width
* MAX_ZOOM
,
955 (dev
->src_rect
.height
/ factor
) * MAX_ZOOM
958 rect_set_max_size(&s
->r
, &max_rect
);
959 if (dev
->has_crop_cap
) {
960 struct v4l2_rect min_rect
= {
962 s
->r
.width
/ MAX_ZOOM
,
963 (s
->r
.height
* factor
) / MAX_ZOOM
965 struct v4l2_rect max_rect
= {
967 s
->r
.width
* MAX_ZOOM
,
968 (s
->r
.height
* factor
) * MAX_ZOOM
971 rect_set_min_size(crop
, &min_rect
);
972 rect_set_max_size(crop
, &max_rect
);
973 rect_map_inside(crop
, &dev
->crop_bounds_cap
);
975 } else if (dev
->has_crop_cap
) {
977 s
->r
.height
*= factor
;
978 rect_set_max_size(&s
->r
, &dev
->src_rect
);
979 rect_set_size_to(crop
, &s
->r
);
980 rect_map_inside(crop
, &dev
->crop_bounds_cap
);
982 s
->r
.height
/= factor
;
984 rect_set_size_to(&s
->r
, &dev
->src_rect
);
985 s
->r
.height
/= factor
;
987 rect_map_inside(&s
->r
, &dev
->fmt_cap_rect
);
988 if (dev
->bitmap_cap
&& (compose
->width
!= s
->r
.width
||
989 compose
->height
!= s
->r
.height
)) {
990 kfree(dev
->bitmap_cap
);
991 dev
->bitmap_cap
= NULL
;
999 tpg_s_crop_compose(&dev
->tpg
, crop
, compose
);
1003 int vivid_vid_cap_cropcap(struct file
*file
, void *priv
,
1004 struct v4l2_cropcap
*cap
)
1006 struct vivid_dev
*dev
= video_drvdata(file
);
1008 if (cap
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1011 switch (vivid_get_pixel_aspect(dev
)) {
1012 case TPG_PIXEL_ASPECT_NTSC
:
1013 cap
->pixelaspect
.numerator
= 11;
1014 cap
->pixelaspect
.denominator
= 10;
1016 case TPG_PIXEL_ASPECT_PAL
:
1017 cap
->pixelaspect
.numerator
= 54;
1018 cap
->pixelaspect
.denominator
= 59;
1020 case TPG_PIXEL_ASPECT_SQUARE
:
1021 cap
->pixelaspect
.numerator
= 1;
1022 cap
->pixelaspect
.denominator
= 1;
1028 int vidioc_enum_fmt_vid_overlay(struct file
*file
, void *priv
,
1029 struct v4l2_fmtdesc
*f
)
1031 struct vivid_dev
*dev
= video_drvdata(file
);
1032 const struct vivid_fmt
*fmt
;
1034 if (dev
->multiplanar
)
1037 if (f
->index
>= ARRAY_SIZE(formats_ovl
))
1040 fmt
= &formats_ovl
[f
->index
];
1042 f
->pixelformat
= fmt
->fourcc
;
1046 int vidioc_g_fmt_vid_overlay(struct file
*file
, void *priv
,
1047 struct v4l2_format
*f
)
1049 struct vivid_dev
*dev
= video_drvdata(file
);
1050 const struct v4l2_rect
*compose
= &dev
->compose_cap
;
1051 struct v4l2_window
*win
= &f
->fmt
.win
;
1052 unsigned clipcount
= win
->clipcount
;
1054 if (dev
->multiplanar
)
1057 win
->w
.top
= dev
->overlay_cap_top
;
1058 win
->w
.left
= dev
->overlay_cap_left
;
1059 win
->w
.width
= compose
->width
;
1060 win
->w
.height
= compose
->height
;
1061 win
->field
= dev
->overlay_cap_field
;
1062 win
->clipcount
= dev
->clipcount_cap
;
1063 if (clipcount
> dev
->clipcount_cap
)
1064 clipcount
= dev
->clipcount_cap
;
1065 if (dev
->bitmap_cap
== NULL
)
1067 else if (win
->bitmap
) {
1068 if (copy_to_user(win
->bitmap
, dev
->bitmap_cap
,
1069 ((compose
->width
+ 7) / 8) * compose
->height
))
1072 if (clipcount
&& win
->clips
) {
1073 if (copy_to_user(win
->clips
, dev
->clips_cap
,
1074 clipcount
* sizeof(dev
->clips_cap
[0])))
1080 int vidioc_try_fmt_vid_overlay(struct file
*file
, void *priv
,
1081 struct v4l2_format
*f
)
1083 struct vivid_dev
*dev
= video_drvdata(file
);
1084 const struct v4l2_rect
*compose
= &dev
->compose_cap
;
1085 struct v4l2_window
*win
= &f
->fmt
.win
;
1088 if (dev
->multiplanar
)
1091 win
->w
.left
= clamp_t(int, win
->w
.left
,
1092 -dev
->fb_cap
.fmt
.width
, dev
->fb_cap
.fmt
.width
);
1093 win
->w
.top
= clamp_t(int, win
->w
.top
,
1094 -dev
->fb_cap
.fmt
.height
, dev
->fb_cap
.fmt
.height
);
1095 win
->w
.width
= compose
->width
;
1096 win
->w
.height
= compose
->height
;
1097 if (win
->field
!= V4L2_FIELD_BOTTOM
&& win
->field
!= V4L2_FIELD_TOP
)
1098 win
->field
= V4L2_FIELD_ANY
;
1100 win
->global_alpha
= 0;
1101 if (win
->clipcount
&& !win
->clips
)
1103 if (win
->clipcount
> MAX_CLIPS
)
1104 win
->clipcount
= MAX_CLIPS
;
1105 if (win
->clipcount
) {
1106 if (copy_from_user(dev
->try_clips_cap
, win
->clips
,
1107 win
->clipcount
* sizeof(dev
->clips_cap
[0])))
1109 for (i
= 0; i
< win
->clipcount
; i
++) {
1110 struct v4l2_rect
*r
= &dev
->try_clips_cap
[i
].c
;
1112 r
->top
= clamp_t(s32
, r
->top
, 0, dev
->fb_cap
.fmt
.height
- 1);
1113 r
->height
= clamp_t(s32
, r
->height
, 1, dev
->fb_cap
.fmt
.height
- r
->top
);
1114 r
->left
= clamp_t(u32
, r
->left
, 0, dev
->fb_cap
.fmt
.width
- 1);
1115 r
->width
= clamp_t(u32
, r
->width
, 1, dev
->fb_cap
.fmt
.width
- r
->left
);
1118 * Yeah, so sue me, it's an O(n^2) algorithm. But n is a small
1119 * number and it's typically a one-time deal.
1121 for (i
= 0; i
< win
->clipcount
- 1; i
++) {
1122 struct v4l2_rect
*r1
= &dev
->try_clips_cap
[i
].c
;
1124 for (j
= i
+ 1; j
< win
->clipcount
; j
++) {
1125 struct v4l2_rect
*r2
= &dev
->try_clips_cap
[j
].c
;
1127 if (rect_overlap(r1
, r2
))
1131 if (copy_to_user(win
->clips
, dev
->try_clips_cap
,
1132 win
->clipcount
* sizeof(dev
->clips_cap
[0])))
1138 int vidioc_s_fmt_vid_overlay(struct file
*file
, void *priv
,
1139 struct v4l2_format
*f
)
1141 struct vivid_dev
*dev
= video_drvdata(file
);
1142 const struct v4l2_rect
*compose
= &dev
->compose_cap
;
1143 struct v4l2_window
*win
= &f
->fmt
.win
;
1144 int ret
= vidioc_try_fmt_vid_overlay(file
, priv
, f
);
1145 unsigned bitmap_size
= ((compose
->width
+ 7) / 8) * compose
->height
;
1146 unsigned clips_size
= win
->clipcount
* sizeof(dev
->clips_cap
[0]);
1147 void *new_bitmap
= NULL
;
1153 new_bitmap
= vzalloc(bitmap_size
);
1155 if (new_bitmap
== NULL
)
1157 if (copy_from_user(new_bitmap
, win
->bitmap
, bitmap_size
)) {
1163 dev
->overlay_cap_top
= win
->w
.top
;
1164 dev
->overlay_cap_left
= win
->w
.left
;
1165 dev
->overlay_cap_field
= win
->field
;
1166 vfree(dev
->bitmap_cap
);
1167 dev
->bitmap_cap
= new_bitmap
;
1168 dev
->clipcount_cap
= win
->clipcount
;
1169 if (dev
->clipcount_cap
)
1170 memcpy(dev
->clips_cap
, dev
->try_clips_cap
, clips_size
);
1174 int vivid_vid_cap_overlay(struct file
*file
, void *fh
, unsigned i
)
1176 struct vivid_dev
*dev
= video_drvdata(file
);
1178 if (dev
->multiplanar
)
1181 if (i
&& dev
->fb_vbase_cap
== NULL
)
1184 if (i
&& dev
->fb_cap
.fmt
.pixelformat
!= dev
->fmt_cap
->fourcc
) {
1185 dprintk(dev
, 1, "mismatch between overlay and video capture pixelformats\n");
1189 if (dev
->overlay_cap_owner
&& dev
->overlay_cap_owner
!= fh
)
1191 dev
->overlay_cap_owner
= i
? fh
: NULL
;
1195 int vivid_vid_cap_g_fbuf(struct file
*file
, void *fh
,
1196 struct v4l2_framebuffer
*a
)
1198 struct vivid_dev
*dev
= video_drvdata(file
);
1200 if (dev
->multiplanar
)
1204 a
->capability
= V4L2_FBUF_CAP_BITMAP_CLIPPING
|
1205 V4L2_FBUF_CAP_LIST_CLIPPING
;
1206 a
->flags
= V4L2_FBUF_FLAG_PRIMARY
;
1207 a
->fmt
.field
= V4L2_FIELD_NONE
;
1208 a
->fmt
.colorspace
= V4L2_COLORSPACE_SRGB
;
1213 int vivid_vid_cap_s_fbuf(struct file
*file
, void *fh
,
1214 const struct v4l2_framebuffer
*a
)
1216 struct vivid_dev
*dev
= video_drvdata(file
);
1217 const struct vivid_fmt
*fmt
;
1219 if (dev
->multiplanar
)
1222 if (!capable(CAP_SYS_ADMIN
) && !capable(CAP_SYS_RAWIO
))
1225 if (dev
->overlay_cap_owner
)
1228 if (a
->base
== NULL
) {
1229 dev
->fb_cap
.base
= NULL
;
1230 dev
->fb_vbase_cap
= NULL
;
1234 if (a
->fmt
.width
< 48 || a
->fmt
.height
< 32)
1236 fmt
= vivid_get_format(dev
, a
->fmt
.pixelformat
);
1237 if (!fmt
|| !fmt
->can_do_overlay
)
1239 if (a
->fmt
.bytesperline
< (a
->fmt
.width
* fmt
->bit_depth
[0]) / 8)
1241 if (a
->fmt
.height
* a
->fmt
.bytesperline
< a
->fmt
.sizeimage
)
1244 dev
->fb_vbase_cap
= phys_to_virt((unsigned long)a
->base
);
1246 dev
->overlay_cap_left
= clamp_t(int, dev
->overlay_cap_left
,
1247 -dev
->fb_cap
.fmt
.width
, dev
->fb_cap
.fmt
.width
);
1248 dev
->overlay_cap_top
= clamp_t(int, dev
->overlay_cap_top
,
1249 -dev
->fb_cap
.fmt
.height
, dev
->fb_cap
.fmt
.height
);
1253 static const struct v4l2_audio vivid_audio_inputs
[] = {
1254 { 0, "TV", V4L2_AUDCAP_STEREO
},
1255 { 1, "Line-In", V4L2_AUDCAP_STEREO
},
1258 int vidioc_enum_input(struct file
*file
, void *priv
,
1259 struct v4l2_input
*inp
)
1261 struct vivid_dev
*dev
= video_drvdata(file
);
1263 if (inp
->index
>= dev
->num_inputs
)
1266 inp
->type
= V4L2_INPUT_TYPE_CAMERA
;
1267 switch (dev
->input_type
[inp
->index
]) {
1269 snprintf(inp
->name
, sizeof(inp
->name
), "Webcam %u",
1270 dev
->input_name_counter
[inp
->index
]);
1271 inp
->capabilities
= 0;
1274 snprintf(inp
->name
, sizeof(inp
->name
), "TV %u",
1275 dev
->input_name_counter
[inp
->index
]);
1276 inp
->type
= V4L2_INPUT_TYPE_TUNER
;
1277 inp
->std
= V4L2_STD_ALL
;
1278 if (dev
->has_audio_inputs
)
1279 inp
->audioset
= (1 << ARRAY_SIZE(vivid_audio_inputs
)) - 1;
1280 inp
->capabilities
= V4L2_IN_CAP_STD
;
1283 snprintf(inp
->name
, sizeof(inp
->name
), "S-Video %u",
1284 dev
->input_name_counter
[inp
->index
]);
1285 inp
->std
= V4L2_STD_ALL
;
1286 if (dev
->has_audio_inputs
)
1287 inp
->audioset
= (1 << ARRAY_SIZE(vivid_audio_inputs
)) - 1;
1288 inp
->capabilities
= V4L2_IN_CAP_STD
;
1291 snprintf(inp
->name
, sizeof(inp
->name
), "HDMI %u",
1292 dev
->input_name_counter
[inp
->index
]);
1293 inp
->capabilities
= V4L2_IN_CAP_DV_TIMINGS
;
1294 if (dev
->edid_blocks
== 0 ||
1295 dev
->dv_timings_signal_mode
== NO_SIGNAL
)
1296 inp
->status
|= V4L2_IN_ST_NO_SIGNAL
;
1297 else if (dev
->dv_timings_signal_mode
== NO_LOCK
||
1298 dev
->dv_timings_signal_mode
== OUT_OF_RANGE
)
1299 inp
->status
|= V4L2_IN_ST_NO_H_LOCK
;
1302 if (dev
->sensor_hflip
)
1303 inp
->status
|= V4L2_IN_ST_HFLIP
;
1304 if (dev
->sensor_vflip
)
1305 inp
->status
|= V4L2_IN_ST_VFLIP
;
1306 if (dev
->input
== inp
->index
&& vivid_is_sdtv_cap(dev
)) {
1307 if (dev
->std_signal_mode
== NO_SIGNAL
) {
1308 inp
->status
|= V4L2_IN_ST_NO_SIGNAL
;
1309 } else if (dev
->std_signal_mode
== NO_LOCK
) {
1310 inp
->status
|= V4L2_IN_ST_NO_H_LOCK
;
1311 } else if (vivid_is_tv_cap(dev
)) {
1312 switch (tpg_g_quality(&dev
->tpg
)) {
1314 inp
->status
|= V4L2_IN_ST_COLOR_KILL
;
1316 case TPG_QUAL_NOISE
:
1317 inp
->status
|= V4L2_IN_ST_NO_H_LOCK
;
1327 int vidioc_g_input(struct file
*file
, void *priv
, unsigned *i
)
1329 struct vivid_dev
*dev
= video_drvdata(file
);
1335 int vidioc_s_input(struct file
*file
, void *priv
, unsigned i
)
1337 struct vivid_dev
*dev
= video_drvdata(file
);
1338 struct v4l2_bt_timings
*bt
= &dev
->dv_timings_cap
.bt
;
1339 unsigned brightness
;
1341 if (i
>= dev
->num_inputs
)
1344 if (i
== dev
->input
)
1347 if (vb2_is_busy(&dev
->vb_vid_cap_q
) || vb2_is_busy(&dev
->vb_vbi_cap_q
))
1351 dev
->vid_cap_dev
.tvnorms
= 0;
1352 if (dev
->input_type
[i
] == TV
|| dev
->input_type
[i
] == SVID
) {
1353 dev
->tv_audio_input
= (dev
->input_type
[i
] == TV
) ? 0 : 1;
1354 dev
->vid_cap_dev
.tvnorms
= V4L2_STD_ALL
;
1356 dev
->vbi_cap_dev
.tvnorms
= dev
->vid_cap_dev
.tvnorms
;
1357 vivid_update_format_cap(dev
, false);
1359 if (dev
->colorspace
) {
1360 switch (dev
->input_type
[i
]) {
1362 v4l2_ctrl_s_ctrl(dev
->colorspace
, VIVID_CS_SRGB
);
1366 v4l2_ctrl_s_ctrl(dev
->colorspace
, VIVID_CS_170M
);
1369 if (bt
->flags
& V4L2_DV_FL_IS_CE_VIDEO
) {
1370 if (dev
->src_rect
.width
== 720 && dev
->src_rect
.height
<= 576)
1371 v4l2_ctrl_s_ctrl(dev
->colorspace
, VIVID_CS_170M
);
1373 v4l2_ctrl_s_ctrl(dev
->colorspace
, VIVID_CS_709
);
1375 v4l2_ctrl_s_ctrl(dev
->colorspace
, VIVID_CS_SRGB
);
1382 * Modify the brightness range depending on the input.
1383 * This makes it easy to use vivid to test if applications can
1384 * handle control range modifications and is also how this is
1385 * typically used in practice as different inputs may be hooked
1386 * up to different receivers with different control ranges.
1388 brightness
= 128 * i
+ dev
->input_brightness
[i
];
1389 v4l2_ctrl_modify_range(dev
->brightness
,
1390 128 * i
, 255 + 128 * i
, 1, 128 + 128 * i
);
1391 v4l2_ctrl_s_ctrl(dev
->brightness
, brightness
);
1395 int vidioc_enumaudio(struct file
*file
, void *fh
, struct v4l2_audio
*vin
)
1397 if (vin
->index
>= ARRAY_SIZE(vivid_audio_inputs
))
1399 *vin
= vivid_audio_inputs
[vin
->index
];
1403 int vidioc_g_audio(struct file
*file
, void *fh
, struct v4l2_audio
*vin
)
1405 struct vivid_dev
*dev
= video_drvdata(file
);
1407 if (!vivid_is_sdtv_cap(dev
))
1409 *vin
= vivid_audio_inputs
[dev
->tv_audio_input
];
1413 int vidioc_s_audio(struct file
*file
, void *fh
, const struct v4l2_audio
*vin
)
1415 struct vivid_dev
*dev
= video_drvdata(file
);
1417 if (!vivid_is_sdtv_cap(dev
))
1419 if (vin
->index
>= ARRAY_SIZE(vivid_audio_inputs
))
1421 dev
->tv_audio_input
= vin
->index
;
1425 int vivid_video_g_frequency(struct file
*file
, void *fh
, struct v4l2_frequency
*vf
)
1427 struct vivid_dev
*dev
= video_drvdata(file
);
1431 vf
->frequency
= dev
->tv_freq
;
1435 int vivid_video_s_frequency(struct file
*file
, void *fh
, const struct v4l2_frequency
*vf
)
1437 struct vivid_dev
*dev
= video_drvdata(file
);
1441 dev
->tv_freq
= clamp_t(unsigned, vf
->frequency
, MIN_TV_FREQ
, MAX_TV_FREQ
);
1442 if (vivid_is_tv_cap(dev
))
1443 vivid_update_quality(dev
);
1447 int vivid_video_s_tuner(struct file
*file
, void *fh
, const struct v4l2_tuner
*vt
)
1449 struct vivid_dev
*dev
= video_drvdata(file
);
1453 if (vt
->audmode
> V4L2_TUNER_MODE_LANG1_LANG2
)
1455 dev
->tv_audmode
= vt
->audmode
;
1459 int vivid_video_g_tuner(struct file
*file
, void *fh
, struct v4l2_tuner
*vt
)
1461 struct vivid_dev
*dev
= video_drvdata(file
);
1462 enum tpg_quality qual
;
1467 vt
->capability
= V4L2_TUNER_CAP_NORM
| V4L2_TUNER_CAP_STEREO
|
1468 V4L2_TUNER_CAP_LANG1
| V4L2_TUNER_CAP_LANG2
;
1469 vt
->audmode
= dev
->tv_audmode
;
1470 vt
->rangelow
= MIN_TV_FREQ
;
1471 vt
->rangehigh
= MAX_TV_FREQ
;
1472 qual
= vivid_get_quality(dev
, &vt
->afc
);
1473 if (qual
== TPG_QUAL_COLOR
)
1474 vt
->signal
= 0xffff;
1475 else if (qual
== TPG_QUAL_GRAY
)
1476 vt
->signal
= 0x8000;
1479 if (qual
== TPG_QUAL_NOISE
) {
1481 } else if (qual
== TPG_QUAL_GRAY
) {
1482 vt
->rxsubchans
= V4L2_TUNER_SUB_MONO
;
1484 unsigned channel_nr
= dev
->tv_freq
/ (6 * 16);
1485 unsigned options
= (dev
->std_cap
& V4L2_STD_NTSC_M
) ? 4 : 3;
1487 switch (channel_nr
% options
) {
1489 vt
->rxsubchans
= V4L2_TUNER_SUB_MONO
;
1492 vt
->rxsubchans
= V4L2_TUNER_SUB_STEREO
;
1495 if (dev
->std_cap
& V4L2_STD_NTSC_M
)
1496 vt
->rxsubchans
= V4L2_TUNER_SUB_MONO
| V4L2_TUNER_SUB_SAP
;
1498 vt
->rxsubchans
= V4L2_TUNER_SUB_LANG1
| V4L2_TUNER_SUB_LANG2
;
1501 vt
->rxsubchans
= V4L2_TUNER_SUB_STEREO
| V4L2_TUNER_SUB_SAP
;
1505 strlcpy(vt
->name
, "TV Tuner", sizeof(vt
->name
));
1509 /* Must remain in sync with the vivid_ctrl_standard_strings array */
1510 const v4l2_std_id vivid_standard
[] = {
1515 V4L2_STD_PAL_BG
| V4L2_STD_PAL_H
,
1522 V4L2_STD_SECAM_B
| V4L2_STD_SECAM_G
| V4L2_STD_SECAM_H
,
1529 /* Must remain in sync with the vivid_standard array */
1530 const char * const vivid_ctrl_standard_strings
[] = {
1549 int vidioc_querystd(struct file
*file
, void *priv
, v4l2_std_id
*id
)
1551 struct vivid_dev
*dev
= video_drvdata(file
);
1553 if (!vivid_is_sdtv_cap(dev
))
1555 if (dev
->std_signal_mode
== NO_SIGNAL
||
1556 dev
->std_signal_mode
== NO_LOCK
) {
1557 *id
= V4L2_STD_UNKNOWN
;
1560 if (vivid_is_tv_cap(dev
) && tpg_g_quality(&dev
->tpg
) == TPG_QUAL_NOISE
) {
1561 *id
= V4L2_STD_UNKNOWN
;
1562 } else if (dev
->std_signal_mode
== CURRENT_STD
) {
1564 } else if (dev
->std_signal_mode
== SELECTED_STD
) {
1565 *id
= dev
->query_std
;
1567 *id
= vivid_standard
[dev
->query_std_last
];
1568 dev
->query_std_last
= (dev
->query_std_last
+ 1) % ARRAY_SIZE(vivid_standard
);
1574 int vivid_vid_cap_s_std(struct file
*file
, void *priv
, v4l2_std_id id
)
1576 struct vivid_dev
*dev
= video_drvdata(file
);
1578 if (!vivid_is_sdtv_cap(dev
))
1580 if (dev
->std_cap
== id
)
1582 if (vb2_is_busy(&dev
->vb_vid_cap_q
) || vb2_is_busy(&dev
->vb_vbi_cap_q
))
1585 vivid_update_format_cap(dev
, false);
1589 static void find_aspect_ratio(u32 width
, u32 height
,
1590 u32
*num
, u32
*denom
)
1592 if (!(height
% 3) && ((height
* 4 / 3) == width
)) {
1595 } else if (!(height
% 9) && ((height
* 16 / 9) == width
)) {
1598 } else if (!(height
% 10) && ((height
* 16 / 10) == width
)) {
1601 } else if (!(height
% 4) && ((height
* 5 / 4) == width
)) {
1604 } else if (!(height
% 9) && ((height
* 15 / 9) == width
)) {
1607 } else { /* default to 16:9 */
1613 static bool valid_cvt_gtf_timings(struct v4l2_dv_timings
*timings
)
1615 struct v4l2_bt_timings
*bt
= &timings
->bt
;
1620 if (!v4l2_valid_dv_timings(timings
, &vivid_dv_timings_cap
,
1624 total_h_pixel
= V4L2_DV_BT_FRAME_WIDTH(bt
);
1625 total_v_lines
= V4L2_DV_BT_FRAME_HEIGHT(bt
);
1627 h_freq
= (u32
)bt
->pixelclock
/ total_h_pixel
;
1629 if (bt
->standards
== 0 || (bt
->standards
& V4L2_DV_BT_STD_CVT
)) {
1630 if (v4l2_detect_cvt(total_v_lines
, h_freq
, bt
->vsync
, bt
->width
,
1631 bt
->polarities
, bt
->interlaced
, timings
))
1635 if (bt
->standards
== 0 || (bt
->standards
& V4L2_DV_BT_STD_GTF
)) {
1636 struct v4l2_fract aspect_ratio
;
1638 find_aspect_ratio(bt
->width
, bt
->height
,
1639 &aspect_ratio
.numerator
,
1640 &aspect_ratio
.denominator
);
1641 if (v4l2_detect_gtf(total_v_lines
, h_freq
, bt
->vsync
,
1642 bt
->polarities
, bt
->interlaced
,
1643 aspect_ratio
, timings
))
1649 int vivid_vid_cap_s_dv_timings(struct file
*file
, void *_fh
,
1650 struct v4l2_dv_timings
*timings
)
1652 struct vivid_dev
*dev
= video_drvdata(file
);
1654 if (!vivid_is_hdmi_cap(dev
))
1656 if (!v4l2_find_dv_timings_cap(timings
, &vivid_dv_timings_cap
,
1658 !valid_cvt_gtf_timings(timings
))
1661 if (v4l2_match_dv_timings(timings
, &dev
->dv_timings_cap
, 0, false))
1663 if (vb2_is_busy(&dev
->vb_vid_cap_q
))
1666 dev
->dv_timings_cap
= *timings
;
1667 vivid_update_format_cap(dev
, false);
1671 int vidioc_query_dv_timings(struct file
*file
, void *_fh
,
1672 struct v4l2_dv_timings
*timings
)
1674 struct vivid_dev
*dev
= video_drvdata(file
);
1676 if (!vivid_is_hdmi_cap(dev
))
1678 if (dev
->dv_timings_signal_mode
== NO_SIGNAL
||
1679 dev
->edid_blocks
== 0)
1681 if (dev
->dv_timings_signal_mode
== NO_LOCK
)
1683 if (dev
->dv_timings_signal_mode
== OUT_OF_RANGE
) {
1684 timings
->bt
.pixelclock
= vivid_dv_timings_cap
.bt
.max_pixelclock
* 2;
1687 if (dev
->dv_timings_signal_mode
== CURRENT_DV_TIMINGS
) {
1688 *timings
= dev
->dv_timings_cap
;
1689 } else if (dev
->dv_timings_signal_mode
== SELECTED_DV_TIMINGS
) {
1690 *timings
= v4l2_dv_timings_presets
[dev
->query_dv_timings
];
1692 *timings
= v4l2_dv_timings_presets
[dev
->query_dv_timings_last
];
1693 dev
->query_dv_timings_last
= (dev
->query_dv_timings_last
+ 1) %
1694 dev
->query_dv_timings_size
;
1699 int vidioc_s_edid(struct file
*file
, void *_fh
,
1700 struct v4l2_edid
*edid
)
1702 struct vivid_dev
*dev
= video_drvdata(file
);
1704 memset(edid
->reserved
, 0, sizeof(edid
->reserved
));
1705 if (edid
->pad
>= dev
->num_inputs
)
1707 if (dev
->input_type
[edid
->pad
] != HDMI
|| edid
->start_block
)
1709 if (edid
->blocks
== 0) {
1710 dev
->edid_blocks
= 0;
1713 if (edid
->blocks
> dev
->edid_max_blocks
) {
1714 edid
->blocks
= dev
->edid_max_blocks
;
1717 dev
->edid_blocks
= edid
->blocks
;
1718 memcpy(dev
->edid
, edid
->edid
, edid
->blocks
* 128);
1722 int vidioc_enum_framesizes(struct file
*file
, void *fh
,
1723 struct v4l2_frmsizeenum
*fsize
)
1725 struct vivid_dev
*dev
= video_drvdata(file
);
1727 if (!vivid_is_webcam(dev
) && !dev
->has_scaler_cap
)
1729 if (vivid_get_format(dev
, fsize
->pixel_format
) == NULL
)
1731 if (vivid_is_webcam(dev
)) {
1732 if (fsize
->index
>= ARRAY_SIZE(webcam_sizes
))
1734 fsize
->type
= V4L2_FRMSIZE_TYPE_DISCRETE
;
1735 fsize
->discrete
= webcam_sizes
[fsize
->index
];
1740 fsize
->type
= V4L2_FRMSIZE_TYPE_STEPWISE
;
1741 fsize
->stepwise
.min_width
= MIN_WIDTH
;
1742 fsize
->stepwise
.max_width
= MAX_WIDTH
* MAX_ZOOM
;
1743 fsize
->stepwise
.step_width
= 2;
1744 fsize
->stepwise
.min_height
= MIN_HEIGHT
;
1745 fsize
->stepwise
.max_height
= MAX_HEIGHT
* MAX_ZOOM
;
1746 fsize
->stepwise
.step_height
= 2;
1750 /* timeperframe is arbitrary and continuous */
1751 int vidioc_enum_frameintervals(struct file
*file
, void *priv
,
1752 struct v4l2_frmivalenum
*fival
)
1754 struct vivid_dev
*dev
= video_drvdata(file
);
1755 const struct vivid_fmt
*fmt
;
1758 fmt
= vivid_get_format(dev
, fival
->pixel_format
);
1762 if (!vivid_is_webcam(dev
)) {
1765 if (fival
->width
< MIN_WIDTH
|| fival
->width
> MAX_WIDTH
* MAX_ZOOM
)
1767 if (fival
->height
< MIN_HEIGHT
|| fival
->height
> MAX_HEIGHT
* MAX_ZOOM
)
1769 fival
->type
= V4L2_FRMIVAL_TYPE_DISCRETE
;
1770 fival
->discrete
= dev
->timeperframe_vid_cap
;
1774 for (i
= 0; i
< ARRAY_SIZE(webcam_sizes
); i
++)
1775 if (fival
->width
== webcam_sizes
[i
].width
&&
1776 fival
->height
== webcam_sizes
[i
].height
)
1778 if (i
== ARRAY_SIZE(webcam_sizes
))
1780 if (fival
->index
>= 2 * (VIVID_WEBCAM_SIZES
- i
))
1782 fival
->type
= V4L2_FRMIVAL_TYPE_DISCRETE
;
1783 fival
->discrete
= webcam_intervals
[fival
->index
];
1787 int vivid_vid_cap_g_parm(struct file
*file
, void *priv
,
1788 struct v4l2_streamparm
*parm
)
1790 struct vivid_dev
*dev
= video_drvdata(file
);
1792 if (parm
->type
!= (dev
->multiplanar
?
1793 V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
:
1794 V4L2_BUF_TYPE_VIDEO_CAPTURE
))
1797 parm
->parm
.capture
.capability
= V4L2_CAP_TIMEPERFRAME
;
1798 parm
->parm
.capture
.timeperframe
= dev
->timeperframe_vid_cap
;
1799 parm
->parm
.capture
.readbuffers
= 1;
1803 #define FRACT_CMP(a, OP, b) \
1804 ((u64)(a).numerator * (b).denominator OP (u64)(b).numerator * (a).denominator)
1806 int vivid_vid_cap_s_parm(struct file
*file
, void *priv
,
1807 struct v4l2_streamparm
*parm
)
1809 struct vivid_dev
*dev
= video_drvdata(file
);
1810 unsigned ival_sz
= 2 * (VIVID_WEBCAM_SIZES
- dev
->webcam_size_idx
);
1811 struct v4l2_fract tpf
;
1814 if (parm
->type
!= (dev
->multiplanar
?
1815 V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
:
1816 V4L2_BUF_TYPE_VIDEO_CAPTURE
))
1818 if (!vivid_is_webcam(dev
))
1819 return vivid_vid_cap_g_parm(file
, priv
, parm
);
1821 tpf
= parm
->parm
.capture
.timeperframe
;
1823 if (tpf
.denominator
== 0)
1824 tpf
= webcam_intervals
[ival_sz
- 1];
1825 for (i
= 0; i
< ival_sz
; i
++)
1826 if (FRACT_CMP(tpf
, >=, webcam_intervals
[i
]))
1830 dev
->webcam_ival_idx
= i
;
1831 tpf
= webcam_intervals
[dev
->webcam_ival_idx
];
1832 tpf
= FRACT_CMP(tpf
, <, tpf_min
) ? tpf_min
: tpf
;
1833 tpf
= FRACT_CMP(tpf
, >, tpf_max
) ? tpf_max
: tpf
;
1835 /* resync the thread's timings */
1836 dev
->cap_seq_resync
= true;
1837 dev
->timeperframe_vid_cap
= tpf
;
1838 parm
->parm
.capture
.timeperframe
= tpf
;
1839 parm
->parm
.capture
.readbuffers
= 1;