1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
|
// SPDX-License-Identifier: GPL-2.0-only
/* Copyright 2023 Eileen Yoon <eyn@gmx.com> */
#include <linux/module.h>
#include <media/media-device.h>
#include <media/v4l2-common.h>
#include <media/v4l2-ioctl.h>
#include <media/v4l2-mc.h>
#include <media/videobuf2-dma-sg.h>
#include "isp-cam.h"
#include "isp-cmd.h"
#include "isp-iommu.h"
#include "isp-ipc.h"
#include "isp-fw.h"
#include "isp-v4l2.h"
#define ISP_MIN_FRAMES 2
#define ISP_MAX_PLANES 4
#define ISP_MAX_PIX_FORMATS 2
#define ISP_BUFFER_TIMEOUT msecs_to_jiffies(1500)
#define ISP_STRIDE_ALIGNMENT 64
static bool multiplanar = false;
module_param(multiplanar, bool, 0644);
MODULE_PARM_DESC(multiplanar, "Enable multiplanar API");
struct isp_buflist_buffer {
u64 iovas[ISP_MAX_PLANES];
u32 flags[ISP_MAX_PLANES];
u32 num_planes;
u32 pool_type;
u32 tag;
u32 pad;
} __packed;
static_assert(sizeof(struct isp_buflist_buffer) == 0x40);
struct isp_buflist {
u64 type;
u64 num_buffers;
struct isp_buflist_buffer buffers[];
};
int ipc_bt_handle(struct apple_isp *isp, struct isp_channel *chan)
{
struct isp_message *req = &chan->req, *rsp = &chan->rsp;
struct isp_buffer *tmp, *buf;
struct isp_buflist *bl;
u32 count;
int err = 0;
/* printk("H2T: 0x%llx 0x%llx 0x%llx\n", (long long)req->arg0,
(long long)req->arg1, (long long)req->arg2); */
if (req->arg1 < sizeof(struct isp_buflist)) {
dev_err(isp->dev, "%s: Bad length 0x%llx\n", chan->name,
req->arg1);
return -EIO;
}
bl = apple_isp_translate(isp, isp->bt_surf, req->arg0, req->arg1);
count = bl->num_buffers;
if (count > (req->arg1 - sizeof(struct isp_buffer)) /
sizeof(struct isp_buflist_buffer)) {
dev_err(isp->dev, "%s: Bad length 0x%llx\n", chan->name,
req->arg1);
return -EIO;
}
spin_lock(&isp->buf_lock);
for (int i = 0; i < count; i++) {
struct isp_buflist_buffer *bufd = &bl->buffers[i];
/* printk("Return: 0x%llx (%d)\n", bufd->iovas[0],
bufd->pool_type); */
if (bufd->pool_type == 0) {
for (int j = 0; j < ARRAY_SIZE(isp->meta_surfs); j++) {
struct isp_surf *meta = isp->meta_surfs[j];
if ((u32)bufd->iovas[0] == (u32)meta->iova) {
WARN_ON(!meta->submitted);
meta->submitted = false;
}
}
} else {
list_for_each_entry_safe_reverse(
buf, tmp, &isp->bufs_submitted, link) {
if ((u32)buf->surfs[0].iova ==
(u32)bufd->iovas[0]) {
enum vb2_buffer_state state =
VB2_BUF_STATE_ERROR;
buf->vb.vb2_buf.timestamp =
ktime_get_ns();
buf->vb.sequence = isp->sequence++;
buf->vb.field = V4L2_FIELD_NONE;
if (req->arg2 ==
ISP_IPC_BUFEXC_FLAG_RENDER)
state = VB2_BUF_STATE_DONE;
vb2_buffer_done(&buf->vb.vb2_buf,
state);
list_del(&buf->link);
}
}
}
}
spin_unlock(&isp->buf_lock);
rsp->arg0 = req->arg0 | ISP_IPC_FLAG_ACK;
rsp->arg1 = 0x0;
rsp->arg2 = ISP_IPC_BUFEXC_FLAG_ACK;
return err;
}
static int isp_submit_buffers(struct apple_isp *isp)
{
struct isp_format *fmt = isp_get_current_format(isp);
struct isp_channel *chan = isp->chan_bh;
struct isp_message *req = &chan->req;
struct isp_buffer *buf, *tmp;
unsigned long flags;
size_t offset;
int err;
struct isp_buflist *bl = isp->cmd_virt;
struct isp_buflist_buffer *bufd = &bl->buffers[0];
bl->type = 1;
bl->num_buffers = 0;
spin_lock_irqsave(&isp->buf_lock, flags);
for (int i = 0; i < ARRAY_SIZE(isp->meta_surfs); i++) {
struct isp_surf *meta = isp->meta_surfs[i];
if (meta->submitted)
continue;
/* printk("Submit: 0x%llx .. 0x%llx (meta)\n", meta->iova,
meta->iova + meta->size); */
bufd->num_planes = 1;
bufd->pool_type = 0;
bufd->iovas[0] = meta->iova;
bufd->flags[0] = 0x40000000;
bufd++;
bl->num_buffers++;
meta->submitted = true;
}
while ((buf = list_first_entry_or_null(&isp->bufs_pending,
struct isp_buffer, link))) {
memset(bufd, 0, sizeof(*bufd));
bufd->num_planes = fmt->num_planes;
bufd->pool_type = isp->hw->scl1 ? CISP_POOL_TYPE_RENDERED_SCL1 :
CISP_POOL_TYPE_RENDERED;
offset = 0;
for (int j = 0; j < fmt->num_planes; j++) {
bufd->iovas[j] = buf->surfs[0].iova + offset;
bufd->flags[j] = 0x40000000;
offset += fmt->plane_size[j];
}
/* printk("Submit: 0x%llx .. 0x%llx (render)\n",
buf->surfs[0].iova,
buf->surfs[0].iova + buf->surfs[0].size); */
bufd++;
bl->num_buffers++;
/*
* Queue the buffer as submitted and release the lock for now.
* We need to do this before actually submitting to avoid a
* race with the buffer return codepath.
*/
list_move_tail(&buf->link, &isp->bufs_submitted);
}
spin_unlock_irqrestore(&isp->buf_lock, flags);
req->arg0 = isp->cmd_iova;
req->arg1 = max_t(u64, ISP_IPC_BUFEXC_STAT_SIZE,
((uintptr_t)bufd - (uintptr_t)bl));
req->arg2 = ISP_IPC_BUFEXC_FLAG_COMMAND;
err = ipc_chan_send(isp, chan, ISP_BUFFER_TIMEOUT);
if (err) {
/* If we fail, consider the buffer not submitted. */
dev_err(isp->dev,
"%s: failed to send bufs: [0x%llx, 0x%llx, 0x%llx]\n",
chan->name, req->arg0, req->arg1, req->arg2);
/*
* Try to find the buffer in the list, and if it's
* still there, move it back to the pending list.
*/
spin_lock_irqsave(&isp->buf_lock, flags);
bufd = &bl->buffers[0];
for (int i = 0; i < bl->num_buffers; i++, bufd++) {
list_for_each_entry_safe_reverse(
buf, tmp, &isp->bufs_submitted, link) {
if (bufd->iovas[0] == buf->surfs[0].iova) {
list_move_tail(&buf->link,
&isp->bufs_pending);
}
}
for (int j = 0; j < ARRAY_SIZE(isp->meta_surfs); j++) {
struct isp_surf *meta = isp->meta_surfs[j];
if (bufd->iovas[0] == meta->iova) {
meta->submitted = false;
}
}
}
spin_unlock_irqrestore(&isp->buf_lock, flags);
}
return err;
}
/*
* Videobuf2 section
*/
static int isp_vb2_queue_setup(struct vb2_queue *vq, unsigned int *nbuffers,
unsigned int *num_planes, unsigned int sizes[],
struct device *alloc_devs[])
{
struct apple_isp *isp = vb2_get_drv_priv(vq);
struct isp_format *fmt = isp_get_current_format(isp);
/* This is not strictly neccessary but makes it easy to enforce that
* at most 16 buffers are submitted at once. ISP on t6001 (FW 12.3)
* times out if more buffers are submitted than set in the buffer pool
* config before streaming is started.
*/
*nbuffers = min_t(unsigned int, *nbuffers, ISP_MAX_BUFFERS);
if (*num_planes) {
if (sizes[0] < fmt->total_size)
return -EINVAL;
return 0;
}
*num_planes = 1;
sizes[0] = fmt->total_size;
return 0;
}
static void __isp_vb2_buf_cleanup(struct vb2_buffer *vb, unsigned int i)
{
struct apple_isp *isp = vb2_get_drv_priv(vb->vb2_queue);
struct isp_buffer *buf =
container_of(vb, struct isp_buffer, vb.vb2_buf);
while (i--)
apple_isp_iommu_unmap_sgt(isp, &buf->surfs[i]);
}
static void isp_vb2_buf_cleanup(struct vb2_buffer *vb)
{
__isp_vb2_buf_cleanup(vb, vb->num_planes);
}
static int isp_vb2_buf_init(struct vb2_buffer *vb)
{
struct apple_isp *isp = vb2_get_drv_priv(vb->vb2_queue);
struct isp_buffer *buf =
container_of(vb, struct isp_buffer, vb.vb2_buf);
unsigned int i;
int err;
for (i = 0; i < vb->num_planes; i++) {
struct sg_table *sgt = vb2_dma_sg_plane_desc(vb, i);
err = apple_isp_iommu_map_sgt(isp, &buf->surfs[i], sgt,
vb2_plane_size(vb, i));
if (err)
goto cleanup;
}
return 0;
cleanup:
__isp_vb2_buf_cleanup(vb, i);
return err;
}
static int isp_vb2_buf_prepare(struct vb2_buffer *vb)
{
struct apple_isp *isp = vb2_get_drv_priv(vb->vb2_queue);
struct isp_format *fmt = isp_get_current_format(isp);
if (vb2_plane_size(vb, 0) < fmt->total_size)
return -EINVAL;
vb2_set_plane_payload(vb, 0, fmt->total_size);
return 0;
}
static void isp_vb2_release_buffers(struct apple_isp *isp,
enum vb2_buffer_state state)
{
struct isp_buffer *buf;
unsigned long flags;
spin_lock_irqsave(&isp->buf_lock, flags);
list_for_each_entry(buf, &isp->bufs_submitted, link)
vb2_buffer_done(&buf->vb.vb2_buf, state);
INIT_LIST_HEAD(&isp->bufs_submitted);
list_for_each_entry(buf, &isp->bufs_pending, link)
vb2_buffer_done(&buf->vb.vb2_buf, state);
INIT_LIST_HEAD(&isp->bufs_pending);
spin_unlock_irqrestore(&isp->buf_lock, flags);
}
static void isp_vb2_buf_queue(struct vb2_buffer *vb)
{
struct apple_isp *isp = vb2_get_drv_priv(vb->vb2_queue);
struct isp_buffer *buf =
container_of(vb, struct isp_buffer, vb.vb2_buf);
unsigned long flags;
bool empty;
spin_lock_irqsave(&isp->buf_lock, flags);
empty = list_empty(&isp->bufs_pending) &&
list_empty(&isp->bufs_submitted);
list_add_tail(&buf->link, &isp->bufs_pending);
spin_unlock_irqrestore(&isp->buf_lock, flags);
if (test_bit(ISP_STATE_STREAMING, &isp->state) && !empty)
isp_submit_buffers(isp);
}
static int apple_isp_start_streaming(struct apple_isp *isp)
{
int err;
err = apple_isp_start_camera(isp);
if (err) {
dev_err(isp->dev, "failed to start camera: %d\n", err);
goto release_buffers;
}
err = isp_submit_buffers(isp);
if (err) {
dev_err(isp->dev, "failed to send initial batch: %d\n", err);
goto stop_camera;
}
err = apple_isp_start_capture(isp);
if (err) {
dev_err(isp->dev, "failed to start capture: %d\n", err);
goto stop_camera;
}
set_bit(ISP_STATE_STREAMING, &isp->state);
return 0;
stop_camera:
apple_isp_stop_camera(isp);
release_buffers:
isp_vb2_release_buffers(isp, VB2_BUF_STATE_QUEUED);
return err;
}
static void apple_isp_stop_streaming(struct apple_isp *isp)
{
clear_bit(ISP_STATE_STREAMING, &isp->state);
apple_isp_stop_capture(isp);
apple_isp_stop_camera(isp);
}
static int isp_vb2_start_streaming(struct vb2_queue *q, unsigned int count)
{
struct apple_isp *isp = vb2_get_drv_priv(q);
isp->sequence = 0;
return apple_isp_start_streaming(isp);
}
static void isp_vb2_stop_streaming(struct vb2_queue *q)
{
struct apple_isp *isp = vb2_get_drv_priv(q);
apple_isp_stop_streaming(isp);
isp_vb2_release_buffers(isp, VB2_BUF_STATE_ERROR);
}
int apple_isp_video_suspend(struct apple_isp *isp)
{
/* Swap into STATE_SLEEPING as isp_vb2_buf_queue() submits on
* STATE_STREAMING.
*/
if (test_bit(ISP_STATE_STREAMING, &isp->state)) {
/* Signal buffers to be recycled for clean shutdown */
isp_vb2_release_buffers(isp, VB2_BUF_STATE_QUEUED);
apple_isp_stop_streaming(isp);
set_bit(ISP_STATE_SLEEPING, &isp->state);
}
return 0;
}
int apple_isp_video_resume(struct apple_isp *isp)
{
if (test_bit(ISP_STATE_SLEEPING, &isp->state)) {
clear_bit(ISP_STATE_SLEEPING, &isp->state);
apple_isp_start_streaming(isp);
}
return 0;
}
static const struct vb2_ops isp_vb2_ops = {
.queue_setup = isp_vb2_queue_setup,
.buf_init = isp_vb2_buf_init,
.buf_cleanup = isp_vb2_buf_cleanup,
.buf_prepare = isp_vb2_buf_prepare,
.buf_queue = isp_vb2_buf_queue,
.start_streaming = isp_vb2_start_streaming,
.stop_streaming = isp_vb2_stop_streaming,
.wait_prepare = vb2_ops_wait_prepare,
.wait_finish = vb2_ops_wait_finish,
};
static int isp_set_preset(struct apple_isp *isp, struct isp_format *fmt,
struct isp_preset *preset)
{
int i;
size_t total_size;
fmt->preset = preset;
/* I really fucking hope they all use NV12. */
fmt->num_planes = 2;
fmt->strides[0] = ALIGN(preset->output_dim.x, ISP_STRIDE_ALIGNMENT);
/* UV subsampled interleaved */
fmt->strides[1] = ALIGN(preset->output_dim.x, ISP_STRIDE_ALIGNMENT);
fmt->plane_size[0] = fmt->strides[0] * preset->output_dim.y;
fmt->plane_size[1] = fmt->strides[1] * preset->output_dim.y / 2;
total_size = 0;
for (i = 0; i < fmt->num_planes; i++)
total_size += fmt->plane_size[i];
fmt->total_size = total_size;
return 0;
}
static struct isp_preset *isp_select_preset(struct apple_isp *isp, u32 width,
u32 height)
{
struct isp_preset *preset, *best = &isp->presets[0];
int i, score, best_score = INT_MAX;
/* Default if no dimensions */
if (width == 0 || height == 0)
return &isp->presets[0];
for (i = 0; i < isp->num_presets; i++) {
preset = &isp->presets[i];
score = abs((int)preset->output_dim.x - (int)width) +
abs((int)preset->output_dim.y - (int)height);
if (score < best_score) {
best = preset;
best_score = score;
}
}
return best;
}
/*
* V4L2 ioctl section
*/
static int isp_vidioc_querycap(struct file *file, void *priv,
struct v4l2_capability *cap)
{
strscpy(cap->card, APPLE_ISP_CARD_NAME, sizeof(cap->card));
strscpy(cap->driver, APPLE_ISP_DEVICE_NAME, sizeof(cap->driver));
return 0;
}
static int isp_vidioc_enum_format(struct file *file, void *fh,
struct v4l2_fmtdesc *f)
{
struct apple_isp *isp = video_drvdata(file);
if (f->index >= ISP_MAX_PIX_FORMATS)
return -EINVAL;
switch (f->index) {
case 0:
f->pixelformat = V4L2_PIX_FMT_NV12;
break;
case 1:
if (!isp->multiplanar)
return -EINVAL;
f->pixelformat = V4L2_PIX_FMT_NV12M;
break;
default:
return -EINVAL;
}
return 0;
}
static int isp_vidioc_enum_framesizes(struct file *file, void *fh,
struct v4l2_frmsizeenum *f)
{
struct apple_isp *isp = video_drvdata(file);
if (f->index >= isp->num_presets)
return -EINVAL;
if ((f->pixel_format != V4L2_PIX_FMT_NV12) &&
(f->pixel_format != V4L2_PIX_FMT_NV12M))
return -EINVAL;
f->discrete.width = isp->presets[f->index].output_dim.x;
f->discrete.height = isp->presets[f->index].output_dim.y;
f->type = V4L2_FRMSIZE_TYPE_DISCRETE;
return 0;
}
static int isp_vidioc_enum_frameintervals(struct file *filp, void *priv,
struct v4l2_frmivalenum *interval)
{
if (interval->index != 0)
return -EINVAL;
interval->type = V4L2_FRMIVAL_TYPE_DISCRETE;
interval->discrete.numerator = 1;
interval->discrete.denominator = 30;
return 0;
}
static inline void isp_get_sp_pix_format(struct apple_isp *isp,
struct v4l2_format *f,
struct isp_format *fmt)
{
f->fmt.pix.width = fmt->preset->output_dim.x;
f->fmt.pix.height = fmt->preset->output_dim.y;
f->fmt.pix.bytesperline = fmt->strides[0];
f->fmt.pix.sizeimage = fmt->total_size;
f->fmt.pix.field = V4L2_FIELD_NONE;
f->fmt.pix.pixelformat = V4L2_PIX_FMT_NV12;
f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
f->fmt.pix.ycbcr_enc = V4L2_YCBCR_ENC_709;
f->fmt.pix.xfer_func = V4L2_XFER_FUNC_709;
}
static inline void isp_get_mp_pix_format(struct apple_isp *isp,
struct v4l2_format *f,
struct isp_format *fmt)
{
f->fmt.pix_mp.width = fmt->preset->output_dim.x;
f->fmt.pix_mp.height = fmt->preset->output_dim.y;
f->fmt.pix_mp.num_planes = fmt->num_planes;
for (int i = 0; i < fmt->num_planes; i++) {
f->fmt.pix_mp.plane_fmt[i].sizeimage = fmt->plane_size[i];
f->fmt.pix_mp.plane_fmt[i].bytesperline = fmt->strides[i];
}
f->fmt.pix_mp.field = V4L2_FIELD_NONE;
f->fmt.pix_mp.pixelformat = V4L2_PIX_FMT_NV12M;
f->fmt.pix_mp.colorspace = V4L2_COLORSPACE_REC709;
f->fmt.pix_mp.ycbcr_enc = V4L2_YCBCR_ENC_709;
f->fmt.pix_mp.xfer_func = V4L2_XFER_FUNC_709;
}
static int isp_vidioc_get_format(struct file *file, void *fh,
struct v4l2_format *f)
{
struct apple_isp *isp = video_drvdata(file);
struct isp_format *fmt = isp_get_current_format(isp);
isp_get_sp_pix_format(isp, f, fmt);
return 0;
}
static int isp_vidioc_set_format(struct file *file, void *fh,
struct v4l2_format *f)
{
struct apple_isp *isp = video_drvdata(file);
struct isp_format *fmt = isp_get_current_format(isp);
struct isp_preset *preset;
int err;
preset = isp_select_preset(isp, f->fmt.pix.width, f->fmt.pix.height);
err = isp_set_preset(isp, fmt, preset);
if (err)
return err;
isp_get_sp_pix_format(isp, f, fmt);
isp->vbq.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
return 0;
}
static int isp_vidioc_try_format(struct file *file, void *fh,
struct v4l2_format *f)
{
struct apple_isp *isp = video_drvdata(file);
struct isp_format fmt = *isp_get_current_format(isp);
struct isp_preset *preset;
int err;
preset = isp_select_preset(isp, f->fmt.pix.width, f->fmt.pix.height);
err = isp_set_preset(isp, &fmt, preset);
if (err)
return err;
isp_get_sp_pix_format(isp, f, &fmt);
return 0;
}
static int isp_vidioc_get_format_mplane(struct file *file, void *fh,
struct v4l2_format *f)
{
struct apple_isp *isp = video_drvdata(file);
struct isp_format *fmt = isp_get_current_format(isp);
if (!isp->multiplanar)
return -ENOTTY;
isp_get_mp_pix_format(isp, f, fmt);
return 0;
}
static int isp_vidioc_set_format_mplane(struct file *file, void *fh,
struct v4l2_format *f)
{
struct apple_isp *isp = video_drvdata(file);
struct isp_format *fmt = isp_get_current_format(isp);
struct isp_preset *preset;
int err;
if (!isp->multiplanar)
return -ENOTTY;
preset = isp_select_preset(isp, f->fmt.pix_mp.width,
f->fmt.pix_mp.height);
err = isp_set_preset(isp, fmt, preset);
if (err)
return err;
isp_get_mp_pix_format(isp, f, fmt);
isp->vbq.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
return 0;
}
static int isp_vidioc_try_format_mplane(struct file *file, void *fh,
struct v4l2_format *f)
{
struct apple_isp *isp = video_drvdata(file);
struct isp_format fmt = *isp_get_current_format(isp);
struct isp_preset *preset;
int err;
if (!isp->multiplanar)
return -ENOTTY;
preset = isp_select_preset(isp, f->fmt.pix_mp.width,
f->fmt.pix_mp.height);
err = isp_set_preset(isp, &fmt, preset);
if (err)
return err;
isp_get_mp_pix_format(isp, f, &fmt);
return 0;
}
static int isp_vidioc_enum_input(struct file *file, void *fh,
struct v4l2_input *inp)
{
if (inp->index)
return -EINVAL;
strscpy(inp->name, APPLE_ISP_DEVICE_NAME, sizeof(inp->name));
inp->type = V4L2_INPUT_TYPE_CAMERA;
return 0;
}
static int isp_vidioc_get_input(struct file *file, void *fh, unsigned int *i)
{
*i = 0;
return 0;
}
static int isp_vidioc_set_input(struct file *file, void *fh, unsigned int i)
{
if (i)
return -EINVAL;
return 0;
}
static int isp_vidioc_get_param(struct file *file, void *fh,
struct v4l2_streamparm *a)
{
struct apple_isp *isp = video_drvdata(file);
if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
(!isp->multiplanar ||
a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE))
return -EINVAL;
a->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
a->parm.capture.readbuffers = ISP_MIN_FRAMES;
a->parm.capture.timeperframe.numerator = ISP_FRAME_RATE_NUM;
a->parm.capture.timeperframe.denominator = ISP_FRAME_RATE_DEN;
return 0;
}
static int isp_vidioc_set_param(struct file *file, void *fh,
struct v4l2_streamparm *a)
{
struct apple_isp *isp = video_drvdata(file);
if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
(!isp->multiplanar ||
a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE))
return -EINVAL;
/* Not supporting frame rate sets. No use. Plus floats. */
a->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
a->parm.capture.readbuffers = ISP_MIN_FRAMES;
a->parm.capture.timeperframe.numerator = ISP_FRAME_RATE_NUM;
a->parm.capture.timeperframe.denominator = ISP_FRAME_RATE_DEN;
return 0;
}
static const struct v4l2_ioctl_ops isp_v4l2_ioctl_ops = {
.vidioc_querycap = isp_vidioc_querycap,
.vidioc_enum_fmt_vid_cap = isp_vidioc_enum_format,
.vidioc_g_fmt_vid_cap = isp_vidioc_get_format,
.vidioc_s_fmt_vid_cap = isp_vidioc_set_format,
.vidioc_try_fmt_vid_cap = isp_vidioc_try_format,
.vidioc_g_fmt_vid_cap_mplane = isp_vidioc_get_format_mplane,
.vidioc_s_fmt_vid_cap_mplane = isp_vidioc_set_format_mplane,
.vidioc_try_fmt_vid_cap_mplane = isp_vidioc_try_format_mplane,
.vidioc_enum_framesizes = isp_vidioc_enum_framesizes,
.vidioc_enum_frameintervals = isp_vidioc_enum_frameintervals,
.vidioc_enum_input = isp_vidioc_enum_input,
.vidioc_g_input = isp_vidioc_get_input,
.vidioc_s_input = isp_vidioc_set_input,
.vidioc_g_parm = isp_vidioc_get_param,
.vidioc_s_parm = isp_vidioc_set_param,
.vidioc_reqbufs = vb2_ioctl_reqbufs,
.vidioc_querybuf = vb2_ioctl_querybuf,
.vidioc_create_bufs = vb2_ioctl_create_bufs,
.vidioc_qbuf = vb2_ioctl_qbuf,
.vidioc_expbuf = vb2_ioctl_expbuf,
.vidioc_dqbuf = vb2_ioctl_dqbuf,
.vidioc_prepare_buf = vb2_ioctl_prepare_buf,
.vidioc_streamon = vb2_ioctl_streamon,
.vidioc_streamoff = vb2_ioctl_streamoff,
};
static const struct v4l2_file_operations isp_v4l2_fops = {
.owner = THIS_MODULE,
.open = v4l2_fh_open,
.release = vb2_fop_release,
.read = vb2_fop_read,
.poll = vb2_fop_poll,
.mmap = vb2_fop_mmap,
.unlocked_ioctl = video_ioctl2,
};
static const struct media_device_ops isp_media_device_ops = {
.link_notify = v4l2_pipeline_link_notify,
};
int apple_isp_setup_video(struct apple_isp *isp)
{
struct video_device *vdev = &isp->vdev;
struct vb2_queue *vbq = &isp->vbq;
struct isp_format *fmt = isp_get_current_format(isp);
int err;
err = isp_set_preset(isp, fmt, &isp->presets[0]);
if (err) {
dev_err(isp->dev, "failed to set default preset: %d\n", err);
return err;
}
for (int i = 0; i < ARRAY_SIZE(isp->meta_surfs); i++) {
isp->meta_surfs[i] =
isp_alloc_surface_vmap(isp, isp->hw->meta_size);
if (!isp->meta_surfs[i]) {
isp_err(isp, "failed to alloc meta surface\n");
err = -ENOMEM;
goto surf_cleanup;
}
}
media_device_init(&isp->mdev);
isp->v4l2_dev.mdev = &isp->mdev;
isp->mdev.ops = &isp_media_device_ops;
isp->mdev.dev = isp->dev;
strscpy(isp->mdev.model, APPLE_ISP_DEVICE_NAME,
sizeof(isp->mdev.model));
err = media_device_register(&isp->mdev);
if (err) {
dev_err(isp->dev, "failed to register media device: %d\n", err);
goto media_cleanup;
}
isp->multiplanar = multiplanar;
err = v4l2_device_register(isp->dev, &isp->v4l2_dev);
if (err) {
dev_err(isp->dev, "failed to register v4l2 device: %d\n", err);
goto media_unregister;
}
vbq->drv_priv = isp;
vbq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
vbq->io_modes = VB2_MMAP;
vbq->dev = isp->dev;
vbq->ops = &isp_vb2_ops;
vbq->mem_ops = &vb2_dma_sg_memops;
vbq->buf_struct_size = sizeof(struct isp_buffer);
vbq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
vbq->min_queued_buffers = ISP_MIN_FRAMES;
vbq->lock = &isp->video_lock;
err = vb2_queue_init(vbq);
if (err) {
dev_err(isp->dev, "failed to init vb2 queue: %d\n", err);
goto v4l2_unregister;
}
vdev->queue = vbq;
vdev->fops = &isp_v4l2_fops;
vdev->ioctl_ops = &isp_v4l2_ioctl_ops;
vdev->device_caps = V4L2_BUF_TYPE_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
if (isp->multiplanar)
vdev->device_caps |= V4L2_CAP_VIDEO_CAPTURE_MPLANE;
vdev->v4l2_dev = &isp->v4l2_dev;
vdev->vfl_type = VFL_TYPE_VIDEO;
vdev->vfl_dir = VFL_DIR_RX;
vdev->release = video_device_release_empty;
vdev->lock = &isp->video_lock;
strscpy(vdev->name, APPLE_ISP_DEVICE_NAME, sizeof(vdev->name));
video_set_drvdata(vdev, isp);
err = video_register_device(vdev, VFL_TYPE_VIDEO, 0);
if (err) {
dev_err(isp->dev, "failed to register video device: %d\n", err);
goto v4l2_unregister;
}
return 0;
v4l2_unregister:
v4l2_device_unregister(&isp->v4l2_dev);
media_unregister:
media_device_unregister(&isp->mdev);
media_cleanup:
media_device_cleanup(&isp->mdev);
surf_cleanup:
for (int i = 0; i < ARRAY_SIZE(isp->meta_surfs); i++) {
if (isp->meta_surfs[i])
isp_free_surface(isp, isp->meta_surfs[i]);
isp->meta_surfs[i] = NULL;
}
return err;
}
void apple_isp_remove_video(struct apple_isp *isp)
{
vb2_video_unregister_device(&isp->vdev);
v4l2_device_unregister(&isp->v4l2_dev);
media_device_unregister(&isp->mdev);
media_device_cleanup(&isp->mdev);
for (int i = 0; i < ARRAY_SIZE(isp->meta_surfs); i++) {
if (isp->meta_surfs[i])
isp_free_surface(isp, isp->meta_surfs[i]);
isp->meta_surfs[i] = NULL;
}
}
|