1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2018 Intel Corporation
3
4 #include <linux/module.h>
5 #include <linux/pm_runtime.h>
6
7 #include <media/v4l2-event.h>
8 #include <media/v4l2-ioctl.h>
9
10 #include "ipu3.h"
11 #include "ipu3-dmamap.h"
12
13 /******************** v4l2_subdev_ops ********************/
14
15 #define IPU3_RUNNING_MODE_VIDEO 0
16 #define IPU3_RUNNING_MODE_STILL 1
17
imgu_subdev_open(struct v4l2_subdev * sd,struct v4l2_subdev_fh * fh)18 static int imgu_subdev_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
19 {
20 struct imgu_v4l2_subdev *imgu_sd = container_of(sd,
21 struct imgu_v4l2_subdev,
22 subdev);
23 struct imgu_device *imgu = v4l2_get_subdevdata(sd);
24 struct imgu_media_pipe *imgu_pipe = &imgu->imgu_pipe[imgu_sd->pipe];
25 struct v4l2_rect try_crop = {
26 .top = 0,
27 .left = 0,
28 };
29 unsigned int i;
30
31 try_crop.width =
32 imgu_pipe->nodes[IMGU_NODE_IN].vdev_fmt.fmt.pix_mp.width;
33 try_crop.height =
34 imgu_pipe->nodes[IMGU_NODE_IN].vdev_fmt.fmt.pix_mp.height;
35
36 /* Initialize try_fmt */
37 for (i = 0; i < IMGU_NODE_NUM; i++) {
38 struct v4l2_mbus_framefmt *try_fmt =
39 v4l2_subdev_get_try_format(sd, fh->state, i);
40
41 try_fmt->width = try_crop.width;
42 try_fmt->height = try_crop.height;
43 try_fmt->code = imgu_pipe->nodes[i].pad_fmt.code;
44 try_fmt->field = V4L2_FIELD_NONE;
45 }
46
47 *v4l2_subdev_get_try_crop(sd, fh->state, IMGU_NODE_IN) = try_crop;
48 *v4l2_subdev_get_try_compose(sd, fh->state, IMGU_NODE_IN) = try_crop;
49
50 return 0;
51 }
52
imgu_subdev_s_stream(struct v4l2_subdev * sd,int enable)53 static int imgu_subdev_s_stream(struct v4l2_subdev *sd, int enable)
54 {
55 int i;
56 unsigned int node;
57 int r = 0;
58 struct imgu_device *imgu = v4l2_get_subdevdata(sd);
59 struct imgu_v4l2_subdev *imgu_sd = container_of(sd,
60 struct imgu_v4l2_subdev,
61 subdev);
62 unsigned int pipe = imgu_sd->pipe;
63 struct device *dev = &imgu->pci_dev->dev;
64 struct v4l2_pix_format_mplane *fmts[IPU3_CSS_QUEUES] = { NULL };
65 struct v4l2_rect *rects[IPU3_CSS_RECTS] = { NULL };
66 struct imgu_css_pipe *css_pipe = &imgu->css.pipes[pipe];
67 struct imgu_media_pipe *imgu_pipe = &imgu->imgu_pipe[pipe];
68
69 dev_dbg(dev, "%s %d for pipe %u", __func__, enable, pipe);
70 /* grab ctrl after streamon and return after off */
71 v4l2_ctrl_grab(imgu_sd->ctrl, enable);
72
73 if (!enable) {
74 imgu_sd->active = false;
75 return 0;
76 }
77
78 for (i = 0; i < IMGU_NODE_NUM; i++)
79 imgu_pipe->queue_enabled[i] = imgu_pipe->nodes[i].enabled;
80
81 /* This is handled specially */
82 imgu_pipe->queue_enabled[IPU3_CSS_QUEUE_PARAMS] = false;
83
84 /* Initialize CSS formats */
85 for (i = 0; i < IPU3_CSS_QUEUES; i++) {
86 node = imgu_map_node(imgu, i);
87 /* No need to reconfig meta nodes */
88 if (node == IMGU_NODE_STAT_3A || node == IMGU_NODE_PARAMS)
89 continue;
90 fmts[i] = imgu_pipe->queue_enabled[node] ?
91 &imgu_pipe->nodes[node].vdev_fmt.fmt.pix_mp : NULL;
92 }
93
94 /* Enable VF output only when VF queue requested by user */
95 css_pipe->vf_output_en = false;
96 if (imgu_pipe->nodes[IMGU_NODE_VF].enabled)
97 css_pipe->vf_output_en = true;
98
99 if (atomic_read(&imgu_sd->running_mode) == IPU3_RUNNING_MODE_VIDEO)
100 css_pipe->pipe_id = IPU3_CSS_PIPE_ID_VIDEO;
101 else
102 css_pipe->pipe_id = IPU3_CSS_PIPE_ID_CAPTURE;
103
104 dev_dbg(dev, "IPU3 pipe %u pipe_id %u", pipe, css_pipe->pipe_id);
105
106 rects[IPU3_CSS_RECT_EFFECTIVE] = &imgu_sd->rect.eff;
107 rects[IPU3_CSS_RECT_BDS] = &imgu_sd->rect.bds;
108 rects[IPU3_CSS_RECT_GDC] = &imgu_sd->rect.gdc;
109
110 r = imgu_css_fmt_set(&imgu->css, fmts, rects, pipe);
111 if (r) {
112 dev_err(dev, "failed to set initial formats pipe %u with (%d)",
113 pipe, r);
114 return r;
115 }
116
117 imgu_sd->active = true;
118
119 return 0;
120 }
121
imgu_subdev_get_fmt(struct v4l2_subdev * sd,struct v4l2_subdev_state * sd_state,struct v4l2_subdev_format * fmt)122 static int imgu_subdev_get_fmt(struct v4l2_subdev *sd,
123 struct v4l2_subdev_state *sd_state,
124 struct v4l2_subdev_format *fmt)
125 {
126 struct imgu_device *imgu = v4l2_get_subdevdata(sd);
127 struct v4l2_mbus_framefmt *mf;
128 struct imgu_media_pipe *imgu_pipe;
129 u32 pad = fmt->pad;
130 struct imgu_v4l2_subdev *imgu_sd = container_of(sd,
131 struct imgu_v4l2_subdev,
132 subdev);
133 unsigned int pipe = imgu_sd->pipe;
134
135 imgu_pipe = &imgu->imgu_pipe[pipe];
136 if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE) {
137 fmt->format = imgu_pipe->nodes[pad].pad_fmt;
138 } else {
139 mf = v4l2_subdev_get_try_format(sd, sd_state, pad);
140 fmt->format = *mf;
141 }
142
143 return 0;
144 }
145
imgu_subdev_set_fmt(struct v4l2_subdev * sd,struct v4l2_subdev_state * sd_state,struct v4l2_subdev_format * fmt)146 static int imgu_subdev_set_fmt(struct v4l2_subdev *sd,
147 struct v4l2_subdev_state *sd_state,
148 struct v4l2_subdev_format *fmt)
149 {
150 struct imgu_media_pipe *imgu_pipe;
151 struct imgu_device *imgu = v4l2_get_subdevdata(sd);
152 struct imgu_v4l2_subdev *imgu_sd = container_of(sd,
153 struct imgu_v4l2_subdev,
154 subdev);
155 struct v4l2_mbus_framefmt *mf;
156 u32 pad = fmt->pad;
157 unsigned int pipe = imgu_sd->pipe;
158
159 dev_dbg(&imgu->pci_dev->dev, "set subdev %u pad %u fmt to [%ux%u]",
160 pipe, pad, fmt->format.width, fmt->format.height);
161
162 imgu_pipe = &imgu->imgu_pipe[pipe];
163 if (fmt->which == V4L2_SUBDEV_FORMAT_TRY)
164 mf = v4l2_subdev_get_try_format(sd, sd_state, pad);
165 else
166 mf = &imgu_pipe->nodes[pad].pad_fmt;
167
168 fmt->format.code = mf->code;
169 /* Clamp the w and h based on the hardware capabilities */
170 if (imgu_sd->subdev_pads[pad].flags & MEDIA_PAD_FL_SOURCE) {
171 fmt->format.width = clamp(fmt->format.width,
172 IPU3_OUTPUT_MIN_WIDTH,
173 IPU3_OUTPUT_MAX_WIDTH);
174 fmt->format.height = clamp(fmt->format.height,
175 IPU3_OUTPUT_MIN_HEIGHT,
176 IPU3_OUTPUT_MAX_HEIGHT);
177 } else {
178 fmt->format.width = clamp(fmt->format.width,
179 IPU3_INPUT_MIN_WIDTH,
180 IPU3_INPUT_MAX_WIDTH);
181 fmt->format.height = clamp(fmt->format.height,
182 IPU3_INPUT_MIN_HEIGHT,
183 IPU3_INPUT_MAX_HEIGHT);
184 }
185
186 *mf = fmt->format;
187
188 return 0;
189 }
190
191 static struct v4l2_rect *
imgu_subdev_get_crop(struct imgu_v4l2_subdev * sd,struct v4l2_subdev_state * sd_state,unsigned int pad,enum v4l2_subdev_format_whence which)192 imgu_subdev_get_crop(struct imgu_v4l2_subdev *sd,
193 struct v4l2_subdev_state *sd_state, unsigned int pad,
194 enum v4l2_subdev_format_whence which)
195 {
196 if (which == V4L2_SUBDEV_FORMAT_TRY)
197 return v4l2_subdev_get_try_crop(&sd->subdev, sd_state, pad);
198 else
199 return &sd->rect.eff;
200 }
201
202 static struct v4l2_rect *
imgu_subdev_get_compose(struct imgu_v4l2_subdev * sd,struct v4l2_subdev_state * sd_state,unsigned int pad,enum v4l2_subdev_format_whence which)203 imgu_subdev_get_compose(struct imgu_v4l2_subdev *sd,
204 struct v4l2_subdev_state *sd_state, unsigned int pad,
205 enum v4l2_subdev_format_whence which)
206 {
207 if (which == V4L2_SUBDEV_FORMAT_TRY)
208 return v4l2_subdev_get_try_compose(&sd->subdev, sd_state, pad);
209 else
210 return &sd->rect.bds;
211 }
212
imgu_subdev_get_selection(struct v4l2_subdev * sd,struct v4l2_subdev_state * sd_state,struct v4l2_subdev_selection * sel)213 static int imgu_subdev_get_selection(struct v4l2_subdev *sd,
214 struct v4l2_subdev_state *sd_state,
215 struct v4l2_subdev_selection *sel)
216 {
217 struct imgu_v4l2_subdev *imgu_sd =
218 container_of(sd, struct imgu_v4l2_subdev, subdev);
219
220 if (sel->pad != IMGU_NODE_IN)
221 return -EINVAL;
222
223 switch (sel->target) {
224 case V4L2_SEL_TGT_CROP:
225 sel->r = *imgu_subdev_get_crop(imgu_sd, sd_state, sel->pad,
226 sel->which);
227 return 0;
228 case V4L2_SEL_TGT_COMPOSE:
229 sel->r = *imgu_subdev_get_compose(imgu_sd, sd_state, sel->pad,
230 sel->which);
231 return 0;
232 default:
233 return -EINVAL;
234 }
235 }
236
imgu_subdev_set_selection(struct v4l2_subdev * sd,struct v4l2_subdev_state * sd_state,struct v4l2_subdev_selection * sel)237 static int imgu_subdev_set_selection(struct v4l2_subdev *sd,
238 struct v4l2_subdev_state *sd_state,
239 struct v4l2_subdev_selection *sel)
240 {
241 struct imgu_device *imgu = v4l2_get_subdevdata(sd);
242 struct imgu_v4l2_subdev *imgu_sd =
243 container_of(sd, struct imgu_v4l2_subdev, subdev);
244 struct v4l2_rect *rect;
245
246 dev_dbg(&imgu->pci_dev->dev,
247 "set subdev %u sel which %u target 0x%4x rect [%ux%u]",
248 imgu_sd->pipe, sel->which, sel->target,
249 sel->r.width, sel->r.height);
250
251 if (sel->pad != IMGU_NODE_IN)
252 return -EINVAL;
253
254 switch (sel->target) {
255 case V4L2_SEL_TGT_CROP:
256 rect = imgu_subdev_get_crop(imgu_sd, sd_state, sel->pad,
257 sel->which);
258 break;
259 case V4L2_SEL_TGT_COMPOSE:
260 rect = imgu_subdev_get_compose(imgu_sd, sd_state, sel->pad,
261 sel->which);
262 break;
263 default:
264 return -EINVAL;
265 }
266
267 *rect = sel->r;
268 return 0;
269 }
270
271 /******************** media_entity_operations ********************/
272
imgu_link_setup(struct media_entity * entity,const struct media_pad * local,const struct media_pad * remote,u32 flags)273 static int imgu_link_setup(struct media_entity *entity,
274 const struct media_pad *local,
275 const struct media_pad *remote, u32 flags)
276 {
277 struct imgu_media_pipe *imgu_pipe;
278 struct v4l2_subdev *sd = container_of(entity, struct v4l2_subdev,
279 entity);
280 struct imgu_device *imgu = v4l2_get_subdevdata(sd);
281 struct imgu_v4l2_subdev *imgu_sd = container_of(sd,
282 struct imgu_v4l2_subdev,
283 subdev);
284 unsigned int pipe = imgu_sd->pipe;
285 u32 pad = local->index;
286
287 WARN_ON(pad >= IMGU_NODE_NUM);
288
289 dev_dbg(&imgu->pci_dev->dev, "pipe %u pad %u is %s", pipe, pad,
290 flags & MEDIA_LNK_FL_ENABLED ? "enabled" : "disabled");
291
292 imgu_pipe = &imgu->imgu_pipe[pipe];
293 imgu_pipe->nodes[pad].enabled = flags & MEDIA_LNK_FL_ENABLED;
294
295 /* enable input node to enable the pipe */
296 if (pad != IMGU_NODE_IN)
297 return 0;
298
299 if (flags & MEDIA_LNK_FL_ENABLED)
300 __set_bit(pipe, imgu->css.enabled_pipes);
301 else
302 __clear_bit(pipe, imgu->css.enabled_pipes);
303
304 dev_dbg(&imgu->pci_dev->dev, "pipe %u is %s", pipe,
305 flags & MEDIA_LNK_FL_ENABLED ? "enabled" : "disabled");
306
307 return 0;
308 }
309
310 /******************** vb2_ops ********************/
311
imgu_vb2_buf_init(struct vb2_buffer * vb)312 static int imgu_vb2_buf_init(struct vb2_buffer *vb)
313 {
314 struct sg_table *sg = vb2_dma_sg_plane_desc(vb, 0);
315 struct imgu_device *imgu = vb2_get_drv_priv(vb->vb2_queue);
316 struct imgu_buffer *buf = container_of(vb,
317 struct imgu_buffer, vid_buf.vbb.vb2_buf);
318 struct imgu_video_device *node =
319 container_of(vb->vb2_queue, struct imgu_video_device, vbq);
320 unsigned int queue = imgu_node_to_queue(node->id);
321
322 if (queue == IPU3_CSS_QUEUE_PARAMS)
323 return 0;
324
325 return imgu_dmamap_map_sg(imgu, sg->sgl, sg->nents, &buf->map);
326 }
327
328 /* Called when each buffer is freed */
imgu_vb2_buf_cleanup(struct vb2_buffer * vb)329 static void imgu_vb2_buf_cleanup(struct vb2_buffer *vb)
330 {
331 struct imgu_device *imgu = vb2_get_drv_priv(vb->vb2_queue);
332 struct imgu_buffer *buf = container_of(vb,
333 struct imgu_buffer, vid_buf.vbb.vb2_buf);
334 struct imgu_video_device *node =
335 container_of(vb->vb2_queue, struct imgu_video_device, vbq);
336 unsigned int queue = imgu_node_to_queue(node->id);
337
338 if (queue == IPU3_CSS_QUEUE_PARAMS)
339 return;
340
341 imgu_dmamap_unmap(imgu, &buf->map);
342 }
343
344 /* Transfer buffer ownership to me */
imgu_vb2_buf_queue(struct vb2_buffer * vb)345 static void imgu_vb2_buf_queue(struct vb2_buffer *vb)
346 {
347 struct imgu_device *imgu = vb2_get_drv_priv(vb->vb2_queue);
348 struct imgu_video_device *node =
349 container_of(vb->vb2_queue, struct imgu_video_device, vbq);
350 unsigned int queue = imgu_node_to_queue(node->id);
351 struct imgu_buffer *buf = container_of(vb, struct imgu_buffer,
352 vid_buf.vbb.vb2_buf);
353 unsigned long need_bytes;
354 unsigned long payload = vb2_get_plane_payload(vb, 0);
355
356 if (vb->vb2_queue->type == V4L2_BUF_TYPE_META_CAPTURE ||
357 vb->vb2_queue->type == V4L2_BUF_TYPE_META_OUTPUT)
358 need_bytes = node->vdev_fmt.fmt.meta.buffersize;
359 else
360 need_bytes = node->vdev_fmt.fmt.pix_mp.plane_fmt[0].sizeimage;
361
362 if (queue == IPU3_CSS_QUEUE_PARAMS && payload && payload < need_bytes) {
363 dev_err(&imgu->pci_dev->dev, "invalid data size for params.");
364 vb2_buffer_done(vb, VB2_BUF_STATE_ERROR);
365 return;
366 }
367
368 mutex_lock(&imgu->lock);
369 if (queue != IPU3_CSS_QUEUE_PARAMS)
370 imgu_css_buf_init(&buf->css_buf, queue, buf->map.daddr);
371
372 list_add_tail(&buf->vid_buf.list, &node->buffers);
373 mutex_unlock(&imgu->lock);
374
375 vb2_set_plane_payload(vb, 0, need_bytes);
376
377 mutex_lock(&imgu->streaming_lock);
378 if (imgu->streaming)
379 imgu_queue_buffers(imgu, false, node->pipe);
380 mutex_unlock(&imgu->streaming_lock);
381
382 dev_dbg(&imgu->pci_dev->dev, "%s for pipe %u node %u", __func__,
383 node->pipe, node->id);
384 }
385
imgu_vb2_queue_setup(struct vb2_queue * vq,unsigned int * num_buffers,unsigned int * num_planes,unsigned int sizes[],struct device * alloc_devs[])386 static int imgu_vb2_queue_setup(struct vb2_queue *vq,
387 unsigned int *num_buffers,
388 unsigned int *num_planes,
389 unsigned int sizes[],
390 struct device *alloc_devs[])
391 {
392 struct imgu_device *imgu = vb2_get_drv_priv(vq);
393 struct imgu_video_device *node =
394 container_of(vq, struct imgu_video_device, vbq);
395 const struct v4l2_format *fmt = &node->vdev_fmt;
396 unsigned int size;
397
398 *num_buffers = clamp_val(*num_buffers, 1, VB2_MAX_FRAME);
399 alloc_devs[0] = &imgu->pci_dev->dev;
400
401 if (vq->type == V4L2_BUF_TYPE_META_CAPTURE ||
402 vq->type == V4L2_BUF_TYPE_META_OUTPUT)
403 size = fmt->fmt.meta.buffersize;
404 else
405 size = fmt->fmt.pix_mp.plane_fmt[0].sizeimage;
406
407 if (*num_planes) {
408 if (sizes[0] < size)
409 return -EINVAL;
410 size = sizes[0];
411 }
412
413 *num_planes = 1;
414 sizes[0] = size;
415
416 /* Initialize buffer queue */
417 INIT_LIST_HEAD(&node->buffers);
418
419 return 0;
420 }
421
422 /* Check if all enabled video nodes are streaming, exception ignored */
imgu_all_nodes_streaming(struct imgu_device * imgu,struct imgu_video_device * except)423 static bool imgu_all_nodes_streaming(struct imgu_device *imgu,
424 struct imgu_video_device *except)
425 {
426 unsigned int i, pipe, p;
427 struct imgu_video_device *node;
428 struct device *dev = &imgu->pci_dev->dev;
429
430 pipe = except->pipe;
431 if (!test_bit(pipe, imgu->css.enabled_pipes)) {
432 dev_warn(&imgu->pci_dev->dev,
433 "pipe %u link is not ready yet", pipe);
434 return false;
435 }
436
437 for_each_set_bit(p, imgu->css.enabled_pipes, IMGU_MAX_PIPE_NUM) {
438 for (i = 0; i < IMGU_NODE_NUM; i++) {
439 node = &imgu->imgu_pipe[p].nodes[i];
440 dev_dbg(dev, "%s pipe %u queue %u name %s enabled = %u",
441 __func__, p, i, node->name, node->enabled);
442 if (node == except)
443 continue;
444 if (node->enabled && !vb2_start_streaming_called(&node->vbq))
445 return false;
446 }
447 }
448
449 return true;
450 }
451
imgu_return_all_buffers(struct imgu_device * imgu,struct imgu_video_device * node,enum vb2_buffer_state state)452 static void imgu_return_all_buffers(struct imgu_device *imgu,
453 struct imgu_video_device *node,
454 enum vb2_buffer_state state)
455 {
456 struct imgu_vb2_buffer *b, *b0;
457
458 /* Return all buffers */
459 mutex_lock(&imgu->lock);
460 list_for_each_entry_safe(b, b0, &node->buffers, list) {
461 list_del(&b->list);
462 vb2_buffer_done(&b->vbb.vb2_buf, state);
463 }
464 mutex_unlock(&imgu->lock);
465 }
466
imgu_vb2_start_streaming(struct vb2_queue * vq,unsigned int count)467 static int imgu_vb2_start_streaming(struct vb2_queue *vq, unsigned int count)
468 {
469 struct imgu_media_pipe *imgu_pipe;
470 struct imgu_device *imgu = vb2_get_drv_priv(vq);
471 struct device *dev = &imgu->pci_dev->dev;
472 struct imgu_video_device *node =
473 container_of(vq, struct imgu_video_device, vbq);
474 int r;
475 unsigned int pipe;
476
477 dev_dbg(dev, "%s node name %s pipe %u id %u", __func__,
478 node->name, node->pipe, node->id);
479
480 mutex_lock(&imgu->streaming_lock);
481 if (imgu->streaming) {
482 r = -EBUSY;
483 mutex_unlock(&imgu->streaming_lock);
484 goto fail_return_bufs;
485 }
486 mutex_unlock(&imgu->streaming_lock);
487
488 if (!node->enabled) {
489 dev_err(dev, "IMGU node is not enabled");
490 r = -EINVAL;
491 goto fail_return_bufs;
492 }
493
494 pipe = node->pipe;
495 imgu_pipe = &imgu->imgu_pipe[pipe];
496 r = media_pipeline_start(&node->vdev.entity, &imgu_pipe->pipeline);
497 if (r < 0)
498 goto fail_return_bufs;
499
500 if (!imgu_all_nodes_streaming(imgu, node))
501 return 0;
502
503 for_each_set_bit(pipe, imgu->css.enabled_pipes, IMGU_MAX_PIPE_NUM) {
504 r = v4l2_subdev_call(&imgu->imgu_pipe[pipe].imgu_sd.subdev,
505 video, s_stream, 1);
506 if (r < 0)
507 goto fail_stop_pipeline;
508 }
509
510 /* Start streaming of the whole pipeline now */
511 dev_dbg(dev, "IMGU streaming is ready to start");
512 mutex_lock(&imgu->streaming_lock);
513 r = imgu_s_stream(imgu, true);
514 if (!r)
515 imgu->streaming = true;
516 mutex_unlock(&imgu->streaming_lock);
517
518 return 0;
519
520 fail_stop_pipeline:
521 media_pipeline_stop(&node->vdev.entity);
522 fail_return_bufs:
523 imgu_return_all_buffers(imgu, node, VB2_BUF_STATE_QUEUED);
524
525 return r;
526 }
527
imgu_vb2_stop_streaming(struct vb2_queue * vq)528 static void imgu_vb2_stop_streaming(struct vb2_queue *vq)
529 {
530 struct imgu_media_pipe *imgu_pipe;
531 struct imgu_device *imgu = vb2_get_drv_priv(vq);
532 struct device *dev = &imgu->pci_dev->dev;
533 struct imgu_video_device *node =
534 container_of(vq, struct imgu_video_device, vbq);
535 int r;
536 unsigned int pipe;
537
538 WARN_ON(!node->enabled);
539
540 pipe = node->pipe;
541 dev_dbg(dev, "Try to stream off node [%u][%u]", pipe, node->id);
542 imgu_pipe = &imgu->imgu_pipe[pipe];
543 r = v4l2_subdev_call(&imgu_pipe->imgu_sd.subdev, video, s_stream, 0);
544 if (r)
545 dev_err(&imgu->pci_dev->dev,
546 "failed to stop subdev streaming\n");
547
548 mutex_lock(&imgu->streaming_lock);
549 /* Was this the first node with streaming disabled? */
550 if (imgu->streaming && imgu_all_nodes_streaming(imgu, node)) {
551 /* Yes, really stop streaming now */
552 dev_dbg(dev, "IMGU streaming is ready to stop");
553 r = imgu_s_stream(imgu, false);
554 if (!r)
555 imgu->streaming = false;
556 }
557
558 imgu_return_all_buffers(imgu, node, VB2_BUF_STATE_ERROR);
559 mutex_unlock(&imgu->streaming_lock);
560
561 media_pipeline_stop(&node->vdev.entity);
562 }
563
564 /******************** v4l2_ioctl_ops ********************/
565
566 #define VID_CAPTURE 0
567 #define VID_OUTPUT 1
568 #define DEF_VID_CAPTURE 0
569 #define DEF_VID_OUTPUT 1
570
571 struct imgu_fmt {
572 u32 fourcc;
573 u16 type; /* VID_CAPTURE or VID_OUTPUT not both */
574 };
575
576 /* format descriptions for capture and preview */
577 static const struct imgu_fmt formats[] = {
578 { V4L2_PIX_FMT_NV12, VID_CAPTURE },
579 { V4L2_PIX_FMT_IPU3_SGRBG10, VID_OUTPUT },
580 { V4L2_PIX_FMT_IPU3_SBGGR10, VID_OUTPUT },
581 { V4L2_PIX_FMT_IPU3_SGBRG10, VID_OUTPUT },
582 { V4L2_PIX_FMT_IPU3_SRGGB10, VID_OUTPUT },
583 };
584
585 /* Find the first matched format, return default if not found */
find_format(struct v4l2_format * f,u32 type)586 static const struct imgu_fmt *find_format(struct v4l2_format *f, u32 type)
587 {
588 unsigned int i;
589
590 for (i = 0; i < ARRAY_SIZE(formats); i++) {
591 if (formats[i].fourcc == f->fmt.pix_mp.pixelformat &&
592 formats[i].type == type)
593 return &formats[i];
594 }
595
596 return type == VID_CAPTURE ? &formats[DEF_VID_CAPTURE] :
597 &formats[DEF_VID_OUTPUT];
598 }
599
imgu_vidioc_querycap(struct file * file,void * fh,struct v4l2_capability * cap)600 static int imgu_vidioc_querycap(struct file *file, void *fh,
601 struct v4l2_capability *cap)
602 {
603 struct imgu_device *imgu = video_drvdata(file);
604
605 strscpy(cap->driver, IMGU_NAME, sizeof(cap->driver));
606 strscpy(cap->card, IMGU_NAME, sizeof(cap->card));
607 snprintf(cap->bus_info, sizeof(cap->bus_info), "PCI:%s",
608 pci_name(imgu->pci_dev));
609
610 return 0;
611 }
612
enum_fmts(struct v4l2_fmtdesc * f,u32 type)613 static int enum_fmts(struct v4l2_fmtdesc *f, u32 type)
614 {
615 unsigned int i, j;
616
617 if (f->mbus_code != 0 && f->mbus_code != MEDIA_BUS_FMT_FIXED)
618 return -EINVAL;
619
620 for (i = j = 0; i < ARRAY_SIZE(formats); ++i) {
621 if (formats[i].type == type) {
622 if (j == f->index)
623 break;
624 ++j;
625 }
626 }
627
628 if (i < ARRAY_SIZE(formats)) {
629 f->pixelformat = formats[i].fourcc;
630 return 0;
631 }
632
633 return -EINVAL;
634 }
635
vidioc_enum_fmt_vid_cap(struct file * file,void * priv,struct v4l2_fmtdesc * f)636 static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
637 struct v4l2_fmtdesc *f)
638 {
639 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
640 return -EINVAL;
641
642 return enum_fmts(f, VID_CAPTURE);
643 }
644
vidioc_enum_fmt_vid_out(struct file * file,void * priv,struct v4l2_fmtdesc * f)645 static int vidioc_enum_fmt_vid_out(struct file *file, void *priv,
646 struct v4l2_fmtdesc *f)
647 {
648 if (f->type != V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
649 return -EINVAL;
650
651 return enum_fmts(f, VID_OUTPUT);
652 }
653
654 /* Propagate forward always the format from the CIO2 subdev */
imgu_vidioc_g_fmt(struct file * file,void * fh,struct v4l2_format * f)655 static int imgu_vidioc_g_fmt(struct file *file, void *fh,
656 struct v4l2_format *f)
657 {
658 struct imgu_video_device *node = file_to_intel_imgu_node(file);
659
660 f->fmt = node->vdev_fmt.fmt;
661
662 return 0;
663 }
664
665 /*
666 * Set input/output format. Unless it is just a try, this also resets
667 * selections (ie. effective and BDS resolutions) to defaults.
668 */
imgu_fmt(struct imgu_device * imgu,unsigned int pipe,int node,struct v4l2_format * f,bool try)669 static int imgu_fmt(struct imgu_device *imgu, unsigned int pipe, int node,
670 struct v4l2_format *f, bool try)
671 {
672 struct device *dev = &imgu->pci_dev->dev;
673 struct v4l2_pix_format_mplane *fmts[IPU3_CSS_QUEUES] = { NULL };
674 struct v4l2_rect *rects[IPU3_CSS_RECTS] = { NULL };
675 struct v4l2_mbus_framefmt pad_fmt;
676 unsigned int i, css_q;
677 int ret;
678 struct imgu_css_pipe *css_pipe = &imgu->css.pipes[pipe];
679 struct imgu_media_pipe *imgu_pipe = &imgu->imgu_pipe[pipe];
680 struct imgu_v4l2_subdev *imgu_sd = &imgu_pipe->imgu_sd;
681
682 dev_dbg(dev, "set fmt node [%u][%u](try = %u)", pipe, node, try);
683
684 for (i = 0; i < IMGU_NODE_NUM; i++)
685 dev_dbg(dev, "IMGU pipe %u node %u enabled = %u",
686 pipe, i, imgu_pipe->nodes[i].enabled);
687
688 if (imgu_pipe->nodes[IMGU_NODE_VF].enabled)
689 css_pipe->vf_output_en = true;
690
691 if (atomic_read(&imgu_sd->running_mode) == IPU3_RUNNING_MODE_VIDEO)
692 css_pipe->pipe_id = IPU3_CSS_PIPE_ID_VIDEO;
693 else
694 css_pipe->pipe_id = IPU3_CSS_PIPE_ID_CAPTURE;
695
696 dev_dbg(dev, "IPU3 pipe %u pipe_id = %u", pipe, css_pipe->pipe_id);
697
698 css_q = imgu_node_to_queue(node);
699 for (i = 0; i < IPU3_CSS_QUEUES; i++) {
700 unsigned int inode = imgu_map_node(imgu, i);
701
702 /* Skip the meta node */
703 if (inode == IMGU_NODE_STAT_3A || inode == IMGU_NODE_PARAMS)
704 continue;
705
706 /* CSS expects some format on OUT queue */
707 if (i != IPU3_CSS_QUEUE_OUT &&
708 !imgu_pipe->nodes[inode].enabled && !try) {
709 fmts[i] = NULL;
710 continue;
711 }
712
713 if (i == css_q) {
714 fmts[i] = &f->fmt.pix_mp;
715 continue;
716 }
717
718 if (try) {
719 fmts[i] = kmemdup(&imgu_pipe->nodes[inode].vdev_fmt.fmt.pix_mp,
720 sizeof(struct v4l2_pix_format_mplane),
721 GFP_KERNEL);
722 if (!fmts[i]) {
723 ret = -ENOMEM;
724 goto out;
725 }
726 } else {
727 fmts[i] = &imgu_pipe->nodes[inode].vdev_fmt.fmt.pix_mp;
728 }
729
730 }
731
732 if (!try) {
733 /* eff and bds res got by imgu_s_sel */
734 struct imgu_v4l2_subdev *imgu_sd = &imgu_pipe->imgu_sd;
735
736 rects[IPU3_CSS_RECT_EFFECTIVE] = &imgu_sd->rect.eff;
737 rects[IPU3_CSS_RECT_BDS] = &imgu_sd->rect.bds;
738 rects[IPU3_CSS_RECT_GDC] = &imgu_sd->rect.gdc;
739
740 /* suppose that pad fmt was set by subdev s_fmt before */
741 pad_fmt = imgu_pipe->nodes[IMGU_NODE_IN].pad_fmt;
742 rects[IPU3_CSS_RECT_GDC]->width = pad_fmt.width;
743 rects[IPU3_CSS_RECT_GDC]->height = pad_fmt.height;
744 }
745
746 if (!fmts[css_q]) {
747 ret = -EINVAL;
748 goto out;
749 }
750
751 if (try)
752 ret = imgu_css_fmt_try(&imgu->css, fmts, rects, pipe);
753 else
754 ret = imgu_css_fmt_set(&imgu->css, fmts, rects, pipe);
755
756 /* ret is the binary number in the firmware blob */
757 if (ret < 0)
758 goto out;
759
760 /*
761 * imgu doesn't set the node to the value given by user
762 * before we return success from this function, so set it here.
763 */
764 if (!try)
765 imgu_pipe->nodes[node].vdev_fmt.fmt.pix_mp = f->fmt.pix_mp;
766
767 out:
768 if (try) {
769 for (i = 0; i < IPU3_CSS_QUEUES; i++)
770 if (i != css_q)
771 kfree(fmts[i]);
772 }
773
774 return ret;
775 }
776
imgu_try_fmt(struct file * file,void * fh,struct v4l2_format * f)777 static int imgu_try_fmt(struct file *file, void *fh, struct v4l2_format *f)
778 {
779 struct v4l2_pix_format_mplane *pixm = &f->fmt.pix_mp;
780 const struct imgu_fmt *fmt;
781
782 if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
783 fmt = find_format(f, VID_CAPTURE);
784 else if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
785 fmt = find_format(f, VID_OUTPUT);
786 else
787 return -EINVAL;
788
789 pixm->pixelformat = fmt->fourcc;
790
791 return 0;
792 }
793
imgu_vidioc_try_fmt(struct file * file,void * fh,struct v4l2_format * f)794 static int imgu_vidioc_try_fmt(struct file *file, void *fh,
795 struct v4l2_format *f)
796 {
797 struct imgu_device *imgu = video_drvdata(file);
798 struct device *dev = &imgu->pci_dev->dev;
799 struct imgu_video_device *node = file_to_intel_imgu_node(file);
800 struct v4l2_pix_format_mplane *pix_mp = &f->fmt.pix_mp;
801 int r;
802
803 dev_dbg(dev, "%s [%ux%u] for node %u\n", __func__,
804 pix_mp->width, pix_mp->height, node->id);
805
806 r = imgu_try_fmt(file, fh, f);
807 if (r)
808 return r;
809
810 return imgu_fmt(imgu, node->pipe, node->id, f, true);
811 }
812
imgu_vidioc_s_fmt(struct file * file,void * fh,struct v4l2_format * f)813 static int imgu_vidioc_s_fmt(struct file *file, void *fh, struct v4l2_format *f)
814 {
815 struct imgu_device *imgu = video_drvdata(file);
816 struct device *dev = &imgu->pci_dev->dev;
817 struct imgu_video_device *node = file_to_intel_imgu_node(file);
818 struct v4l2_pix_format_mplane *pix_mp = &f->fmt.pix_mp;
819 int r;
820
821 dev_dbg(dev, "%s [%ux%u] for node %u\n", __func__,
822 pix_mp->width, pix_mp->height, node->id);
823
824 r = imgu_try_fmt(file, fh, f);
825 if (r)
826 return r;
827
828 return imgu_fmt(imgu, node->pipe, node->id, f, false);
829 }
830
831 struct imgu_meta_fmt {
832 __u32 fourcc;
833 char *name;
834 };
835
836 /* From drivers/media/v4l2-core/v4l2-ioctl.c */
837 static const struct imgu_meta_fmt meta_fmts[] = {
838 { V4L2_META_FMT_IPU3_PARAMS, "IPU3 processing parameters" },
839 { V4L2_META_FMT_IPU3_STAT_3A, "IPU3 3A statistics" },
840 };
841
imgu_meta_enum_format(struct file * file,void * fh,struct v4l2_fmtdesc * fmt)842 static int imgu_meta_enum_format(struct file *file, void *fh,
843 struct v4l2_fmtdesc *fmt)
844 {
845 struct imgu_video_device *node = file_to_intel_imgu_node(file);
846 unsigned int i = fmt->type == V4L2_BUF_TYPE_META_OUTPUT ? 0 : 1;
847
848 /* Each node is dedicated to only one meta format */
849 if (fmt->index > 0 || fmt->type != node->vbq.type)
850 return -EINVAL;
851
852 if (fmt->mbus_code != 0 && fmt->mbus_code != MEDIA_BUS_FMT_FIXED)
853 return -EINVAL;
854
855 strscpy(fmt->description, meta_fmts[i].name, sizeof(fmt->description));
856 fmt->pixelformat = meta_fmts[i].fourcc;
857
858 return 0;
859 }
860
imgu_vidioc_g_meta_fmt(struct file * file,void * fh,struct v4l2_format * f)861 static int imgu_vidioc_g_meta_fmt(struct file *file, void *fh,
862 struct v4l2_format *f)
863 {
864 struct imgu_video_device *node = file_to_intel_imgu_node(file);
865
866 if (f->type != node->vbq.type)
867 return -EINVAL;
868
869 f->fmt = node->vdev_fmt.fmt;
870
871 return 0;
872 }
873
874 /******************** function pointers ********************/
875
876 static struct v4l2_subdev_internal_ops imgu_subdev_internal_ops = {
877 .open = imgu_subdev_open,
878 };
879
880 static const struct v4l2_subdev_core_ops imgu_subdev_core_ops = {
881 .subscribe_event = v4l2_ctrl_subdev_subscribe_event,
882 .unsubscribe_event = v4l2_event_subdev_unsubscribe,
883 };
884
885 static const struct v4l2_subdev_video_ops imgu_subdev_video_ops = {
886 .s_stream = imgu_subdev_s_stream,
887 };
888
889 static const struct v4l2_subdev_pad_ops imgu_subdev_pad_ops = {
890 .link_validate = v4l2_subdev_link_validate_default,
891 .get_fmt = imgu_subdev_get_fmt,
892 .set_fmt = imgu_subdev_set_fmt,
893 .get_selection = imgu_subdev_get_selection,
894 .set_selection = imgu_subdev_set_selection,
895 };
896
897 static const struct v4l2_subdev_ops imgu_subdev_ops = {
898 .core = &imgu_subdev_core_ops,
899 .video = &imgu_subdev_video_ops,
900 .pad = &imgu_subdev_pad_ops,
901 };
902
903 static const struct media_entity_operations imgu_media_ops = {
904 .link_setup = imgu_link_setup,
905 .link_validate = v4l2_subdev_link_validate,
906 };
907
908 /****************** vb2_ops of the Q ********************/
909
910 static const struct vb2_ops imgu_vb2_ops = {
911 .buf_init = imgu_vb2_buf_init,
912 .buf_cleanup = imgu_vb2_buf_cleanup,
913 .buf_queue = imgu_vb2_buf_queue,
914 .queue_setup = imgu_vb2_queue_setup,
915 .start_streaming = imgu_vb2_start_streaming,
916 .stop_streaming = imgu_vb2_stop_streaming,
917 .wait_prepare = vb2_ops_wait_prepare,
918 .wait_finish = vb2_ops_wait_finish,
919 };
920
921 /****************** v4l2_file_operations *****************/
922
923 static const struct v4l2_file_operations imgu_v4l2_fops = {
924 .unlocked_ioctl = video_ioctl2,
925 .open = v4l2_fh_open,
926 .release = vb2_fop_release,
927 .poll = vb2_fop_poll,
928 .mmap = vb2_fop_mmap,
929 };
930
931 /******************** v4l2_ioctl_ops ********************/
932
933 static const struct v4l2_ioctl_ops imgu_v4l2_ioctl_ops = {
934 .vidioc_querycap = imgu_vidioc_querycap,
935
936 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
937 .vidioc_g_fmt_vid_cap_mplane = imgu_vidioc_g_fmt,
938 .vidioc_s_fmt_vid_cap_mplane = imgu_vidioc_s_fmt,
939 .vidioc_try_fmt_vid_cap_mplane = imgu_vidioc_try_fmt,
940
941 .vidioc_enum_fmt_vid_out = vidioc_enum_fmt_vid_out,
942 .vidioc_g_fmt_vid_out_mplane = imgu_vidioc_g_fmt,
943 .vidioc_s_fmt_vid_out_mplane = imgu_vidioc_s_fmt,
944 .vidioc_try_fmt_vid_out_mplane = imgu_vidioc_try_fmt,
945
946 /* buffer queue management */
947 .vidioc_reqbufs = vb2_ioctl_reqbufs,
948 .vidioc_create_bufs = vb2_ioctl_create_bufs,
949 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
950 .vidioc_querybuf = vb2_ioctl_querybuf,
951 .vidioc_qbuf = vb2_ioctl_qbuf,
952 .vidioc_dqbuf = vb2_ioctl_dqbuf,
953 .vidioc_streamon = vb2_ioctl_streamon,
954 .vidioc_streamoff = vb2_ioctl_streamoff,
955 .vidioc_expbuf = vb2_ioctl_expbuf,
956 };
957
958 static const struct v4l2_ioctl_ops imgu_v4l2_meta_ioctl_ops = {
959 .vidioc_querycap = imgu_vidioc_querycap,
960
961 /* meta capture */
962 .vidioc_enum_fmt_meta_cap = imgu_meta_enum_format,
963 .vidioc_g_fmt_meta_cap = imgu_vidioc_g_meta_fmt,
964 .vidioc_s_fmt_meta_cap = imgu_vidioc_g_meta_fmt,
965 .vidioc_try_fmt_meta_cap = imgu_vidioc_g_meta_fmt,
966
967 /* meta output */
968 .vidioc_enum_fmt_meta_out = imgu_meta_enum_format,
969 .vidioc_g_fmt_meta_out = imgu_vidioc_g_meta_fmt,
970 .vidioc_s_fmt_meta_out = imgu_vidioc_g_meta_fmt,
971 .vidioc_try_fmt_meta_out = imgu_vidioc_g_meta_fmt,
972
973 .vidioc_reqbufs = vb2_ioctl_reqbufs,
974 .vidioc_create_bufs = vb2_ioctl_create_bufs,
975 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
976 .vidioc_querybuf = vb2_ioctl_querybuf,
977 .vidioc_qbuf = vb2_ioctl_qbuf,
978 .vidioc_dqbuf = vb2_ioctl_dqbuf,
979 .vidioc_streamon = vb2_ioctl_streamon,
980 .vidioc_streamoff = vb2_ioctl_streamoff,
981 .vidioc_expbuf = vb2_ioctl_expbuf,
982 };
983
imgu_sd_s_ctrl(struct v4l2_ctrl * ctrl)984 static int imgu_sd_s_ctrl(struct v4l2_ctrl *ctrl)
985 {
986 struct imgu_v4l2_subdev *imgu_sd =
987 container_of(ctrl->handler, struct imgu_v4l2_subdev, ctrl_handler);
988 struct imgu_device *imgu = v4l2_get_subdevdata(&imgu_sd->subdev);
989 struct device *dev = &imgu->pci_dev->dev;
990
991 dev_dbg(dev, "set val %d to ctrl 0x%8x for subdev %u",
992 ctrl->val, ctrl->id, imgu_sd->pipe);
993
994 switch (ctrl->id) {
995 case V4L2_CID_INTEL_IPU3_MODE:
996 atomic_set(&imgu_sd->running_mode, ctrl->val);
997 return 0;
998 default:
999 return -EINVAL;
1000 }
1001 }
1002
1003 static const struct v4l2_ctrl_ops imgu_subdev_ctrl_ops = {
1004 .s_ctrl = imgu_sd_s_ctrl,
1005 };
1006
1007 static const char * const imgu_ctrl_mode_strings[] = {
1008 "Video mode",
1009 "Still mode",
1010 };
1011
1012 static const struct v4l2_ctrl_config imgu_subdev_ctrl_mode = {
1013 .ops = &imgu_subdev_ctrl_ops,
1014 .id = V4L2_CID_INTEL_IPU3_MODE,
1015 .name = "IPU3 Pipe Mode",
1016 .type = V4L2_CTRL_TYPE_MENU,
1017 .max = ARRAY_SIZE(imgu_ctrl_mode_strings) - 1,
1018 .def = IPU3_RUNNING_MODE_VIDEO,
1019 .qmenu = imgu_ctrl_mode_strings,
1020 };
1021
1022 /******************** Framework registration ********************/
1023
1024 /* helper function to config node's video properties */
imgu_node_to_v4l2(u32 node,struct video_device * vdev,struct v4l2_format * f)1025 static void imgu_node_to_v4l2(u32 node, struct video_device *vdev,
1026 struct v4l2_format *f)
1027 {
1028 u32 cap;
1029
1030 /* Should not happen */
1031 WARN_ON(node >= IMGU_NODE_NUM);
1032
1033 switch (node) {
1034 case IMGU_NODE_IN:
1035 cap = V4L2_CAP_VIDEO_OUTPUT_MPLANE;
1036 f->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
1037 vdev->ioctl_ops = &imgu_v4l2_ioctl_ops;
1038 break;
1039 case IMGU_NODE_PARAMS:
1040 cap = V4L2_CAP_META_OUTPUT;
1041 f->type = V4L2_BUF_TYPE_META_OUTPUT;
1042 f->fmt.meta.dataformat = V4L2_META_FMT_IPU3_PARAMS;
1043 vdev->ioctl_ops = &imgu_v4l2_meta_ioctl_ops;
1044 imgu_css_meta_fmt_set(&f->fmt.meta);
1045 break;
1046 case IMGU_NODE_STAT_3A:
1047 cap = V4L2_CAP_META_CAPTURE;
1048 f->type = V4L2_BUF_TYPE_META_CAPTURE;
1049 f->fmt.meta.dataformat = V4L2_META_FMT_IPU3_STAT_3A;
1050 vdev->ioctl_ops = &imgu_v4l2_meta_ioctl_ops;
1051 imgu_css_meta_fmt_set(&f->fmt.meta);
1052 break;
1053 default:
1054 cap = V4L2_CAP_VIDEO_CAPTURE_MPLANE;
1055 f->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
1056 vdev->ioctl_ops = &imgu_v4l2_ioctl_ops;
1057 }
1058
1059 vdev->device_caps = V4L2_CAP_STREAMING | V4L2_CAP_IO_MC | cap;
1060 }
1061
imgu_v4l2_subdev_register(struct imgu_device * imgu,struct imgu_v4l2_subdev * imgu_sd,unsigned int pipe)1062 static int imgu_v4l2_subdev_register(struct imgu_device *imgu,
1063 struct imgu_v4l2_subdev *imgu_sd,
1064 unsigned int pipe)
1065 {
1066 int i, r;
1067 struct v4l2_ctrl_handler *hdl = &imgu_sd->ctrl_handler;
1068 struct imgu_media_pipe *imgu_pipe = &imgu->imgu_pipe[pipe];
1069
1070 /* Initialize subdev media entity */
1071 r = media_entity_pads_init(&imgu_sd->subdev.entity, IMGU_NODE_NUM,
1072 imgu_sd->subdev_pads);
1073 if (r) {
1074 dev_err(&imgu->pci_dev->dev,
1075 "failed initialize subdev media entity (%d)\n", r);
1076 return r;
1077 }
1078 imgu_sd->subdev.entity.ops = &imgu_media_ops;
1079 for (i = 0; i < IMGU_NODE_NUM; i++) {
1080 imgu_sd->subdev_pads[i].flags = imgu_pipe->nodes[i].output ?
1081 MEDIA_PAD_FL_SINK : MEDIA_PAD_FL_SOURCE;
1082 }
1083
1084 /* Initialize subdev */
1085 v4l2_subdev_init(&imgu_sd->subdev, &imgu_subdev_ops);
1086 imgu_sd->subdev.entity.function = MEDIA_ENT_F_PROC_VIDEO_STATISTICS;
1087 imgu_sd->subdev.internal_ops = &imgu_subdev_internal_ops;
1088 imgu_sd->subdev.flags = V4L2_SUBDEV_FL_HAS_DEVNODE |
1089 V4L2_SUBDEV_FL_HAS_EVENTS;
1090 snprintf(imgu_sd->subdev.name, sizeof(imgu_sd->subdev.name),
1091 "%s %u", IMGU_NAME, pipe);
1092 v4l2_set_subdevdata(&imgu_sd->subdev, imgu);
1093 atomic_set(&imgu_sd->running_mode, IPU3_RUNNING_MODE_VIDEO);
1094 v4l2_ctrl_handler_init(hdl, 1);
1095 imgu_sd->subdev.ctrl_handler = hdl;
1096 imgu_sd->ctrl = v4l2_ctrl_new_custom(hdl, &imgu_subdev_ctrl_mode, NULL);
1097 if (hdl->error) {
1098 r = hdl->error;
1099 dev_err(&imgu->pci_dev->dev,
1100 "failed to create subdev v4l2 ctrl with err %d", r);
1101 goto fail_subdev;
1102 }
1103 r = v4l2_device_register_subdev(&imgu->v4l2_dev, &imgu_sd->subdev);
1104 if (r) {
1105 dev_err(&imgu->pci_dev->dev,
1106 "failed initialize subdev (%d)\n", r);
1107 goto fail_subdev;
1108 }
1109
1110 imgu_sd->pipe = pipe;
1111 return 0;
1112
1113 fail_subdev:
1114 v4l2_ctrl_handler_free(imgu_sd->subdev.ctrl_handler);
1115 media_entity_cleanup(&imgu_sd->subdev.entity);
1116
1117 return r;
1118 }
1119
imgu_v4l2_node_setup(struct imgu_device * imgu,unsigned int pipe,int node_num)1120 static int imgu_v4l2_node_setup(struct imgu_device *imgu, unsigned int pipe,
1121 int node_num)
1122 {
1123 int r;
1124 u32 flags;
1125 struct v4l2_mbus_framefmt def_bus_fmt = { 0 };
1126 struct v4l2_pix_format_mplane def_pix_fmt = { 0 };
1127 struct device *dev = &imgu->pci_dev->dev;
1128 struct imgu_media_pipe *imgu_pipe = &imgu->imgu_pipe[pipe];
1129 struct v4l2_subdev *sd = &imgu_pipe->imgu_sd.subdev;
1130 struct imgu_video_device *node = &imgu_pipe->nodes[node_num];
1131 struct video_device *vdev = &node->vdev;
1132 struct vb2_queue *vbq = &node->vbq;
1133
1134 /* Initialize formats to default values */
1135 def_bus_fmt.width = 1920;
1136 def_bus_fmt.height = 1080;
1137 def_bus_fmt.code = MEDIA_BUS_FMT_FIXED;
1138 def_bus_fmt.field = V4L2_FIELD_NONE;
1139 def_bus_fmt.colorspace = V4L2_COLORSPACE_RAW;
1140 def_bus_fmt.ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT;
1141 def_bus_fmt.quantization = V4L2_QUANTIZATION_DEFAULT;
1142 def_bus_fmt.xfer_func = V4L2_XFER_FUNC_DEFAULT;
1143
1144 def_pix_fmt.width = def_bus_fmt.width;
1145 def_pix_fmt.height = def_bus_fmt.height;
1146 def_pix_fmt.field = def_bus_fmt.field;
1147 def_pix_fmt.num_planes = 1;
1148 def_pix_fmt.plane_fmt[0].bytesperline = def_pix_fmt.width * 2;
1149 def_pix_fmt.plane_fmt[0].sizeimage =
1150 def_pix_fmt.height * def_pix_fmt.plane_fmt[0].bytesperline;
1151 def_pix_fmt.flags = 0;
1152 def_pix_fmt.colorspace = def_bus_fmt.colorspace;
1153 def_pix_fmt.ycbcr_enc = def_bus_fmt.ycbcr_enc;
1154 def_pix_fmt.quantization = def_bus_fmt.quantization;
1155 def_pix_fmt.xfer_func = def_bus_fmt.xfer_func;
1156
1157 /* Initialize miscellaneous variables */
1158 mutex_init(&node->lock);
1159 INIT_LIST_HEAD(&node->buffers);
1160
1161 /* Initialize formats to default values */
1162 node->pad_fmt = def_bus_fmt;
1163 node->id = node_num;
1164 node->pipe = pipe;
1165 imgu_node_to_v4l2(node_num, vdev, &node->vdev_fmt);
1166 if (node->vdev_fmt.type ==
1167 V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE ||
1168 node->vdev_fmt.type ==
1169 V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
1170 def_pix_fmt.pixelformat = node->output ?
1171 V4L2_PIX_FMT_IPU3_SGRBG10 :
1172 V4L2_PIX_FMT_NV12;
1173 node->vdev_fmt.fmt.pix_mp = def_pix_fmt;
1174 }
1175
1176 /* Initialize media entities */
1177 r = media_entity_pads_init(&vdev->entity, 1, &node->vdev_pad);
1178 if (r) {
1179 dev_err(dev, "failed initialize media entity (%d)\n", r);
1180 mutex_destroy(&node->lock);
1181 return r;
1182 }
1183 node->vdev_pad.flags = node->output ?
1184 MEDIA_PAD_FL_SOURCE : MEDIA_PAD_FL_SINK;
1185 vdev->entity.ops = NULL;
1186
1187 /* Initialize vbq */
1188 vbq->type = node->vdev_fmt.type;
1189 vbq->io_modes = VB2_USERPTR | VB2_MMAP | VB2_DMABUF;
1190 vbq->ops = &imgu_vb2_ops;
1191 vbq->mem_ops = &vb2_dma_sg_memops;
1192 if (imgu->buf_struct_size <= 0)
1193 imgu->buf_struct_size =
1194 sizeof(struct imgu_vb2_buffer);
1195 vbq->buf_struct_size = imgu->buf_struct_size;
1196 vbq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1197 /* can streamon w/o buffers */
1198 vbq->min_buffers_needed = 0;
1199 vbq->drv_priv = imgu;
1200 vbq->lock = &node->lock;
1201 r = vb2_queue_init(vbq);
1202 if (r) {
1203 dev_err(dev, "failed to initialize video queue (%d)", r);
1204 media_entity_cleanup(&vdev->entity);
1205 return r;
1206 }
1207
1208 /* Initialize vdev */
1209 snprintf(vdev->name, sizeof(vdev->name), "%s %u %s",
1210 IMGU_NAME, pipe, node->name);
1211 vdev->release = video_device_release_empty;
1212 vdev->fops = &imgu_v4l2_fops;
1213 vdev->lock = &node->lock;
1214 vdev->v4l2_dev = &imgu->v4l2_dev;
1215 vdev->queue = &node->vbq;
1216 vdev->vfl_dir = node->output ? VFL_DIR_TX : VFL_DIR_RX;
1217 video_set_drvdata(vdev, imgu);
1218 r = video_register_device(vdev, VFL_TYPE_VIDEO, -1);
1219 if (r) {
1220 dev_err(dev, "failed to register video device (%d)", r);
1221 media_entity_cleanup(&vdev->entity);
1222 return r;
1223 }
1224
1225 /* Create link between video node and the subdev pad */
1226 flags = 0;
1227 if (node->enabled)
1228 flags |= MEDIA_LNK_FL_ENABLED;
1229 if (node->output) {
1230 r = media_create_pad_link(&vdev->entity, 0, &sd->entity,
1231 node_num, flags);
1232 } else {
1233 if (node->id == IMGU_NODE_OUT) {
1234 flags |= MEDIA_LNK_FL_ENABLED | MEDIA_LNK_FL_IMMUTABLE;
1235 node->enabled = true;
1236 }
1237
1238 r = media_create_pad_link(&sd->entity, node_num, &vdev->entity,
1239 0, flags);
1240 }
1241 if (r) {
1242 dev_err(dev, "failed to create pad link (%d)", r);
1243 video_unregister_device(vdev);
1244 return r;
1245 }
1246
1247 return 0;
1248 }
1249
imgu_v4l2_nodes_cleanup_pipe(struct imgu_device * imgu,unsigned int pipe,int node)1250 static void imgu_v4l2_nodes_cleanup_pipe(struct imgu_device *imgu,
1251 unsigned int pipe, int node)
1252 {
1253 int i;
1254 struct imgu_media_pipe *imgu_pipe = &imgu->imgu_pipe[pipe];
1255
1256 for (i = 0; i < node; i++) {
1257 video_unregister_device(&imgu_pipe->nodes[i].vdev);
1258 media_entity_cleanup(&imgu_pipe->nodes[i].vdev.entity);
1259 mutex_destroy(&imgu_pipe->nodes[i].lock);
1260 }
1261 }
1262
imgu_v4l2_nodes_setup_pipe(struct imgu_device * imgu,int pipe)1263 static int imgu_v4l2_nodes_setup_pipe(struct imgu_device *imgu, int pipe)
1264 {
1265 int i;
1266
1267 for (i = 0; i < IMGU_NODE_NUM; i++) {
1268 int r = imgu_v4l2_node_setup(imgu, pipe, i);
1269
1270 if (r) {
1271 imgu_v4l2_nodes_cleanup_pipe(imgu, pipe, i);
1272 return r;
1273 }
1274 }
1275 return 0;
1276 }
1277
imgu_v4l2_subdev_cleanup(struct imgu_device * imgu,unsigned int i)1278 static void imgu_v4l2_subdev_cleanup(struct imgu_device *imgu, unsigned int i)
1279 {
1280 struct imgu_media_pipe *imgu_pipe = &imgu->imgu_pipe[i];
1281
1282 v4l2_device_unregister_subdev(&imgu_pipe->imgu_sd.subdev);
1283 v4l2_ctrl_handler_free(imgu_pipe->imgu_sd.subdev.ctrl_handler);
1284 media_entity_cleanup(&imgu_pipe->imgu_sd.subdev.entity);
1285 }
1286
imgu_v4l2_cleanup_pipes(struct imgu_device * imgu,unsigned int pipe)1287 static void imgu_v4l2_cleanup_pipes(struct imgu_device *imgu, unsigned int pipe)
1288 {
1289 int i;
1290
1291 for (i = 0; i < pipe; i++) {
1292 imgu_v4l2_nodes_cleanup_pipe(imgu, i, IMGU_NODE_NUM);
1293 imgu_v4l2_subdev_cleanup(imgu, i);
1294 }
1295 }
1296
imgu_v4l2_register_pipes(struct imgu_device * imgu)1297 static int imgu_v4l2_register_pipes(struct imgu_device *imgu)
1298 {
1299 struct imgu_media_pipe *imgu_pipe;
1300 int i, r;
1301
1302 for (i = 0; i < IMGU_MAX_PIPE_NUM; i++) {
1303 imgu_pipe = &imgu->imgu_pipe[i];
1304 r = imgu_v4l2_subdev_register(imgu, &imgu_pipe->imgu_sd, i);
1305 if (r) {
1306 dev_err(&imgu->pci_dev->dev,
1307 "failed to register subdev%u ret (%d)\n", i, r);
1308 goto pipes_cleanup;
1309 }
1310 r = imgu_v4l2_nodes_setup_pipe(imgu, i);
1311 if (r) {
1312 imgu_v4l2_subdev_cleanup(imgu, i);
1313 goto pipes_cleanup;
1314 }
1315 }
1316
1317 return 0;
1318
1319 pipes_cleanup:
1320 imgu_v4l2_cleanup_pipes(imgu, i);
1321 return r;
1322 }
1323
imgu_v4l2_register(struct imgu_device * imgu)1324 int imgu_v4l2_register(struct imgu_device *imgu)
1325 {
1326 int r;
1327
1328 /* Initialize miscellaneous variables */
1329 imgu->streaming = false;
1330
1331 /* Set up media device */
1332 media_device_pci_init(&imgu->media_dev, imgu->pci_dev, IMGU_NAME);
1333
1334 /* Set up v4l2 device */
1335 imgu->v4l2_dev.mdev = &imgu->media_dev;
1336 imgu->v4l2_dev.ctrl_handler = NULL;
1337 r = v4l2_device_register(&imgu->pci_dev->dev, &imgu->v4l2_dev);
1338 if (r) {
1339 dev_err(&imgu->pci_dev->dev,
1340 "failed to register V4L2 device (%d)\n", r);
1341 goto fail_v4l2_dev;
1342 }
1343
1344 r = imgu_v4l2_register_pipes(imgu);
1345 if (r) {
1346 dev_err(&imgu->pci_dev->dev,
1347 "failed to register pipes (%d)\n", r);
1348 goto fail_v4l2_pipes;
1349 }
1350
1351 r = v4l2_device_register_subdev_nodes(&imgu->v4l2_dev);
1352 if (r) {
1353 dev_err(&imgu->pci_dev->dev,
1354 "failed to register subdevs (%d)\n", r);
1355 goto fail_subdevs;
1356 }
1357
1358 r = media_device_register(&imgu->media_dev);
1359 if (r) {
1360 dev_err(&imgu->pci_dev->dev,
1361 "failed to register media device (%d)\n", r);
1362 goto fail_subdevs;
1363 }
1364
1365 return 0;
1366
1367 fail_subdevs:
1368 imgu_v4l2_cleanup_pipes(imgu, IMGU_MAX_PIPE_NUM);
1369 fail_v4l2_pipes:
1370 v4l2_device_unregister(&imgu->v4l2_dev);
1371 fail_v4l2_dev:
1372 media_device_cleanup(&imgu->media_dev);
1373
1374 return r;
1375 }
1376
imgu_v4l2_unregister(struct imgu_device * imgu)1377 int imgu_v4l2_unregister(struct imgu_device *imgu)
1378 {
1379 media_device_unregister(&imgu->media_dev);
1380 imgu_v4l2_cleanup_pipes(imgu, IMGU_MAX_PIPE_NUM);
1381 v4l2_device_unregister(&imgu->v4l2_dev);
1382 media_device_cleanup(&imgu->media_dev);
1383
1384 return 0;
1385 }
1386
imgu_v4l2_buffer_done(struct vb2_buffer * vb,enum vb2_buffer_state state)1387 void imgu_v4l2_buffer_done(struct vb2_buffer *vb,
1388 enum vb2_buffer_state state)
1389 {
1390 struct imgu_vb2_buffer *b =
1391 container_of(vb, struct imgu_vb2_buffer, vbb.vb2_buf);
1392
1393 list_del(&b->list);
1394 vb2_buffer_done(&b->vbb.vb2_buf, state);
1395 }
1396