1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * vimc-capture.c Virtual Media Controller Driver
5 * Copyright (C) 2015-2017 Helen Koike <helen.fornazier@gmail.com>
8 #include <media/v4l2-ioctl.h>
9 #include <media/videobuf2-core.h>
10 #include <media/videobuf2-vmalloc.h>
12 #include "vimc-common.h"
13 #include "vimc-streamer.h"
15 struct vimc_cap_device
{
16 struct vimc_ent_device ved
;
17 struct video_device vdev
;
18 struct v4l2_pix_format format
;
19 struct vb2_queue queue
;
20 struct list_head buf_list
;
22 * NOTE: in a real driver, a spin lock must be used to access the
23 * queue because the frames are generated from a hardware interruption
24 * and the isr is not allowed to sleep.
25 * Even if it is not necessary a spinlock in the vimc driver, we
26 * use it here as a code reference
31 struct vimc_stream stream
;
35 static const struct v4l2_pix_format fmt_default
= {
38 .pixelformat
= V4L2_PIX_FMT_RGB24
,
39 .field
= V4L2_FIELD_NONE
,
40 .colorspace
= V4L2_COLORSPACE_DEFAULT
,
43 struct vimc_cap_buffer
{
45 * struct vb2_v4l2_buffer must be the first element
46 * the videobuf2 framework will allocate this struct based on
47 * buf_struct_size and use the first sizeof(struct vb2_buffer) bytes of
48 * memory as a vb2_buffer
50 struct vb2_v4l2_buffer vb2
;
51 struct list_head list
;
54 static int vimc_cap_querycap(struct file
*file
, void *priv
,
55 struct v4l2_capability
*cap
)
57 strscpy(cap
->driver
, VIMC_PDEV_NAME
, sizeof(cap
->driver
));
58 strscpy(cap
->card
, KBUILD_MODNAME
, sizeof(cap
->card
));
59 snprintf(cap
->bus_info
, sizeof(cap
->bus_info
),
60 "platform:%s", VIMC_PDEV_NAME
);
65 static void vimc_cap_get_format(struct vimc_ent_device
*ved
,
66 struct v4l2_pix_format
*fmt
)
68 struct vimc_cap_device
*vcap
= container_of(ved
, struct vimc_cap_device
,
74 static int vimc_cap_g_fmt_vid_cap(struct file
*file
, void *priv
,
75 struct v4l2_format
*f
)
77 struct vimc_cap_device
*vcap
= video_drvdata(file
);
79 f
->fmt
.pix
= vcap
->format
;
84 static int vimc_cap_try_fmt_vid_cap(struct file
*file
, void *priv
,
85 struct v4l2_format
*f
)
87 struct v4l2_pix_format
*format
= &f
->fmt
.pix
;
88 const struct vimc_pix_map
*vpix
;
90 format
->width
= clamp_t(u32
, format
->width
, VIMC_FRAME_MIN_WIDTH
,
91 VIMC_FRAME_MAX_WIDTH
) & ~1;
92 format
->height
= clamp_t(u32
, format
->height
, VIMC_FRAME_MIN_HEIGHT
,
93 VIMC_FRAME_MAX_HEIGHT
) & ~1;
95 /* Don't accept a pixelformat that is not on the table */
96 vpix
= vimc_pix_map_by_pixelformat(format
->pixelformat
);
98 format
->pixelformat
= fmt_default
.pixelformat
;
99 vpix
= vimc_pix_map_by_pixelformat(format
->pixelformat
);
101 /* TODO: Add support for custom bytesperline values */
102 format
->bytesperline
= format
->width
* vpix
->bpp
;
103 format
->sizeimage
= format
->bytesperline
* format
->height
;
105 if (format
->field
== V4L2_FIELD_ANY
)
106 format
->field
= fmt_default
.field
;
108 vimc_colorimetry_clamp(format
);
113 static int vimc_cap_s_fmt_vid_cap(struct file
*file
, void *priv
,
114 struct v4l2_format
*f
)
116 struct vimc_cap_device
*vcap
= video_drvdata(file
);
119 /* Do not change the format while stream is on */
120 if (vb2_is_busy(&vcap
->queue
))
123 ret
= vimc_cap_try_fmt_vid_cap(file
, priv
, f
);
127 dev_dbg(vcap
->ved
.dev
, "%s: format update: "
128 "old:%dx%d (0x%x, %d, %d, %d, %d) "
129 "new:%dx%d (0x%x, %d, %d, %d, %d)\n", vcap
->vdev
.name
,
131 vcap
->format
.width
, vcap
->format
.height
,
132 vcap
->format
.pixelformat
, vcap
->format
.colorspace
,
133 vcap
->format
.quantization
, vcap
->format
.xfer_func
,
134 vcap
->format
.ycbcr_enc
,
136 f
->fmt
.pix
.width
, f
->fmt
.pix
.height
,
137 f
->fmt
.pix
.pixelformat
, f
->fmt
.pix
.colorspace
,
138 f
->fmt
.pix
.quantization
, f
->fmt
.pix
.xfer_func
,
139 f
->fmt
.pix
.ycbcr_enc
);
141 vcap
->format
= f
->fmt
.pix
;
146 static int vimc_cap_enum_fmt_vid_cap(struct file
*file
, void *priv
,
147 struct v4l2_fmtdesc
*f
)
149 const struct vimc_pix_map
*vpix
= vimc_pix_map_by_index(f
->index
);
154 f
->pixelformat
= vpix
->pixelformat
;
159 static int vimc_cap_enum_framesizes(struct file
*file
, void *fh
,
160 struct v4l2_frmsizeenum
*fsize
)
162 const struct vimc_pix_map
*vpix
;
167 /* Only accept code in the pix map table */
168 vpix
= vimc_pix_map_by_code(fsize
->pixel_format
);
172 fsize
->type
= V4L2_FRMSIZE_TYPE_CONTINUOUS
;
173 fsize
->stepwise
.min_width
= VIMC_FRAME_MIN_WIDTH
;
174 fsize
->stepwise
.max_width
= VIMC_FRAME_MAX_WIDTH
;
175 fsize
->stepwise
.min_height
= VIMC_FRAME_MIN_HEIGHT
;
176 fsize
->stepwise
.max_height
= VIMC_FRAME_MAX_HEIGHT
;
177 fsize
->stepwise
.step_width
= 1;
178 fsize
->stepwise
.step_height
= 1;
183 static const struct v4l2_file_operations vimc_cap_fops
= {
184 .owner
= THIS_MODULE
,
185 .open
= v4l2_fh_open
,
186 .release
= vb2_fop_release
,
187 .read
= vb2_fop_read
,
188 .poll
= vb2_fop_poll
,
189 .unlocked_ioctl
= video_ioctl2
,
190 .mmap
= vb2_fop_mmap
,
193 static const struct v4l2_ioctl_ops vimc_cap_ioctl_ops
= {
194 .vidioc_querycap
= vimc_cap_querycap
,
196 .vidioc_g_fmt_vid_cap
= vimc_cap_g_fmt_vid_cap
,
197 .vidioc_s_fmt_vid_cap
= vimc_cap_s_fmt_vid_cap
,
198 .vidioc_try_fmt_vid_cap
= vimc_cap_try_fmt_vid_cap
,
199 .vidioc_enum_fmt_vid_cap
= vimc_cap_enum_fmt_vid_cap
,
200 .vidioc_enum_framesizes
= vimc_cap_enum_framesizes
,
202 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
203 .vidioc_create_bufs
= vb2_ioctl_create_bufs
,
204 .vidioc_prepare_buf
= vb2_ioctl_prepare_buf
,
205 .vidioc_querybuf
= vb2_ioctl_querybuf
,
206 .vidioc_qbuf
= vb2_ioctl_qbuf
,
207 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
208 .vidioc_expbuf
= vb2_ioctl_expbuf
,
209 .vidioc_streamon
= vb2_ioctl_streamon
,
210 .vidioc_streamoff
= vb2_ioctl_streamoff
,
213 static void vimc_cap_return_all_buffers(struct vimc_cap_device
*vcap
,
214 enum vb2_buffer_state state
)
216 struct vimc_cap_buffer
*vbuf
, *node
;
218 spin_lock(&vcap
->qlock
);
220 list_for_each_entry_safe(vbuf
, node
, &vcap
->buf_list
, list
) {
221 list_del(&vbuf
->list
);
222 vb2_buffer_done(&vbuf
->vb2
.vb2_buf
, state
);
225 spin_unlock(&vcap
->qlock
);
228 static int vimc_cap_start_streaming(struct vb2_queue
*vq
, unsigned int count
)
230 struct vimc_cap_device
*vcap
= vb2_get_drv_priv(vq
);
231 struct media_entity
*entity
= &vcap
->vdev
.entity
;
236 /* Start the media pipeline */
237 ret
= media_pipeline_start(entity
, &vcap
->stream
.pipe
);
239 vimc_cap_return_all_buffers(vcap
, VB2_BUF_STATE_QUEUED
);
243 ret
= vimc_streamer_s_stream(&vcap
->stream
, &vcap
->ved
, 1);
245 media_pipeline_stop(entity
);
246 vimc_cap_return_all_buffers(vcap
, VB2_BUF_STATE_QUEUED
);
254 * Stop the stream engine. Any remaining buffers in the stream queue are
255 * dequeued and passed on to the vb2 framework marked as STATE_ERROR.
257 static void vimc_cap_stop_streaming(struct vb2_queue
*vq
)
259 struct vimc_cap_device
*vcap
= vb2_get_drv_priv(vq
);
261 vimc_streamer_s_stream(&vcap
->stream
, &vcap
->ved
, 0);
263 /* Stop the media pipeline */
264 media_pipeline_stop(&vcap
->vdev
.entity
);
266 /* Release all active buffers */
267 vimc_cap_return_all_buffers(vcap
, VB2_BUF_STATE_ERROR
);
270 static void vimc_cap_buf_queue(struct vb2_buffer
*vb2_buf
)
272 struct vimc_cap_device
*vcap
= vb2_get_drv_priv(vb2_buf
->vb2_queue
);
273 struct vimc_cap_buffer
*buf
= container_of(vb2_buf
,
274 struct vimc_cap_buffer
,
277 spin_lock(&vcap
->qlock
);
278 list_add_tail(&buf
->list
, &vcap
->buf_list
);
279 spin_unlock(&vcap
->qlock
);
282 static int vimc_cap_queue_setup(struct vb2_queue
*vq
, unsigned int *nbuffers
,
283 unsigned int *nplanes
, unsigned int sizes
[],
284 struct device
*alloc_devs
[])
286 struct vimc_cap_device
*vcap
= vb2_get_drv_priv(vq
);
289 return sizes
[0] < vcap
->format
.sizeimage
? -EINVAL
: 0;
290 /* We don't support multiplanes for now */
292 sizes
[0] = vcap
->format
.sizeimage
;
297 static int vimc_cap_buffer_prepare(struct vb2_buffer
*vb
)
299 struct vimc_cap_device
*vcap
= vb2_get_drv_priv(vb
->vb2_queue
);
300 unsigned long size
= vcap
->format
.sizeimage
;
302 if (vb2_plane_size(vb
, 0) < size
) {
303 dev_err(vcap
->ved
.dev
, "%s: buffer too small (%lu < %lu)\n",
304 vcap
->vdev
.name
, vb2_plane_size(vb
, 0), size
);
310 static const struct vb2_ops vimc_cap_qops
= {
311 .start_streaming
= vimc_cap_start_streaming
,
312 .stop_streaming
= vimc_cap_stop_streaming
,
313 .buf_queue
= vimc_cap_buf_queue
,
314 .queue_setup
= vimc_cap_queue_setup
,
315 .buf_prepare
= vimc_cap_buffer_prepare
,
317 * Since q->lock is set we can use the standard
318 * vb2_ops_wait_prepare/finish helper functions.
320 .wait_prepare
= vb2_ops_wait_prepare
,
321 .wait_finish
= vb2_ops_wait_finish
,
324 static const struct media_entity_operations vimc_cap_mops
= {
325 .link_validate
= vimc_link_validate
,
328 static void vimc_cap_release(struct video_device
*vdev
)
330 struct vimc_cap_device
*vcap
=
331 container_of(vdev
, struct vimc_cap_device
, vdev
);
333 media_entity_cleanup(vcap
->ved
.ent
);
337 void vimc_cap_rm(struct vimc_device
*vimc
, struct vimc_ent_device
*ved
)
339 struct vimc_cap_device
*vcap
;
341 vcap
= container_of(ved
, struct vimc_cap_device
, ved
);
342 vb2_queue_release(&vcap
->queue
);
343 video_unregister_device(&vcap
->vdev
);
346 static void *vimc_cap_process_frame(struct vimc_ent_device
*ved
,
349 struct vimc_cap_device
*vcap
= container_of(ved
, struct vimc_cap_device
,
351 struct vimc_cap_buffer
*vimc_buf
;
354 spin_lock(&vcap
->qlock
);
356 /* Get the first entry of the list */
357 vimc_buf
= list_first_entry_or_null(&vcap
->buf_list
,
358 typeof(*vimc_buf
), list
);
360 spin_unlock(&vcap
->qlock
);
361 return ERR_PTR(-EAGAIN
);
364 /* Remove this entry from the list */
365 list_del(&vimc_buf
->list
);
367 spin_unlock(&vcap
->qlock
);
369 /* Fill the buffer */
370 vimc_buf
->vb2
.vb2_buf
.timestamp
= ktime_get_ns();
371 vimc_buf
->vb2
.sequence
= vcap
->sequence
++;
372 vimc_buf
->vb2
.field
= vcap
->format
.field
;
374 vbuf
= vb2_plane_vaddr(&vimc_buf
->vb2
.vb2_buf
, 0);
376 memcpy(vbuf
, frame
, vcap
->format
.sizeimage
);
378 /* Set it as ready */
379 vb2_set_plane_payload(&vimc_buf
->vb2
.vb2_buf
, 0,
380 vcap
->format
.sizeimage
);
381 vb2_buffer_done(&vimc_buf
->vb2
.vb2_buf
, VB2_BUF_STATE_DONE
);
385 struct vimc_ent_device
*vimc_cap_add(struct vimc_device
*vimc
,
386 const char *vcfg_name
)
388 struct v4l2_device
*v4l2_dev
= &vimc
->v4l2_dev
;
389 const struct vimc_pix_map
*vpix
;
390 struct vimc_cap_device
*vcap
;
391 struct video_device
*vdev
;
395 /* Allocate the vimc_cap_device struct */
396 vcap
= kzalloc(sizeof(*vcap
), GFP_KERNEL
);
400 /* Initialize the media entity */
401 vcap
->vdev
.entity
.name
= vcfg_name
;
402 vcap
->vdev
.entity
.function
= MEDIA_ENT_F_IO_V4L
;
403 vcap
->pad
.flags
= MEDIA_PAD_FL_SINK
;
404 ret
= media_entity_pads_init(&vcap
->vdev
.entity
,
409 /* Initialize the lock */
410 mutex_init(&vcap
->lock
);
412 /* Initialize the vb2 queue */
414 q
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
415 q
->io_modes
= VB2_MMAP
| VB2_DMABUF
| VB2_USERPTR
;
417 q
->buf_struct_size
= sizeof(struct vimc_cap_buffer
);
418 q
->ops
= &vimc_cap_qops
;
419 q
->mem_ops
= &vb2_vmalloc_memops
;
420 q
->timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
421 q
->min_buffers_needed
= 2;
422 q
->lock
= &vcap
->lock
;
424 ret
= vb2_queue_init(q
);
426 dev_err(&vimc
->pdev
.dev
, "%s: vb2 queue init failed (err=%d)\n",
428 goto err_clean_m_ent
;
431 /* Initialize buffer list and its lock */
432 INIT_LIST_HEAD(&vcap
->buf_list
);
433 spin_lock_init(&vcap
->qlock
);
435 /* Set default frame format */
436 vcap
->format
= fmt_default
;
437 vpix
= vimc_pix_map_by_pixelformat(vcap
->format
.pixelformat
);
438 vcap
->format
.bytesperline
= vcap
->format
.width
* vpix
->bpp
;
439 vcap
->format
.sizeimage
= vcap
->format
.bytesperline
*
442 /* Fill the vimc_ent_device struct */
443 vcap
->ved
.ent
= &vcap
->vdev
.entity
;
444 vcap
->ved
.process_frame
= vimc_cap_process_frame
;
445 vcap
->ved
.vdev_get_format
= vimc_cap_get_format
;
446 vcap
->ved
.dev
= &vimc
->pdev
.dev
;
448 /* Initialize the video_device struct */
450 vdev
->device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
;
451 vdev
->entity
.ops
= &vimc_cap_mops
;
452 vdev
->release
= vimc_cap_release
;
453 vdev
->fops
= &vimc_cap_fops
;
454 vdev
->ioctl_ops
= &vimc_cap_ioctl_ops
;
455 vdev
->lock
= &vcap
->lock
;
457 vdev
->v4l2_dev
= v4l2_dev
;
458 vdev
->vfl_dir
= VFL_DIR_RX
;
459 strscpy(vdev
->name
, vcfg_name
, sizeof(vdev
->name
));
460 video_set_drvdata(vdev
, &vcap
->ved
);
462 /* Register the video_device with the v4l2 and the media framework */
463 ret
= video_register_device(vdev
, VFL_TYPE_GRABBER
, -1);
465 dev_err(&vimc
->pdev
.dev
, "%s: video register failed (err=%d)\n",
466 vcap
->vdev
.name
, ret
);
467 goto err_release_queue
;
473 vb2_queue_release(q
);
475 media_entity_cleanup(&vcap
->vdev
.entity
);