1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <linux/pm_runtime.h>
18
19#include <media/v4l2-event.h>
20#include <media/v4l2-ioctl.h>
21#include <media/v4l2-rect.h>
22
23#include "rcar-vin.h"
24
25#define RVIN_DEFAULT_FORMAT V4L2_PIX_FMT_YUYV
26#define RVIN_MAX_WIDTH 2048
27#define RVIN_MAX_HEIGHT 2048
28
29
30
31
32
33static const struct rvin_video_format rvin_formats[] = {
34 {
35 .fourcc = V4L2_PIX_FMT_NV16,
36 .bpp = 1,
37 },
38 {
39 .fourcc = V4L2_PIX_FMT_YUYV,
40 .bpp = 2,
41 },
42 {
43 .fourcc = V4L2_PIX_FMT_UYVY,
44 .bpp = 2,
45 },
46 {
47 .fourcc = V4L2_PIX_FMT_RGB565,
48 .bpp = 2,
49 },
50 {
51 .fourcc = V4L2_PIX_FMT_XRGB555,
52 .bpp = 2,
53 },
54 {
55 .fourcc = V4L2_PIX_FMT_XBGR32,
56 .bpp = 4,
57 },
58};
59
60const struct rvin_video_format *rvin_format_from_pixel(u32 pixelformat)
61{
62 int i;
63
64 for (i = 0; i < ARRAY_SIZE(rvin_formats); i++)
65 if (rvin_formats[i].fourcc == pixelformat)
66 return rvin_formats + i;
67
68 return NULL;
69}
70
71static u32 rvin_format_bytesperline(struct v4l2_pix_format *pix)
72{
73 const struct rvin_video_format *fmt;
74
75 fmt = rvin_format_from_pixel(pix->pixelformat);
76
77 if (WARN_ON(!fmt))
78 return -EINVAL;
79
80 return pix->width * fmt->bpp;
81}
82
83static u32 rvin_format_sizeimage(struct v4l2_pix_format *pix)
84{
85 if (pix->pixelformat == V4L2_PIX_FMT_NV16)
86 return pix->bytesperline * pix->height * 2;
87
88 return pix->bytesperline * pix->height;
89}
90
91
92
93
94
95static void rvin_reset_crop_compose(struct rvin_dev *vin)
96{
97 vin->crop.top = vin->crop.left = 0;
98 vin->crop.width = vin->source.width;
99 vin->crop.height = vin->source.height;
100
101 vin->compose.top = vin->compose.left = 0;
102 vin->compose.width = vin->format.width;
103 vin->compose.height = vin->format.height;
104}
105
106static int rvin_reset_format(struct rvin_dev *vin)
107{
108 struct v4l2_subdev_format fmt = {
109 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
110 };
111 struct v4l2_mbus_framefmt *mf = &fmt.format;
112 int ret;
113
114 fmt.pad = vin->src_pad_idx;
115
116 ret = v4l2_subdev_call(vin_to_source(vin), pad, get_fmt, NULL, &fmt);
117 if (ret)
118 return ret;
119
120 vin->format.width = mf->width;
121 vin->format.height = mf->height;
122 vin->format.colorspace = mf->colorspace;
123 vin->format.field = mf->field;
124
125
126
127
128
129
130
131
132 if (vin->format.field == V4L2_FIELD_ALTERNATE &&
133 v4l2_subdev_has_op(vin_to_source(vin), video, g_std))
134 vin->format.field = V4L2_FIELD_INTERLACED;
135
136 switch (vin->format.field) {
137 case V4L2_FIELD_TOP:
138 case V4L2_FIELD_BOTTOM:
139 case V4L2_FIELD_ALTERNATE:
140 vin->format.height /= 2;
141 break;
142 case V4L2_FIELD_NONE:
143 case V4L2_FIELD_INTERLACED_TB:
144 case V4L2_FIELD_INTERLACED_BT:
145 case V4L2_FIELD_INTERLACED:
146 break;
147 default:
148 vin->format.field = V4L2_FIELD_NONE;
149 break;
150 }
151
152 rvin_reset_crop_compose(vin);
153
154 return 0;
155}
156
157static int __rvin_try_format_source(struct rvin_dev *vin,
158 u32 which,
159 struct v4l2_pix_format *pix,
160 struct rvin_source_fmt *source)
161{
162 struct v4l2_subdev *sd;
163 struct v4l2_subdev_pad_config *pad_cfg;
164 struct v4l2_subdev_format format = {
165 .which = which,
166 };
167 enum v4l2_field field;
168 int ret;
169
170 sd = vin_to_source(vin);
171
172 v4l2_fill_mbus_format(&format.format, pix, vin->digital.code);
173
174 pad_cfg = v4l2_subdev_alloc_pad_config(sd);
175 if (pad_cfg == NULL)
176 return -ENOMEM;
177
178 format.pad = vin->src_pad_idx;
179
180 field = pix->field;
181
182 ret = v4l2_subdev_call(sd, pad, set_fmt, pad_cfg, &format);
183 if (ret < 0 && ret != -ENOIOCTLCMD)
184 goto done;
185
186 v4l2_fill_pix_format(pix, &format.format);
187
188 pix->field = field;
189
190 source->width = pix->width;
191 source->height = pix->height;
192
193 vin_dbg(vin, "Source resolution: %ux%u\n", source->width,
194 source->height);
195
196done:
197 v4l2_subdev_free_pad_config(pad_cfg);
198 return ret;
199}
200
201static int __rvin_try_format(struct rvin_dev *vin,
202 u32 which,
203 struct v4l2_pix_format *pix,
204 struct rvin_source_fmt *source)
205{
206 const struct rvin_video_format *info;
207 u32 rwidth, rheight, walign;
208
209
210 rwidth = pix->width;
211 rheight = pix->height;
212
213
214 if (pix->field == V4L2_FIELD_ANY)
215 pix->field = vin->format.field;
216
217
218
219
220
221 info = rvin_format_from_pixel(pix->pixelformat);
222 if (!info) {
223 vin_dbg(vin, "Format %x not found, keeping %x\n",
224 pix->pixelformat, vin->format.pixelformat);
225 *pix = vin->format;
226 pix->width = rwidth;
227 pix->height = rheight;
228 }
229
230
231 pix->bytesperline = 0;
232 pix->sizeimage = 0;
233
234
235 __rvin_try_format_source(vin, which, pix, source);
236
237 switch (pix->field) {
238 case V4L2_FIELD_TOP:
239 case V4L2_FIELD_BOTTOM:
240 case V4L2_FIELD_ALTERNATE:
241 pix->height /= 2;
242 source->height /= 2;
243 break;
244 case V4L2_FIELD_NONE:
245 case V4L2_FIELD_INTERLACED_TB:
246 case V4L2_FIELD_INTERLACED_BT:
247 case V4L2_FIELD_INTERLACED:
248 break;
249 default:
250 pix->field = V4L2_FIELD_NONE;
251 break;
252 }
253
254
255 if (source->width != rwidth || source->height != rheight)
256 rvin_scale_try(vin, pix, rwidth, rheight);
257
258
259 walign = vin->format.pixelformat == V4L2_PIX_FMT_NV16 ? 5 : 1;
260
261
262 v4l_bound_align_image(&pix->width, 2, RVIN_MAX_WIDTH, walign,
263 &pix->height, 4, RVIN_MAX_HEIGHT, 2, 0);
264
265 pix->bytesperline = max_t(u32, pix->bytesperline,
266 rvin_format_bytesperline(pix));
267 pix->sizeimage = max_t(u32, pix->sizeimage,
268 rvin_format_sizeimage(pix));
269
270 if (vin->chip == RCAR_M1 && pix->pixelformat == V4L2_PIX_FMT_XBGR32) {
271 vin_err(vin, "pixel format XBGR32 not supported on M1\n");
272 return -EINVAL;
273 }
274
275 vin_dbg(vin, "Requested %ux%u Got %ux%u bpl: %d size: %d\n",
276 rwidth, rheight, pix->width, pix->height,
277 pix->bytesperline, pix->sizeimage);
278
279 return 0;
280}
281
282static int rvin_querycap(struct file *file, void *priv,
283 struct v4l2_capability *cap)
284{
285 struct rvin_dev *vin = video_drvdata(file);
286
287 strlcpy(cap->driver, KBUILD_MODNAME, sizeof(cap->driver));
288 strlcpy(cap->card, "R_Car_VIN", sizeof(cap->card));
289 snprintf(cap->bus_info, sizeof(cap->bus_info), "platform:%s",
290 dev_name(vin->dev));
291 return 0;
292}
293
294static int rvin_try_fmt_vid_cap(struct file *file, void *priv,
295 struct v4l2_format *f)
296{
297 struct rvin_dev *vin = video_drvdata(file);
298 struct rvin_source_fmt source;
299
300 return __rvin_try_format(vin, V4L2_SUBDEV_FORMAT_TRY, &f->fmt.pix,
301 &source);
302}
303
304static int rvin_s_fmt_vid_cap(struct file *file, void *priv,
305 struct v4l2_format *f)
306{
307 struct rvin_dev *vin = video_drvdata(file);
308 struct rvin_source_fmt source;
309 int ret;
310
311 if (vb2_is_busy(&vin->queue))
312 return -EBUSY;
313
314 ret = __rvin_try_format(vin, V4L2_SUBDEV_FORMAT_ACTIVE, &f->fmt.pix,
315 &source);
316 if (ret)
317 return ret;
318
319 vin->source.width = source.width;
320 vin->source.height = source.height;
321
322 vin->format = f->fmt.pix;
323
324 rvin_reset_crop_compose(vin);
325
326 return 0;
327}
328
329static int rvin_g_fmt_vid_cap(struct file *file, void *priv,
330 struct v4l2_format *f)
331{
332 struct rvin_dev *vin = video_drvdata(file);
333
334 f->fmt.pix = vin->format;
335
336 return 0;
337}
338
339static int rvin_enum_fmt_vid_cap(struct file *file, void *priv,
340 struct v4l2_fmtdesc *f)
341{
342 if (f->index >= ARRAY_SIZE(rvin_formats))
343 return -EINVAL;
344
345 f->pixelformat = rvin_formats[f->index].fourcc;
346
347 return 0;
348}
349
350static int rvin_g_selection(struct file *file, void *fh,
351 struct v4l2_selection *s)
352{
353 struct rvin_dev *vin = video_drvdata(file);
354
355 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
356 return -EINVAL;
357
358 switch (s->target) {
359 case V4L2_SEL_TGT_CROP_BOUNDS:
360 case V4L2_SEL_TGT_CROP_DEFAULT:
361 s->r.left = s->r.top = 0;
362 s->r.width = vin->source.width;
363 s->r.height = vin->source.height;
364 break;
365 case V4L2_SEL_TGT_CROP:
366 s->r = vin->crop;
367 break;
368 case V4L2_SEL_TGT_COMPOSE_BOUNDS:
369 case V4L2_SEL_TGT_COMPOSE_DEFAULT:
370 s->r.left = s->r.top = 0;
371 s->r.width = vin->format.width;
372 s->r.height = vin->format.height;
373 break;
374 case V4L2_SEL_TGT_COMPOSE:
375 s->r = vin->compose;
376 break;
377 default:
378 return -EINVAL;
379 }
380
381 return 0;
382}
383
384static int rvin_s_selection(struct file *file, void *fh,
385 struct v4l2_selection *s)
386{
387 struct rvin_dev *vin = video_drvdata(file);
388 const struct rvin_video_format *fmt;
389 struct v4l2_rect r = s->r;
390 struct v4l2_rect max_rect;
391 struct v4l2_rect min_rect = {
392 .width = 6,
393 .height = 2,
394 };
395
396 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
397 return -EINVAL;
398
399 v4l2_rect_set_min_size(&r, &min_rect);
400
401 switch (s->target) {
402 case V4L2_SEL_TGT_CROP:
403
404 max_rect.top = max_rect.left = 0;
405 max_rect.width = vin->source.width;
406 max_rect.height = vin->source.height;
407 v4l2_rect_map_inside(&r, &max_rect);
408
409 v4l_bound_align_image(&r.width, 2, vin->source.width, 1,
410 &r.height, 4, vin->source.height, 2, 0);
411
412 r.top = clamp_t(s32, r.top, 0, vin->source.height - r.height);
413 r.left = clamp_t(s32, r.left, 0, vin->source.width - r.width);
414
415 vin->crop = s->r = r;
416
417 vin_dbg(vin, "Cropped %dx%d@%d:%d of %dx%d\n",
418 r.width, r.height, r.left, r.top,
419 vin->source.width, vin->source.height);
420 break;
421 case V4L2_SEL_TGT_COMPOSE:
422
423 max_rect.top = max_rect.left = 0;
424 max_rect.width = vin->format.width;
425 max_rect.height = vin->format.height;
426 v4l2_rect_map_inside(&r, &max_rect);
427
428
429
430
431
432
433 while ((r.top * vin->format.bytesperline) & HW_BUFFER_MASK)
434 r.top--;
435
436 fmt = rvin_format_from_pixel(vin->format.pixelformat);
437 while ((r.left * fmt->bpp) & HW_BUFFER_MASK)
438 r.left--;
439
440 vin->compose = s->r = r;
441
442 vin_dbg(vin, "Compose %dx%d@%d:%d in %dx%d\n",
443 r.width, r.height, r.left, r.top,
444 vin->format.width, vin->format.height);
445 break;
446 default:
447 return -EINVAL;
448 }
449
450
451 rvin_crop_scale_comp(vin);
452
453 return 0;
454}
455
456static int rvin_cropcap(struct file *file, void *priv,
457 struct v4l2_cropcap *crop)
458{
459 struct rvin_dev *vin = video_drvdata(file);
460 struct v4l2_subdev *sd = vin_to_source(vin);
461
462 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
463 return -EINVAL;
464
465 return v4l2_subdev_call(sd, video, g_pixelaspect, &crop->pixelaspect);
466}
467
468static int rvin_enum_input(struct file *file, void *priv,
469 struct v4l2_input *i)
470{
471 struct rvin_dev *vin = video_drvdata(file);
472 struct v4l2_subdev *sd = vin_to_source(vin);
473 int ret;
474
475 if (i->index != 0)
476 return -EINVAL;
477
478 ret = v4l2_subdev_call(sd, video, g_input_status, &i->status);
479 if (ret < 0 && ret != -ENOIOCTLCMD && ret != -ENODEV)
480 return ret;
481
482 i->type = V4L2_INPUT_TYPE_CAMERA;
483 i->std = vin->vdev.tvnorms;
484
485 if (v4l2_subdev_has_op(sd, pad, dv_timings_cap))
486 i->capabilities = V4L2_IN_CAP_DV_TIMINGS;
487
488 strlcpy(i->name, "Camera", sizeof(i->name));
489
490 return 0;
491}
492
493static int rvin_g_input(struct file *file, void *priv, unsigned int *i)
494{
495 *i = 0;
496 return 0;
497}
498
499static int rvin_s_input(struct file *file, void *priv, unsigned int i)
500{
501 if (i > 0)
502 return -EINVAL;
503 return 0;
504}
505
506static int rvin_querystd(struct file *file, void *priv, v4l2_std_id *a)
507{
508 struct rvin_dev *vin = video_drvdata(file);
509 struct v4l2_subdev *sd = vin_to_source(vin);
510
511 return v4l2_subdev_call(sd, video, querystd, a);
512}
513
514static int rvin_s_std(struct file *file, void *priv, v4l2_std_id a)
515{
516 struct rvin_dev *vin = video_drvdata(file);
517 int ret;
518
519 ret = v4l2_subdev_call(vin_to_source(vin), video, s_std, a);
520 if (ret < 0)
521 return ret;
522
523
524 return rvin_reset_format(vin);
525}
526
527static int rvin_g_std(struct file *file, void *priv, v4l2_std_id *a)
528{
529 struct rvin_dev *vin = video_drvdata(file);
530 struct v4l2_subdev *sd = vin_to_source(vin);
531
532 return v4l2_subdev_call(sd, video, g_std, a);
533}
534
535static int rvin_subscribe_event(struct v4l2_fh *fh,
536 const struct v4l2_event_subscription *sub)
537{
538 switch (sub->type) {
539 case V4L2_EVENT_SOURCE_CHANGE:
540 return v4l2_event_subscribe(fh, sub, 4, NULL);
541 }
542 return v4l2_ctrl_subscribe_event(fh, sub);
543}
544
545static int rvin_enum_dv_timings(struct file *file, void *priv_fh,
546 struct v4l2_enum_dv_timings *timings)
547{
548 struct rvin_dev *vin = video_drvdata(file);
549 struct v4l2_subdev *sd = vin_to_source(vin);
550 int pad, ret;
551
552 pad = timings->pad;
553 timings->pad = vin->sink_pad_idx;
554
555 ret = v4l2_subdev_call(sd, pad, enum_dv_timings, timings);
556
557 timings->pad = pad;
558
559 return ret;
560}
561
562static int rvin_s_dv_timings(struct file *file, void *priv_fh,
563 struct v4l2_dv_timings *timings)
564{
565 struct rvin_dev *vin = video_drvdata(file);
566 struct v4l2_subdev *sd = vin_to_source(vin);
567 int ret;
568
569 ret = v4l2_subdev_call(sd, video, s_dv_timings, timings);
570 if (ret)
571 return ret;
572
573 vin->source.width = timings->bt.width;
574 vin->source.height = timings->bt.height;
575 vin->format.width = timings->bt.width;
576 vin->format.height = timings->bt.height;
577
578 return 0;
579}
580
581static int rvin_g_dv_timings(struct file *file, void *priv_fh,
582 struct v4l2_dv_timings *timings)
583{
584 struct rvin_dev *vin = video_drvdata(file);
585 struct v4l2_subdev *sd = vin_to_source(vin);
586
587 return v4l2_subdev_call(sd, video, g_dv_timings, timings);
588}
589
590static int rvin_query_dv_timings(struct file *file, void *priv_fh,
591 struct v4l2_dv_timings *timings)
592{
593 struct rvin_dev *vin = video_drvdata(file);
594 struct v4l2_subdev *sd = vin_to_source(vin);
595
596 return v4l2_subdev_call(sd, video, query_dv_timings, timings);
597}
598
599static int rvin_dv_timings_cap(struct file *file, void *priv_fh,
600 struct v4l2_dv_timings_cap *cap)
601{
602 struct rvin_dev *vin = video_drvdata(file);
603 struct v4l2_subdev *sd = vin_to_source(vin);
604 int pad, ret;
605
606 pad = cap->pad;
607 cap->pad = vin->sink_pad_idx;
608
609 ret = v4l2_subdev_call(sd, pad, dv_timings_cap, cap);
610
611 cap->pad = pad;
612
613 return ret;
614}
615
616static int rvin_g_edid(struct file *file, void *fh, struct v4l2_edid *edid)
617{
618 struct rvin_dev *vin = video_drvdata(file);
619 struct v4l2_subdev *sd = vin_to_source(vin);
620 int input, ret;
621
622 if (edid->pad)
623 return -EINVAL;
624
625 input = edid->pad;
626 edid->pad = vin->sink_pad_idx;
627
628 ret = v4l2_subdev_call(sd, pad, get_edid, edid);
629
630 edid->pad = input;
631
632 return ret;
633}
634
635static int rvin_s_edid(struct file *file, void *fh, struct v4l2_edid *edid)
636{
637 struct rvin_dev *vin = video_drvdata(file);
638 struct v4l2_subdev *sd = vin_to_source(vin);
639 int input, ret;
640
641 if (edid->pad)
642 return -EINVAL;
643
644 input = edid->pad;
645 edid->pad = vin->sink_pad_idx;
646
647 ret = v4l2_subdev_call(sd, pad, set_edid, edid);
648
649 edid->pad = input;
650
651 return ret;
652}
653
654static const struct v4l2_ioctl_ops rvin_ioctl_ops = {
655 .vidioc_querycap = rvin_querycap,
656 .vidioc_try_fmt_vid_cap = rvin_try_fmt_vid_cap,
657 .vidioc_g_fmt_vid_cap = rvin_g_fmt_vid_cap,
658 .vidioc_s_fmt_vid_cap = rvin_s_fmt_vid_cap,
659 .vidioc_enum_fmt_vid_cap = rvin_enum_fmt_vid_cap,
660
661 .vidioc_g_selection = rvin_g_selection,
662 .vidioc_s_selection = rvin_s_selection,
663
664 .vidioc_cropcap = rvin_cropcap,
665
666 .vidioc_enum_input = rvin_enum_input,
667 .vidioc_g_input = rvin_g_input,
668 .vidioc_s_input = rvin_s_input,
669
670 .vidioc_dv_timings_cap = rvin_dv_timings_cap,
671 .vidioc_enum_dv_timings = rvin_enum_dv_timings,
672 .vidioc_g_dv_timings = rvin_g_dv_timings,
673 .vidioc_s_dv_timings = rvin_s_dv_timings,
674 .vidioc_query_dv_timings = rvin_query_dv_timings,
675
676 .vidioc_g_edid = rvin_g_edid,
677 .vidioc_s_edid = rvin_s_edid,
678
679 .vidioc_querystd = rvin_querystd,
680 .vidioc_g_std = rvin_g_std,
681 .vidioc_s_std = rvin_s_std,
682
683 .vidioc_reqbufs = vb2_ioctl_reqbufs,
684 .vidioc_create_bufs = vb2_ioctl_create_bufs,
685 .vidioc_querybuf = vb2_ioctl_querybuf,
686 .vidioc_qbuf = vb2_ioctl_qbuf,
687 .vidioc_dqbuf = vb2_ioctl_dqbuf,
688 .vidioc_expbuf = vb2_ioctl_expbuf,
689 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
690 .vidioc_streamon = vb2_ioctl_streamon,
691 .vidioc_streamoff = vb2_ioctl_streamoff,
692
693 .vidioc_log_status = v4l2_ctrl_log_status,
694 .vidioc_subscribe_event = rvin_subscribe_event,
695 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
696};
697
698
699
700
701
702static int rvin_power_on(struct rvin_dev *vin)
703{
704 int ret;
705 struct v4l2_subdev *sd = vin_to_source(vin);
706
707 pm_runtime_get_sync(vin->v4l2_dev.dev);
708
709 ret = v4l2_subdev_call(sd, core, s_power, 1);
710 if (ret < 0 && ret != -ENOIOCTLCMD && ret != -ENODEV)
711 return ret;
712 return 0;
713}
714
715static int rvin_power_off(struct rvin_dev *vin)
716{
717 int ret;
718 struct v4l2_subdev *sd = vin_to_source(vin);
719
720 ret = v4l2_subdev_call(sd, core, s_power, 0);
721
722 pm_runtime_put(vin->v4l2_dev.dev);
723
724 if (ret < 0 && ret != -ENOIOCTLCMD && ret != -ENODEV)
725 return ret;
726
727 return 0;
728}
729
730static int rvin_initialize_device(struct file *file)
731{
732 struct rvin_dev *vin = video_drvdata(file);
733 int ret;
734
735 struct v4l2_format f = {
736 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
737 .fmt.pix = {
738 .width = vin->format.width,
739 .height = vin->format.height,
740 .field = vin->format.field,
741 .colorspace = vin->format.colorspace,
742 .pixelformat = vin->format.pixelformat,
743 },
744 };
745
746 ret = rvin_power_on(vin);
747 if (ret < 0)
748 return ret;
749
750 pm_runtime_enable(&vin->vdev.dev);
751 ret = pm_runtime_resume(&vin->vdev.dev);
752 if (ret < 0 && ret != -ENOSYS)
753 goto eresume;
754
755
756
757
758
759
760
761 ret = rvin_s_fmt_vid_cap(file, NULL, &f);
762 if (ret < 0)
763 goto esfmt;
764
765 v4l2_ctrl_handler_setup(&vin->ctrl_handler);
766
767 return 0;
768esfmt:
769 pm_runtime_disable(&vin->vdev.dev);
770eresume:
771 rvin_power_off(vin);
772
773 return ret;
774}
775
776static int rvin_open(struct file *file)
777{
778 struct rvin_dev *vin = video_drvdata(file);
779 int ret;
780
781 mutex_lock(&vin->lock);
782
783 file->private_data = vin;
784
785 ret = v4l2_fh_open(file);
786 if (ret)
787 goto unlock;
788
789 if (!v4l2_fh_is_singular_file(file))
790 goto unlock;
791
792 if (rvin_initialize_device(file)) {
793 v4l2_fh_release(file);
794 ret = -ENODEV;
795 }
796
797unlock:
798 mutex_unlock(&vin->lock);
799 return ret;
800}
801
802static int rvin_release(struct file *file)
803{
804 struct rvin_dev *vin = video_drvdata(file);
805 bool fh_singular;
806 int ret;
807
808 mutex_lock(&vin->lock);
809
810
811 fh_singular = v4l2_fh_is_singular_file(file);
812
813
814 ret = _vb2_fop_release(file, NULL);
815
816
817
818
819
820 if (fh_singular) {
821 pm_runtime_suspend(&vin->vdev.dev);
822 pm_runtime_disable(&vin->vdev.dev);
823 rvin_power_off(vin);
824 }
825
826 mutex_unlock(&vin->lock);
827
828 return ret;
829}
830
831static const struct v4l2_file_operations rvin_fops = {
832 .owner = THIS_MODULE,
833 .unlocked_ioctl = video_ioctl2,
834 .open = rvin_open,
835 .release = rvin_release,
836 .poll = vb2_fop_poll,
837 .mmap = vb2_fop_mmap,
838 .read = vb2_fop_read,
839};
840
841void rvin_v4l2_remove(struct rvin_dev *vin)
842{
843 v4l2_info(&vin->v4l2_dev, "Removing %s\n",
844 video_device_node_name(&vin->vdev));
845
846
847 v4l2_ctrl_handler_free(&vin->ctrl_handler);
848
849
850 video_unregister_device(&vin->vdev);
851}
852
853static void rvin_notify(struct v4l2_subdev *sd,
854 unsigned int notification, void *arg)
855{
856 struct rvin_dev *vin =
857 container_of(sd->v4l2_dev, struct rvin_dev, v4l2_dev);
858
859 switch (notification) {
860 case V4L2_DEVICE_NOTIFY_EVENT:
861 v4l2_event_queue(&vin->vdev, arg);
862 break;
863 default:
864 break;
865 }
866}
867
868int rvin_v4l2_probe(struct rvin_dev *vin)
869{
870 struct video_device *vdev = &vin->vdev;
871 struct v4l2_subdev *sd = vin_to_source(vin);
872 int pad_idx, ret;
873
874 v4l2_set_subdev_hostdata(sd, vin);
875
876 vin->v4l2_dev.notify = rvin_notify;
877
878 ret = v4l2_subdev_call(sd, video, g_tvnorms, &vin->vdev.tvnorms);
879 if (ret < 0 && ret != -ENOIOCTLCMD && ret != -ENODEV)
880 return ret;
881
882 if (vin->vdev.tvnorms == 0) {
883
884 v4l2_disable_ioctl(&vin->vdev, VIDIOC_G_STD);
885 v4l2_disable_ioctl(&vin->vdev, VIDIOC_S_STD);
886 v4l2_disable_ioctl(&vin->vdev, VIDIOC_QUERYSTD);
887 v4l2_disable_ioctl(&vin->vdev, VIDIOC_ENUMSTD);
888 }
889
890
891
892
893
894
895
896
897
898 ret = v4l2_ctrl_handler_init(&vin->ctrl_handler, 16);
899 if (ret < 0)
900 return ret;
901
902 ret = v4l2_ctrl_add_handler(&vin->ctrl_handler, sd->ctrl_handler, NULL);
903 if (ret < 0)
904 return ret;
905
906
907 vdev->fops = &rvin_fops;
908 vdev->v4l2_dev = &vin->v4l2_dev;
909 vdev->queue = &vin->queue;
910 strlcpy(vdev->name, KBUILD_MODNAME, sizeof(vdev->name));
911 vdev->release = video_device_release_empty;
912 vdev->ioctl_ops = &rvin_ioctl_ops;
913 vdev->lock = &vin->lock;
914 vdev->ctrl_handler = &vin->ctrl_handler;
915 vdev->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
916 V4L2_CAP_READWRITE;
917
918 vin->src_pad_idx = 0;
919 for (pad_idx = 0; pad_idx < sd->entity.num_pads; pad_idx++)
920 if (sd->entity.pads[pad_idx].flags == MEDIA_PAD_FL_SOURCE)
921 break;
922 if (pad_idx >= sd->entity.num_pads)
923 return -EINVAL;
924
925 vin->src_pad_idx = pad_idx;
926
927 vin->sink_pad_idx = 0;
928 for (pad_idx = 0; pad_idx < sd->entity.num_pads; pad_idx++)
929 if (sd->entity.pads[pad_idx].flags == MEDIA_PAD_FL_SINK) {
930 vin->sink_pad_idx = pad_idx;
931 break;
932 }
933
934 vin->format.pixelformat = RVIN_DEFAULT_FORMAT;
935 rvin_reset_format(vin);
936
937 ret = video_register_device(&vin->vdev, VFL_TYPE_GRABBER, -1);
938 if (ret) {
939 vin_err(vin, "Failed to register video device\n");
940 return ret;
941 }
942
943 video_set_drvdata(&vin->vdev, vin);
944
945 v4l2_info(&vin->v4l2_dev, "Device registered as %s\n",
946 video_device_node_name(&vin->vdev));
947
948 return ret;
949}
950