1
2
3
4
5
6
7
8
9
10
11
12
13
14#include <linux/delay.h>
15#include <linux/device.h>
16#include <linux/dma-mapping.h>
17#include <linux/err.h>
18#include <linux/errno.h>
19#include <linux/interrupt.h>
20#include <linux/io.h>
21#include <linux/kernel.h>
22#include <linux/mm.h>
23#include <linux/module.h>
24#include <linux/of.h>
25#include <linux/of_device.h>
26#include <linux/of_graph.h>
27#include <linux/platform_device.h>
28#include <linux/pm_runtime.h>
29#include <linux/slab.h>
30#include <linux/time.h>
31#include <linux/videodev2.h>
32
33#include <media/v4l2-async.h>
34#include <media/v4l2-common.h>
35#include <media/v4l2-ctrls.h>
36#include <media/v4l2-dev.h>
37#include <media/v4l2-device.h>
38#include <media/v4l2-event.h>
39#include <media/v4l2-fwnode.h>
40#include <media/v4l2-image-sizes.h>
41#include <media/v4l2-ioctl.h>
42#include <media/v4l2-mediabus.h>
43#include <media/videobuf2-dma-contig.h>
44
45#include <media/drv-intf/renesas-ceu.h>
46
47#define DRIVER_NAME "renesas-ceu"
48
49
50#define CEU_CAPSR 0x00
51#define CEU_CAPCR 0x04
52#define CEU_CAMCR 0x08
53#define CEU_CAMOR 0x10
54#define CEU_CAPWR 0x14
55#define CEU_CAIFR 0x18
56#define CEU_CRCNTR 0x28
57#define CEU_CRCMPR 0x2c
58#define CEU_CFLCR 0x30
59#define CEU_CFSZR 0x34
60#define CEU_CDWDR 0x38
61#define CEU_CDAYR 0x3c
62#define CEU_CDACR 0x40
63#define CEU_CFWCR 0x5c
64#define CEU_CDOCR 0x64
65#define CEU_CEIER 0x70
66#define CEU_CETCR 0x74
67#define CEU_CSTSR 0x7c
68#define CEU_CSRTR 0x80
69
70
71#define CEU_CAMCR_JPEG BIT(4)
72
73
74#define CEU_CAMCR_DTARY_8_UYVY (0x00 << 8)
75#define CEU_CAMCR_DTARY_8_VYUY (0x01 << 8)
76#define CEU_CAMCR_DTARY_8_YUYV (0x02 << 8)
77#define CEU_CAMCR_DTARY_8_YVYU (0x03 << 8)
78
79
80
81#define CEU_CAPCR_BUS_WIDTH256 (0x3 << 20)
82
83
84#define CEU_CAMCR_DTIF_16BITS BIT(12)
85
86
87#define CEU_CDOCR_NO_DOWSAMPLE BIT(4)
88
89
90#define CEU_CDOCR_SWAP_ENDIANNESS (7)
91
92
93#define CEU_CAPSR_CPKIL BIT(16)
94#define CEU_CAPSR_CE BIT(0)
95
96
97#define CEU_CAPCR_CTNCP BIT(16)
98#define CEU_CSTRST_CPTON BIT(0)
99
100
101#define CEU_CETCR_ALL_IRQS_RZ 0x397f313
102#define CEU_CETCR_ALL_IRQS_SH4 0x3d7f313
103
104
105#define CEU_CETCR_IGRW BIT(4)
106
107#define CEU_CEIER_CPE BIT(0)
108
109#define CEU_CEIER_VBP BIT(20)
110#define CEU_CEIER_MASK (CEU_CEIER_CPE | CEU_CEIER_VBP)
111
112#define CEU_MAX_WIDTH 2560
113#define CEU_MAX_HEIGHT 1920
114#define CEU_MAX_BPL 8188
115#define CEU_W_MAX(w) ((w) < CEU_MAX_WIDTH ? (w) : CEU_MAX_WIDTH)
116#define CEU_H_MAX(h) ((h) < CEU_MAX_HEIGHT ? (h) : CEU_MAX_HEIGHT)
117
118
119
120
121
122
123
124
125
126
127
128
129struct ceu_mbus_fmt {
130 u32 mbus_code;
131 u32 fmt_order;
132 u32 fmt_order_swap;
133 bool swapped;
134 u8 bps;
135 u8 bpp;
136};
137
138
139
140
141struct ceu_buffer {
142 struct vb2_v4l2_buffer vb;
143 struct list_head queue;
144};
145
146static inline struct ceu_buffer *vb2_to_ceu(struct vb2_v4l2_buffer *vbuf)
147{
148 return container_of(vbuf, struct ceu_buffer, vb);
149}
150
151
152
153
154struct ceu_subdev {
155 struct v4l2_subdev *v4l2_sd;
156 struct v4l2_async_subdev asd;
157
158
159 unsigned int mbus_flags;
160 struct ceu_mbus_fmt mbus_fmt;
161};
162
163static struct ceu_subdev *to_ceu_subdev(struct v4l2_async_subdev *asd)
164{
165 return container_of(asd, struct ceu_subdev, asd);
166}
167
168
169
170
171struct ceu_device {
172 struct device *dev;
173 struct video_device vdev;
174 struct v4l2_device v4l2_dev;
175
176
177 struct ceu_subdev *subdevs;
178
179 struct ceu_subdev *sd;
180 unsigned int sd_index;
181 unsigned int num_sd;
182
183
184 u32 irq_mask;
185
186
187 enum v4l2_field field;
188 struct v4l2_pix_format_mplane v4l2_pix;
189
190
191 struct v4l2_async_notifier notifier;
192
193 struct v4l2_async_subdev **asds;
194
195
196 struct vb2_queue vb2_vq;
197 struct list_head capture;
198 struct vb2_v4l2_buffer *active;
199 unsigned int sequence;
200
201
202 struct mutex mlock;
203
204
205 spinlock_t lock;
206
207
208 void __iomem *base;
209};
210
211static inline struct ceu_device *v4l2_to_ceu(struct v4l2_device *v4l2_dev)
212{
213 return container_of(v4l2_dev, struct ceu_device, v4l2_dev);
214}
215
216
217
218
219
220
221
222
223
224struct ceu_fmt {
225 u32 fourcc;
226 u32 bpp;
227};
228
229
230
231
232
233
234
235
236static const struct ceu_fmt ceu_fmt_list[] = {
237 {
238 .fourcc = V4L2_PIX_FMT_NV16,
239 .bpp = 16,
240 },
241 {
242 .fourcc = V4L2_PIX_FMT_NV61,
243 .bpp = 16,
244 },
245 {
246 .fourcc = V4L2_PIX_FMT_NV12,
247 .bpp = 12,
248 },
249 {
250 .fourcc = V4L2_PIX_FMT_NV21,
251 .bpp = 12,
252 },
253 {
254 .fourcc = V4L2_PIX_FMT_YUYV,
255 .bpp = 16,
256 },
257};
258
259static const struct ceu_fmt *get_ceu_fmt_from_fourcc(unsigned int fourcc)
260{
261 const struct ceu_fmt *fmt = &ceu_fmt_list[0];
262 unsigned int i;
263
264 for (i = 0; i < ARRAY_SIZE(ceu_fmt_list); i++, fmt++)
265 if (fmt->fourcc == fourcc)
266 return fmt;
267
268 return NULL;
269}
270
271static bool ceu_fmt_mplane(struct v4l2_pix_format_mplane *pix)
272{
273 switch (pix->pixelformat) {
274 case V4L2_PIX_FMT_YUYV:
275 return false;
276 case V4L2_PIX_FMT_NV16:
277 case V4L2_PIX_FMT_NV61:
278 case V4L2_PIX_FMT_NV12:
279 case V4L2_PIX_FMT_NV21:
280 return true;
281 default:
282 return false;
283 }
284}
285
286
287
288static void ceu_write(struct ceu_device *priv, unsigned int reg_offs, u32 data)
289{
290 iowrite32(data, priv->base + reg_offs);
291}
292
293static u32 ceu_read(struct ceu_device *priv, unsigned int reg_offs)
294{
295 return ioread32(priv->base + reg_offs);
296}
297
298
299
300
301
302
303
304static int ceu_soft_reset(struct ceu_device *ceudev)
305{
306 unsigned int i;
307
308 ceu_write(ceudev, CEU_CAPSR, CEU_CAPSR_CPKIL);
309
310 for (i = 0; i < 100; i++) {
311 if (!(ceu_read(ceudev, CEU_CSTSR) & CEU_CSTRST_CPTON))
312 break;
313 udelay(1);
314 }
315
316 if (i == 100) {
317 dev_err(ceudev->dev, "soft reset time out\n");
318 return -EIO;
319 }
320
321 for (i = 0; i < 100; i++) {
322 if (!(ceu_read(ceudev, CEU_CAPSR) & CEU_CAPSR_CPKIL))
323 return 0;
324 udelay(1);
325 }
326
327
328 return -EIO;
329}
330
331
332
333
334
335
336static int ceu_hw_config(struct ceu_device *ceudev)
337{
338 u32 camcr, cdocr, cfzsr, cdwdr, capwr;
339 struct v4l2_pix_format_mplane *pix = &ceudev->v4l2_pix;
340 struct ceu_subdev *ceu_sd = ceudev->sd;
341 struct ceu_mbus_fmt *mbus_fmt = &ceu_sd->mbus_fmt;
342 unsigned int mbus_flags = ceu_sd->mbus_flags;
343
344
345 ceu_write(ceudev, CEU_CAIFR, 0);
346 ceu_write(ceudev, CEU_CFWCR, 0);
347 ceu_write(ceudev, CEU_CRCNTR, 0);
348 ceu_write(ceudev, CEU_CRCMPR, 0);
349
350
351 capwr = (pix->height << 16) | pix->width * mbus_fmt->bpp / 8;
352
353
354
355
356
357
358
359
360
361
362 cdocr = CEU_CDOCR_SWAP_ENDIANNESS;
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380 switch (pix->pixelformat) {
381
382 case V4L2_PIX_FMT_YUYV:
383
384 camcr = CEU_CAMCR_JPEG;
385 cdocr |= CEU_CDOCR_NO_DOWSAMPLE;
386 cfzsr = (pix->height << 16) | pix->width;
387 cdwdr = pix->plane_fmt[0].bytesperline;
388 break;
389
390
391 case V4L2_PIX_FMT_NV16:
392 cdocr |= CEU_CDOCR_NO_DOWSAMPLE;
393
394 case V4L2_PIX_FMT_NV12:
395 if (mbus_fmt->swapped)
396 camcr = mbus_fmt->fmt_order_swap;
397 else
398 camcr = mbus_fmt->fmt_order;
399
400 cfzsr = (pix->height << 16) | pix->width;
401 cdwdr = pix->width;
402 break;
403
404
405 case V4L2_PIX_FMT_NV61:
406 cdocr |= CEU_CDOCR_NO_DOWSAMPLE;
407
408 case V4L2_PIX_FMT_NV21:
409 if (mbus_fmt->swapped)
410 camcr = mbus_fmt->fmt_order;
411 else
412 camcr = mbus_fmt->fmt_order_swap;
413
414 cfzsr = (pix->height << 16) | pix->width;
415 cdwdr = pix->width;
416 break;
417
418 default:
419 return -EINVAL;
420 }
421
422 camcr |= mbus_flags & V4L2_MBUS_VSYNC_ACTIVE_LOW ? 1 << 1 : 0;
423 camcr |= mbus_flags & V4L2_MBUS_HSYNC_ACTIVE_LOW ? 1 << 0 : 0;
424
425
426 ceu_write(ceudev, CEU_CAMCR, camcr);
427 ceu_write(ceudev, CEU_CDOCR, cdocr);
428 ceu_write(ceudev, CEU_CAPCR, CEU_CAPCR_BUS_WIDTH256);
429
430
431
432
433
434
435 ceu_write(ceudev, CEU_CAMOR, 0);
436
437
438 ceu_write(ceudev, CEU_CAPWR, capwr);
439 ceu_write(ceudev, CEU_CFSZR, cfzsr);
440 ceu_write(ceudev, CEU_CDWDR, cdwdr);
441
442 return 0;
443}
444
445
446
447
448
449
450static int ceu_capture(struct ceu_device *ceudev)
451{
452 struct v4l2_pix_format_mplane *pix = &ceudev->v4l2_pix;
453 dma_addr_t phys_addr_top;
454
455 phys_addr_top =
456 vb2_dma_contig_plane_dma_addr(&ceudev->active->vb2_buf, 0);
457 ceu_write(ceudev, CEU_CDAYR, phys_addr_top);
458
459
460 if (ceu_fmt_mplane(pix)) {
461 phys_addr_top =
462 vb2_dma_contig_plane_dma_addr(&ceudev->active->vb2_buf,
463 1);
464 ceu_write(ceudev, CEU_CDACR, phys_addr_top);
465 }
466
467
468
469
470
471 ceu_write(ceudev, CEU_CAPSR, CEU_CAPSR_CE);
472
473 return 0;
474}
475
476static irqreturn_t ceu_irq(int irq, void *data)
477{
478 struct ceu_device *ceudev = data;
479 struct vb2_v4l2_buffer *vbuf;
480 struct ceu_buffer *buf;
481 u32 status;
482
483
484 status = ceu_read(ceudev, CEU_CETCR);
485 ceu_write(ceudev, CEU_CETCR, ~ceudev->irq_mask);
486
487
488 if (!(status & CEU_CEIER_MASK))
489 return IRQ_NONE;
490
491 spin_lock(&ceudev->lock);
492
493
494 vbuf = ceudev->active;
495 if (!vbuf) {
496 spin_unlock(&ceudev->lock);
497 return IRQ_HANDLED;
498 }
499
500
501
502
503
504 if (status & CEU_CEIER_VBP) {
505 dev_err(ceudev->dev, "VBP interrupt: abort capture\n");
506 goto error_irq_out;
507 }
508
509
510 vbuf->vb2_buf.timestamp = ktime_get_ns();
511 vbuf->sequence = ceudev->sequence++;
512 vbuf->field = ceudev->field;
513
514
515 if (!list_empty(&ceudev->capture)) {
516 buf = list_first_entry(&ceudev->capture, struct ceu_buffer,
517 queue);
518 list_del(&buf->queue);
519 ceudev->active = &buf->vb;
520
521 ceu_capture(ceudev);
522 }
523
524
525 vb2_buffer_done(&vbuf->vb2_buf, VB2_BUF_STATE_DONE);
526
527 spin_unlock(&ceudev->lock);
528
529 return IRQ_HANDLED;
530
531error_irq_out:
532
533 vb2_buffer_done(&vbuf->vb2_buf, VB2_BUF_STATE_ERROR);
534
535 list_for_each_entry(buf, &ceudev->capture, queue)
536 vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
537
538 spin_unlock(&ceudev->lock);
539
540 return IRQ_HANDLED;
541}
542
543
544
545static void ceu_update_plane_sizes(struct v4l2_plane_pix_format *plane,
546 unsigned int bpl, unsigned int szimage)
547{
548 memset(plane, 0, sizeof(*plane));
549
550 plane->sizeimage = szimage;
551 if (plane->bytesperline < bpl || plane->bytesperline > CEU_MAX_BPL)
552 plane->bytesperline = bpl;
553}
554
555
556
557
558
559
560
561
562
563static void ceu_calc_plane_sizes(struct ceu_device *ceudev,
564 const struct ceu_fmt *ceu_fmt,
565 struct v4l2_pix_format_mplane *pix)
566{
567 unsigned int bpl, szimage;
568
569 switch (pix->pixelformat) {
570 case V4L2_PIX_FMT_YUYV:
571 pix->num_planes = 1;
572 bpl = pix->width * ceu_fmt->bpp / 8;
573 szimage = pix->height * bpl;
574 ceu_update_plane_sizes(&pix->plane_fmt[0], bpl, szimage);
575 break;
576
577 case V4L2_PIX_FMT_NV12:
578 case V4L2_PIX_FMT_NV21:
579 pix->num_planes = 2;
580 bpl = pix->width;
581 szimage = pix->height * pix->width;
582 ceu_update_plane_sizes(&pix->plane_fmt[0], bpl, szimage);
583 ceu_update_plane_sizes(&pix->plane_fmt[1], bpl, szimage / 2);
584 break;
585
586 case V4L2_PIX_FMT_NV16:
587 case V4L2_PIX_FMT_NV61:
588 default:
589 pix->num_planes = 2;
590 bpl = pix->width;
591 szimage = pix->height * pix->width;
592 ceu_update_plane_sizes(&pix->plane_fmt[0], bpl, szimage);
593 ceu_update_plane_sizes(&pix->plane_fmt[1], bpl, szimage);
594 break;
595 }
596}
597
598
599
600
601
602
603static int ceu_vb2_setup(struct vb2_queue *vq, unsigned int *count,
604 unsigned int *num_planes, unsigned int sizes[],
605 struct device *alloc_devs[])
606{
607 struct ceu_device *ceudev = vb2_get_drv_priv(vq);
608 struct v4l2_pix_format_mplane *pix = &ceudev->v4l2_pix;
609 unsigned int i;
610
611
612 if (*num_planes) {
613 for (i = 0; i < pix->num_planes; i++)
614 if (sizes[i] < pix->plane_fmt[i].sizeimage)
615 return -EINVAL;
616
617 return 0;
618 }
619
620
621 *num_planes = pix->num_planes;
622 for (i = 0; i < pix->num_planes; i++)
623 sizes[i] = pix->plane_fmt[i].sizeimage;
624
625 return 0;
626}
627
628static void ceu_vb2_queue(struct vb2_buffer *vb)
629{
630 struct ceu_device *ceudev = vb2_get_drv_priv(vb->vb2_queue);
631 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
632 struct ceu_buffer *buf = vb2_to_ceu(vbuf);
633 unsigned long irqflags;
634
635 spin_lock_irqsave(&ceudev->lock, irqflags);
636 list_add_tail(&buf->queue, &ceudev->capture);
637 spin_unlock_irqrestore(&ceudev->lock, irqflags);
638}
639
640static int ceu_vb2_prepare(struct vb2_buffer *vb)
641{
642 struct ceu_device *ceudev = vb2_get_drv_priv(vb->vb2_queue);
643 struct v4l2_pix_format_mplane *pix = &ceudev->v4l2_pix;
644 unsigned int i;
645
646 for (i = 0; i < pix->num_planes; i++) {
647 if (vb2_plane_size(vb, i) < pix->plane_fmt[i].sizeimage) {
648 dev_err(ceudev->dev,
649 "Plane size too small (%lu < %u)\n",
650 vb2_plane_size(vb, i),
651 pix->plane_fmt[i].sizeimage);
652 return -EINVAL;
653 }
654
655 vb2_set_plane_payload(vb, i, pix->plane_fmt[i].sizeimage);
656 }
657
658 return 0;
659}
660
661static int ceu_start_streaming(struct vb2_queue *vq, unsigned int count)
662{
663 struct ceu_device *ceudev = vb2_get_drv_priv(vq);
664 struct v4l2_subdev *v4l2_sd = ceudev->sd->v4l2_sd;
665 struct ceu_buffer *buf;
666 unsigned long irqflags;
667 int ret;
668
669
670 ret = ceu_hw_config(ceudev);
671 if (ret)
672 goto error_return_bufs;
673
674 ret = v4l2_subdev_call(v4l2_sd, video, s_stream, 1);
675 if (ret && ret != -ENOIOCTLCMD) {
676 dev_dbg(ceudev->dev,
677 "Subdevice failed to start streaming: %d\n", ret);
678 goto error_return_bufs;
679 }
680
681 spin_lock_irqsave(&ceudev->lock, irqflags);
682 ceudev->sequence = 0;
683
684
685 buf = list_first_entry(&ceudev->capture, struct ceu_buffer,
686 queue);
687 if (!buf) {
688 spin_unlock_irqrestore(&ceudev->lock, irqflags);
689 dev_dbg(ceudev->dev,
690 "No buffer available for capture.\n");
691 goto error_stop_sensor;
692 }
693
694 list_del(&buf->queue);
695 ceudev->active = &buf->vb;
696
697
698 ceu_write(ceudev, CEU_CETCR, ~ceudev->irq_mask);
699 ceu_write(ceudev, CEU_CEIER, CEU_CEIER_MASK);
700
701 ceu_capture(ceudev);
702
703 spin_unlock_irqrestore(&ceudev->lock, irqflags);
704
705 return 0;
706
707error_stop_sensor:
708 v4l2_subdev_call(v4l2_sd, video, s_stream, 0);
709
710error_return_bufs:
711 spin_lock_irqsave(&ceudev->lock, irqflags);
712 list_for_each_entry(buf, &ceudev->capture, queue)
713 vb2_buffer_done(&ceudev->active->vb2_buf,
714 VB2_BUF_STATE_QUEUED);
715 ceudev->active = NULL;
716 spin_unlock_irqrestore(&ceudev->lock, irqflags);
717
718 return ret;
719}
720
721static void ceu_stop_streaming(struct vb2_queue *vq)
722{
723 struct ceu_device *ceudev = vb2_get_drv_priv(vq);
724 struct v4l2_subdev *v4l2_sd = ceudev->sd->v4l2_sd;
725 struct ceu_buffer *buf;
726 unsigned long irqflags;
727
728
729 ceu_write(ceudev, CEU_CETCR,
730 ceu_read(ceudev, CEU_CETCR) & ceudev->irq_mask);
731 ceu_write(ceudev, CEU_CEIER, CEU_CEIER_MASK);
732
733 v4l2_subdev_call(v4l2_sd, video, s_stream, 0);
734
735 spin_lock_irqsave(&ceudev->lock, irqflags);
736 if (ceudev->active) {
737 vb2_buffer_done(&ceudev->active->vb2_buf,
738 VB2_BUF_STATE_ERROR);
739 ceudev->active = NULL;
740 }
741
742
743 list_for_each_entry(buf, &ceudev->capture, queue)
744 vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
745 INIT_LIST_HEAD(&ceudev->capture);
746
747 spin_unlock_irqrestore(&ceudev->lock, irqflags);
748
749 ceu_soft_reset(ceudev);
750}
751
752static const struct vb2_ops ceu_vb2_ops = {
753 .queue_setup = ceu_vb2_setup,
754 .buf_queue = ceu_vb2_queue,
755 .buf_prepare = ceu_vb2_prepare,
756 .wait_prepare = vb2_ops_wait_prepare,
757 .wait_finish = vb2_ops_wait_finish,
758 .start_streaming = ceu_start_streaming,
759 .stop_streaming = ceu_stop_streaming,
760};
761
762
763
764
765
766
767
768
769
770
771static int ceu_try_fmt(struct ceu_device *ceudev, struct v4l2_format *v4l2_fmt)
772{
773 struct ceu_subdev *ceu_sd = ceudev->sd;
774 struct v4l2_pix_format_mplane *pix = &v4l2_fmt->fmt.pix_mp;
775 struct v4l2_subdev *v4l2_sd = ceu_sd->v4l2_sd;
776 struct v4l2_subdev_pad_config pad_cfg;
777 const struct ceu_fmt *ceu_fmt;
778 int ret;
779
780
781
782
783
784 struct v4l2_subdev_format sd_format = {
785 .which = V4L2_SUBDEV_FORMAT_TRY,
786 .format = {
787 .code = ceu_sd->mbus_fmt.mbus_code,
788 },
789 };
790
791 switch (pix->pixelformat) {
792 case V4L2_PIX_FMT_YUYV:
793 case V4L2_PIX_FMT_NV16:
794 case V4L2_PIX_FMT_NV61:
795 case V4L2_PIX_FMT_NV12:
796 case V4L2_PIX_FMT_NV21:
797 break;
798
799 default:
800 pix->pixelformat = V4L2_PIX_FMT_NV16;
801 break;
802 }
803
804 ceu_fmt = get_ceu_fmt_from_fourcc(pix->pixelformat);
805
806
807 v4l_bound_align_image(&pix->width, 2, CEU_MAX_WIDTH, 4,
808 &pix->height, 4, CEU_MAX_HEIGHT, 4, 0);
809
810 v4l2_fill_mbus_format_mplane(&sd_format.format, pix);
811 ret = v4l2_subdev_call(v4l2_sd, pad, set_fmt, &pad_cfg, &sd_format);
812 if (ret)
813 return ret;
814
815
816 v4l2_fill_pix_format_mplane(pix, &sd_format.format);
817
818
819 ceu_calc_plane_sizes(ceudev, ceu_fmt, pix);
820
821 return 0;
822}
823
824
825
826
827static int ceu_set_fmt(struct ceu_device *ceudev, struct v4l2_format *v4l2_fmt)
828{
829 struct ceu_subdev *ceu_sd = ceudev->sd;
830 struct v4l2_subdev *v4l2_sd = ceu_sd->v4l2_sd;
831 int ret;
832
833
834
835
836
837 struct v4l2_subdev_format format = {
838 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
839 .format = {
840 .code = ceu_sd->mbus_fmt.mbus_code,
841 },
842 };
843
844 ret = ceu_try_fmt(ceudev, v4l2_fmt);
845 if (ret)
846 return ret;
847
848 v4l2_fill_mbus_format_mplane(&format.format, &v4l2_fmt->fmt.pix_mp);
849 ret = v4l2_subdev_call(v4l2_sd, pad, set_fmt, NULL, &format);
850 if (ret)
851 return ret;
852
853 ceudev->v4l2_pix = v4l2_fmt->fmt.pix_mp;
854 ceudev->field = V4L2_FIELD_NONE;
855
856 return 0;
857}
858
859
860
861
862
863static int ceu_set_default_fmt(struct ceu_device *ceudev)
864{
865 int ret;
866
867 struct v4l2_format v4l2_fmt = {
868 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE,
869 .fmt.pix_mp = {
870 .width = VGA_WIDTH,
871 .height = VGA_HEIGHT,
872 .field = V4L2_FIELD_NONE,
873 .pixelformat = V4L2_PIX_FMT_NV16,
874 .num_planes = 2,
875 .plane_fmt = {
876 [0] = {
877 .sizeimage = VGA_WIDTH * VGA_HEIGHT * 2,
878 .bytesperline = VGA_WIDTH * 2,
879 },
880 [1] = {
881 .sizeimage = VGA_WIDTH * VGA_HEIGHT * 2,
882 .bytesperline = VGA_WIDTH * 2,
883 },
884 },
885 },
886 };
887
888 ret = ceu_try_fmt(ceudev, &v4l2_fmt);
889 if (ret)
890 return ret;
891
892 ceudev->v4l2_pix = v4l2_fmt.fmt.pix_mp;
893 ceudev->field = V4L2_FIELD_NONE;
894
895 return 0;
896}
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911static int ceu_init_mbus_fmt(struct ceu_device *ceudev)
912{
913 struct ceu_subdev *ceu_sd = ceudev->sd;
914 struct ceu_mbus_fmt *mbus_fmt = &ceu_sd->mbus_fmt;
915 struct v4l2_subdev *v4l2_sd = ceu_sd->v4l2_sd;
916 bool yuyv_bus_fmt = false;
917
918 struct v4l2_subdev_mbus_code_enum sd_mbus_fmt = {
919 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
920 .index = 0,
921 };
922
923
924 while (!yuyv_bus_fmt &&
925 !v4l2_subdev_call(v4l2_sd, pad, enum_mbus_code,
926 NULL, &sd_mbus_fmt)) {
927 switch (sd_mbus_fmt.code) {
928 case MEDIA_BUS_FMT_YUYV8_2X8:
929 case MEDIA_BUS_FMT_YVYU8_2X8:
930 case MEDIA_BUS_FMT_UYVY8_2X8:
931 case MEDIA_BUS_FMT_VYUY8_2X8:
932 yuyv_bus_fmt = true;
933 break;
934 default:
935
936
937
938
939
940
941 break;
942 }
943
944 sd_mbus_fmt.index++;
945 }
946
947 if (!yuyv_bus_fmt)
948 return -ENXIO;
949
950
951
952
953
954
955 mbus_fmt->mbus_code = sd_mbus_fmt.code;
956 mbus_fmt->bps = 8;
957
958
959 switch (sd_mbus_fmt.code) {
960 case MEDIA_BUS_FMT_YUYV8_2X8:
961 mbus_fmt->fmt_order = CEU_CAMCR_DTARY_8_YUYV;
962 mbus_fmt->fmt_order_swap = CEU_CAMCR_DTARY_8_YVYU;
963 mbus_fmt->swapped = false;
964 mbus_fmt->bpp = 16;
965 break;
966
967 case MEDIA_BUS_FMT_YVYU8_2X8:
968 mbus_fmt->fmt_order = CEU_CAMCR_DTARY_8_YVYU;
969 mbus_fmt->fmt_order_swap = CEU_CAMCR_DTARY_8_YUYV;
970 mbus_fmt->swapped = true;
971 mbus_fmt->bpp = 16;
972 break;
973
974 case MEDIA_BUS_FMT_UYVY8_2X8:
975 mbus_fmt->fmt_order = CEU_CAMCR_DTARY_8_UYVY;
976 mbus_fmt->fmt_order_swap = CEU_CAMCR_DTARY_8_VYUY;
977 mbus_fmt->swapped = false;
978 mbus_fmt->bpp = 16;
979 break;
980
981 case MEDIA_BUS_FMT_VYUY8_2X8:
982 mbus_fmt->fmt_order = CEU_CAMCR_DTARY_8_VYUY;
983 mbus_fmt->fmt_order_swap = CEU_CAMCR_DTARY_8_UYVY;
984 mbus_fmt->swapped = true;
985 mbus_fmt->bpp = 16;
986 break;
987 }
988
989 return 0;
990}
991
992
993
994
995
996
997static int __maybe_unused ceu_runtime_resume(struct device *dev)
998{
999 struct ceu_device *ceudev = dev_get_drvdata(dev);
1000 struct v4l2_subdev *v4l2_sd = ceudev->sd->v4l2_sd;
1001
1002 v4l2_subdev_call(v4l2_sd, core, s_power, 1);
1003
1004 ceu_soft_reset(ceudev);
1005
1006 return 0;
1007}
1008
1009
1010
1011
1012
1013static int __maybe_unused ceu_runtime_suspend(struct device *dev)
1014{
1015 struct ceu_device *ceudev = dev_get_drvdata(dev);
1016 struct v4l2_subdev *v4l2_sd = ceudev->sd->v4l2_sd;
1017
1018 v4l2_subdev_call(v4l2_sd, core, s_power, 0);
1019
1020 ceu_write(ceudev, CEU_CEIER, 0);
1021 ceu_soft_reset(ceudev);
1022
1023 return 0;
1024}
1025
1026
1027
1028static int ceu_open(struct file *file)
1029{
1030 struct ceu_device *ceudev = video_drvdata(file);
1031 int ret;
1032
1033 ret = v4l2_fh_open(file);
1034 if (ret)
1035 return ret;
1036
1037 mutex_lock(&ceudev->mlock);
1038
1039 pm_runtime_get_sync(ceudev->dev);
1040 mutex_unlock(&ceudev->mlock);
1041
1042 return 0;
1043}
1044
1045static int ceu_release(struct file *file)
1046{
1047 struct ceu_device *ceudev = video_drvdata(file);
1048
1049 vb2_fop_release(file);
1050
1051 mutex_lock(&ceudev->mlock);
1052
1053 pm_runtime_put(ceudev->dev);
1054 mutex_unlock(&ceudev->mlock);
1055
1056 return 0;
1057}
1058
1059static const struct v4l2_file_operations ceu_fops = {
1060 .owner = THIS_MODULE,
1061 .open = ceu_open,
1062 .release = ceu_release,
1063 .unlocked_ioctl = video_ioctl2,
1064 .mmap = vb2_fop_mmap,
1065 .poll = vb2_fop_poll,
1066};
1067
1068
1069
1070static int ceu_querycap(struct file *file, void *priv,
1071 struct v4l2_capability *cap)
1072{
1073 struct ceu_device *ceudev = video_drvdata(file);
1074
1075 strlcpy(cap->card, "Renesas CEU", sizeof(cap->card));
1076 strlcpy(cap->driver, DRIVER_NAME, sizeof(cap->driver));
1077 snprintf(cap->bus_info, sizeof(cap->bus_info),
1078 "platform:renesas-ceu-%s", dev_name(ceudev->dev));
1079
1080 return 0;
1081}
1082
1083static int ceu_enum_fmt_vid_cap(struct file *file, void *priv,
1084 struct v4l2_fmtdesc *f)
1085{
1086 const struct ceu_fmt *fmt;
1087
1088 if (f->index >= ARRAY_SIZE(ceu_fmt_list))
1089 return -EINVAL;
1090
1091 fmt = &ceu_fmt_list[f->index];
1092 f->pixelformat = fmt->fourcc;
1093
1094 return 0;
1095}
1096
1097static int ceu_try_fmt_vid_cap(struct file *file, void *priv,
1098 struct v4l2_format *f)
1099{
1100 struct ceu_device *ceudev = video_drvdata(file);
1101
1102 return ceu_try_fmt(ceudev, f);
1103}
1104
1105static int ceu_s_fmt_vid_cap(struct file *file, void *priv,
1106 struct v4l2_format *f)
1107{
1108 struct ceu_device *ceudev = video_drvdata(file);
1109
1110 if (vb2_is_streaming(&ceudev->vb2_vq))
1111 return -EBUSY;
1112
1113 return ceu_set_fmt(ceudev, f);
1114}
1115
1116static int ceu_g_fmt_vid_cap(struct file *file, void *priv,
1117 struct v4l2_format *f)
1118{
1119 struct ceu_device *ceudev = video_drvdata(file);
1120
1121 f->fmt.pix_mp = ceudev->v4l2_pix;
1122
1123 return 0;
1124}
1125
1126static int ceu_enum_input(struct file *file, void *priv,
1127 struct v4l2_input *inp)
1128{
1129 struct ceu_device *ceudev = video_drvdata(file);
1130 struct ceu_subdev *ceusd;
1131
1132 if (inp->index >= ceudev->num_sd)
1133 return -EINVAL;
1134
1135 ceusd = &ceudev->subdevs[inp->index];
1136
1137 inp->type = V4L2_INPUT_TYPE_CAMERA;
1138 inp->std = 0;
1139 snprintf(inp->name, sizeof(inp->name), "Camera%u: %s",
1140 inp->index, ceusd->v4l2_sd->name);
1141
1142 return 0;
1143}
1144
1145static int ceu_g_input(struct file *file, void *priv, unsigned int *i)
1146{
1147 struct ceu_device *ceudev = video_drvdata(file);
1148
1149 *i = ceudev->sd_index;
1150
1151 return 0;
1152}
1153
1154static int ceu_s_input(struct file *file, void *priv, unsigned int i)
1155{
1156 struct ceu_device *ceudev = video_drvdata(file);
1157 struct ceu_subdev *ceu_sd_old;
1158 int ret;
1159
1160 if (i >= ceudev->num_sd)
1161 return -EINVAL;
1162
1163 if (vb2_is_streaming(&ceudev->vb2_vq))
1164 return -EBUSY;
1165
1166 if (i == ceudev->sd_index)
1167 return 0;
1168
1169 ceu_sd_old = ceudev->sd;
1170 ceudev->sd = &ceudev->subdevs[i];
1171
1172
1173
1174
1175
1176 ret = ceu_init_mbus_fmt(ceudev);
1177 if (ret) {
1178 ceudev->sd = ceu_sd_old;
1179 return -EINVAL;
1180 }
1181
1182 ret = ceu_set_default_fmt(ceudev);
1183 if (ret) {
1184 ceudev->sd = ceu_sd_old;
1185 return -EINVAL;
1186 }
1187
1188
1189 v4l2_subdev_call(ceu_sd_old->v4l2_sd, core, s_power, 0);
1190 v4l2_subdev_call(ceudev->sd->v4l2_sd, core, s_power, 1);
1191
1192 ceudev->sd_index = i;
1193
1194 return 0;
1195}
1196
1197static int ceu_g_parm(struct file *file, void *fh, struct v4l2_streamparm *a)
1198{
1199 struct ceu_device *ceudev = video_drvdata(file);
1200
1201 return v4l2_g_parm_cap(video_devdata(file), ceudev->sd->v4l2_sd, a);
1202}
1203
1204static int ceu_s_parm(struct file *file, void *fh, struct v4l2_streamparm *a)
1205{
1206 struct ceu_device *ceudev = video_drvdata(file);
1207
1208 return v4l2_s_parm_cap(video_devdata(file), ceudev->sd->v4l2_sd, a);
1209}
1210
1211static int ceu_enum_framesizes(struct file *file, void *fh,
1212 struct v4l2_frmsizeenum *fsize)
1213{
1214 struct ceu_device *ceudev = video_drvdata(file);
1215 struct ceu_subdev *ceu_sd = ceudev->sd;
1216 const struct ceu_fmt *ceu_fmt;
1217 struct v4l2_subdev *v4l2_sd = ceu_sd->v4l2_sd;
1218 int ret;
1219
1220 struct v4l2_subdev_frame_size_enum fse = {
1221 .code = ceu_sd->mbus_fmt.mbus_code,
1222 .index = fsize->index,
1223 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
1224 };
1225
1226
1227 ceu_fmt = get_ceu_fmt_from_fourcc(fsize->pixel_format);
1228 if (!ceu_fmt)
1229 return -EINVAL;
1230
1231 ret = v4l2_subdev_call(v4l2_sd, pad, enum_frame_size,
1232 NULL, &fse);
1233 if (ret)
1234 return ret;
1235
1236 fsize->type = V4L2_FRMSIZE_TYPE_DISCRETE;
1237 fsize->discrete.width = CEU_W_MAX(fse.max_width);
1238 fsize->discrete.height = CEU_H_MAX(fse.max_height);
1239
1240 return 0;
1241}
1242
1243static int ceu_enum_frameintervals(struct file *file, void *fh,
1244 struct v4l2_frmivalenum *fival)
1245{
1246 struct ceu_device *ceudev = video_drvdata(file);
1247 struct ceu_subdev *ceu_sd = ceudev->sd;
1248 const struct ceu_fmt *ceu_fmt;
1249 struct v4l2_subdev *v4l2_sd = ceu_sd->v4l2_sd;
1250 int ret;
1251
1252 struct v4l2_subdev_frame_interval_enum fie = {
1253 .code = ceu_sd->mbus_fmt.mbus_code,
1254 .index = fival->index,
1255 .width = fival->width,
1256 .height = fival->height,
1257 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
1258 };
1259
1260
1261 ceu_fmt = get_ceu_fmt_from_fourcc(fival->pixel_format);
1262 if (!ceu_fmt)
1263 return -EINVAL;
1264
1265 ret = v4l2_subdev_call(v4l2_sd, pad, enum_frame_interval, NULL,
1266 &fie);
1267 if (ret)
1268 return ret;
1269
1270 fival->type = V4L2_FRMIVAL_TYPE_DISCRETE;
1271 fival->discrete = fie.interval;
1272
1273 return 0;
1274}
1275
1276static const struct v4l2_ioctl_ops ceu_ioctl_ops = {
1277 .vidioc_querycap = ceu_querycap,
1278
1279 .vidioc_enum_fmt_vid_cap_mplane = ceu_enum_fmt_vid_cap,
1280 .vidioc_try_fmt_vid_cap_mplane = ceu_try_fmt_vid_cap,
1281 .vidioc_s_fmt_vid_cap_mplane = ceu_s_fmt_vid_cap,
1282 .vidioc_g_fmt_vid_cap_mplane = ceu_g_fmt_vid_cap,
1283
1284 .vidioc_enum_input = ceu_enum_input,
1285 .vidioc_g_input = ceu_g_input,
1286 .vidioc_s_input = ceu_s_input,
1287
1288 .vidioc_reqbufs = vb2_ioctl_reqbufs,
1289 .vidioc_querybuf = vb2_ioctl_querybuf,
1290 .vidioc_qbuf = vb2_ioctl_qbuf,
1291 .vidioc_expbuf = vb2_ioctl_expbuf,
1292 .vidioc_dqbuf = vb2_ioctl_dqbuf,
1293 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1294 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
1295 .vidioc_streamon = vb2_ioctl_streamon,
1296 .vidioc_streamoff = vb2_ioctl_streamoff,
1297
1298 .vidioc_g_parm = ceu_g_parm,
1299 .vidioc_s_parm = ceu_s_parm,
1300 .vidioc_enum_framesizes = ceu_enum_framesizes,
1301 .vidioc_enum_frameintervals = ceu_enum_frameintervals,
1302
1303 .vidioc_log_status = v4l2_ctrl_log_status,
1304 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1305 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
1306};
1307
1308
1309
1310
1311
1312static void ceu_vdev_release(struct video_device *vdev)
1313{
1314 struct ceu_device *ceudev = video_get_drvdata(vdev);
1315
1316 kfree(ceudev);
1317}
1318
1319static int ceu_notify_bound(struct v4l2_async_notifier *notifier,
1320 struct v4l2_subdev *v4l2_sd,
1321 struct v4l2_async_subdev *asd)
1322{
1323 struct v4l2_device *v4l2_dev = notifier->v4l2_dev;
1324 struct ceu_device *ceudev = v4l2_to_ceu(v4l2_dev);
1325 struct ceu_subdev *ceu_sd = to_ceu_subdev(asd);
1326
1327 ceu_sd->v4l2_sd = v4l2_sd;
1328 ceudev->num_sd++;
1329
1330 return 0;
1331}
1332
1333static int ceu_notify_complete(struct v4l2_async_notifier *notifier)
1334{
1335 struct v4l2_device *v4l2_dev = notifier->v4l2_dev;
1336 struct ceu_device *ceudev = v4l2_to_ceu(v4l2_dev);
1337 struct video_device *vdev = &ceudev->vdev;
1338 struct vb2_queue *q = &ceudev->vb2_vq;
1339 struct v4l2_subdev *v4l2_sd;
1340 int ret;
1341
1342
1343 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
1344 q->io_modes = VB2_MMAP | VB2_DMABUF;
1345 q->drv_priv = ceudev;
1346 q->ops = &ceu_vb2_ops;
1347 q->mem_ops = &vb2_dma_contig_memops;
1348 q->buf_struct_size = sizeof(struct ceu_buffer);
1349 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1350 q->min_buffers_needed = 2;
1351 q->lock = &ceudev->mlock;
1352 q->dev = ceudev->v4l2_dev.dev;
1353
1354 ret = vb2_queue_init(q);
1355 if (ret)
1356 return ret;
1357
1358
1359
1360
1361
1362 if (!ceudev->sd) {
1363 ceudev->sd = &ceudev->subdevs[0];
1364 ceudev->sd_index = 0;
1365 }
1366
1367 v4l2_sd = ceudev->sd->v4l2_sd;
1368
1369 ret = ceu_init_mbus_fmt(ceudev);
1370 if (ret)
1371 return ret;
1372
1373 ret = ceu_set_default_fmt(ceudev);
1374 if (ret)
1375 return ret;
1376
1377
1378 strlcpy(vdev->name, DRIVER_NAME, sizeof(vdev->name));
1379 vdev->v4l2_dev = v4l2_dev;
1380 vdev->lock = &ceudev->mlock;
1381 vdev->queue = &ceudev->vb2_vq;
1382 vdev->ctrl_handler = v4l2_sd->ctrl_handler;
1383 vdev->fops = &ceu_fops;
1384 vdev->ioctl_ops = &ceu_ioctl_ops;
1385 vdev->release = ceu_vdev_release;
1386 vdev->device_caps = V4L2_CAP_VIDEO_CAPTURE_MPLANE |
1387 V4L2_CAP_STREAMING;
1388 video_set_drvdata(vdev, ceudev);
1389
1390 ret = video_register_device(vdev, VFL_TYPE_GRABBER, -1);
1391 if (ret < 0) {
1392 v4l2_err(vdev->v4l2_dev,
1393 "video_register_device failed: %d\n", ret);
1394 return ret;
1395 }
1396
1397 return 0;
1398}
1399
1400static const struct v4l2_async_notifier_operations ceu_notify_ops = {
1401 .bound = ceu_notify_bound,
1402 .complete = ceu_notify_complete,
1403};
1404
1405
1406
1407
1408
1409
1410
1411
1412static int ceu_init_async_subdevs(struct ceu_device *ceudev, unsigned int n_sd)
1413{
1414
1415 ceudev->subdevs = devm_kcalloc(ceudev->dev, n_sd,
1416 sizeof(*ceudev->subdevs), GFP_KERNEL);
1417 if (!ceudev->subdevs)
1418 return -ENOMEM;
1419
1420
1421
1422
1423
1424 ceudev->asds = devm_kcalloc(ceudev->dev, n_sd,
1425 sizeof(*ceudev->asds), GFP_KERNEL);
1426 if (!ceudev->asds)
1427 return -ENOMEM;
1428
1429 ceudev->sd = NULL;
1430 ceudev->sd_index = 0;
1431 ceudev->num_sd = 0;
1432
1433 return 0;
1434}
1435
1436
1437
1438
1439
1440static int ceu_parse_platform_data(struct ceu_device *ceudev,
1441 const struct ceu_platform_data *pdata)
1442{
1443 const struct ceu_async_subdev *async_sd;
1444 struct ceu_subdev *ceu_sd;
1445 unsigned int i;
1446 int ret;
1447
1448 if (pdata->num_subdevs == 0)
1449 return -ENODEV;
1450
1451 ret = ceu_init_async_subdevs(ceudev, pdata->num_subdevs);
1452 if (ret)
1453 return ret;
1454
1455 for (i = 0; i < pdata->num_subdevs; i++) {
1456
1457 async_sd = &pdata->subdevs[i];
1458 ceu_sd = &ceudev->subdevs[i];
1459
1460 INIT_LIST_HEAD(&ceu_sd->asd.list);
1461
1462 ceu_sd->mbus_flags = async_sd->flags;
1463 ceu_sd->asd.match_type = V4L2_ASYNC_MATCH_I2C;
1464 ceu_sd->asd.match.i2c.adapter_id = async_sd->i2c_adapter_id;
1465 ceu_sd->asd.match.i2c.address = async_sd->i2c_address;
1466
1467 ceudev->asds[i] = &ceu_sd->asd;
1468 }
1469
1470 return pdata->num_subdevs;
1471}
1472
1473
1474
1475
1476static int ceu_parse_dt(struct ceu_device *ceudev)
1477{
1478 struct device_node *of = ceudev->dev->of_node;
1479 struct v4l2_fwnode_endpoint fw_ep;
1480 struct ceu_subdev *ceu_sd;
1481 struct device_node *ep;
1482 unsigned int i;
1483 int num_ep;
1484 int ret;
1485
1486 num_ep = of_graph_get_endpoint_count(of);
1487 if (!num_ep)
1488 return -ENODEV;
1489
1490 ret = ceu_init_async_subdevs(ceudev, num_ep);
1491 if (ret)
1492 return ret;
1493
1494 for (i = 0; i < num_ep; i++) {
1495 ep = of_graph_get_endpoint_by_regs(of, 0, i);
1496 if (!ep) {
1497 dev_err(ceudev->dev,
1498 "No subdevice connected on endpoint %u.\n", i);
1499 ret = -ENODEV;
1500 goto error_put_node;
1501 }
1502
1503 ret = v4l2_fwnode_endpoint_parse(of_fwnode_handle(ep), &fw_ep);
1504 if (ret) {
1505 dev_err(ceudev->dev,
1506 "Unable to parse endpoint #%u.\n", i);
1507 goto error_put_node;
1508 }
1509
1510 if (fw_ep.bus_type != V4L2_MBUS_PARALLEL) {
1511 dev_err(ceudev->dev,
1512 "Only parallel input supported.\n");
1513 ret = -EINVAL;
1514 goto error_put_node;
1515 }
1516
1517
1518 ceu_sd = &ceudev->subdevs[i];
1519 INIT_LIST_HEAD(&ceu_sd->asd.list);
1520
1521 ceu_sd->mbus_flags = fw_ep.bus.parallel.flags;
1522 ceu_sd->asd.match_type = V4L2_ASYNC_MATCH_FWNODE;
1523 ceu_sd->asd.match.fwnode =
1524 fwnode_graph_get_remote_port_parent(
1525 of_fwnode_handle(ep));
1526
1527 ceudev->asds[i] = &ceu_sd->asd;
1528 of_node_put(ep);
1529 }
1530
1531 return num_ep;
1532
1533error_put_node:
1534 of_node_put(ep);
1535 return ret;
1536}
1537
1538
1539
1540
1541
1542
1543struct ceu_data {
1544 u32 irq_mask;
1545};
1546
1547static const struct ceu_data ceu_data_rz = {
1548 .irq_mask = CEU_CETCR_ALL_IRQS_RZ,
1549};
1550
1551static const struct ceu_data ceu_data_sh4 = {
1552 .irq_mask = CEU_CETCR_ALL_IRQS_SH4,
1553};
1554
1555#if IS_ENABLED(CONFIG_OF)
1556static const struct of_device_id ceu_of_match[] = {
1557 { .compatible = "renesas,r7s72100-ceu", .data = &ceu_data_rz },
1558 { .compatible = "renesas,r8a7740-ceu", .data = &ceu_data_rz },
1559 { }
1560};
1561MODULE_DEVICE_TABLE(of, ceu_of_match);
1562#endif
1563
1564static int ceu_probe(struct platform_device *pdev)
1565{
1566 struct device *dev = &pdev->dev;
1567 const struct ceu_data *ceu_data;
1568 struct ceu_device *ceudev;
1569 struct resource *res;
1570 unsigned int irq;
1571 int num_subdevs;
1572 int ret;
1573
1574 ceudev = kzalloc(sizeof(*ceudev), GFP_KERNEL);
1575 if (!ceudev)
1576 return -ENOMEM;
1577
1578 platform_set_drvdata(pdev, ceudev);
1579 ceudev->dev = dev;
1580
1581 INIT_LIST_HEAD(&ceudev->capture);
1582 spin_lock_init(&ceudev->lock);
1583 mutex_init(&ceudev->mlock);
1584
1585 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1586 ceudev->base = devm_ioremap_resource(dev, res);
1587 if (IS_ERR(ceudev->base)) {
1588 ret = PTR_ERR(ceudev->base);
1589 goto error_free_ceudev;
1590 }
1591
1592 ret = platform_get_irq(pdev, 0);
1593 if (ret < 0) {
1594 dev_err(dev, "Failed to get irq: %d\n", ret);
1595 goto error_free_ceudev;
1596 }
1597 irq = ret;
1598
1599 ret = devm_request_irq(dev, irq, ceu_irq,
1600 0, dev_name(dev), ceudev);
1601 if (ret) {
1602 dev_err(&pdev->dev, "Unable to request CEU interrupt.\n");
1603 goto error_free_ceudev;
1604 }
1605
1606 pm_runtime_enable(dev);
1607
1608 ret = v4l2_device_register(dev, &ceudev->v4l2_dev);
1609 if (ret)
1610 goto error_pm_disable;
1611
1612 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
1613 ceu_data = of_match_device(ceu_of_match, dev)->data;
1614 num_subdevs = ceu_parse_dt(ceudev);
1615 } else if (dev->platform_data) {
1616
1617 ceu_data = &ceu_data_sh4;
1618 num_subdevs = ceu_parse_platform_data(ceudev,
1619 dev->platform_data);
1620 } else {
1621 num_subdevs = -EINVAL;
1622 }
1623
1624 if (num_subdevs < 0) {
1625 ret = num_subdevs;
1626 goto error_v4l2_unregister;
1627 }
1628 ceudev->irq_mask = ceu_data->irq_mask;
1629
1630 ceudev->notifier.v4l2_dev = &ceudev->v4l2_dev;
1631 ceudev->notifier.subdevs = ceudev->asds;
1632 ceudev->notifier.num_subdevs = num_subdevs;
1633 ceudev->notifier.ops = &ceu_notify_ops;
1634 ret = v4l2_async_notifier_register(&ceudev->v4l2_dev,
1635 &ceudev->notifier);
1636 if (ret)
1637 goto error_v4l2_unregister;
1638
1639 dev_info(dev, "Renesas Capture Engine Unit %s\n", dev_name(dev));
1640
1641 return 0;
1642
1643error_v4l2_unregister:
1644 v4l2_device_unregister(&ceudev->v4l2_dev);
1645error_pm_disable:
1646 pm_runtime_disable(dev);
1647error_free_ceudev:
1648 kfree(ceudev);
1649
1650 return ret;
1651}
1652
1653static int ceu_remove(struct platform_device *pdev)
1654{
1655 struct ceu_device *ceudev = platform_get_drvdata(pdev);
1656
1657 pm_runtime_disable(ceudev->dev);
1658
1659 v4l2_async_notifier_unregister(&ceudev->notifier);
1660
1661 v4l2_device_unregister(&ceudev->v4l2_dev);
1662
1663 video_unregister_device(&ceudev->vdev);
1664
1665 return 0;
1666}
1667
1668static const struct dev_pm_ops ceu_pm_ops = {
1669 SET_RUNTIME_PM_OPS(ceu_runtime_suspend,
1670 ceu_runtime_resume,
1671 NULL)
1672};
1673
1674static struct platform_driver ceu_driver = {
1675 .driver = {
1676 .name = DRIVER_NAME,
1677 .pm = &ceu_pm_ops,
1678 .of_match_table = of_match_ptr(ceu_of_match),
1679 },
1680 .probe = ceu_probe,
1681 .remove = ceu_remove,
1682};
1683
1684module_platform_driver(ceu_driver);
1685
1686MODULE_DESCRIPTION("Renesas CEU camera driver");
1687MODULE_AUTHOR("Jacopo Mondi <jacopo+renesas@jmondi.org>");
1688MODULE_LICENSE("GPL v2");
1689