[media] v4l: vsp1: Remove struct vsp1_pipeline num_video field
[deliverable/linux.git] / drivers / media / platform / vsp1 / vsp1_video.c
1 /*
2 * vsp1_video.c -- R-Car VSP1 Video Node
3 *
4 * Copyright (C) 2013-2015 Renesas Electronics Corporation
5 *
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 *
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.
12 */
13
14 #include <linux/list.h>
15 #include <linux/module.h>
16 #include <linux/mutex.h>
17 #include <linux/sched.h>
18 #include <linux/slab.h>
19 #include <linux/v4l2-mediabus.h>
20 #include <linux/videodev2.h>
21
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>
29
30 #include "vsp1.h"
31 #include "vsp1_bru.h"
32 #include "vsp1_entity.h"
33 #include "vsp1_rwpf.h"
34 #include "vsp1_uds.h"
35 #include "vsp1_video.h"
36
37 #define VSP1_VIDEO_DEF_FORMAT V4L2_PIX_FMT_YUYV
38 #define VSP1_VIDEO_DEF_WIDTH 1024
39 #define VSP1_VIDEO_DEF_HEIGHT 768
40
41 #define VSP1_VIDEO_MIN_WIDTH 2U
42 #define VSP1_VIDEO_MAX_WIDTH 8190U
43 #define VSP1_VIDEO_MIN_HEIGHT 2U
44 #define VSP1_VIDEO_MAX_HEIGHT 8190U
45
46 /* -----------------------------------------------------------------------------
47 * Helper functions
48 */
49
50 static const struct vsp1_format_info vsp1_video_formats[] = {
51 { V4L2_PIX_FMT_RGB332, MEDIA_BUS_FMT_ARGB8888_1X32,
52 VI6_FMT_RGB_332, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
53 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
54 1, { 8, 0, 0 }, false, false, 1, 1, false },
55 { V4L2_PIX_FMT_ARGB444, MEDIA_BUS_FMT_ARGB8888_1X32,
56 VI6_FMT_ARGB_4444, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
57 VI6_RPF_DSWAP_P_WDS,
58 1, { 16, 0, 0 }, false, false, 1, 1, true },
59 { V4L2_PIX_FMT_XRGB444, MEDIA_BUS_FMT_ARGB8888_1X32,
60 VI6_FMT_XRGB_4444, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
61 VI6_RPF_DSWAP_P_WDS,
62 1, { 16, 0, 0 }, false, false, 1, 1, true },
63 { V4L2_PIX_FMT_ARGB555, MEDIA_BUS_FMT_ARGB8888_1X32,
64 VI6_FMT_ARGB_1555, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
65 VI6_RPF_DSWAP_P_WDS,
66 1, { 16, 0, 0 }, false, false, 1, 1, true },
67 { V4L2_PIX_FMT_XRGB555, MEDIA_BUS_FMT_ARGB8888_1X32,
68 VI6_FMT_XRGB_1555, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
69 VI6_RPF_DSWAP_P_WDS,
70 1, { 16, 0, 0 }, false, false, 1, 1, false },
71 { V4L2_PIX_FMT_RGB565, MEDIA_BUS_FMT_ARGB8888_1X32,
72 VI6_FMT_RGB_565, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
73 VI6_RPF_DSWAP_P_WDS,
74 1, { 16, 0, 0 }, false, false, 1, 1, false },
75 { V4L2_PIX_FMT_BGR24, MEDIA_BUS_FMT_ARGB8888_1X32,
76 VI6_FMT_BGR_888, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
77 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
78 1, { 24, 0, 0 }, false, false, 1, 1, false },
79 { V4L2_PIX_FMT_RGB24, MEDIA_BUS_FMT_ARGB8888_1X32,
80 VI6_FMT_RGB_888, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
81 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
82 1, { 24, 0, 0 }, false, false, 1, 1, false },
83 { V4L2_PIX_FMT_ABGR32, MEDIA_BUS_FMT_ARGB8888_1X32,
84 VI6_FMT_ARGB_8888, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS,
85 1, { 32, 0, 0 }, false, false, 1, 1, true },
86 { V4L2_PIX_FMT_XBGR32, MEDIA_BUS_FMT_ARGB8888_1X32,
87 VI6_FMT_ARGB_8888, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS,
88 1, { 32, 0, 0 }, false, false, 1, 1, false },
89 { V4L2_PIX_FMT_ARGB32, MEDIA_BUS_FMT_ARGB8888_1X32,
90 VI6_FMT_ARGB_8888, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
91 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
92 1, { 32, 0, 0 }, false, false, 1, 1, true },
93 { V4L2_PIX_FMT_XRGB32, MEDIA_BUS_FMT_ARGB8888_1X32,
94 VI6_FMT_ARGB_8888, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
95 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
96 1, { 32, 0, 0 }, false, false, 1, 1, false },
97 { V4L2_PIX_FMT_UYVY, MEDIA_BUS_FMT_AYUV8_1X32,
98 VI6_FMT_YUYV_422, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
99 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
100 1, { 16, 0, 0 }, false, false, 2, 1, false },
101 { V4L2_PIX_FMT_VYUY, MEDIA_BUS_FMT_AYUV8_1X32,
102 VI6_FMT_YUYV_422, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
103 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
104 1, { 16, 0, 0 }, false, true, 2, 1, false },
105 { V4L2_PIX_FMT_YUYV, MEDIA_BUS_FMT_AYUV8_1X32,
106 VI6_FMT_YUYV_422, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
107 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
108 1, { 16, 0, 0 }, true, false, 2, 1, false },
109 { V4L2_PIX_FMT_YVYU, MEDIA_BUS_FMT_AYUV8_1X32,
110 VI6_FMT_YUYV_422, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
111 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
112 1, { 16, 0, 0 }, true, true, 2, 1, false },
113 { V4L2_PIX_FMT_NV12M, MEDIA_BUS_FMT_AYUV8_1X32,
114 VI6_FMT_Y_UV_420, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
115 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
116 2, { 8, 16, 0 }, false, false, 2, 2, false },
117 { V4L2_PIX_FMT_NV21M, MEDIA_BUS_FMT_AYUV8_1X32,
118 VI6_FMT_Y_UV_420, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
119 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
120 2, { 8, 16, 0 }, false, true, 2, 2, false },
121 { V4L2_PIX_FMT_NV16M, MEDIA_BUS_FMT_AYUV8_1X32,
122 VI6_FMT_Y_UV_422, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
123 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
124 2, { 8, 16, 0 }, false, false, 2, 1, false },
125 { V4L2_PIX_FMT_NV61M, MEDIA_BUS_FMT_AYUV8_1X32,
126 VI6_FMT_Y_UV_422, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
127 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
128 2, { 8, 16, 0 }, false, true, 2, 1, false },
129 { V4L2_PIX_FMT_YUV420M, MEDIA_BUS_FMT_AYUV8_1X32,
130 VI6_FMT_Y_U_V_420, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
131 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
132 3, { 8, 8, 8 }, false, false, 2, 2, false },
133 { V4L2_PIX_FMT_YVU420M, MEDIA_BUS_FMT_AYUV8_1X32,
134 VI6_FMT_Y_U_V_420, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
135 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
136 3, { 8, 8, 8 }, false, true, 2, 2, false },
137 { V4L2_PIX_FMT_YUV422M, MEDIA_BUS_FMT_AYUV8_1X32,
138 VI6_FMT_Y_U_V_422, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
139 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
140 3, { 8, 8, 8 }, false, false, 2, 1, false },
141 { V4L2_PIX_FMT_YVU422M, MEDIA_BUS_FMT_AYUV8_1X32,
142 VI6_FMT_Y_U_V_422, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
143 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
144 3, { 8, 8, 8 }, false, true, 2, 1, false },
145 { V4L2_PIX_FMT_YUV444M, MEDIA_BUS_FMT_AYUV8_1X32,
146 VI6_FMT_Y_U_V_444, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
147 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
148 3, { 8, 8, 8 }, false, false, 1, 1, false },
149 { V4L2_PIX_FMT_YVU444M, MEDIA_BUS_FMT_AYUV8_1X32,
150 VI6_FMT_Y_U_V_444, VI6_RPF_DSWAP_P_LLS | VI6_RPF_DSWAP_P_LWS |
151 VI6_RPF_DSWAP_P_WDS | VI6_RPF_DSWAP_P_BTS,
152 3, { 8, 8, 8 }, false, true, 1, 1, false },
153 };
154
155 /*
156 * vsp1_get_format_info - Retrieve format information for a 4CC
157 * @fourcc: the format 4CC
158 *
159 * Return a pointer to the format information structure corresponding to the
160 * given V4L2 format 4CC, or NULL if no corresponding format can be found.
161 */
162 static const struct vsp1_format_info *vsp1_get_format_info(u32 fourcc)
163 {
164 unsigned int i;
165
166 for (i = 0; i < ARRAY_SIZE(vsp1_video_formats); ++i) {
167 const struct vsp1_format_info *info = &vsp1_video_formats[i];
168
169 if (info->fourcc == fourcc)
170 return info;
171 }
172
173 return NULL;
174 }
175
176
177 static struct v4l2_subdev *
178 vsp1_video_remote_subdev(struct media_pad *local, u32 *pad)
179 {
180 struct media_pad *remote;
181
182 remote = media_entity_remote_pad(local);
183 if (!remote || !is_media_entity_v4l2_subdev(remote->entity))
184 return NULL;
185
186 if (pad)
187 *pad = remote->index;
188
189 return media_entity_to_v4l2_subdev(remote->entity);
190 }
191
192 static int vsp1_video_verify_format(struct vsp1_video *video)
193 {
194 struct v4l2_subdev_format fmt;
195 struct v4l2_subdev *subdev;
196 int ret;
197
198 subdev = vsp1_video_remote_subdev(&video->pad, &fmt.pad);
199 if (subdev == NULL)
200 return -EINVAL;
201
202 fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE;
203 ret = v4l2_subdev_call(subdev, pad, get_fmt, NULL, &fmt);
204 if (ret < 0)
205 return ret == -ENOIOCTLCMD ? -EINVAL : ret;
206
207 if (video->rwpf->fmtinfo->mbus != fmt.format.code ||
208 video->rwpf->format.height != fmt.format.height ||
209 video->rwpf->format.width != fmt.format.width)
210 return -EINVAL;
211
212 return 0;
213 }
214
215 static int __vsp1_video_try_format(struct vsp1_video *video,
216 struct v4l2_pix_format_mplane *pix,
217 const struct vsp1_format_info **fmtinfo)
218 {
219 static const u32 xrgb_formats[][2] = {
220 { V4L2_PIX_FMT_RGB444, V4L2_PIX_FMT_XRGB444 },
221 { V4L2_PIX_FMT_RGB555, V4L2_PIX_FMT_XRGB555 },
222 { V4L2_PIX_FMT_BGR32, V4L2_PIX_FMT_XBGR32 },
223 { V4L2_PIX_FMT_RGB32, V4L2_PIX_FMT_XRGB32 },
224 };
225
226 const struct vsp1_format_info *info;
227 unsigned int width = pix->width;
228 unsigned int height = pix->height;
229 unsigned int i;
230
231 /* Backward compatibility: replace deprecated RGB formats by their XRGB
232 * equivalent. This selects the format older userspace applications want
233 * while still exposing the new format.
234 */
235 for (i = 0; i < ARRAY_SIZE(xrgb_formats); ++i) {
236 if (xrgb_formats[i][0] == pix->pixelformat) {
237 pix->pixelformat = xrgb_formats[i][1];
238 break;
239 }
240 }
241
242 /* Retrieve format information and select the default format if the
243 * requested format isn't supported.
244 */
245 info = vsp1_get_format_info(pix->pixelformat);
246 if (info == NULL)
247 info = vsp1_get_format_info(VSP1_VIDEO_DEF_FORMAT);
248
249 pix->pixelformat = info->fourcc;
250 pix->colorspace = V4L2_COLORSPACE_SRGB;
251 pix->field = V4L2_FIELD_NONE;
252 memset(pix->reserved, 0, sizeof(pix->reserved));
253
254 /* Align the width and height for YUV 4:2:2 and 4:2:0 formats. */
255 width = round_down(width, info->hsub);
256 height = round_down(height, info->vsub);
257
258 /* Clamp the width and height. */
259 pix->width = clamp(width, VSP1_VIDEO_MIN_WIDTH, VSP1_VIDEO_MAX_WIDTH);
260 pix->height = clamp(height, VSP1_VIDEO_MIN_HEIGHT,
261 VSP1_VIDEO_MAX_HEIGHT);
262
263 /* Compute and clamp the stride and image size. While not documented in
264 * the datasheet, strides not aligned to a multiple of 128 bytes result
265 * in image corruption.
266 */
267 for (i = 0; i < min(info->planes, 2U); ++i) {
268 unsigned int hsub = i > 0 ? info->hsub : 1;
269 unsigned int vsub = i > 0 ? info->vsub : 1;
270 unsigned int align = 128;
271 unsigned int bpl;
272
273 bpl = clamp_t(unsigned int, pix->plane_fmt[i].bytesperline,
274 pix->width / hsub * info->bpp[i] / 8,
275 round_down(65535U, align));
276
277 pix->plane_fmt[i].bytesperline = round_up(bpl, align);
278 pix->plane_fmt[i].sizeimage = pix->plane_fmt[i].bytesperline
279 * pix->height / vsub;
280 }
281
282 if (info->planes == 3) {
283 /* The second and third planes must have the same stride. */
284 pix->plane_fmt[2].bytesperline = pix->plane_fmt[1].bytesperline;
285 pix->plane_fmt[2].sizeimage = pix->plane_fmt[1].sizeimage;
286 }
287
288 pix->num_planes = info->planes;
289
290 if (fmtinfo)
291 *fmtinfo = info;
292
293 return 0;
294 }
295
296 /* -----------------------------------------------------------------------------
297 * Pipeline Management
298 */
299
300 static int vsp1_pipeline_validate_branch(struct vsp1_pipeline *pipe,
301 struct vsp1_rwpf *input,
302 struct vsp1_rwpf *output)
303 {
304 struct vsp1_entity *entity;
305 struct media_entity_enum ent_enum;
306 struct media_pad *pad;
307 int rval;
308 bool bru_found = false;
309
310 input->location.left = 0;
311 input->location.top = 0;
312
313 rval = media_entity_enum_init(
314 &ent_enum, input->entity.pads[RWPF_PAD_SOURCE].graph_obj.mdev);
315 if (rval)
316 return rval;
317
318 pad = media_entity_remote_pad(&input->entity.pads[RWPF_PAD_SOURCE]);
319
320 while (1) {
321 if (pad == NULL) {
322 rval = -EPIPE;
323 goto out;
324 }
325
326 /* We've reached a video node, that shouldn't have happened. */
327 if (!is_media_entity_v4l2_subdev(pad->entity)) {
328 rval = -EPIPE;
329 goto out;
330 }
331
332 entity = to_vsp1_entity(
333 media_entity_to_v4l2_subdev(pad->entity));
334
335 /* A BRU is present in the pipeline, store the compose rectangle
336 * location in the input RPF for use when configuring the RPF.
337 */
338 if (entity->type == VSP1_ENTITY_BRU) {
339 struct vsp1_bru *bru = to_bru(&entity->subdev);
340 struct v4l2_rect *rect =
341 &bru->inputs[pad->index].compose;
342
343 bru->inputs[pad->index].rpf = input;
344
345 input->location.left = rect->left;
346 input->location.top = rect->top;
347
348 bru_found = true;
349 }
350
351 /* We've reached the WPF, we're done. */
352 if (entity->type == VSP1_ENTITY_WPF)
353 break;
354
355 /* Ensure the branch has no loop. */
356 if (media_entity_enum_test_and_set(&ent_enum,
357 &entity->subdev.entity)) {
358 rval = -EPIPE;
359 goto out;
360 }
361
362 /* UDS can't be chained. */
363 if (entity->type == VSP1_ENTITY_UDS) {
364 if (pipe->uds) {
365 rval = -EPIPE;
366 goto out;
367 }
368
369 pipe->uds = entity;
370 pipe->uds_input = bru_found ? pipe->bru
371 : &input->entity;
372 }
373
374 /* Follow the source link. The link setup operations ensure
375 * that the output fan-out can't be more than one, there is thus
376 * no need to verify here that only a single source link is
377 * activated.
378 */
379 pad = &entity->pads[entity->source_pad];
380 pad = media_entity_remote_pad(pad);
381 }
382
383 /* The last entity must be the output WPF. */
384 if (entity != &output->entity)
385 rval = -EPIPE;
386
387 out:
388 media_entity_enum_cleanup(&ent_enum);
389
390 return rval;
391 }
392
393 static void __vsp1_pipeline_cleanup(struct vsp1_pipeline *pipe)
394 {
395 if (pipe->bru) {
396 struct vsp1_bru *bru = to_bru(&pipe->bru->subdev);
397 unsigned int i;
398
399 for (i = 0; i < ARRAY_SIZE(bru->inputs); ++i)
400 bru->inputs[i].rpf = NULL;
401 }
402
403 INIT_LIST_HEAD(&pipe->entities);
404 pipe->state = VSP1_PIPELINE_STOPPED;
405 pipe->buffers_ready = 0;
406 pipe->num_inputs = 0;
407 pipe->output = NULL;
408 pipe->bru = NULL;
409 pipe->lif = NULL;
410 pipe->uds = NULL;
411 }
412
413 static int vsp1_pipeline_validate(struct vsp1_pipeline *pipe,
414 struct vsp1_video *video)
415 {
416 struct media_entity_graph graph;
417 struct media_entity *entity = &video->video.entity;
418 struct media_device *mdev = entity->graph_obj.mdev;
419 unsigned int i;
420 int ret;
421
422 mutex_lock(&mdev->graph_mutex);
423
424 /* Walk the graph to locate the entities and video nodes. */
425 ret = media_entity_graph_walk_init(&graph, mdev);
426 if (ret) {
427 mutex_unlock(&mdev->graph_mutex);
428 return ret;
429 }
430
431 media_entity_graph_walk_start(&graph, entity);
432
433 while ((entity = media_entity_graph_walk_next(&graph))) {
434 struct v4l2_subdev *subdev;
435 struct vsp1_rwpf *rwpf;
436 struct vsp1_entity *e;
437
438 if (is_media_entity_v4l2_io(entity))
439 continue;
440
441 subdev = media_entity_to_v4l2_subdev(entity);
442 e = to_vsp1_entity(subdev);
443 list_add_tail(&e->list_pipe, &pipe->entities);
444
445 if (e->type == VSP1_ENTITY_RPF) {
446 rwpf = to_rwpf(subdev);
447 pipe->inputs[pipe->num_inputs++] = rwpf;
448 rwpf->video->pipe_index = pipe->num_inputs;
449 } else if (e->type == VSP1_ENTITY_WPF) {
450 rwpf = to_rwpf(subdev);
451 pipe->output = to_rwpf(subdev);
452 rwpf->video->pipe_index = 0;
453 } else if (e->type == VSP1_ENTITY_LIF) {
454 pipe->lif = e;
455 } else if (e->type == VSP1_ENTITY_BRU) {
456 pipe->bru = e;
457 }
458 }
459
460 mutex_unlock(&mdev->graph_mutex);
461
462 media_entity_graph_walk_cleanup(&graph);
463
464 /* We need one output and at least one input. */
465 if (pipe->num_inputs == 0 || !pipe->output) {
466 ret = -EPIPE;
467 goto error;
468 }
469
470 /* Follow links downstream for each input and make sure the graph
471 * contains no loop and that all branches end at the output WPF.
472 */
473 for (i = 0; i < pipe->num_inputs; ++i) {
474 ret = vsp1_pipeline_validate_branch(pipe, pipe->inputs[i],
475 pipe->output);
476 if (ret < 0)
477 goto error;
478 }
479
480 return 0;
481
482 error:
483 __vsp1_pipeline_cleanup(pipe);
484 return ret;
485 }
486
487 static int vsp1_pipeline_init(struct vsp1_pipeline *pipe,
488 struct vsp1_video *video)
489 {
490 int ret;
491
492 mutex_lock(&pipe->lock);
493
494 /* If we're the first user validate and initialize the pipeline. */
495 if (pipe->use_count == 0) {
496 ret = vsp1_pipeline_validate(pipe, video);
497 if (ret < 0)
498 goto done;
499 }
500
501 pipe->use_count++;
502 ret = 0;
503
504 done:
505 mutex_unlock(&pipe->lock);
506 return ret;
507 }
508
509 static void vsp1_pipeline_cleanup(struct vsp1_pipeline *pipe)
510 {
511 mutex_lock(&pipe->lock);
512
513 /* If we're the last user clean up the pipeline. */
514 if (--pipe->use_count == 0)
515 __vsp1_pipeline_cleanup(pipe);
516
517 mutex_unlock(&pipe->lock);
518 }
519
520 static void vsp1_pipeline_run(struct vsp1_pipeline *pipe)
521 {
522 struct vsp1_device *vsp1 = pipe->output->entity.vsp1;
523
524 vsp1_write(vsp1, VI6_CMD(pipe->output->entity.index), VI6_CMD_STRCMD);
525 pipe->state = VSP1_PIPELINE_RUNNING;
526 pipe->buffers_ready = 0;
527 }
528
529 static bool vsp1_pipeline_stopped(struct vsp1_pipeline *pipe)
530 {
531 unsigned long flags;
532 bool stopped;
533
534 spin_lock_irqsave(&pipe->irqlock, flags);
535 stopped = pipe->state == VSP1_PIPELINE_STOPPED;
536 spin_unlock_irqrestore(&pipe->irqlock, flags);
537
538 return stopped;
539 }
540
541 static int vsp1_pipeline_stop(struct vsp1_pipeline *pipe)
542 {
543 struct vsp1_entity *entity;
544 unsigned long flags;
545 int ret;
546
547 spin_lock_irqsave(&pipe->irqlock, flags);
548 if (pipe->state == VSP1_PIPELINE_RUNNING)
549 pipe->state = VSP1_PIPELINE_STOPPING;
550 spin_unlock_irqrestore(&pipe->irqlock, flags);
551
552 ret = wait_event_timeout(pipe->wq, vsp1_pipeline_stopped(pipe),
553 msecs_to_jiffies(500));
554 ret = ret == 0 ? -ETIMEDOUT : 0;
555
556 list_for_each_entry(entity, &pipe->entities, list_pipe) {
557 if (entity->route && entity->route->reg)
558 vsp1_write(entity->vsp1, entity->route->reg,
559 VI6_DPR_NODE_UNUSED);
560
561 v4l2_subdev_call(&entity->subdev, video, s_stream, 0);
562 }
563
564 return ret;
565 }
566
567 static bool vsp1_pipeline_ready(struct vsp1_pipeline *pipe)
568 {
569 unsigned int mask;
570
571 mask = ((1 << pipe->num_inputs) - 1) << 1;
572 if (!pipe->lif)
573 mask |= 1 << 0;
574
575 return pipe->buffers_ready == mask;
576 }
577
578 /*
579 * vsp1_video_complete_buffer - Complete the current buffer
580 * @video: the video node
581 *
582 * This function completes the current buffer by filling its sequence number,
583 * time stamp and payload size, and hands it back to the videobuf core.
584 *
585 * When operating in DU output mode (deep pipeline to the DU through the LIF),
586 * the VSP1 needs to constantly supply frames to the display. In that case, if
587 * no other buffer is queued, reuse the one that has just been processed instead
588 * of handing it back to the videobuf core.
589 *
590 * Return the next queued buffer or NULL if the queue is empty.
591 */
592 static struct vsp1_vb2_buffer *
593 vsp1_video_complete_buffer(struct vsp1_video *video)
594 {
595 struct vsp1_pipeline *pipe = to_vsp1_pipeline(&video->video.entity);
596 struct vsp1_vb2_buffer *next = NULL;
597 struct vsp1_vb2_buffer *done;
598 unsigned long flags;
599 unsigned int i;
600
601 spin_lock_irqsave(&video->irqlock, flags);
602
603 if (list_empty(&video->irqqueue)) {
604 spin_unlock_irqrestore(&video->irqlock, flags);
605 return NULL;
606 }
607
608 done = list_first_entry(&video->irqqueue,
609 struct vsp1_vb2_buffer, queue);
610
611 /* In DU output mode reuse the buffer if the list is singular. */
612 if (pipe->lif && list_is_singular(&video->irqqueue)) {
613 spin_unlock_irqrestore(&video->irqlock, flags);
614 return done;
615 }
616
617 list_del(&done->queue);
618
619 if (!list_empty(&video->irqqueue))
620 next = list_first_entry(&video->irqqueue,
621 struct vsp1_vb2_buffer, queue);
622
623 spin_unlock_irqrestore(&video->irqlock, flags);
624
625 done->buf.sequence = video->sequence++;
626 done->buf.vb2_buf.timestamp = ktime_get_ns();
627 for (i = 0; i < done->buf.vb2_buf.num_planes; ++i)
628 vb2_set_plane_payload(&done->buf.vb2_buf, i,
629 done->mem.length[i]);
630 vb2_buffer_done(&done->buf.vb2_buf, VB2_BUF_STATE_DONE);
631
632 return next;
633 }
634
635 static void vsp1_video_frame_end(struct vsp1_pipeline *pipe,
636 struct vsp1_video *video)
637 {
638 struct vsp1_vb2_buffer *buf;
639 unsigned long flags;
640
641 buf = vsp1_video_complete_buffer(video);
642 if (buf == NULL)
643 return;
644
645 spin_lock_irqsave(&pipe->irqlock, flags);
646
647 video->rwpf->ops->set_memory(video->rwpf, &buf->mem);
648 pipe->buffers_ready |= 1 << video->pipe_index;
649
650 spin_unlock_irqrestore(&pipe->irqlock, flags);
651 }
652
653 void vsp1_pipeline_frame_end(struct vsp1_pipeline *pipe)
654 {
655 enum vsp1_pipeline_state state;
656 unsigned long flags;
657 unsigned int i;
658
659 if (pipe == NULL)
660 return;
661
662 /* Complete buffers on all video nodes. */
663 for (i = 0; i < pipe->num_inputs; ++i)
664 vsp1_video_frame_end(pipe, pipe->inputs[i]->video);
665
666 if (!pipe->lif)
667 vsp1_video_frame_end(pipe, pipe->output->video);
668
669 spin_lock_irqsave(&pipe->irqlock, flags);
670
671 state = pipe->state;
672 pipe->state = VSP1_PIPELINE_STOPPED;
673
674 /* If a stop has been requested, mark the pipeline as stopped and
675 * return.
676 */
677 if (state == VSP1_PIPELINE_STOPPING) {
678 wake_up(&pipe->wq);
679 goto done;
680 }
681
682 /* Restart the pipeline if ready. */
683 if (vsp1_pipeline_ready(pipe))
684 vsp1_pipeline_run(pipe);
685
686 done:
687 spin_unlock_irqrestore(&pipe->irqlock, flags);
688 }
689
690 /*
691 * Propagate the alpha value through the pipeline.
692 *
693 * As the UDS has restricted scaling capabilities when the alpha component needs
694 * to be scaled, we disable alpha scaling when the UDS input has a fixed alpha
695 * value. The UDS then outputs a fixed alpha value which needs to be programmed
696 * from the input RPF alpha.
697 */
698 void vsp1_pipeline_propagate_alpha(struct vsp1_pipeline *pipe,
699 struct vsp1_entity *input,
700 unsigned int alpha)
701 {
702 struct vsp1_entity *entity;
703 struct media_pad *pad;
704
705 pad = media_entity_remote_pad(&input->pads[RWPF_PAD_SOURCE]);
706
707 while (pad) {
708 if (!is_media_entity_v4l2_subdev(pad->entity))
709 break;
710
711 entity = to_vsp1_entity(media_entity_to_v4l2_subdev(pad->entity));
712
713 /* The BRU background color has a fixed alpha value set to 255,
714 * the output alpha value is thus always equal to 255.
715 */
716 if (entity->type == VSP1_ENTITY_BRU)
717 alpha = 255;
718
719 if (entity->type == VSP1_ENTITY_UDS) {
720 struct vsp1_uds *uds = to_uds(&entity->subdev);
721
722 vsp1_uds_set_alpha(uds, alpha);
723 break;
724 }
725
726 pad = &entity->pads[entity->source_pad];
727 pad = media_entity_remote_pad(pad);
728 }
729 }
730
731 void vsp1_pipelines_suspend(struct vsp1_device *vsp1)
732 {
733 unsigned long flags;
734 unsigned int i;
735 int ret;
736
737 /* To avoid increasing the system suspend time needlessly, loop over the
738 * pipelines twice, first to set them all to the stopping state, and then
739 * to wait for the stop to complete.
740 */
741 for (i = 0; i < vsp1->pdata.wpf_count; ++i) {
742 struct vsp1_rwpf *wpf = vsp1->wpf[i];
743 struct vsp1_pipeline *pipe;
744
745 if (wpf == NULL)
746 continue;
747
748 pipe = to_vsp1_pipeline(&wpf->entity.subdev.entity);
749 if (pipe == NULL)
750 continue;
751
752 spin_lock_irqsave(&pipe->irqlock, flags);
753 if (pipe->state == VSP1_PIPELINE_RUNNING)
754 pipe->state = VSP1_PIPELINE_STOPPING;
755 spin_unlock_irqrestore(&pipe->irqlock, flags);
756 }
757
758 for (i = 0; i < vsp1->pdata.wpf_count; ++i) {
759 struct vsp1_rwpf *wpf = vsp1->wpf[i];
760 struct vsp1_pipeline *pipe;
761
762 if (wpf == NULL)
763 continue;
764
765 pipe = to_vsp1_pipeline(&wpf->entity.subdev.entity);
766 if (pipe == NULL)
767 continue;
768
769 ret = wait_event_timeout(pipe->wq, vsp1_pipeline_stopped(pipe),
770 msecs_to_jiffies(500));
771 if (ret == 0)
772 dev_warn(vsp1->dev, "pipeline %u stop timeout\n",
773 wpf->entity.index);
774 }
775 }
776
777 void vsp1_pipelines_resume(struct vsp1_device *vsp1)
778 {
779 unsigned int i;
780
781 /* Resume pipeline all running pipelines. */
782 for (i = 0; i < vsp1->pdata.wpf_count; ++i) {
783 struct vsp1_rwpf *wpf = vsp1->wpf[i];
784 struct vsp1_pipeline *pipe;
785
786 if (wpf == NULL)
787 continue;
788
789 pipe = to_vsp1_pipeline(&wpf->entity.subdev.entity);
790 if (pipe == NULL)
791 continue;
792
793 if (vsp1_pipeline_ready(pipe))
794 vsp1_pipeline_run(pipe);
795 }
796 }
797
798 /* -----------------------------------------------------------------------------
799 * videobuf2 Queue Operations
800 */
801
802 static int
803 vsp1_video_queue_setup(struct vb2_queue *vq,
804 unsigned int *nbuffers, unsigned int *nplanes,
805 unsigned int sizes[], void *alloc_ctxs[])
806 {
807 struct vsp1_video *video = vb2_get_drv_priv(vq);
808 const struct v4l2_pix_format_mplane *format = &video->rwpf->format;
809 unsigned int i;
810
811 if (*nplanes) {
812 if (*nplanes != format->num_planes)
813 return -EINVAL;
814
815 for (i = 0; i < *nplanes; i++) {
816 if (sizes[i] < format->plane_fmt[i].sizeimage)
817 return -EINVAL;
818 alloc_ctxs[i] = video->alloc_ctx;
819 }
820 return 0;
821 }
822
823 *nplanes = format->num_planes;
824
825 for (i = 0; i < format->num_planes; ++i) {
826 sizes[i] = format->plane_fmt[i].sizeimage;
827 alloc_ctxs[i] = video->alloc_ctx;
828 }
829
830 return 0;
831 }
832
833 static int vsp1_video_buffer_prepare(struct vb2_buffer *vb)
834 {
835 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
836 struct vsp1_video *video = vb2_get_drv_priv(vb->vb2_queue);
837 struct vsp1_vb2_buffer *buf = to_vsp1_vb2_buffer(vbuf);
838 const struct v4l2_pix_format_mplane *format = &video->rwpf->format;
839 unsigned int i;
840
841 if (vb->num_planes < format->num_planes)
842 return -EINVAL;
843
844 buf->mem.num_planes = vb->num_planes;
845
846 for (i = 0; i < vb->num_planes; ++i) {
847 buf->mem.addr[i] = vb2_dma_contig_plane_dma_addr(vb, i);
848 buf->mem.length[i] = vb2_plane_size(vb, i);
849
850 if (buf->mem.length[i] < format->plane_fmt[i].sizeimage)
851 return -EINVAL;
852 }
853
854 return 0;
855 }
856
857 static void vsp1_video_buffer_queue(struct vb2_buffer *vb)
858 {
859 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
860 struct vsp1_video *video = vb2_get_drv_priv(vb->vb2_queue);
861 struct vsp1_pipeline *pipe = to_vsp1_pipeline(&video->video.entity);
862 struct vsp1_vb2_buffer *buf = to_vsp1_vb2_buffer(vbuf);
863 unsigned long flags;
864 bool empty;
865
866 spin_lock_irqsave(&video->irqlock, flags);
867 empty = list_empty(&video->irqqueue);
868 list_add_tail(&buf->queue, &video->irqqueue);
869 spin_unlock_irqrestore(&video->irqlock, flags);
870
871 if (!empty)
872 return;
873
874 spin_lock_irqsave(&pipe->irqlock, flags);
875
876 video->rwpf->ops->set_memory(video->rwpf, &buf->mem);
877 pipe->buffers_ready |= 1 << video->pipe_index;
878
879 if (vb2_is_streaming(&video->queue) &&
880 vsp1_pipeline_ready(pipe))
881 vsp1_pipeline_run(pipe);
882
883 spin_unlock_irqrestore(&pipe->irqlock, flags);
884 }
885
886 static void vsp1_entity_route_setup(struct vsp1_entity *source)
887 {
888 struct vsp1_entity *sink;
889
890 if (source->route->reg == 0)
891 return;
892
893 sink = container_of(source->sink, struct vsp1_entity, subdev.entity);
894 vsp1_write(source->vsp1, source->route->reg,
895 sink->route->inputs[source->sink_pad]);
896 }
897
898 static int vsp1_video_start_streaming(struct vb2_queue *vq, unsigned int count)
899 {
900 struct vsp1_video *video = vb2_get_drv_priv(vq);
901 struct vsp1_pipeline *pipe = to_vsp1_pipeline(&video->video.entity);
902 struct vsp1_entity *entity;
903 unsigned long flags;
904 int ret;
905
906 mutex_lock(&pipe->lock);
907 if (pipe->stream_count == pipe->num_inputs) {
908 if (pipe->uds) {
909 struct vsp1_uds *uds = to_uds(&pipe->uds->subdev);
910
911 /* If a BRU is present in the pipeline before the UDS,
912 * the alpha component doesn't need to be scaled as the
913 * BRU output alpha value is fixed to 255. Otherwise we
914 * need to scale the alpha component only when available
915 * at the input RPF.
916 */
917 if (pipe->uds_input->type == VSP1_ENTITY_BRU) {
918 uds->scale_alpha = false;
919 } else {
920 struct vsp1_rwpf *rpf =
921 to_rwpf(&pipe->uds_input->subdev);
922
923 uds->scale_alpha = rpf->fmtinfo->alpha;
924 }
925 }
926
927 list_for_each_entry(entity, &pipe->entities, list_pipe) {
928 vsp1_entity_route_setup(entity);
929
930 ret = v4l2_subdev_call(&entity->subdev, video,
931 s_stream, 1);
932 if (ret < 0) {
933 mutex_unlock(&pipe->lock);
934 return ret;
935 }
936 }
937 }
938
939 pipe->stream_count++;
940 mutex_unlock(&pipe->lock);
941
942 spin_lock_irqsave(&pipe->irqlock, flags);
943 if (vsp1_pipeline_ready(pipe))
944 vsp1_pipeline_run(pipe);
945 spin_unlock_irqrestore(&pipe->irqlock, flags);
946
947 return 0;
948 }
949
950 static void vsp1_video_stop_streaming(struct vb2_queue *vq)
951 {
952 struct vsp1_video *video = vb2_get_drv_priv(vq);
953 struct vsp1_pipeline *pipe = to_vsp1_pipeline(&video->video.entity);
954 struct vsp1_vb2_buffer *buffer;
955 unsigned long flags;
956 int ret;
957
958 mutex_lock(&pipe->lock);
959 if (--pipe->stream_count == 0) {
960 /* Stop the pipeline. */
961 ret = vsp1_pipeline_stop(pipe);
962 if (ret == -ETIMEDOUT)
963 dev_err(video->vsp1->dev, "pipeline stop timeout\n");
964 }
965 mutex_unlock(&pipe->lock);
966
967 vsp1_pipeline_cleanup(pipe);
968 media_entity_pipeline_stop(&video->video.entity);
969
970 /* Remove all buffers from the IRQ queue. */
971 spin_lock_irqsave(&video->irqlock, flags);
972 list_for_each_entry(buffer, &video->irqqueue, queue)
973 vb2_buffer_done(&buffer->buf.vb2_buf, VB2_BUF_STATE_ERROR);
974 INIT_LIST_HEAD(&video->irqqueue);
975 spin_unlock_irqrestore(&video->irqlock, flags);
976 }
977
978 static struct vb2_ops vsp1_video_queue_qops = {
979 .queue_setup = vsp1_video_queue_setup,
980 .buf_prepare = vsp1_video_buffer_prepare,
981 .buf_queue = vsp1_video_buffer_queue,
982 .wait_prepare = vb2_ops_wait_prepare,
983 .wait_finish = vb2_ops_wait_finish,
984 .start_streaming = vsp1_video_start_streaming,
985 .stop_streaming = vsp1_video_stop_streaming,
986 };
987
988 /* -----------------------------------------------------------------------------
989 * V4L2 ioctls
990 */
991
992 static int
993 vsp1_video_querycap(struct file *file, void *fh, struct v4l2_capability *cap)
994 {
995 struct v4l2_fh *vfh = file->private_data;
996 struct vsp1_video *video = to_vsp1_video(vfh->vdev);
997
998 cap->capabilities = V4L2_CAP_DEVICE_CAPS | V4L2_CAP_STREAMING
999 | V4L2_CAP_VIDEO_CAPTURE_MPLANE
1000 | V4L2_CAP_VIDEO_OUTPUT_MPLANE;
1001
1002 if (video->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
1003 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE_MPLANE
1004 | V4L2_CAP_STREAMING;
1005 else
1006 cap->device_caps = V4L2_CAP_VIDEO_OUTPUT_MPLANE
1007 | V4L2_CAP_STREAMING;
1008
1009 strlcpy(cap->driver, "vsp1", sizeof(cap->driver));
1010 strlcpy(cap->card, video->video.name, sizeof(cap->card));
1011 snprintf(cap->bus_info, sizeof(cap->bus_info), "platform:%s",
1012 dev_name(video->vsp1->dev));
1013
1014 return 0;
1015 }
1016
1017 static int
1018 vsp1_video_get_format(struct file *file, void *fh, struct v4l2_format *format)
1019 {
1020 struct v4l2_fh *vfh = file->private_data;
1021 struct vsp1_video *video = to_vsp1_video(vfh->vdev);
1022
1023 if (format->type != video->queue.type)
1024 return -EINVAL;
1025
1026 mutex_lock(&video->lock);
1027 format->fmt.pix_mp = video->rwpf->format;
1028 mutex_unlock(&video->lock);
1029
1030 return 0;
1031 }
1032
1033 static int
1034 vsp1_video_try_format(struct file *file, void *fh, struct v4l2_format *format)
1035 {
1036 struct v4l2_fh *vfh = file->private_data;
1037 struct vsp1_video *video = to_vsp1_video(vfh->vdev);
1038
1039 if (format->type != video->queue.type)
1040 return -EINVAL;
1041
1042 return __vsp1_video_try_format(video, &format->fmt.pix_mp, NULL);
1043 }
1044
1045 static int
1046 vsp1_video_set_format(struct file *file, void *fh, struct v4l2_format *format)
1047 {
1048 struct v4l2_fh *vfh = file->private_data;
1049 struct vsp1_video *video = to_vsp1_video(vfh->vdev);
1050 const struct vsp1_format_info *info;
1051 int ret;
1052
1053 if (format->type != video->queue.type)
1054 return -EINVAL;
1055
1056 ret = __vsp1_video_try_format(video, &format->fmt.pix_mp, &info);
1057 if (ret < 0)
1058 return ret;
1059
1060 mutex_lock(&video->lock);
1061
1062 if (vb2_is_busy(&video->queue)) {
1063 ret = -EBUSY;
1064 goto done;
1065 }
1066
1067 video->rwpf->format = format->fmt.pix_mp;
1068 video->rwpf->fmtinfo = info;
1069
1070 done:
1071 mutex_unlock(&video->lock);
1072 return ret;
1073 }
1074
1075 static int
1076 vsp1_video_streamon(struct file *file, void *fh, enum v4l2_buf_type type)
1077 {
1078 struct v4l2_fh *vfh = file->private_data;
1079 struct vsp1_video *video = to_vsp1_video(vfh->vdev);
1080 struct vsp1_pipeline *pipe;
1081 int ret;
1082
1083 if (video->queue.owner && video->queue.owner != file->private_data)
1084 return -EBUSY;
1085
1086 video->sequence = 0;
1087
1088 /* Start streaming on the pipeline. No link touching an entity in the
1089 * pipeline can be activated or deactivated once streaming is started.
1090 *
1091 * Use the VSP1 pipeline object embedded in the first video object that
1092 * starts streaming.
1093 */
1094 pipe = video->video.entity.pipe
1095 ? to_vsp1_pipeline(&video->video.entity) : &video->pipe;
1096
1097 ret = media_entity_pipeline_start(&video->video.entity, &pipe->pipe);
1098 if (ret < 0)
1099 return ret;
1100
1101 /* Verify that the configured format matches the output of the connected
1102 * subdev.
1103 */
1104 ret = vsp1_video_verify_format(video);
1105 if (ret < 0)
1106 goto err_stop;
1107
1108 ret = vsp1_pipeline_init(pipe, video);
1109 if (ret < 0)
1110 goto err_stop;
1111
1112 /* Start the queue. */
1113 ret = vb2_streamon(&video->queue, type);
1114 if (ret < 0)
1115 goto err_cleanup;
1116
1117 return 0;
1118
1119 err_cleanup:
1120 vsp1_pipeline_cleanup(pipe);
1121 err_stop:
1122 media_entity_pipeline_stop(&video->video.entity);
1123 return ret;
1124 }
1125
1126 static const struct v4l2_ioctl_ops vsp1_video_ioctl_ops = {
1127 .vidioc_querycap = vsp1_video_querycap,
1128 .vidioc_g_fmt_vid_cap_mplane = vsp1_video_get_format,
1129 .vidioc_s_fmt_vid_cap_mplane = vsp1_video_set_format,
1130 .vidioc_try_fmt_vid_cap_mplane = vsp1_video_try_format,
1131 .vidioc_g_fmt_vid_out_mplane = vsp1_video_get_format,
1132 .vidioc_s_fmt_vid_out_mplane = vsp1_video_set_format,
1133 .vidioc_try_fmt_vid_out_mplane = vsp1_video_try_format,
1134 .vidioc_reqbufs = vb2_ioctl_reqbufs,
1135 .vidioc_querybuf = vb2_ioctl_querybuf,
1136 .vidioc_qbuf = vb2_ioctl_qbuf,
1137 .vidioc_dqbuf = vb2_ioctl_dqbuf,
1138 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1139 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
1140 .vidioc_streamon = vsp1_video_streamon,
1141 .vidioc_streamoff = vb2_ioctl_streamoff,
1142 };
1143
1144 /* -----------------------------------------------------------------------------
1145 * V4L2 File Operations
1146 */
1147
1148 static int vsp1_video_open(struct file *file)
1149 {
1150 struct vsp1_video *video = video_drvdata(file);
1151 struct v4l2_fh *vfh;
1152 int ret = 0;
1153
1154 vfh = kzalloc(sizeof(*vfh), GFP_KERNEL);
1155 if (vfh == NULL)
1156 return -ENOMEM;
1157
1158 v4l2_fh_init(vfh, &video->video);
1159 v4l2_fh_add(vfh);
1160
1161 file->private_data = vfh;
1162
1163 ret = vsp1_device_get(video->vsp1);
1164 if (ret < 0) {
1165 v4l2_fh_del(vfh);
1166 kfree(vfh);
1167 }
1168
1169 return ret;
1170 }
1171
1172 static int vsp1_video_release(struct file *file)
1173 {
1174 struct vsp1_video *video = video_drvdata(file);
1175 struct v4l2_fh *vfh = file->private_data;
1176
1177 mutex_lock(&video->lock);
1178 if (video->queue.owner == vfh) {
1179 vb2_queue_release(&video->queue);
1180 video->queue.owner = NULL;
1181 }
1182 mutex_unlock(&video->lock);
1183
1184 vsp1_device_put(video->vsp1);
1185
1186 v4l2_fh_release(file);
1187
1188 file->private_data = NULL;
1189
1190 return 0;
1191 }
1192
1193 static struct v4l2_file_operations vsp1_video_fops = {
1194 .owner = THIS_MODULE,
1195 .unlocked_ioctl = video_ioctl2,
1196 .open = vsp1_video_open,
1197 .release = vsp1_video_release,
1198 .poll = vb2_fop_poll,
1199 .mmap = vb2_fop_mmap,
1200 };
1201
1202 /* -----------------------------------------------------------------------------
1203 * Initialization and Cleanup
1204 */
1205
1206 struct vsp1_video *vsp1_video_create(struct vsp1_device *vsp1,
1207 struct vsp1_rwpf *rwpf)
1208 {
1209 struct vsp1_video *video;
1210 const char *direction;
1211 int ret;
1212
1213 video = devm_kzalloc(vsp1->dev, sizeof(*video), GFP_KERNEL);
1214 if (!video)
1215 return ERR_PTR(-ENOMEM);
1216
1217 rwpf->video = video;
1218
1219 video->vsp1 = vsp1;
1220 video->rwpf = rwpf;
1221
1222 if (rwpf->entity.type == VSP1_ENTITY_RPF) {
1223 direction = "input";
1224 video->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
1225 video->pad.flags = MEDIA_PAD_FL_SOURCE;
1226 video->video.vfl_dir = VFL_DIR_TX;
1227 } else {
1228 direction = "output";
1229 video->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
1230 video->pad.flags = MEDIA_PAD_FL_SINK;
1231 video->video.vfl_dir = VFL_DIR_RX;
1232 }
1233
1234 mutex_init(&video->lock);
1235 spin_lock_init(&video->irqlock);
1236 INIT_LIST_HEAD(&video->irqqueue);
1237
1238 mutex_init(&video->pipe.lock);
1239 spin_lock_init(&video->pipe.irqlock);
1240 INIT_LIST_HEAD(&video->pipe.entities);
1241 init_waitqueue_head(&video->pipe.wq);
1242 video->pipe.state = VSP1_PIPELINE_STOPPED;
1243
1244 /* Initialize the media entity... */
1245 ret = media_entity_pads_init(&video->video.entity, 1, &video->pad);
1246 if (ret < 0)
1247 return ERR_PTR(ret);
1248
1249 /* ... and the format ... */
1250 rwpf->fmtinfo = vsp1_get_format_info(VSP1_VIDEO_DEF_FORMAT);
1251 rwpf->format.pixelformat = rwpf->fmtinfo->fourcc;
1252 rwpf->format.colorspace = V4L2_COLORSPACE_SRGB;
1253 rwpf->format.field = V4L2_FIELD_NONE;
1254 rwpf->format.width = VSP1_VIDEO_DEF_WIDTH;
1255 rwpf->format.height = VSP1_VIDEO_DEF_HEIGHT;
1256 rwpf->format.num_planes = 1;
1257 rwpf->format.plane_fmt[0].bytesperline =
1258 rwpf->format.width * rwpf->fmtinfo->bpp[0] / 8;
1259 rwpf->format.plane_fmt[0].sizeimage =
1260 rwpf->format.plane_fmt[0].bytesperline * rwpf->format.height;
1261
1262 /* ... and the video node... */
1263 video->video.v4l2_dev = &video->vsp1->v4l2_dev;
1264 video->video.fops = &vsp1_video_fops;
1265 snprintf(video->video.name, sizeof(video->video.name), "%s %s",
1266 rwpf->entity.subdev.name, direction);
1267 video->video.vfl_type = VFL_TYPE_GRABBER;
1268 video->video.release = video_device_release_empty;
1269 video->video.ioctl_ops = &vsp1_video_ioctl_ops;
1270
1271 video_set_drvdata(&video->video, video);
1272
1273 /* ... and the buffers queue... */
1274 video->alloc_ctx = vb2_dma_contig_init_ctx(video->vsp1->dev);
1275 if (IS_ERR(video->alloc_ctx)) {
1276 ret = PTR_ERR(video->alloc_ctx);
1277 goto error;
1278 }
1279
1280 video->queue.type = video->type;
1281 video->queue.io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
1282 video->queue.lock = &video->lock;
1283 video->queue.drv_priv = video;
1284 video->queue.buf_struct_size = sizeof(struct vsp1_vb2_buffer);
1285 video->queue.ops = &vsp1_video_queue_qops;
1286 video->queue.mem_ops = &vb2_dma_contig_memops;
1287 video->queue.timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
1288 ret = vb2_queue_init(&video->queue);
1289 if (ret < 0) {
1290 dev_err(video->vsp1->dev, "failed to initialize vb2 queue\n");
1291 goto error;
1292 }
1293
1294 /* ... and register the video device. */
1295 video->video.queue = &video->queue;
1296 ret = video_register_device(&video->video, VFL_TYPE_GRABBER, -1);
1297 if (ret < 0) {
1298 dev_err(video->vsp1->dev, "failed to register video device\n");
1299 goto error;
1300 }
1301
1302 return video;
1303
1304 error:
1305 vb2_dma_contig_cleanup_ctx(video->alloc_ctx);
1306 vsp1_video_cleanup(video);
1307 return ERR_PTR(ret);
1308 }
1309
1310 void vsp1_video_cleanup(struct vsp1_video *video)
1311 {
1312 if (video_is_registered(&video->video))
1313 video_unregister_device(&video->video);
1314
1315 vb2_dma_contig_cleanup_ctx(video->alloc_ctx);
1316 media_entity_cleanup(&video->video.entity);
1317 }
This page took 0.080284 seconds and 5 git commands to generate.