[media] s5p-fimc: Add support for VIDIOC_PREPARE_BUF/CREATE_BUFS ioctls
[linux-2.6-block.git] / drivers / media / video / s5p-fimc / fimc-capture.c
CommitLineData
5f3cc447 1/*
3a3f9449 2 * Samsung S5P/EXYNOS4 SoC series camera interface (camera capture) driver
5f3cc447 3 *
3a3f9449 4 * Copyright (C) 2010 - 2011 Samsung Electronics Co., Ltd.
5f3cc447
SN
5 * Author: Sylwester Nawrocki, <s.nawrocki@samsung.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/module.h>
13#include <linux/kernel.h>
5f3cc447
SN
14#include <linux/types.h>
15#include <linux/errno.h>
16#include <linux/bug.h>
17#include <linux/interrupt.h>
18#include <linux/device.h>
e9e21083 19#include <linux/pm_runtime.h>
5f3cc447
SN
20#include <linux/list.h>
21#include <linux/slab.h>
5f3cc447
SN
22
23#include <linux/videodev2.h>
24#include <media/v4l2-device.h>
25#include <media/v4l2-ioctl.h>
26#include <media/v4l2-mem2mem.h>
2dab38e2
SN
27#include <media/videobuf2-core.h>
28#include <media/videobuf2-dma-contig.h>
5f3cc447 29
131b6c61 30#include "fimc-mdevice.h"
5f3cc447
SN
31#include "fimc-core.h"
32
9e803a04
SN
33static int fimc_init_capture(struct fimc_dev *fimc)
34{
35 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
36 struct fimc_sensor_info *sensor;
37 unsigned long flags;
38 int ret = 0;
39
40 if (fimc->pipeline.sensor == NULL || ctx == NULL)
41 return -ENXIO;
42 if (ctx->s_frame.fmt == NULL)
43 return -EINVAL;
44
45 sensor = v4l2_get_subdev_hostdata(fimc->pipeline.sensor);
46
47 spin_lock_irqsave(&fimc->slock, flags);
48 fimc_prepare_dma_offset(ctx, &ctx->d_frame);
49 fimc_set_yuv_order(ctx);
50
51 fimc_hw_set_camera_polarity(fimc, sensor->pdata);
52 fimc_hw_set_camera_type(fimc, sensor->pdata);
53 fimc_hw_set_camera_source(fimc, sensor->pdata);
54 fimc_hw_set_camera_offset(fimc, &ctx->s_frame);
55
56 ret = fimc_set_scaler_info(ctx);
57 if (!ret) {
58 fimc_hw_set_input_path(ctx);
59 fimc_hw_set_prescaler(ctx);
60 fimc_hw_set_mainscaler(ctx);
61 fimc_hw_set_target_format(ctx);
62 fimc_hw_set_rotation(ctx);
ee7160e5 63 fimc_hw_set_effect(ctx, false);
9e803a04
SN
64 fimc_hw_set_output_path(ctx);
65 fimc_hw_set_out_dma(ctx);
dafb9c70
SN
66 if (fimc->variant->has_alpha)
67 fimc_hw_set_rgb_alpha(ctx);
237e0265 68 clear_bit(ST_CAPT_APPLY_CFG, &fimc->state);
9e803a04
SN
69 }
70 spin_unlock_irqrestore(&fimc->slock, flags);
71 return ret;
72}
73
3e4748d8 74static int fimc_capture_state_cleanup(struct fimc_dev *fimc, bool suspend)
5f3cc447 75{
bd323e28 76 struct fimc_vid_cap *cap = &fimc->vid_cap;
2dab38e2 77 struct fimc_vid_buffer *buf;
bd323e28 78 unsigned long flags;
3e4748d8 79 bool streaming;
5f3cc447
SN
80
81 spin_lock_irqsave(&fimc->slock, flags);
3e4748d8 82 streaming = fimc->state & (1 << ST_CAPT_ISP_STREAM);
5f3cc447 83
3e4748d8
SN
84 fimc->state &= ~(1 << ST_CAPT_RUN | 1 << ST_CAPT_SHUT |
85 1 << ST_CAPT_STREAM | 1 << ST_CAPT_ISP_STREAM);
86 if (!suspend)
87 fimc->state &= ~(1 << ST_CAPT_PEND | 1 << ST_CAPT_SUSPENDED);
2dab38e2 88
3e4748d8
SN
89 /* Release unused buffers */
90 while (!suspend && !list_empty(&cap->pending_buf_q)) {
0295202c 91 buf = fimc_pending_queue_pop(cap);
2dab38e2
SN
92 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
93 }
3e4748d8 94 /* If suspending put unused buffers onto pending queue */
2dab38e2 95 while (!list_empty(&cap->active_buf_q)) {
0295202c 96 buf = fimc_active_queue_pop(cap);
3e4748d8
SN
97 if (suspend)
98 fimc_pending_queue_add(cap, buf);
99 else
100 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
2dab38e2 101 }
3e4748d8 102 set_bit(ST_CAPT_SUSPENDED, &fimc->state);
2c1bb62e
SN
103
104 fimc_hw_reset(fimc);
105 cap->buf_index = 0;
106
5f3cc447 107 spin_unlock_irqrestore(&fimc->slock, flags);
4db5e27e 108
3e4748d8 109 if (streaming)
4db5e27e
SN
110 return fimc_pipeline_s_stream(fimc, 0);
111 else
112 return 0;
bd323e28
MS
113}
114
3e4748d8 115static int fimc_stop_capture(struct fimc_dev *fimc, bool suspend)
bd323e28 116{
bd323e28
MS
117 unsigned long flags;
118
119 if (!fimc_capture_active(fimc))
120 return 0;
121
122 spin_lock_irqsave(&fimc->slock, flags);
123 set_bit(ST_CAPT_SHUT, &fimc->state);
124 fimc_deactivate_capture(fimc);
125 spin_unlock_irqrestore(&fimc->slock, flags);
126
127 wait_event_timeout(fimc->irq_queue,
128 !test_bit(ST_CAPT_SHUT, &fimc->state),
3e4748d8 129 (2*HZ/10)); /* 200 ms */
5f3cc447 130
3e4748d8 131 return fimc_capture_state_cleanup(fimc, suspend);
5f3cc447
SN
132}
133
237e0265
SN
134/**
135 * fimc_capture_config_update - apply the camera interface configuration
136 *
137 * To be called from within the interrupt handler with fimc.slock
138 * spinlock held. It updates the camera pixel crop, rotation and
139 * image flip in H/W.
140 */
141int fimc_capture_config_update(struct fimc_ctx *ctx)
142{
143 struct fimc_dev *fimc = ctx->fimc_dev;
144 int ret;
145
2c1bb62e 146 if (!test_bit(ST_CAPT_APPLY_CFG, &fimc->state))
237e0265
SN
147 return 0;
148
149 spin_lock(&ctx->slock);
150 fimc_hw_set_camera_offset(fimc, &ctx->s_frame);
151 ret = fimc_set_scaler_info(ctx);
152 if (ret == 0) {
153 fimc_hw_set_prescaler(ctx);
154 fimc_hw_set_mainscaler(ctx);
155 fimc_hw_set_target_format(ctx);
156 fimc_hw_set_rotation(ctx);
157 fimc_prepare_dma_offset(ctx, &ctx->d_frame);
158 fimc_hw_set_out_dma(ctx);
dafb9c70
SN
159 if (fimc->variant->has_alpha)
160 fimc_hw_set_rgb_alpha(ctx);
2c1bb62e 161 clear_bit(ST_CAPT_APPLY_CFG, &fimc->state);
237e0265
SN
162 }
163 spin_unlock(&ctx->slock);
164 return ret;
165}
bd323e28
MS
166
167static int start_streaming(struct vb2_queue *q, unsigned int count)
2dab38e2
SN
168{
169 struct fimc_ctx *ctx = q->drv_priv;
170 struct fimc_dev *fimc = ctx->fimc_dev;
9e803a04 171 struct fimc_vid_cap *vid_cap = &fimc->vid_cap;
bd323e28 172 int min_bufs;
2dab38e2
SN
173 int ret;
174
9e803a04 175 vid_cap->frame_count = 0;
8ec737ff 176
9e803a04 177 ret = fimc_init_capture(fimc);
2dab38e2 178 if (ret)
bd323e28 179 goto error;
2dab38e2 180
2dab38e2
SN
181 set_bit(ST_CAPT_PEND, &fimc->state);
182
bd323e28
MS
183 min_bufs = fimc->vid_cap.reqbufs_count > 1 ? 2 : 1;
184
4db5e27e
SN
185 if (vid_cap->active_buf_cnt >= min_bufs &&
186 !test_and_set_bit(ST_CAPT_STREAM, &fimc->state)) {
bd323e28
MS
187 fimc_activate_capture(ctx);
188
4db5e27e
SN
189 if (!test_and_set_bit(ST_CAPT_ISP_STREAM, &fimc->state))
190 fimc_pipeline_s_stream(fimc, 1);
191 }
192
2dab38e2 193 return 0;
bd323e28 194error:
3e4748d8 195 fimc_capture_state_cleanup(fimc, false);
bd323e28 196 return ret;
2dab38e2
SN
197}
198
199static int stop_streaming(struct vb2_queue *q)
200{
201 struct fimc_ctx *ctx = q->drv_priv;
202 struct fimc_dev *fimc = ctx->fimc_dev;
2dab38e2 203
4ecbf5d1 204 if (!fimc_capture_active(fimc))
2dab38e2 205 return -EINVAL;
2dab38e2 206
3e4748d8 207 return fimc_stop_capture(fimc, false);
2dab38e2
SN
208}
209
e9e21083
SN
210int fimc_capture_suspend(struct fimc_dev *fimc)
211{
3e4748d8
SN
212 bool suspend = fimc_capture_busy(fimc);
213
214 int ret = fimc_stop_capture(fimc, suspend);
215 if (ret)
216 return ret;
217 return fimc_pipeline_shutdown(fimc);
e9e21083
SN
218}
219
3e4748d8
SN
220static void buffer_queue(struct vb2_buffer *vb);
221
e9e21083
SN
222int fimc_capture_resume(struct fimc_dev *fimc)
223{
3e4748d8
SN
224 struct fimc_vid_cap *vid_cap = &fimc->vid_cap;
225 struct fimc_vid_buffer *buf;
226 int i;
227
228 if (!test_and_clear_bit(ST_CAPT_SUSPENDED, &fimc->state))
229 return 0;
230
231 INIT_LIST_HEAD(&fimc->vid_cap.active_buf_q);
232 vid_cap->buf_index = 0;
233 fimc_pipeline_initialize(fimc, &fimc->vid_cap.vfd->entity,
234 false);
235 fimc_init_capture(fimc);
236
237 clear_bit(ST_CAPT_SUSPENDED, &fimc->state);
238
239 for (i = 0; i < vid_cap->reqbufs_count; i++) {
240 if (list_empty(&vid_cap->pending_buf_q))
241 break;
242 buf = fimc_pending_queue_pop(vid_cap);
243 buffer_queue(&buf->vb);
244 }
e9e21083 245 return 0;
3e4748d8 246
e9e21083
SN
247}
248
ef7af59b 249static unsigned int get_plane_size(struct fimc_frame *fr, unsigned int plane)
2dab38e2 250{
ef7af59b 251 if (!fr || plane >= fr->fmt->memplanes)
2dab38e2 252 return 0;
ef7af59b 253 return fr->f_width * fr->f_height * fr->fmt->depth[plane] / 8;
2dab38e2
SN
254}
255
fc714e70
GL
256static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *pfmt,
257 unsigned int *num_buffers, unsigned int *num_planes,
258 unsigned int sizes[], void *allocators[])
2dab38e2
SN
259{
260 struct fimc_ctx *ctx = vq->drv_priv;
ef7af59b
SN
261 struct fimc_fmt *fmt = ctx->d_frame.fmt;
262 int i;
2dab38e2
SN
263
264 if (!fmt)
265 return -EINVAL;
266
ef7af59b 267 *num_planes = fmt->memplanes;
2dab38e2 268
ef7af59b
SN
269 for (i = 0; i < fmt->memplanes; i++) {
270 sizes[i] = get_plane_size(&ctx->d_frame, i);
ef7af59b
SN
271 allocators[i] = ctx->fimc_dev->alloc_ctx;
272 }
2dab38e2 273
ef7af59b 274 return 0;
2dab38e2
SN
275}
276
2dab38e2
SN
277static int buffer_prepare(struct vb2_buffer *vb)
278{
279 struct vb2_queue *vq = vb->vb2_queue;
280 struct fimc_ctx *ctx = vq->drv_priv;
2dab38e2
SN
281 int i;
282
4db5e27e 283 if (ctx->d_frame.fmt == NULL)
ef7af59b 284 return -EINVAL;
2dab38e2 285
ef7af59b 286 for (i = 0; i < ctx->d_frame.fmt->memplanes; i++) {
4db5e27e 287 unsigned long size = ctx->d_frame.payload[i];
2dab38e2
SN
288
289 if (vb2_plane_size(vb, i) < size) {
30c9939d
SN
290 v4l2_err(ctx->fimc_dev->vid_cap.vfd,
291 "User buffer too small (%ld < %ld)\n",
2dab38e2
SN
292 vb2_plane_size(vb, i), size);
293 return -EINVAL;
294 }
2dab38e2
SN
295 vb2_set_plane_payload(vb, i, size);
296 }
297
298 return 0;
299}
300
301static void buffer_queue(struct vb2_buffer *vb)
302{
2dab38e2
SN
303 struct fimc_vid_buffer *buf
304 = container_of(vb, struct fimc_vid_buffer, vb);
4db5e27e
SN
305 struct fimc_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
306 struct fimc_dev *fimc = ctx->fimc_dev;
2dab38e2
SN
307 struct fimc_vid_cap *vid_cap = &fimc->vid_cap;
308 unsigned long flags;
8ec737ff 309 int min_bufs;
2dab38e2
SN
310
311 spin_lock_irqsave(&fimc->slock, flags);
8ec737ff
SK
312 fimc_prepare_addr(ctx, &buf->vb, &ctx->d_frame, &buf->paddr);
313
3e4748d8
SN
314 if (!test_bit(ST_CAPT_SUSPENDED, &fimc->state) &&
315 !test_bit(ST_CAPT_STREAM, &fimc->state) &&
316 vid_cap->active_buf_cnt < FIMC_MAX_OUT_BUFS) {
8ec737ff
SK
317 /* Setup the buffer directly for processing. */
318 int buf_id = (vid_cap->reqbufs_count == 1) ? -1 :
319 vid_cap->buf_index;
2dab38e2 320
8ec737ff
SK
321 fimc_hw_set_output_addr(fimc, &buf->paddr, buf_id);
322 buf->index = vid_cap->buf_index;
0295202c 323 fimc_active_queue_add(vid_cap, buf);
2dab38e2 324
8ec737ff
SK
325 if (++vid_cap->buf_index >= FIMC_MAX_OUT_BUFS)
326 vid_cap->buf_index = 0;
327 } else {
328 fimc_pending_queue_add(vid_cap, buf);
2dab38e2 329 }
8ec737ff
SK
330
331 min_bufs = vid_cap->reqbufs_count > 1 ? 2 : 1;
332
4db5e27e 333
bd323e28
MS
334 if (vb2_is_streaming(&vid_cap->vbq) &&
335 vid_cap->active_buf_cnt >= min_bufs &&
4db5e27e 336 !test_and_set_bit(ST_CAPT_STREAM, &fimc->state)) {
8ec737ff 337 fimc_activate_capture(ctx);
4db5e27e 338 spin_unlock_irqrestore(&fimc->slock, flags);
8ec737ff 339
4db5e27e
SN
340 if (!test_and_set_bit(ST_CAPT_ISP_STREAM, &fimc->state))
341 fimc_pipeline_s_stream(fimc, 1);
342 return;
343 }
2dab38e2
SN
344 spin_unlock_irqrestore(&fimc->slock, flags);
345}
346
347static void fimc_lock(struct vb2_queue *vq)
348{
349 struct fimc_ctx *ctx = vb2_get_drv_priv(vq);
350 mutex_lock(&ctx->fimc_dev->lock);
351}
352
353static void fimc_unlock(struct vb2_queue *vq)
354{
355 struct fimc_ctx *ctx = vb2_get_drv_priv(vq);
356 mutex_unlock(&ctx->fimc_dev->lock);
357}
358
359static struct vb2_ops fimc_capture_qops = {
360 .queue_setup = queue_setup,
361 .buf_prepare = buffer_prepare,
362 .buf_queue = buffer_queue,
2dab38e2
SN
363 .wait_prepare = fimc_unlock,
364 .wait_finish = fimc_lock,
365 .start_streaming = start_streaming,
366 .stop_streaming = stop_streaming,
367};
368
131b6c61
SN
369/**
370 * fimc_capture_ctrls_create - initialize the control handler
371 * Initialize the capture video node control handler and fill it
372 * with the FIMC controls. Inherit any sensor's controls if the
373 * 'user_subdev_api' flag is false (default behaviour).
374 * This function need to be called with the graph mutex held.
375 */
376int fimc_capture_ctrls_create(struct fimc_dev *fimc)
377{
378 struct fimc_vid_cap *vid_cap = &fimc->vid_cap;
379 int ret;
380
381 if (WARN_ON(vid_cap->ctx == NULL))
382 return -ENXIO;
383 if (vid_cap->ctx->ctrls_rdy)
384 return 0;
385
386 ret = fimc_ctrls_create(vid_cap->ctx);
387 if (ret || vid_cap->user_subdev_api)
388 return ret;
389
390 return v4l2_ctrl_add_handler(&vid_cap->ctx->ctrl_handler,
391 fimc->pipeline.sensor->ctrl_handler);
392}
393
237e0265
SN
394static int fimc_capture_set_default_format(struct fimc_dev *fimc);
395
5f3cc447
SN
396static int fimc_capture_open(struct file *file)
397{
398 struct fimc_dev *fimc = video_drvdata(file);
e578588e
SN
399 int ret = v4l2_fh_open(file);
400
401 if (ret)
402 return ret;
5f3cc447
SN
403
404 dbg("pid: %d, state: 0x%lx", task_pid_nr(current), fimc->state);
405
406 /* Return if the corresponding video mem2mem node is already opened. */
407 if (fimc_m2m_active(fimc))
408 return -EBUSY;
409
3e4748d8 410 set_bit(ST_CAPT_BUSY, &fimc->state);
4db5e27e
SN
411 pm_runtime_get_sync(&fimc->pdev->dev);
412
413 if (++fimc->vid_cap.refcnt == 1) {
414 ret = fimc_pipeline_initialize(fimc,
415 &fimc->vid_cap.vfd->entity, true);
416 if (ret < 0) {
417 dev_err(&fimc->pdev->dev,
418 "Video pipeline initialization failed\n");
419 pm_runtime_put_sync(&fimc->pdev->dev);
420 fimc->vid_cap.refcnt--;
421 v4l2_fh_release(file);
3e4748d8 422 clear_bit(ST_CAPT_BUSY, &fimc->state);
4db5e27e
SN
423 return ret;
424 }
131b6c61 425 ret = fimc_capture_ctrls_create(fimc);
237e0265
SN
426
427 if (!ret && !fimc->vid_cap.user_subdev_api)
428 ret = fimc_capture_set_default_format(fimc);
4db5e27e 429 }
131b6c61 430 return ret;
5f3cc447
SN
431}
432
433static int fimc_capture_close(struct file *file)
434{
435 struct fimc_dev *fimc = video_drvdata(file);
436
5f3cc447
SN
437 dbg("pid: %d, state: 0x%lx", task_pid_nr(current), fimc->state);
438
439 if (--fimc->vid_cap.refcnt == 0) {
3e4748d8
SN
440 clear_bit(ST_CAPT_BUSY, &fimc->state);
441 fimc_stop_capture(fimc, false);
4db5e27e 442 fimc_pipeline_shutdown(fimc);
3e4748d8 443 clear_bit(ST_CAPT_SUSPENDED, &fimc->state);
5f3cc447
SN
444 }
445
e9e21083
SN
446 pm_runtime_put(&fimc->pdev->dev);
447
3e4748d8
SN
448 if (fimc->vid_cap.refcnt == 0) {
449 vb2_queue_release(&fimc->vid_cap.vbq);
450 fimc_ctrls_delete(fimc->vid_cap.ctx);
451 }
e578588e 452 return v4l2_fh_release(file);
5f3cc447
SN
453}
454
455static unsigned int fimc_capture_poll(struct file *file,
456 struct poll_table_struct *wait)
457{
e578588e 458 struct fimc_dev *fimc = video_drvdata(file);
5f3cc447 459
8293ebfc 460 return vb2_poll(&fimc->vid_cap.vbq, file, wait);
5f3cc447
SN
461}
462
463static int fimc_capture_mmap(struct file *file, struct vm_area_struct *vma)
464{
e578588e 465 struct fimc_dev *fimc = video_drvdata(file);
5f3cc447 466
8293ebfc 467 return vb2_mmap(&fimc->vid_cap.vbq, vma);
5f3cc447
SN
468}
469
5f3cc447
SN
470static const struct v4l2_file_operations fimc_capture_fops = {
471 .owner = THIS_MODULE,
472 .open = fimc_capture_open,
473 .release = fimc_capture_close,
474 .poll = fimc_capture_poll,
475 .unlocked_ioctl = video_ioctl2,
476 .mmap = fimc_capture_mmap,
477};
478
237e0265
SN
479/*
480 * Format and crop negotiation helpers
481 */
482
483static struct fimc_fmt *fimc_capture_try_format(struct fimc_ctx *ctx,
484 u32 *width, u32 *height,
485 u32 *code, u32 *fourcc, int pad)
486{
487 bool rotation = ctx->rotation == 90 || ctx->rotation == 270;
488 struct fimc_dev *fimc = ctx->fimc_dev;
489 struct samsung_fimc_variant *var = fimc->variant;
490 struct fimc_pix_limit *pl = var->pix_limit;
491 struct fimc_frame *dst = &ctx->d_frame;
492 u32 depth, min_w, max_w, min_h, align_h = 3;
493 u32 mask = FMT_FLAGS_CAM;
494 struct fimc_fmt *ffmt;
495
496 /* Color conversion from/to JPEG is not supported */
497 if (code && ctx->s_frame.fmt && pad == FIMC_SD_PAD_SOURCE &&
498 fimc_fmt_is_jpeg(ctx->s_frame.fmt->color))
499 *code = V4L2_MBUS_FMT_JPEG_1X8;
500
501 if (fourcc && *fourcc != V4L2_PIX_FMT_JPEG && pad != FIMC_SD_PAD_SINK)
502 mask |= FMT_FLAGS_M2M;
503
504 ffmt = fimc_find_format(fourcc, code, mask, 0);
505 if (WARN_ON(!ffmt))
506 return NULL;
507 if (code)
508 *code = ffmt->mbus_code;
509 if (fourcc)
510 *fourcc = ffmt->fourcc;
511
512 if (pad == FIMC_SD_PAD_SINK) {
513 max_w = fimc_fmt_is_jpeg(ffmt->color) ?
514 pl->scaler_dis_w : pl->scaler_en_w;
515 /* Apply the camera input interface pixel constraints */
516 v4l_bound_align_image(width, max_t(u32, *width, 32), max_w, 4,
517 height, max_t(u32, *height, 32),
518 FIMC_CAMIF_MAX_HEIGHT,
519 fimc_fmt_is_jpeg(ffmt->color) ? 3 : 1,
520 0);
521 return ffmt;
522 }
523 /* Can't scale or crop in transparent (JPEG) transfer mode */
524 if (fimc_fmt_is_jpeg(ffmt->color)) {
525 *width = ctx->s_frame.f_width;
526 *height = ctx->s_frame.f_height;
527 return ffmt;
528 }
529 /* Apply the scaler and the output DMA constraints */
530 max_w = rotation ? pl->out_rot_en_w : pl->out_rot_dis_w;
531 min_w = ctx->state & FIMC_DST_CROP ? dst->width : var->min_out_pixsize;
532 min_h = ctx->state & FIMC_DST_CROP ? dst->height : var->min_out_pixsize;
9c63afcb 533 if (var->min_vsize_align == 1 && !rotation)
237e0265
SN
534 align_h = fimc_fmt_is_rgb(ffmt->color) ? 0 : 1;
535
536 depth = fimc_get_format_depth(ffmt);
537 v4l_bound_align_image(width, min_w, max_w,
538 ffs(var->min_out_pixsize) - 1,
539 height, min_h, FIMC_CAMIF_MAX_HEIGHT,
540 align_h,
541 64/(ALIGN(depth, 8)));
542
543 dbg("pad%d: code: 0x%x, %dx%d. dst fmt: %dx%d",
544 pad, code ? *code : 0, *width, *height,
545 dst->f_width, dst->f_height);
546
547 return ffmt;
548}
549
550static void fimc_capture_try_crop(struct fimc_ctx *ctx, struct v4l2_rect *r,
551 int pad)
552{
553 bool rotate = ctx->rotation == 90 || ctx->rotation == 270;
554 struct fimc_dev *fimc = ctx->fimc_dev;
555 struct samsung_fimc_variant *var = fimc->variant;
556 struct fimc_pix_limit *pl = var->pix_limit;
557 struct fimc_frame *sink = &ctx->s_frame;
558 u32 max_w, max_h, min_w = 0, min_h = 0, min_sz;
559 u32 align_sz = 0, align_h = 4;
560 u32 max_sc_h, max_sc_v;
561
562 /* In JPEG transparent transfer mode cropping is not supported */
563 if (fimc_fmt_is_jpeg(ctx->d_frame.fmt->color)) {
564 r->width = sink->f_width;
565 r->height = sink->f_height;
566 r->left = r->top = 0;
567 return;
568 }
569 if (pad == FIMC_SD_PAD_SOURCE) {
570 if (ctx->rotation != 90 && ctx->rotation != 270)
571 align_h = 1;
572 max_sc_h = min(SCALER_MAX_HRATIO, 1 << (ffs(sink->width) - 3));
573 max_sc_v = min(SCALER_MAX_VRATIO, 1 << (ffs(sink->height) - 1));
574 min_sz = var->min_out_pixsize;
575 } else {
576 u32 depth = fimc_get_format_depth(sink->fmt);
577 align_sz = 64/ALIGN(depth, 8);
578 min_sz = var->min_inp_pixsize;
579 min_w = min_h = min_sz;
580 max_sc_h = max_sc_v = 1;
581 }
582 /*
583 * For the crop rectangle at source pad the following constraints
584 * must be met:
585 * - it must fit in the sink pad format rectangle (f_width/f_height);
586 * - maximum downscaling ratio is 64;
587 * - maximum crop size depends if the rotator is used or not;
588 * - the sink pad format width/height must be 4 multiple of the
589 * prescaler ratios determined by sink pad size and source pad crop,
590 * the prescaler ratio is returned by fimc_get_scaler_factor().
591 */
592 max_w = min_t(u32,
593 rotate ? pl->out_rot_en_w : pl->out_rot_dis_w,
594 rotate ? sink->f_height : sink->f_width);
595 max_h = min_t(u32, FIMC_CAMIF_MAX_HEIGHT, sink->f_height);
596 if (pad == FIMC_SD_PAD_SOURCE) {
597 min_w = min_t(u32, max_w, sink->f_width / max_sc_h);
598 min_h = min_t(u32, max_h, sink->f_height / max_sc_v);
599 if (rotate) {
600 swap(max_sc_h, max_sc_v);
601 swap(min_w, min_h);
602 }
603 }
604 v4l_bound_align_image(&r->width, min_w, max_w, ffs(min_sz) - 1,
605 &r->height, min_h, max_h, align_h,
606 align_sz);
607 /* Adjust left/top if cropping rectangle is out of bounds */
608 r->left = clamp_t(u32, r->left, 0, sink->f_width - r->width);
609 r->top = clamp_t(u32, r->top, 0, sink->f_height - r->height);
610 r->left = round_down(r->left, var->hor_offs_align);
611
612 dbg("pad%d: (%d,%d)/%dx%d, sink fmt: %dx%d",
613 pad, r->left, r->top, r->width, r->height,
614 sink->f_width, sink->f_height);
615}
616
617/*
618 * The video node ioctl operations
619 */
5f3cc447
SN
620static int fimc_vidioc_querycap_capture(struct file *file, void *priv,
621 struct v4l2_capability *cap)
622{
e578588e 623 struct fimc_dev *fimc = video_drvdata(file);
5f3cc447
SN
624
625 strncpy(cap->driver, fimc->pdev->name, sizeof(cap->driver) - 1);
626 strncpy(cap->card, fimc->pdev->name, sizeof(cap->card) - 1);
627 cap->bus_info[0] = 0;
8f401543 628 cap->capabilities = V4L2_CAP_STREAMING | V4L2_CAP_VIDEO_CAPTURE_MPLANE;
5f3cc447
SN
629
630 return 0;
631}
632
cf52df8a
SN
633static int fimc_cap_enum_fmt_mplane(struct file *file, void *priv,
634 struct v4l2_fmtdesc *f)
635{
636 struct fimc_fmt *fmt;
637
638 fmt = fimc_find_format(NULL, NULL, FMT_FLAGS_CAM | FMT_FLAGS_M2M,
639 f->index);
640 if (!fmt)
641 return -EINVAL;
642 strncpy(f->description, fmt->name, sizeof(f->description) - 1);
643 f->pixelformat = fmt->fourcc;
644 if (fmt->fourcc == V4L2_MBUS_FMT_JPEG_1X8)
645 f->flags |= V4L2_FMT_FLAG_COMPRESSED;
646 return 0;
647}
648
237e0265
SN
649/**
650 * fimc_pipeline_try_format - negotiate and/or set formats at pipeline
651 * elements
652 * @ctx: FIMC capture context
653 * @tfmt: media bus format to try/set on subdevs
654 * @fmt_id: fimc pixel format id corresponding to returned @tfmt (output)
655 * @set: true to set format on subdevs, false to try only
656 */
657static int fimc_pipeline_try_format(struct fimc_ctx *ctx,
658 struct v4l2_mbus_framefmt *tfmt,
659 struct fimc_fmt **fmt_id,
660 bool set)
661{
662 struct fimc_dev *fimc = ctx->fimc_dev;
663 struct v4l2_subdev *sd = fimc->pipeline.sensor;
664 struct v4l2_subdev *csis = fimc->pipeline.csis;
665 struct v4l2_subdev_format sfmt;
666 struct v4l2_mbus_framefmt *mf = &sfmt.format;
667 struct fimc_fmt *ffmt = NULL;
668 int ret, i = 0;
669
670 if (WARN_ON(!sd || !tfmt))
671 return -EINVAL;
5f3cc447 672
237e0265
SN
673 memset(&sfmt, 0, sizeof(sfmt));
674 sfmt.format = *tfmt;
675
676 sfmt.which = set ? V4L2_SUBDEV_FORMAT_ACTIVE : V4L2_SUBDEV_FORMAT_TRY;
677 while (1) {
678 ffmt = fimc_find_format(NULL, mf->code != 0 ? &mf->code : NULL,
679 FMT_FLAGS_CAM, i++);
680 if (ffmt == NULL) {
681 /*
682 * Notify user-space if common pixel code for
683 * host and sensor does not exist.
684 */
685 return -EINVAL;
686 }
687 mf->code = tfmt->code = ffmt->mbus_code;
5f3cc447 688
237e0265
SN
689 ret = v4l2_subdev_call(sd, pad, set_fmt, NULL, &sfmt);
690 if (ret)
691 return ret;
692 if (mf->code != tfmt->code) {
693 mf->code = 0;
694 continue;
695 }
b1aa6089 696 if (mf->width != tfmt->width || mf->height != tfmt->height) {
237e0265
SN
697 u32 fcc = ffmt->fourcc;
698 tfmt->width = mf->width;
699 tfmt->height = mf->height;
700 ffmt = fimc_capture_try_format(ctx,
701 &tfmt->width, &tfmt->height,
702 NULL, &fcc, FIMC_SD_PAD_SOURCE);
703 if (ffmt && ffmt->mbus_code)
704 mf->code = ffmt->mbus_code;
b1aa6089
JL
705 if (mf->width != tfmt->width ||
706 mf->height != tfmt->height)
237e0265
SN
707 continue;
708 tfmt->code = mf->code;
709 }
710 if (csis)
711 ret = v4l2_subdev_call(csis, pad, set_fmt, NULL, &sfmt);
5f3cc447 712
237e0265 713 if (mf->code == tfmt->code &&
b1aa6089 714 mf->width == tfmt->width && mf->height == tfmt->height)
237e0265
SN
715 break;
716 }
5f3cc447 717
237e0265
SN
718 if (fmt_id && ffmt)
719 *fmt_id = ffmt;
720 *tfmt = *mf;
5f3cc447 721
237e0265
SN
722 dbg("code: 0x%x, %dx%d, %p", mf->code, mf->width, mf->height, ffmt);
723 return 0;
724}
5f3cc447 725
e578588e
SN
726static int fimc_cap_g_fmt_mplane(struct file *file, void *fh,
727 struct v4l2_format *f)
728{
729 struct fimc_dev *fimc = video_drvdata(file);
730 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
731
732 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
733 return -EINVAL;
734
735 return fimc_fill_format(&ctx->d_frame, f);
736}
737
738static int fimc_cap_try_fmt_mplane(struct file *file, void *fh,
739 struct v4l2_format *f)
740{
237e0265 741 struct v4l2_pix_format_mplane *pix = &f->fmt.pix_mp;
e578588e
SN
742 struct fimc_dev *fimc = video_drvdata(file);
743 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
237e0265
SN
744 struct v4l2_mbus_framefmt mf;
745 struct fimc_fmt *ffmt = NULL;
746
747 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
748 return -EINVAL;
749
750 if (pix->pixelformat == V4L2_PIX_FMT_JPEG) {
751 fimc_capture_try_format(ctx, &pix->width, &pix->height,
752 NULL, &pix->pixelformat,
753 FIMC_SD_PAD_SINK);
754 ctx->s_frame.f_width = pix->width;
755 ctx->s_frame.f_height = pix->height;
756 }
757 ffmt = fimc_capture_try_format(ctx, &pix->width, &pix->height,
758 NULL, &pix->pixelformat,
759 FIMC_SD_PAD_SOURCE);
760 if (!ffmt)
761 return -EINVAL;
762
763 if (!fimc->vid_cap.user_subdev_api) {
764 mf.width = pix->width;
765 mf.height = pix->height;
766 mf.code = ffmt->mbus_code;
767 fimc_md_graph_lock(fimc);
768 fimc_pipeline_try_format(ctx, &mf, &ffmt, false);
769 fimc_md_graph_unlock(fimc);
770
771 pix->width = mf.width;
772 pix->height = mf.height;
773 if (ffmt)
774 pix->pixelformat = ffmt->fourcc;
775 }
e578588e 776
237e0265 777 fimc_adjust_mplane_format(ffmt, pix->width, pix->height, pix);
4db5e27e 778 return 0;
e578588e
SN
779}
780
ee7160e5
SN
781static void fimc_capture_mark_jpeg_xfer(struct fimc_ctx *ctx, bool jpeg)
782{
783 ctx->scaler.enabled = !jpeg;
784 fimc_ctrls_activate(ctx, !jpeg);
785
786 if (jpeg)
787 set_bit(ST_CAPT_JPEG, &ctx->fimc_dev->state);
788 else
789 clear_bit(ST_CAPT_JPEG, &ctx->fimc_dev->state);
790}
791
237e0265 792static int fimc_capture_set_format(struct fimc_dev *fimc, struct v4l2_format *f)
5f3cc447 793{
e578588e 794 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
237e0265
SN
795 struct v4l2_pix_format_mplane *pix = &f->fmt.pix_mp;
796 struct v4l2_mbus_framefmt *mf = &fimc->vid_cap.mf;
797 struct fimc_frame *ff = &ctx->d_frame;
798 struct fimc_fmt *s_fmt = NULL;
799 int ret, i;
5f3cc447 800
ef7af59b 801 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
5f3cc447 802 return -EINVAL;
237e0265 803 if (vb2_is_busy(&fimc->vid_cap.vbq))
ef7af59b 804 return -EBUSY;
5f3cc447 805
237e0265
SN
806 /* Pre-configure format at camera interface input, for JPEG only */
807 if (pix->pixelformat == V4L2_PIX_FMT_JPEG) {
808 fimc_capture_try_format(ctx, &pix->width, &pix->height,
809 NULL, &pix->pixelformat,
810 FIMC_SD_PAD_SINK);
811 ctx->s_frame.f_width = pix->width;
812 ctx->s_frame.f_height = pix->height;
813 }
814 /* Try the format at the scaler and the DMA output */
815 ff->fmt = fimc_capture_try_format(ctx, &pix->width, &pix->height,
816 NULL, &pix->pixelformat,
817 FIMC_SD_PAD_SOURCE);
818 if (!ff->fmt)
8293ebfc 819 return -EINVAL;
dafb9c70
SN
820
821 /* Update RGB Alpha control state and value range */
822 fimc_alpha_ctrl_update(ctx);
823
237e0265
SN
824 /* Try to match format at the host and the sensor */
825 if (!fimc->vid_cap.user_subdev_api) {
826 mf->code = ff->fmt->mbus_code;
827 mf->width = pix->width;
828 mf->height = pix->height;
829
830 fimc_md_graph_lock(fimc);
831 ret = fimc_pipeline_try_format(ctx, mf, &s_fmt, true);
832 fimc_md_graph_unlock(fimc);
833 if (ret)
834 return ret;
835 pix->width = mf->width;
836 pix->height = mf->height;
837 }
838 fimc_adjust_mplane_format(ff->fmt, pix->width, pix->height, pix);
839 for (i = 0; i < ff->fmt->colplanes; i++)
840 ff->payload[i] =
841 (pix->width * pix->height * ff->fmt->depth[i]) / 8;
842
843 set_frame_bounds(ff, pix->width, pix->height);
844 /* Reset the composition rectangle if not yet configured */
845 if (!(ctx->state & FIMC_DST_CROP))
846 set_frame_crop(ff, 0, 0, pix->width, pix->height);
847
ee7160e5
SN
848 fimc_capture_mark_jpeg_xfer(ctx, fimc_fmt_is_jpeg(ff->fmt->color));
849
237e0265
SN
850 /* Reset cropping and set format at the camera interface input */
851 if (!fimc->vid_cap.user_subdev_api) {
852 ctx->s_frame.fmt = s_fmt;
853 set_frame_bounds(&ctx->s_frame, pix->width, pix->height);
854 set_frame_crop(&ctx->s_frame, 0, 0, pix->width, pix->height);
045030fa 855 }
ef7af59b 856
237e0265
SN
857 return ret;
858}
5f3cc447 859
237e0265
SN
860static int fimc_cap_s_fmt_mplane(struct file *file, void *priv,
861 struct v4l2_format *f)
862{
863 struct fimc_dev *fimc = video_drvdata(file);
5f3cc447 864
237e0265 865 return fimc_capture_set_format(fimc, f);
5f3cc447
SN
866}
867
868static int fimc_cap_enum_input(struct file *file, void *priv,
3e002182 869 struct v4l2_input *i)
5f3cc447 870{
e578588e 871 struct fimc_dev *fimc = video_drvdata(file);
4db5e27e 872 struct v4l2_subdev *sd = fimc->pipeline.sensor;
5f3cc447 873
3e002182 874 if (i->index != 0)
5f3cc447
SN
875 return -EINVAL;
876
5f3cc447 877 i->type = V4L2_INPUT_TYPE_CAMERA;
4db5e27e
SN
878 if (sd)
879 strlcpy(i->name, sd->name, sizeof(i->name));
5f3cc447
SN
880 return 0;
881}
882
3e002182 883static int fimc_cap_s_input(struct file *file, void *priv, unsigned int i)
5f3cc447 884{
3e002182 885 return i == 0 ? i : -EINVAL;
5f3cc447
SN
886}
887
3e002182 888static int fimc_cap_g_input(struct file *file, void *priv, unsigned int *i)
5f3cc447 889{
3e002182 890 *i = 0;
5f3cc447
SN
891 return 0;
892}
893
237e0265
SN
894/**
895 * fimc_pipeline_validate - check for formats inconsistencies
896 * between source and sink pad of each link
897 *
898 * Return 0 if all formats match or -EPIPE otherwise.
899 */
900static int fimc_pipeline_validate(struct fimc_dev *fimc)
901{
902 struct v4l2_subdev_format sink_fmt, src_fmt;
903 struct fimc_vid_cap *vid_cap = &fimc->vid_cap;
904 struct v4l2_subdev *sd;
905 struct media_pad *pad;
906 int ret;
907
908 /* Start with the video capture node pad */
909 pad = media_entity_remote_source(&vid_cap->vd_pad);
910 if (pad == NULL)
911 return -EPIPE;
912 /* FIMC.{N} subdevice */
913 sd = media_entity_to_v4l2_subdev(pad->entity);
914
915 while (1) {
916 /* Retrieve format at the sink pad */
917 pad = &sd->entity.pads[0];
918 if (!(pad->flags & MEDIA_PAD_FL_SINK))
919 break;
920 /* Don't call FIMC subdev operation to avoid nested locking */
921 if (sd == fimc->vid_cap.subdev) {
922 struct fimc_frame *ff = &vid_cap->ctx->s_frame;
923 sink_fmt.format.width = ff->f_width;
924 sink_fmt.format.height = ff->f_height;
925 sink_fmt.format.code = ff->fmt ? ff->fmt->mbus_code : 0;
926 } else {
927 sink_fmt.pad = pad->index;
928 sink_fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE;
929 ret = v4l2_subdev_call(sd, pad, get_fmt, NULL, &sink_fmt);
930 if (ret < 0 && ret != -ENOIOCTLCMD)
931 return -EPIPE;
932 }
933 /* Retrieve format at the source pad */
934 pad = media_entity_remote_source(pad);
935 if (pad == NULL ||
936 media_entity_type(pad->entity) != MEDIA_ENT_T_V4L2_SUBDEV)
937 break;
938
939 sd = media_entity_to_v4l2_subdev(pad->entity);
940 src_fmt.pad = pad->index;
941 src_fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE;
942 ret = v4l2_subdev_call(sd, pad, get_fmt, NULL, &src_fmt);
943 if (ret < 0 && ret != -ENOIOCTLCMD)
944 return -EPIPE;
945
946 if (src_fmt.format.width != sink_fmt.format.width ||
947 src_fmt.format.height != sink_fmt.format.height ||
948 src_fmt.format.code != sink_fmt.format.code)
949 return -EPIPE;
950 }
951 return 0;
952}
953
5f3cc447 954static int fimc_cap_streamon(struct file *file, void *priv,
2dab38e2 955 enum v4l2_buf_type type)
5f3cc447 956{
e578588e 957 struct fimc_dev *fimc = video_drvdata(file);
4db5e27e 958 struct fimc_pipeline *p = &fimc->pipeline;
237e0265 959 int ret;
5f3cc447 960
4db5e27e 961 if (fimc_capture_active(fimc))
8293ebfc 962 return -EBUSY;
5f3cc447 963
4db5e27e 964 media_entity_pipeline_start(&p->sensor->entity, p->pipe);
5f3cc447 965
237e0265
SN
966 if (fimc->vid_cap.user_subdev_api) {
967 ret = fimc_pipeline_validate(fimc);
968 if (ret)
969 return ret;
970 }
8293ebfc 971 return vb2_streamon(&fimc->vid_cap.vbq, type);
5f3cc447
SN
972}
973
974static int fimc_cap_streamoff(struct file *file, void *priv,
8293ebfc 975 enum v4l2_buf_type type)
5f3cc447 976{
e578588e 977 struct fimc_dev *fimc = video_drvdata(file);
4db5e27e
SN
978 struct v4l2_subdev *sd = fimc->pipeline.sensor;
979 int ret;
5f3cc447 980
4db5e27e
SN
981 ret = vb2_streamoff(&fimc->vid_cap.vbq, type);
982 if (ret == 0)
983 media_entity_pipeline_stop(&sd->entity);
984 return ret;
5f3cc447
SN
985}
986
987static int fimc_cap_reqbufs(struct file *file, void *priv,
ef7af59b 988 struct v4l2_requestbuffers *reqbufs)
5f3cc447 989{
e578588e
SN
990 struct fimc_dev *fimc = video_drvdata(file);
991 int ret = vb2_reqbufs(&fimc->vid_cap.vbq, reqbufs);
5f3cc447 992
5f3cc447 993 if (!ret)
e578588e 994 fimc->vid_cap.reqbufs_count = reqbufs->count;
5f3cc447
SN
995 return ret;
996}
997
998static int fimc_cap_querybuf(struct file *file, void *priv,
999 struct v4l2_buffer *buf)
1000{
e578588e 1001 struct fimc_dev *fimc = video_drvdata(file);
5f3cc447 1002
e578588e 1003 return vb2_querybuf(&fimc->vid_cap.vbq, buf);
5f3cc447
SN
1004}
1005
1006static int fimc_cap_qbuf(struct file *file, void *priv,
1007 struct v4l2_buffer *buf)
1008{
e578588e
SN
1009 struct fimc_dev *fimc = video_drvdata(file);
1010
1011 return vb2_qbuf(&fimc->vid_cap.vbq, buf);
5f3cc447
SN
1012}
1013
1014static int fimc_cap_dqbuf(struct file *file, void *priv,
1015 struct v4l2_buffer *buf)
1016{
e578588e
SN
1017 struct fimc_dev *fimc = video_drvdata(file);
1018
1019 return vb2_dqbuf(&fimc->vid_cap.vbq, buf, file->f_flags & O_NONBLOCK);
5f3cc447
SN
1020}
1021
3b4c34aa
SN
1022static int fimc_cap_create_bufs(struct file *file, void *priv,
1023 struct v4l2_create_buffers *create)
1024{
1025 struct fimc_dev *fimc = video_drvdata(file);
1026
1027 return vb2_create_bufs(&fimc->vid_cap.vbq, create);
1028}
1029
1030static int fimc_cap_prepare_buf(struct file *file, void *priv,
1031 struct v4l2_buffer *b)
1032{
1033 struct fimc_dev *fimc = video_drvdata(file);
1034
1035 return vb2_prepare_buf(&fimc->vid_cap.vbq, b);
1036}
1037
e004e02f
SN
1038static int fimc_cap_cropcap(struct file *file, void *fh,
1039 struct v4l2_cropcap *cr)
1040{
e578588e
SN
1041 struct fimc_dev *fimc = video_drvdata(file);
1042 struct fimc_frame *f = &fimc->vid_cap.ctx->s_frame;
e004e02f 1043
ef7af59b 1044 if (cr->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
e004e02f
SN
1045 return -EINVAL;
1046
e004e02f
SN
1047 cr->bounds.left = 0;
1048 cr->bounds.top = 0;
1049 cr->bounds.width = f->o_width;
1050 cr->bounds.height = f->o_height;
1051 cr->defrect = cr->bounds;
1052
e004e02f
SN
1053 return 0;
1054}
1055
1056static int fimc_cap_g_crop(struct file *file, void *fh, struct v4l2_crop *cr)
1057{
e578588e
SN
1058 struct fimc_dev *fimc = video_drvdata(file);
1059 struct fimc_frame *f = &fimc->vid_cap.ctx->s_frame;
8293ebfc 1060
e004e02f
SN
1061 cr->c.left = f->offs_h;
1062 cr->c.top = f->offs_v;
1063 cr->c.width = f->width;
1064 cr->c.height = f->height;
1065
e004e02f
SN
1066 return 0;
1067}
1068
e578588e 1069static int fimc_cap_s_crop(struct file *file, void *fh, struct v4l2_crop *cr)
5f3cc447 1070{
e578588e
SN
1071 struct fimc_dev *fimc = video_drvdata(file);
1072 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
237e0265
SN
1073 struct fimc_frame *ff;
1074 unsigned long flags;
5f3cc447 1075
237e0265
SN
1076 fimc_capture_try_crop(ctx, &cr->c, FIMC_SD_PAD_SINK);
1077 ff = &ctx->s_frame;
5f3cc447 1078
237e0265
SN
1079 spin_lock_irqsave(&fimc->slock, flags);
1080 set_frame_crop(ff, cr->c.left, cr->c.top, cr->c.width, cr->c.height);
1081 set_bit(ST_CAPT_APPLY_CFG, &fimc->state);
1082 spin_unlock_irqrestore(&fimc->slock, flags);
8293ebfc
SN
1083
1084 return 0;
5f3cc447
SN
1085}
1086
5f3cc447
SN
1087static const struct v4l2_ioctl_ops fimc_capture_ioctl_ops = {
1088 .vidioc_querycap = fimc_vidioc_querycap_capture,
1089
cf52df8a 1090 .vidioc_enum_fmt_vid_cap_mplane = fimc_cap_enum_fmt_mplane,
e578588e 1091 .vidioc_try_fmt_vid_cap_mplane = fimc_cap_try_fmt_mplane,
ef7af59b 1092 .vidioc_s_fmt_vid_cap_mplane = fimc_cap_s_fmt_mplane,
e578588e 1093 .vidioc_g_fmt_vid_cap_mplane = fimc_cap_g_fmt_mplane,
5f3cc447
SN
1094
1095 .vidioc_reqbufs = fimc_cap_reqbufs,
1096 .vidioc_querybuf = fimc_cap_querybuf,
1097
1098 .vidioc_qbuf = fimc_cap_qbuf,
1099 .vidioc_dqbuf = fimc_cap_dqbuf,
1100
3b4c34aa
SN
1101 .vidioc_prepare_buf = fimc_cap_prepare_buf,
1102 .vidioc_create_bufs = fimc_cap_create_bufs,
1103
5f3cc447
SN
1104 .vidioc_streamon = fimc_cap_streamon,
1105 .vidioc_streamoff = fimc_cap_streamoff,
1106
e004e02f 1107 .vidioc_g_crop = fimc_cap_g_crop,
5f3cc447 1108 .vidioc_s_crop = fimc_cap_s_crop,
e004e02f 1109 .vidioc_cropcap = fimc_cap_cropcap,
5f3cc447
SN
1110
1111 .vidioc_enum_input = fimc_cap_enum_input,
1112 .vidioc_s_input = fimc_cap_s_input,
1113 .vidioc_g_input = fimc_cap_g_input,
1114};
1115
237e0265 1116/* Capture subdev media entity operations */
d09a7dc8
SN
1117static int fimc_link_setup(struct media_entity *entity,
1118 const struct media_pad *local,
1119 const struct media_pad *remote, u32 flags)
1120{
237e0265
SN
1121 struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
1122 struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
1123
1124 if (media_entity_type(remote->entity) != MEDIA_ENT_T_V4L2_SUBDEV)
1125 return -EINVAL;
d09a7dc8
SN
1126
1127 if (WARN_ON(fimc == NULL))
1128 return 0;
1129
1130 dbg("%s --> %s, flags: 0x%x. input: 0x%x",
1131 local->entity->name, remote->entity->name, flags,
1132 fimc->vid_cap.input);
1133
1134 if (flags & MEDIA_LNK_FL_ENABLED) {
1135 if (fimc->vid_cap.input != 0)
1136 return -EBUSY;
1137 fimc->vid_cap.input = sd->grp_id;
1138 return 0;
1139 }
1140
1141 fimc->vid_cap.input = 0;
1142 return 0;
1143}
1144
237e0265 1145static const struct media_entity_operations fimc_sd_media_ops = {
d09a7dc8
SN
1146 .link_setup = fimc_link_setup,
1147};
1148
e1d72f4d
SN
1149/**
1150 * fimc_sensor_notify - v4l2_device notification from a sensor subdev
1151 * @sd: pointer to a subdev generating the notification
1152 * @notification: the notification type, must be S5P_FIMC_TX_END_NOTIFY
1153 * @arg: pointer to an u32 type integer that stores the frame payload value
1154 *
1155 * The End Of Frame notification sent by sensor subdev in its still capture
1156 * mode. If there is only a single VSYNC generated by the sensor at the
1157 * beginning of a frame transmission, FIMC does not issue the LastIrq
1158 * (end of frame) interrupt. And this notification is used to complete the
1159 * frame capture and returning a buffer to user-space. Subdev drivers should
1160 * call this notification from their last 'End of frame capture' interrupt.
1161 */
1162void fimc_sensor_notify(struct v4l2_subdev *sd, unsigned int notification,
1163 void *arg)
1164{
1165 struct fimc_sensor_info *sensor;
1166 struct fimc_vid_buffer *buf;
1167 struct fimc_md *fmd;
1168 struct fimc_dev *fimc;
1169 unsigned long flags;
1170
1171 if (sd == NULL)
1172 return;
1173
1174 sensor = v4l2_get_subdev_hostdata(sd);
1175 fmd = entity_to_fimc_mdev(&sd->entity);
1176
1177 spin_lock_irqsave(&fmd->slock, flags);
1178 fimc = sensor ? sensor->host : NULL;
1179
1180 if (fimc && arg && notification == S5P_FIMC_TX_END_NOTIFY &&
1181 test_bit(ST_CAPT_PEND, &fimc->state)) {
1182 unsigned long irq_flags;
1183 spin_lock_irqsave(&fimc->slock, irq_flags);
1184 if (!list_empty(&fimc->vid_cap.active_buf_q)) {
1185 buf = list_entry(fimc->vid_cap.active_buf_q.next,
1186 struct fimc_vid_buffer, list);
1187 vb2_set_plane_payload(&buf->vb, 0, *((u32 *)arg));
1188 }
1189 fimc_capture_irq_handler(fimc, true);
1190 fimc_deactivate_capture(fimc);
1191 spin_unlock_irqrestore(&fimc->slock, irq_flags);
1192 }
1193 spin_unlock_irqrestore(&fmd->slock, flags);
1194}
1195
237e0265
SN
1196static int fimc_subdev_enum_mbus_code(struct v4l2_subdev *sd,
1197 struct v4l2_subdev_fh *fh,
1198 struct v4l2_subdev_mbus_code_enum *code)
1199{
1200 struct fimc_fmt *fmt;
1201
1202 fmt = fimc_find_format(NULL, NULL, FMT_FLAGS_CAM, code->index);
1203 if (!fmt)
1204 return -EINVAL;
1205 code->code = fmt->mbus_code;
1206 return 0;
1207}
1208
1209static int fimc_subdev_get_fmt(struct v4l2_subdev *sd,
1210 struct v4l2_subdev_fh *fh,
1211 struct v4l2_subdev_format *fmt)
1212{
1213 struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
1214 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
1215 struct v4l2_mbus_framefmt *mf;
1216 struct fimc_frame *ff;
1217
1218 if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
1219 mf = v4l2_subdev_get_try_format(fh, fmt->pad);
1220 fmt->format = *mf;
1221 return 0;
1222 }
1223 mf = &fmt->format;
1224 mf->colorspace = V4L2_COLORSPACE_JPEG;
1225 ff = fmt->pad == FIMC_SD_PAD_SINK ? &ctx->s_frame : &ctx->d_frame;
1226
1227 mutex_lock(&fimc->lock);
1228 /* The pixel code is same on both input and output pad */
1229 if (!WARN_ON(ctx->s_frame.fmt == NULL))
1230 mf->code = ctx->s_frame.fmt->mbus_code;
1231 mf->width = ff->f_width;
1232 mf->height = ff->f_height;
1233 mutex_unlock(&fimc->lock);
1234
1235 return 0;
1236}
1237
1238static int fimc_subdev_set_fmt(struct v4l2_subdev *sd,
1239 struct v4l2_subdev_fh *fh,
1240 struct v4l2_subdev_format *fmt)
1241{
1242 struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
1243 struct v4l2_mbus_framefmt *mf = &fmt->format;
1244 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
1245 struct fimc_frame *ff;
1246 struct fimc_fmt *ffmt;
1247
1248 dbg("pad%d: code: 0x%x, %dx%d",
1249 fmt->pad, mf->code, mf->width, mf->height);
1250
1251 if (fmt->pad == FIMC_SD_PAD_SOURCE &&
1252 vb2_is_busy(&fimc->vid_cap.vbq))
1253 return -EBUSY;
1254
1255 mutex_lock(&fimc->lock);
1256 ffmt = fimc_capture_try_format(ctx, &mf->width, &mf->height,
1257 &mf->code, NULL, fmt->pad);
1258 mutex_unlock(&fimc->lock);
1259 mf->colorspace = V4L2_COLORSPACE_JPEG;
1260
1261 if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
1262 mf = v4l2_subdev_get_try_format(fh, fmt->pad);
1263 *mf = fmt->format;
1264 return 0;
1265 }
dafb9c70
SN
1266 /* Update RGB Alpha control state and value range */
1267 fimc_alpha_ctrl_update(ctx);
1268
ee7160e5
SN
1269 fimc_capture_mark_jpeg_xfer(ctx, fimc_fmt_is_jpeg(ffmt->color));
1270
237e0265
SN
1271 ff = fmt->pad == FIMC_SD_PAD_SINK ?
1272 &ctx->s_frame : &ctx->d_frame;
1273
1274 mutex_lock(&fimc->lock);
1275 set_frame_bounds(ff, mf->width, mf->height);
393a23fc 1276 fimc->vid_cap.mf = *mf;
237e0265
SN
1277 ff->fmt = ffmt;
1278
1279 /* Reset the crop rectangle if required. */
1280 if (!(fmt->pad == FIMC_SD_PAD_SOURCE && (ctx->state & FIMC_DST_CROP)))
1281 set_frame_crop(ff, 0, 0, mf->width, mf->height);
1282
1283 if (fmt->pad == FIMC_SD_PAD_SINK)
1284 ctx->state &= ~FIMC_DST_CROP;
1285 mutex_unlock(&fimc->lock);
1286 return 0;
1287}
1288
1289static int fimc_subdev_get_crop(struct v4l2_subdev *sd,
1290 struct v4l2_subdev_fh *fh,
1291 struct v4l2_subdev_crop *crop)
1292{
1293 struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
1294 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
1295 struct v4l2_rect *r = &crop->rect;
1296 struct fimc_frame *ff;
1297
1298 if (crop->which == V4L2_SUBDEV_FORMAT_TRY) {
1299 crop->rect = *v4l2_subdev_get_try_crop(fh, crop->pad);
1300 return 0;
1301 }
1302 ff = crop->pad == FIMC_SD_PAD_SINK ?
1303 &ctx->s_frame : &ctx->d_frame;
1304
1305 mutex_lock(&fimc->lock);
1306 r->left = ff->offs_h;
1307 r->top = ff->offs_v;
1308 r->width = ff->width;
1309 r->height = ff->height;
1310 mutex_unlock(&fimc->lock);
1311
1312 dbg("ff:%p, pad%d: l:%d, t:%d, %dx%d, f_w: %d, f_h: %d",
1313 ff, crop->pad, r->left, r->top, r->width, r->height,
1314 ff->f_width, ff->f_height);
1315
1316 return 0;
1317}
1318
1319static int fimc_subdev_set_crop(struct v4l2_subdev *sd,
1320 struct v4l2_subdev_fh *fh,
1321 struct v4l2_subdev_crop *crop)
1322{
1323 struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
1324 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
1325 struct v4l2_rect *r = &crop->rect;
1326 struct fimc_frame *ff;
1327 unsigned long flags;
1328
1329 dbg("(%d,%d)/%dx%d", r->left, r->top, r->width, r->height);
1330
1331 ff = crop->pad == FIMC_SD_PAD_SOURCE ?
1332 &ctx->d_frame : &ctx->s_frame;
1333
1334 mutex_lock(&fimc->lock);
1335 fimc_capture_try_crop(ctx, r, crop->pad);
1336
1337 if (crop->which == V4L2_SUBDEV_FORMAT_TRY) {
1338 mutex_lock(&fimc->lock);
1339 *v4l2_subdev_get_try_crop(fh, crop->pad) = *r;
1340 return 0;
1341 }
1342 spin_lock_irqsave(&fimc->slock, flags);
1343 set_frame_crop(ff, r->left, r->top, r->width, r->height);
1344 if (crop->pad == FIMC_SD_PAD_SOURCE)
1345 ctx->state |= FIMC_DST_CROP;
1346
1347 set_bit(ST_CAPT_APPLY_CFG, &fimc->state);
1348 spin_unlock_irqrestore(&fimc->slock, flags);
1349
1350 dbg("pad%d: (%d,%d)/%dx%d", crop->pad, r->left, r->top,
1351 r->width, r->height);
1352
1353 mutex_unlock(&fimc->lock);
1354 return 0;
1355}
1356
1357static struct v4l2_subdev_pad_ops fimc_subdev_pad_ops = {
1358 .enum_mbus_code = fimc_subdev_enum_mbus_code,
1359 .get_fmt = fimc_subdev_get_fmt,
1360 .set_fmt = fimc_subdev_set_fmt,
1361 .get_crop = fimc_subdev_get_crop,
1362 .set_crop = fimc_subdev_set_crop,
1363};
1364
1365static struct v4l2_subdev_ops fimc_subdev_ops = {
1366 .pad = &fimc_subdev_pad_ops,
1367};
1368
1369static int fimc_create_capture_subdev(struct fimc_dev *fimc,
1370 struct v4l2_device *v4l2_dev)
1371{
1372 struct v4l2_subdev *sd;
1373 int ret;
1374
1375 sd = kzalloc(sizeof(*sd), GFP_KERNEL);
1376 if (!sd)
1377 return -ENOMEM;
1378
1379 v4l2_subdev_init(sd, &fimc_subdev_ops);
1380 sd->flags = V4L2_SUBDEV_FL_HAS_DEVNODE;
1381 snprintf(sd->name, sizeof(sd->name), "FIMC.%d", fimc->pdev->id);
1382
1383 fimc->vid_cap.sd_pads[FIMC_SD_PAD_SINK].flags = MEDIA_PAD_FL_SINK;
1384 fimc->vid_cap.sd_pads[FIMC_SD_PAD_SOURCE].flags = MEDIA_PAD_FL_SOURCE;
1385 ret = media_entity_init(&sd->entity, FIMC_SD_PADS_NUM,
1386 fimc->vid_cap.sd_pads, 0);
1387 if (ret)
1388 goto me_err;
1389 ret = v4l2_device_register_subdev(v4l2_dev, sd);
1390 if (ret)
1391 goto sd_err;
1392
1393 fimc->vid_cap.subdev = sd;
1394 v4l2_set_subdevdata(sd, fimc);
1395 sd->entity.ops = &fimc_sd_media_ops;
1396 return 0;
1397sd_err:
1398 media_entity_cleanup(&sd->entity);
1399me_err:
1400 kfree(sd);
1401 return ret;
1402}
1403
1404static void fimc_destroy_capture_subdev(struct fimc_dev *fimc)
1405{
1406 struct v4l2_subdev *sd = fimc->vid_cap.subdev;
1407
1408 if (!sd)
1409 return;
1410 media_entity_cleanup(&sd->entity);
1411 v4l2_device_unregister_subdev(sd);
1412 kfree(sd);
64c570f5 1413 fimc->vid_cap.subdev = NULL;
237e0265
SN
1414}
1415
1416/* Set default format at the sensor and host interface */
1417static int fimc_capture_set_default_format(struct fimc_dev *fimc)
1418{
1419 struct v4l2_format fmt = {
1420 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE,
1421 .fmt.pix_mp = {
1422 .width = 640,
1423 .height = 480,
1424 .pixelformat = V4L2_PIX_FMT_YUYV,
1425 .field = V4L2_FIELD_NONE,
1426 .colorspace = V4L2_COLORSPACE_JPEG,
1427 },
1428 };
1429
1430 return fimc_capture_set_format(fimc, &fmt);
1431}
1432
ef7af59b 1433/* fimc->lock must be already initialized */
30c9939d
SN
1434int fimc_register_capture_device(struct fimc_dev *fimc,
1435 struct v4l2_device *v4l2_dev)
5f3cc447 1436{
5f3cc447
SN
1437 struct video_device *vfd;
1438 struct fimc_vid_cap *vid_cap;
1439 struct fimc_ctx *ctx;
2dab38e2 1440 struct vb2_queue *q;
30c9939d 1441 int ret = -ENOMEM;
5f3cc447
SN
1442
1443 ctx = kzalloc(sizeof *ctx, GFP_KERNEL);
1444 if (!ctx)
1445 return -ENOMEM;
1446
1447 ctx->fimc_dev = fimc;
1448 ctx->in_path = FIMC_CAMERA;
1449 ctx->out_path = FIMC_DMA;
1450 ctx->state = FIMC_CTX_CAP;
237e0265
SN
1451 ctx->s_frame.fmt = fimc_find_format(NULL, NULL, FMT_FLAGS_CAM, 0);
1452 ctx->d_frame.fmt = fimc_find_format(NULL, NULL, FMT_FLAGS_CAM, 0);
5f3cc447 1453
5f3cc447
SN
1454 vfd = video_device_alloc();
1455 if (!vfd) {
1456 v4l2_err(v4l2_dev, "Failed to allocate video device\n");
30c9939d 1457 goto err_vd_alloc;
5f3cc447
SN
1458 }
1459
30c9939d
SN
1460 snprintf(vfd->name, sizeof(vfd->name), "%s.capture",
1461 dev_name(&fimc->pdev->dev));
5f3cc447
SN
1462
1463 vfd->fops = &fimc_capture_fops;
1464 vfd->ioctl_ops = &fimc_capture_ioctl_ops;
574e1717 1465 vfd->v4l2_dev = v4l2_dev;
5f3cc447
SN
1466 vfd->minor = -1;
1467 vfd->release = video_device_release;
8293ebfc 1468 vfd->lock = &fimc->lock;
5f3cc447
SN
1469 video_set_drvdata(vfd, fimc);
1470
1471 vid_cap = &fimc->vid_cap;
1472 vid_cap->vfd = vfd;
1473 vid_cap->active_buf_cnt = 0;
1474 vid_cap->reqbufs_count = 0;
1475 vid_cap->refcnt = 0;
5f3cc447
SN
1476
1477 INIT_LIST_HEAD(&vid_cap->pending_buf_q);
1478 INIT_LIST_HEAD(&vid_cap->active_buf_q);
1479 spin_lock_init(&ctx->slock);
1480 vid_cap->ctx = ctx;
1481
2dab38e2
SN
1482 q = &fimc->vid_cap.vbq;
1483 memset(q, 0, sizeof(*q));
ef7af59b 1484 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
2dab38e2
SN
1485 q->io_modes = VB2_MMAP | VB2_USERPTR;
1486 q->drv_priv = fimc->vid_cap.ctx;
1487 q->ops = &fimc_capture_qops;
1488 q->mem_ops = &vb2_dma_contig_memops;
1489 q->buf_struct_size = sizeof(struct fimc_vid_buffer);
1490
1491 vb2_queue_init(q);
5f3cc447 1492
574e1717
SN
1493 fimc->vid_cap.vd_pad.flags = MEDIA_PAD_FL_SINK;
1494 ret = media_entity_init(&vfd->entity, 1, &fimc->vid_cap.vd_pad, 0);
1495 if (ret)
1496 goto err_ent;
237e0265
SN
1497 ret = fimc_create_capture_subdev(fimc, v4l2_dev);
1498 if (ret)
1499 goto err_sd_reg;
574e1717 1500
131b6c61 1501 vfd->ctrl_handler = &ctx->ctrl_handler;
5f3cc447
SN
1502 return 0;
1503
237e0265
SN
1504err_sd_reg:
1505 media_entity_cleanup(&vfd->entity);
574e1717 1506err_ent:
5f3cc447 1507 video_device_release(vfd);
30c9939d 1508err_vd_alloc:
cfd77310 1509 kfree(ctx);
5f3cc447
SN
1510 return ret;
1511}
1512
1513void fimc_unregister_capture_device(struct fimc_dev *fimc)
1514{
574e1717 1515 struct video_device *vfd = fimc->vid_cap.vfd;
5f3cc447 1516
574e1717
SN
1517 if (vfd) {
1518 media_entity_cleanup(&vfd->entity);
96a85742
SN
1519 /* Can also be called if video device was
1520 not registered */
574e1717
SN
1521 video_unregister_device(vfd);
1522 }
237e0265 1523 fimc_destroy_capture_subdev(fimc);
574e1717 1524 kfree(fimc->vid_cap.ctx);
96a85742 1525 fimc->vid_cap.ctx = NULL;
5f3cc447 1526}