2 * vsp1_video.c -- R-Car VSP1 Video Node
4 * Copyright (C) 2013-2015 Renesas Electronics Corporation
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/list.h>
15 #include <linux/module.h>
16 #include <linux/mutex.h>
17 #include <linux/slab.h>
18 #include <linux/v4l2-mediabus.h>
19 #include <linux/videodev2.h>
20 #include <linux/wait.h>
22 #include <media/media-entity.h>
23 #include <media/v4l2-dev.h>
24 #include <media/v4l2-fh.h>
25 #include <media/v4l2-ioctl.h>
26 #include <media/v4l2-subdev.h>
27 #include <media/videobuf2-v4l2.h>
28 #include <media/videobuf2-dma-contig.h>
33 #include "vsp1_entity.h"
34 #include "vsp1_pipe.h"
35 #include "vsp1_rwpf.h"
37 #include "vsp1_video.h"
39 #define VSP1_VIDEO_DEF_FORMAT V4L2_PIX_FMT_YUYV
40 #define VSP1_VIDEO_DEF_WIDTH 1024
41 #define VSP1_VIDEO_DEF_HEIGHT 768
43 #define VSP1_VIDEO_MIN_WIDTH 2U
44 #define VSP1_VIDEO_MAX_WIDTH 8190U
45 #define VSP1_VIDEO_MIN_HEIGHT 2U
46 #define VSP1_VIDEO_MAX_HEIGHT 8190U
48 /* -----------------------------------------------------------------------------
52 static struct v4l2_subdev
*
53 vsp1_video_remote_subdev(struct media_pad
*local
, u32
*pad
)
55 struct media_pad
*remote
;
57 remote
= media_entity_remote_pad(local
);
58 if (!remote
|| !is_media_entity_v4l2_subdev(remote
->entity
))
64 return media_entity_to_v4l2_subdev(remote
->entity
);
67 static int vsp1_video_verify_format(struct vsp1_video
*video
)
69 struct v4l2_subdev_format fmt
;
70 struct v4l2_subdev
*subdev
;
73 subdev
= vsp1_video_remote_subdev(&video
->pad
, &fmt
.pad
);
77 fmt
.which
= V4L2_SUBDEV_FORMAT_ACTIVE
;
78 ret
= v4l2_subdev_call(subdev
, pad
, get_fmt
, NULL
, &fmt
);
80 return ret
== -ENOIOCTLCMD
? -EINVAL
: ret
;
82 if (video
->rwpf
->fmtinfo
->mbus
!= fmt
.format
.code
||
83 video
->rwpf
->format
.height
!= fmt
.format
.height
||
84 video
->rwpf
->format
.width
!= fmt
.format
.width
)
90 static int __vsp1_video_try_format(struct vsp1_video
*video
,
91 struct v4l2_pix_format_mplane
*pix
,
92 const struct vsp1_format_info
**fmtinfo
)
94 static const u32 xrgb_formats
[][2] = {
95 { V4L2_PIX_FMT_RGB444
, V4L2_PIX_FMT_XRGB444
},
96 { V4L2_PIX_FMT_RGB555
, V4L2_PIX_FMT_XRGB555
},
97 { V4L2_PIX_FMT_BGR32
, V4L2_PIX_FMT_XBGR32
},
98 { V4L2_PIX_FMT_RGB32
, V4L2_PIX_FMT_XRGB32
},
101 const struct vsp1_format_info
*info
;
102 unsigned int width
= pix
->width
;
103 unsigned int height
= pix
->height
;
106 /* Backward compatibility: replace deprecated RGB formats by their XRGB
107 * equivalent. This selects the format older userspace applications want
108 * while still exposing the new format.
110 for (i
= 0; i
< ARRAY_SIZE(xrgb_formats
); ++i
) {
111 if (xrgb_formats
[i
][0] == pix
->pixelformat
) {
112 pix
->pixelformat
= xrgb_formats
[i
][1];
117 /* Retrieve format information and select the default format if the
118 * requested format isn't supported.
120 info
= vsp1_get_format_info(pix
->pixelformat
);
122 info
= vsp1_get_format_info(VSP1_VIDEO_DEF_FORMAT
);
124 pix
->pixelformat
= info
->fourcc
;
125 pix
->colorspace
= V4L2_COLORSPACE_SRGB
;
126 pix
->field
= V4L2_FIELD_NONE
;
127 memset(pix
->reserved
, 0, sizeof(pix
->reserved
));
129 /* Align the width and height for YUV 4:2:2 and 4:2:0 formats. */
130 width
= round_down(width
, info
->hsub
);
131 height
= round_down(height
, info
->vsub
);
133 /* Clamp the width and height. */
134 pix
->width
= clamp(width
, VSP1_VIDEO_MIN_WIDTH
, VSP1_VIDEO_MAX_WIDTH
);
135 pix
->height
= clamp(height
, VSP1_VIDEO_MIN_HEIGHT
,
136 VSP1_VIDEO_MAX_HEIGHT
);
138 /* Compute and clamp the stride and image size. While not documented in
139 * the datasheet, strides not aligned to a multiple of 128 bytes result
140 * in image corruption.
142 for (i
= 0; i
< min(info
->planes
, 2U); ++i
) {
143 unsigned int hsub
= i
> 0 ? info
->hsub
: 1;
144 unsigned int vsub
= i
> 0 ? info
->vsub
: 1;
145 unsigned int align
= 128;
148 bpl
= clamp_t(unsigned int, pix
->plane_fmt
[i
].bytesperline
,
149 pix
->width
/ hsub
* info
->bpp
[i
] / 8,
150 round_down(65535U, align
));
152 pix
->plane_fmt
[i
].bytesperline
= round_up(bpl
, align
);
153 pix
->plane_fmt
[i
].sizeimage
= pix
->plane_fmt
[i
].bytesperline
154 * pix
->height
/ vsub
;
157 if (info
->planes
== 3) {
158 /* The second and third planes must have the same stride. */
159 pix
->plane_fmt
[2].bytesperline
= pix
->plane_fmt
[1].bytesperline
;
160 pix
->plane_fmt
[2].sizeimage
= pix
->plane_fmt
[1].sizeimage
;
163 pix
->num_planes
= info
->planes
;
171 /* -----------------------------------------------------------------------------
172 * Pipeline Management
176 * vsp1_video_complete_buffer - Complete the current buffer
177 * @video: the video node
179 * This function completes the current buffer by filling its sequence number,
180 * time stamp and payload size, and hands it back to the videobuf core.
182 * When operating in DU output mode (deep pipeline to the DU through the LIF),
183 * the VSP1 needs to constantly supply frames to the display. In that case, if
184 * no other buffer is queued, reuse the one that has just been processed instead
185 * of handing it back to the videobuf core.
187 * Return the next queued buffer or NULL if the queue is empty.
189 static struct vsp1_vb2_buffer
*
190 vsp1_video_complete_buffer(struct vsp1_video
*video
)
192 struct vsp1_pipeline
*pipe
= video
->rwpf
->pipe
;
193 struct vsp1_vb2_buffer
*next
= NULL
;
194 struct vsp1_vb2_buffer
*done
;
198 spin_lock_irqsave(&video
->irqlock
, flags
);
200 if (list_empty(&video
->irqqueue
)) {
201 spin_unlock_irqrestore(&video
->irqlock
, flags
);
205 done
= list_first_entry(&video
->irqqueue
,
206 struct vsp1_vb2_buffer
, queue
);
208 /* In DU output mode reuse the buffer if the list is singular. */
209 if (pipe
->lif
&& list_is_singular(&video
->irqqueue
)) {
210 spin_unlock_irqrestore(&video
->irqlock
, flags
);
214 list_del(&done
->queue
);
216 if (!list_empty(&video
->irqqueue
))
217 next
= list_first_entry(&video
->irqqueue
,
218 struct vsp1_vb2_buffer
, queue
);
220 spin_unlock_irqrestore(&video
->irqlock
, flags
);
222 done
->buf
.sequence
= pipe
->sequence
;
223 done
->buf
.vb2_buf
.timestamp
= ktime_get_ns();
224 for (i
= 0; i
< done
->buf
.vb2_buf
.num_planes
; ++i
)
225 vb2_set_plane_payload(&done
->buf
.vb2_buf
, i
,
226 vb2_plane_size(&done
->buf
.vb2_buf
, i
));
227 vb2_buffer_done(&done
->buf
.vb2_buf
, VB2_BUF_STATE_DONE
);
232 static void vsp1_video_frame_end(struct vsp1_pipeline
*pipe
,
233 struct vsp1_rwpf
*rwpf
)
235 struct vsp1_video
*video
= rwpf
->video
;
236 struct vsp1_vb2_buffer
*buf
;
239 buf
= vsp1_video_complete_buffer(video
);
243 spin_lock_irqsave(&pipe
->irqlock
, flags
);
245 video
->rwpf
->mem
= buf
->mem
;
246 pipe
->buffers_ready
|= 1 << video
->pipe_index
;
248 spin_unlock_irqrestore(&pipe
->irqlock
, flags
);
251 static void vsp1_video_pipeline_run(struct vsp1_pipeline
*pipe
)
253 struct vsp1_device
*vsp1
= pipe
->output
->entity
.vsp1
;
254 struct vsp1_entity
*entity
;
258 pipe
->dl
= vsp1_dl_list_get(pipe
->output
->dlm
);
260 list_for_each_entry(entity
, &pipe
->entities
, list_pipe
) {
261 if (entity
->ops
->configure
)
262 entity
->ops
->configure(entity
, pipe
, pipe
->dl
, false);
265 for (i
= 0; i
< vsp1
->info
->rpf_count
; ++i
) {
266 struct vsp1_rwpf
*rwpf
= pipe
->inputs
[i
];
269 vsp1_rwpf_set_memory(rwpf
, pipe
->dl
);
273 vsp1_rwpf_set_memory(pipe
->output
, pipe
->dl
);
275 vsp1_dl_list_commit(pipe
->dl
);
278 vsp1_pipeline_run(pipe
);
281 static void vsp1_video_pipeline_frame_end(struct vsp1_pipeline
*pipe
)
283 struct vsp1_device
*vsp1
= pipe
->output
->entity
.vsp1
;
284 enum vsp1_pipeline_state state
;
288 /* Complete buffers on all video nodes. */
289 for (i
= 0; i
< vsp1
->info
->rpf_count
; ++i
) {
290 if (!pipe
->inputs
[i
])
293 vsp1_video_frame_end(pipe
, pipe
->inputs
[i
]);
296 vsp1_video_frame_end(pipe
, pipe
->output
);
298 spin_lock_irqsave(&pipe
->irqlock
, flags
);
301 pipe
->state
= VSP1_PIPELINE_STOPPED
;
303 /* If a stop has been requested, mark the pipeline as stopped and
304 * return. Otherwise restart the pipeline if ready.
306 if (state
== VSP1_PIPELINE_STOPPING
)
308 else if (vsp1_pipeline_ready(pipe
))
309 vsp1_video_pipeline_run(pipe
);
311 spin_unlock_irqrestore(&pipe
->irqlock
, flags
);
314 static int vsp1_video_pipeline_build_branch(struct vsp1_pipeline
*pipe
,
315 struct vsp1_rwpf
*input
,
316 struct vsp1_rwpf
*output
)
318 struct media_entity_enum ent_enum
;
319 struct vsp1_entity
*entity
;
320 struct media_pad
*pad
;
321 bool bru_found
= false;
324 ret
= media_entity_enum_init(&ent_enum
, &input
->entity
.vsp1
->media_dev
);
328 pad
= media_entity_remote_pad(&input
->entity
.pads
[RWPF_PAD_SOURCE
]);
336 /* We've reached a video node, that shouldn't have happened. */
337 if (!is_media_entity_v4l2_subdev(pad
->entity
)) {
342 entity
= to_vsp1_entity(
343 media_entity_to_v4l2_subdev(pad
->entity
));
345 /* A BRU is present in the pipeline, store the BRU input pad
346 * number in the input RPF for use when configuring the RPF.
348 if (entity
->type
== VSP1_ENTITY_BRU
) {
349 struct vsp1_bru
*bru
= to_bru(&entity
->subdev
);
351 bru
->inputs
[pad
->index
].rpf
= input
;
352 input
->bru_input
= pad
->index
;
357 /* We've reached the WPF, we're done. */
358 if (entity
->type
== VSP1_ENTITY_WPF
)
361 /* Ensure the branch has no loop. */
362 if (media_entity_enum_test_and_set(&ent_enum
,
363 &entity
->subdev
.entity
)) {
368 /* UDS can't be chained. */
369 if (entity
->type
== VSP1_ENTITY_UDS
) {
376 pipe
->uds_input
= bru_found
? pipe
->bru
380 /* Follow the source link. The link setup operations ensure
381 * that the output fan-out can't be more than one, there is thus
382 * no need to verify here that only a single source link is
385 pad
= &entity
->pads
[entity
->source_pad
];
386 pad
= media_entity_remote_pad(pad
);
389 /* The last entity must be the output WPF. */
390 if (entity
!= &output
->entity
)
394 media_entity_enum_cleanup(&ent_enum
);
399 static int vsp1_video_pipeline_build(struct vsp1_pipeline
*pipe
,
400 struct vsp1_video
*video
)
402 struct media_entity_graph graph
;
403 struct media_entity
*entity
= &video
->video
.entity
;
404 struct media_device
*mdev
= entity
->graph_obj
.mdev
;
408 /* Walk the graph to locate the entities and video nodes. */
409 ret
= media_entity_graph_walk_init(&graph
, mdev
);
413 media_entity_graph_walk_start(&graph
, entity
);
415 while ((entity
= media_entity_graph_walk_next(&graph
))) {
416 struct v4l2_subdev
*subdev
;
417 struct vsp1_rwpf
*rwpf
;
418 struct vsp1_entity
*e
;
420 if (!is_media_entity_v4l2_subdev(entity
))
423 subdev
= media_entity_to_v4l2_subdev(entity
);
424 e
= to_vsp1_entity(subdev
);
425 list_add_tail(&e
->list_pipe
, &pipe
->entities
);
427 if (e
->type
== VSP1_ENTITY_RPF
) {
428 rwpf
= to_rwpf(subdev
);
429 pipe
->inputs
[rwpf
->entity
.index
] = rwpf
;
430 rwpf
->video
->pipe_index
= ++pipe
->num_inputs
;
432 } else if (e
->type
== VSP1_ENTITY_WPF
) {
433 rwpf
= to_rwpf(subdev
);
435 rwpf
->video
->pipe_index
= 0;
437 } else if (e
->type
== VSP1_ENTITY_LIF
) {
439 } else if (e
->type
== VSP1_ENTITY_BRU
) {
444 media_entity_graph_walk_cleanup(&graph
);
446 /* We need one output and at least one input. */
447 if (pipe
->num_inputs
== 0 || !pipe
->output
)
450 /* Follow links downstream for each input and make sure the graph
451 * contains no loop and that all branches end at the output WPF.
453 for (i
= 0; i
< video
->vsp1
->info
->rpf_count
; ++i
) {
454 if (!pipe
->inputs
[i
])
457 ret
= vsp1_video_pipeline_build_branch(pipe
, pipe
->inputs
[i
],
466 static int vsp1_video_pipeline_init(struct vsp1_pipeline
*pipe
,
467 struct vsp1_video
*video
)
469 vsp1_pipeline_init(pipe
);
471 pipe
->frame_end
= vsp1_video_pipeline_frame_end
;
473 return vsp1_video_pipeline_build(pipe
, video
);
476 static struct vsp1_pipeline
*vsp1_video_pipeline_get(struct vsp1_video
*video
)
478 struct vsp1_pipeline
*pipe
;
481 /* Get a pipeline object for the video node. If a pipeline has already
482 * been allocated just increment its reference count and return it.
483 * Otherwise allocate a new pipeline and initialize it, it will be freed
484 * when the last reference is released.
486 if (!video
->rwpf
->pipe
) {
487 pipe
= kzalloc(sizeof(*pipe
), GFP_KERNEL
);
489 return ERR_PTR(-ENOMEM
);
491 ret
= vsp1_video_pipeline_init(pipe
, video
);
493 vsp1_pipeline_reset(pipe
);
498 pipe
= video
->rwpf
->pipe
;
499 kref_get(&pipe
->kref
);
505 static void vsp1_video_pipeline_release(struct kref
*kref
)
507 struct vsp1_pipeline
*pipe
= container_of(kref
, typeof(*pipe
), kref
);
509 vsp1_pipeline_reset(pipe
);
513 static void vsp1_video_pipeline_put(struct vsp1_pipeline
*pipe
)
515 struct media_device
*mdev
= &pipe
->output
->entity
.vsp1
->media_dev
;
517 mutex_lock(&mdev
->graph_mutex
);
518 kref_put(&pipe
->kref
, vsp1_video_pipeline_release
);
519 mutex_unlock(&mdev
->graph_mutex
);
522 /* -----------------------------------------------------------------------------
523 * videobuf2 Queue Operations
527 vsp1_video_queue_setup(struct vb2_queue
*vq
,
528 unsigned int *nbuffers
, unsigned int *nplanes
,
529 unsigned int sizes
[], struct device
*alloc_devs
[])
531 struct vsp1_video
*video
= vb2_get_drv_priv(vq
);
532 const struct v4l2_pix_format_mplane
*format
= &video
->rwpf
->format
;
536 if (*nplanes
!= format
->num_planes
)
539 for (i
= 0; i
< *nplanes
; i
++)
540 if (sizes
[i
] < format
->plane_fmt
[i
].sizeimage
)
545 *nplanes
= format
->num_planes
;
547 for (i
= 0; i
< format
->num_planes
; ++i
)
548 sizes
[i
] = format
->plane_fmt
[i
].sizeimage
;
553 static int vsp1_video_buffer_prepare(struct vb2_buffer
*vb
)
555 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
556 struct vsp1_video
*video
= vb2_get_drv_priv(vb
->vb2_queue
);
557 struct vsp1_vb2_buffer
*buf
= to_vsp1_vb2_buffer(vbuf
);
558 const struct v4l2_pix_format_mplane
*format
= &video
->rwpf
->format
;
561 if (vb
->num_planes
< format
->num_planes
)
564 for (i
= 0; i
< vb
->num_planes
; ++i
) {
565 buf
->mem
.addr
[i
] = vb2_dma_contig_plane_dma_addr(vb
, i
);
567 if (vb2_plane_size(vb
, i
) < format
->plane_fmt
[i
].sizeimage
)
572 buf
->mem
.addr
[i
] = 0;
577 static void vsp1_video_buffer_queue(struct vb2_buffer
*vb
)
579 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
580 struct vsp1_video
*video
= vb2_get_drv_priv(vb
->vb2_queue
);
581 struct vsp1_pipeline
*pipe
= video
->rwpf
->pipe
;
582 struct vsp1_vb2_buffer
*buf
= to_vsp1_vb2_buffer(vbuf
);
586 spin_lock_irqsave(&video
->irqlock
, flags
);
587 empty
= list_empty(&video
->irqqueue
);
588 list_add_tail(&buf
->queue
, &video
->irqqueue
);
589 spin_unlock_irqrestore(&video
->irqlock
, flags
);
594 spin_lock_irqsave(&pipe
->irqlock
, flags
);
596 video
->rwpf
->mem
= buf
->mem
;
597 pipe
->buffers_ready
|= 1 << video
->pipe_index
;
599 if (vb2_is_streaming(&video
->queue
) &&
600 vsp1_pipeline_ready(pipe
))
601 vsp1_video_pipeline_run(pipe
);
603 spin_unlock_irqrestore(&pipe
->irqlock
, flags
);
606 static int vsp1_video_setup_pipeline(struct vsp1_pipeline
*pipe
)
608 struct vsp1_entity
*entity
;
610 /* Prepare the display list. */
611 pipe
->dl
= vsp1_dl_list_get(pipe
->output
->dlm
);
616 struct vsp1_uds
*uds
= to_uds(&pipe
->uds
->subdev
);
618 /* If a BRU is present in the pipeline before the UDS, the alpha
619 * component doesn't need to be scaled as the BRU output alpha
620 * value is fixed to 255. Otherwise we need to scale the alpha
621 * component only when available at the input RPF.
623 if (pipe
->uds_input
->type
== VSP1_ENTITY_BRU
) {
624 uds
->scale_alpha
= false;
626 struct vsp1_rwpf
*rpf
=
627 to_rwpf(&pipe
->uds_input
->subdev
);
629 uds
->scale_alpha
= rpf
->fmtinfo
->alpha
;
633 list_for_each_entry(entity
, &pipe
->entities
, list_pipe
) {
634 vsp1_entity_route_setup(entity
, pipe
->dl
);
636 if (entity
->ops
->configure
)
637 entity
->ops
->configure(entity
, pipe
, pipe
->dl
, true);
643 static int vsp1_video_start_streaming(struct vb2_queue
*vq
, unsigned int count
)
645 struct vsp1_video
*video
= vb2_get_drv_priv(vq
);
646 struct vsp1_pipeline
*pipe
= video
->rwpf
->pipe
;
650 mutex_lock(&pipe
->lock
);
651 if (pipe
->stream_count
== pipe
->num_inputs
) {
652 ret
= vsp1_video_setup_pipeline(pipe
);
654 mutex_unlock(&pipe
->lock
);
659 pipe
->stream_count
++;
660 mutex_unlock(&pipe
->lock
);
662 spin_lock_irqsave(&pipe
->irqlock
, flags
);
663 if (vsp1_pipeline_ready(pipe
))
664 vsp1_video_pipeline_run(pipe
);
665 spin_unlock_irqrestore(&pipe
->irqlock
, flags
);
670 static void vsp1_video_stop_streaming(struct vb2_queue
*vq
)
672 struct vsp1_video
*video
= vb2_get_drv_priv(vq
);
673 struct vsp1_pipeline
*pipe
= video
->rwpf
->pipe
;
674 struct vsp1_vb2_buffer
*buffer
;
678 mutex_lock(&pipe
->lock
);
679 if (--pipe
->stream_count
== pipe
->num_inputs
) {
680 /* Stop the pipeline. */
681 ret
= vsp1_pipeline_stop(pipe
);
682 if (ret
== -ETIMEDOUT
)
683 dev_err(video
->vsp1
->dev
, "pipeline stop timeout\n");
685 vsp1_dl_list_put(pipe
->dl
);
688 mutex_unlock(&pipe
->lock
);
690 media_entity_pipeline_stop(&video
->video
.entity
);
691 vsp1_video_pipeline_put(pipe
);
693 /* Remove all buffers from the IRQ queue. */
694 spin_lock_irqsave(&video
->irqlock
, flags
);
695 list_for_each_entry(buffer
, &video
->irqqueue
, queue
)
696 vb2_buffer_done(&buffer
->buf
.vb2_buf
, VB2_BUF_STATE_ERROR
);
697 INIT_LIST_HEAD(&video
->irqqueue
);
698 spin_unlock_irqrestore(&video
->irqlock
, flags
);
701 static const struct vb2_ops vsp1_video_queue_qops
= {
702 .queue_setup
= vsp1_video_queue_setup
,
703 .buf_prepare
= vsp1_video_buffer_prepare
,
704 .buf_queue
= vsp1_video_buffer_queue
,
705 .wait_prepare
= vb2_ops_wait_prepare
,
706 .wait_finish
= vb2_ops_wait_finish
,
707 .start_streaming
= vsp1_video_start_streaming
,
708 .stop_streaming
= vsp1_video_stop_streaming
,
711 /* -----------------------------------------------------------------------------
716 vsp1_video_querycap(struct file
*file
, void *fh
, struct v4l2_capability
*cap
)
718 struct v4l2_fh
*vfh
= file
->private_data
;
719 struct vsp1_video
*video
= to_vsp1_video(vfh
->vdev
);
721 cap
->capabilities
= V4L2_CAP_DEVICE_CAPS
| V4L2_CAP_STREAMING
722 | V4L2_CAP_VIDEO_CAPTURE_MPLANE
723 | V4L2_CAP_VIDEO_OUTPUT_MPLANE
;
725 if (video
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
)
726 cap
->device_caps
= V4L2_CAP_VIDEO_CAPTURE_MPLANE
727 | V4L2_CAP_STREAMING
;
729 cap
->device_caps
= V4L2_CAP_VIDEO_OUTPUT_MPLANE
730 | V4L2_CAP_STREAMING
;
732 strlcpy(cap
->driver
, "vsp1", sizeof(cap
->driver
));
733 strlcpy(cap
->card
, video
->video
.name
, sizeof(cap
->card
));
734 snprintf(cap
->bus_info
, sizeof(cap
->bus_info
), "platform:%s",
735 dev_name(video
->vsp1
->dev
));
741 vsp1_video_get_format(struct file
*file
, void *fh
, struct v4l2_format
*format
)
743 struct v4l2_fh
*vfh
= file
->private_data
;
744 struct vsp1_video
*video
= to_vsp1_video(vfh
->vdev
);
746 if (format
->type
!= video
->queue
.type
)
749 mutex_lock(&video
->lock
);
750 format
->fmt
.pix_mp
= video
->rwpf
->format
;
751 mutex_unlock(&video
->lock
);
757 vsp1_video_try_format(struct file
*file
, void *fh
, struct v4l2_format
*format
)
759 struct v4l2_fh
*vfh
= file
->private_data
;
760 struct vsp1_video
*video
= to_vsp1_video(vfh
->vdev
);
762 if (format
->type
!= video
->queue
.type
)
765 return __vsp1_video_try_format(video
, &format
->fmt
.pix_mp
, NULL
);
769 vsp1_video_set_format(struct file
*file
, void *fh
, struct v4l2_format
*format
)
771 struct v4l2_fh
*vfh
= file
->private_data
;
772 struct vsp1_video
*video
= to_vsp1_video(vfh
->vdev
);
773 const struct vsp1_format_info
*info
;
776 if (format
->type
!= video
->queue
.type
)
779 ret
= __vsp1_video_try_format(video
, &format
->fmt
.pix_mp
, &info
);
783 mutex_lock(&video
->lock
);
785 if (vb2_is_busy(&video
->queue
)) {
790 video
->rwpf
->format
= format
->fmt
.pix_mp
;
791 video
->rwpf
->fmtinfo
= info
;
794 mutex_unlock(&video
->lock
);
799 vsp1_video_streamon(struct file
*file
, void *fh
, enum v4l2_buf_type type
)
801 struct v4l2_fh
*vfh
= file
->private_data
;
802 struct vsp1_video
*video
= to_vsp1_video(vfh
->vdev
);
803 struct media_device
*mdev
= &video
->vsp1
->media_dev
;
804 struct vsp1_pipeline
*pipe
;
807 if (video
->queue
.owner
&& video
->queue
.owner
!= file
->private_data
)
810 /* Get a pipeline for the video node and start streaming on it. No link
811 * touching an entity in the pipeline can be activated or deactivated
812 * once streaming is started.
814 mutex_lock(&mdev
->graph_mutex
);
816 pipe
= vsp1_video_pipeline_get(video
);
818 mutex_unlock(&mdev
->graph_mutex
);
819 return PTR_ERR(pipe
);
822 ret
= __media_entity_pipeline_start(&video
->video
.entity
, &pipe
->pipe
);
824 mutex_unlock(&mdev
->graph_mutex
);
828 mutex_unlock(&mdev
->graph_mutex
);
830 /* Verify that the configured format matches the output of the connected
833 ret
= vsp1_video_verify_format(video
);
837 /* Start the queue. */
838 ret
= vb2_streamon(&video
->queue
, type
);
845 media_entity_pipeline_stop(&video
->video
.entity
);
847 vsp1_video_pipeline_put(pipe
);
851 static const struct v4l2_ioctl_ops vsp1_video_ioctl_ops
= {
852 .vidioc_querycap
= vsp1_video_querycap
,
853 .vidioc_g_fmt_vid_cap_mplane
= vsp1_video_get_format
,
854 .vidioc_s_fmt_vid_cap_mplane
= vsp1_video_set_format
,
855 .vidioc_try_fmt_vid_cap_mplane
= vsp1_video_try_format
,
856 .vidioc_g_fmt_vid_out_mplane
= vsp1_video_get_format
,
857 .vidioc_s_fmt_vid_out_mplane
= vsp1_video_set_format
,
858 .vidioc_try_fmt_vid_out_mplane
= vsp1_video_try_format
,
859 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
860 .vidioc_querybuf
= vb2_ioctl_querybuf
,
861 .vidioc_qbuf
= vb2_ioctl_qbuf
,
862 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
863 .vidioc_create_bufs
= vb2_ioctl_create_bufs
,
864 .vidioc_prepare_buf
= vb2_ioctl_prepare_buf
,
865 .vidioc_streamon
= vsp1_video_streamon
,
866 .vidioc_streamoff
= vb2_ioctl_streamoff
,
869 /* -----------------------------------------------------------------------------
870 * V4L2 File Operations
873 static int vsp1_video_open(struct file
*file
)
875 struct vsp1_video
*video
= video_drvdata(file
);
879 vfh
= kzalloc(sizeof(*vfh
), GFP_KERNEL
);
883 v4l2_fh_init(vfh
, &video
->video
);
886 file
->private_data
= vfh
;
888 ret
= vsp1_device_get(video
->vsp1
);
897 static int vsp1_video_release(struct file
*file
)
899 struct vsp1_video
*video
= video_drvdata(file
);
900 struct v4l2_fh
*vfh
= file
->private_data
;
902 mutex_lock(&video
->lock
);
903 if (video
->queue
.owner
== vfh
) {
904 vb2_queue_release(&video
->queue
);
905 video
->queue
.owner
= NULL
;
907 mutex_unlock(&video
->lock
);
909 vsp1_device_put(video
->vsp1
);
911 v4l2_fh_release(file
);
913 file
->private_data
= NULL
;
918 static const struct v4l2_file_operations vsp1_video_fops
= {
919 .owner
= THIS_MODULE
,
920 .unlocked_ioctl
= video_ioctl2
,
921 .open
= vsp1_video_open
,
922 .release
= vsp1_video_release
,
923 .poll
= vb2_fop_poll
,
924 .mmap
= vb2_fop_mmap
,
927 /* -----------------------------------------------------------------------------
928 * Initialization and Cleanup
931 struct vsp1_video
*vsp1_video_create(struct vsp1_device
*vsp1
,
932 struct vsp1_rwpf
*rwpf
)
934 struct vsp1_video
*video
;
935 const char *direction
;
938 video
= devm_kzalloc(vsp1
->dev
, sizeof(*video
), GFP_KERNEL
);
940 return ERR_PTR(-ENOMEM
);
947 if (rwpf
->entity
.type
== VSP1_ENTITY_RPF
) {
949 video
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
;
950 video
->pad
.flags
= MEDIA_PAD_FL_SOURCE
;
951 video
->video
.vfl_dir
= VFL_DIR_TX
;
953 direction
= "output";
954 video
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
;
955 video
->pad
.flags
= MEDIA_PAD_FL_SINK
;
956 video
->video
.vfl_dir
= VFL_DIR_RX
;
959 mutex_init(&video
->lock
);
960 spin_lock_init(&video
->irqlock
);
961 INIT_LIST_HEAD(&video
->irqqueue
);
963 /* Initialize the media entity... */
964 ret
= media_entity_pads_init(&video
->video
.entity
, 1, &video
->pad
);
968 /* ... and the format ... */
969 rwpf
->format
.pixelformat
= VSP1_VIDEO_DEF_FORMAT
;
970 rwpf
->format
.width
= VSP1_VIDEO_DEF_WIDTH
;
971 rwpf
->format
.height
= VSP1_VIDEO_DEF_HEIGHT
;
972 __vsp1_video_try_format(video
, &rwpf
->format
, &rwpf
->fmtinfo
);
974 /* ... and the video node... */
975 video
->video
.v4l2_dev
= &video
->vsp1
->v4l2_dev
;
976 video
->video
.fops
= &vsp1_video_fops
;
977 snprintf(video
->video
.name
, sizeof(video
->video
.name
), "%s %s",
978 rwpf
->entity
.subdev
.name
, direction
);
979 video
->video
.vfl_type
= VFL_TYPE_GRABBER
;
980 video
->video
.release
= video_device_release_empty
;
981 video
->video
.ioctl_ops
= &vsp1_video_ioctl_ops
;
983 video_set_drvdata(&video
->video
, video
);
985 video
->queue
.type
= video
->type
;
986 video
->queue
.io_modes
= VB2_MMAP
| VB2_USERPTR
| VB2_DMABUF
;
987 video
->queue
.lock
= &video
->lock
;
988 video
->queue
.drv_priv
= video
;
989 video
->queue
.buf_struct_size
= sizeof(struct vsp1_vb2_buffer
);
990 video
->queue
.ops
= &vsp1_video_queue_qops
;
991 video
->queue
.mem_ops
= &vb2_dma_contig_memops
;
992 video
->queue
.timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_COPY
;
993 video
->queue
.dev
= video
->vsp1
->dev
;
994 ret
= vb2_queue_init(&video
->queue
);
996 dev_err(video
->vsp1
->dev
, "failed to initialize vb2 queue\n");
1000 /* ... and register the video device. */
1001 video
->video
.queue
= &video
->queue
;
1002 ret
= video_register_device(&video
->video
, VFL_TYPE_GRABBER
, -1);
1004 dev_err(video
->vsp1
->dev
, "failed to register video device\n");
1011 vsp1_video_cleanup(video
);
1012 return ERR_PTR(ret
);
1015 void vsp1_video_cleanup(struct vsp1_video
*video
)
1017 if (video_is_registered(&video
->video
))
1018 video_unregister_device(&video
->video
);
1020 media_entity_cleanup(&video
->video
.entity
);