[media] s5p-fimc: Fix locking in subdev set_crop op
[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
f9331d11
SN
1038static int fimc_cap_g_selection(struct file *file, void *fh,
1039 struct v4l2_selection *s)
e004e02f 1040{
e578588e 1041 struct fimc_dev *fimc = video_drvdata(file);
f9331d11
SN
1042 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
1043 struct fimc_frame *f = &ctx->s_frame;
e004e02f 1044
f9331d11 1045 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
e004e02f
SN
1046 return -EINVAL;
1047
f9331d11
SN
1048 switch (s->target) {
1049 case V4L2_SEL_TGT_COMPOSE_DEFAULT:
1050 case V4L2_SEL_TGT_COMPOSE_BOUNDS:
1051 f = &ctx->d_frame;
1052 case V4L2_SEL_TGT_CROP_BOUNDS:
1053 case V4L2_SEL_TGT_CROP_DEFAULT:
1054 s->r.left = 0;
1055 s->r.top = 0;
1056 s->r.width = f->o_width;
1057 s->r.height = f->o_height;
1058 return 0;
e004e02f 1059
f9331d11
SN
1060 case V4L2_SEL_TGT_COMPOSE_ACTIVE:
1061 f = &ctx->d_frame;
1062 case V4L2_SEL_TGT_CROP_ACTIVE:
1063 s->r.left = f->offs_h;
1064 s->r.top = f->offs_v;
1065 s->r.width = f->width;
1066 s->r.height = f->height;
1067 return 0;
1068 }
1069
1070 return -EINVAL;
e004e02f
SN
1071}
1072
f9331d11
SN
1073/* Return 1 if rectangle a is enclosed in rectangle b, or 0 otherwise. */
1074int enclosed_rectangle(struct v4l2_rect *a, struct v4l2_rect *b)
e004e02f 1075{
f9331d11
SN
1076 if (a->left < b->left || a->top < b->top)
1077 return 0;
1078 if (a->left + a->width > b->left + b->width)
1079 return 0;
1080 if (a->top + a->height > b->top + b->height)
1081 return 0;
e004e02f 1082
f9331d11 1083 return 1;
e004e02f
SN
1084}
1085
f9331d11
SN
1086static int fimc_cap_s_selection(struct file *file, void *fh,
1087 struct v4l2_selection *s)
5f3cc447 1088{
e578588e
SN
1089 struct fimc_dev *fimc = video_drvdata(file);
1090 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
f9331d11
SN
1091 struct v4l2_rect rect = s->r;
1092 struct fimc_frame *f;
237e0265 1093 unsigned long flags;
f9331d11
SN
1094 unsigned int pad;
1095
1096 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
1097 return -EINVAL;
1098
1099 switch (s->target) {
1100 case V4L2_SEL_TGT_COMPOSE_DEFAULT:
1101 case V4L2_SEL_TGT_COMPOSE_BOUNDS:
1102 case V4L2_SEL_TGT_COMPOSE_ACTIVE:
1103 f = &ctx->d_frame;
1104 pad = FIMC_SD_PAD_SOURCE;
1105 break;
1106 case V4L2_SEL_TGT_CROP_BOUNDS:
1107 case V4L2_SEL_TGT_CROP_DEFAULT:
1108 case V4L2_SEL_TGT_CROP_ACTIVE:
1109 f = &ctx->s_frame;
1110 pad = FIMC_SD_PAD_SINK;
1111 break;
1112 default:
1113 return -EINVAL;
1114 }
1115
1116 fimc_capture_try_crop(ctx, &rect, pad);
1117
1118 if (s->flags & V4L2_SEL_FLAG_LE &&
1119 !enclosed_rectangle(&rect, &s->r))
1120 return -ERANGE;
5f3cc447 1121
f9331d11
SN
1122 if (s->flags & V4L2_SEL_FLAG_GE &&
1123 !enclosed_rectangle(&s->r, &rect))
1124 return -ERANGE;
5f3cc447 1125
f9331d11 1126 s->r = rect;
237e0265 1127 spin_lock_irqsave(&fimc->slock, flags);
f9331d11
SN
1128 set_frame_crop(f, s->r.left, s->r.top, s->r.width,
1129 s->r.height);
237e0265 1130 spin_unlock_irqrestore(&fimc->slock, flags);
8293ebfc 1131
f9331d11 1132 set_bit(ST_CAPT_APPLY_CFG, &fimc->state);
8293ebfc 1133 return 0;
5f3cc447
SN
1134}
1135
5f3cc447
SN
1136static const struct v4l2_ioctl_ops fimc_capture_ioctl_ops = {
1137 .vidioc_querycap = fimc_vidioc_querycap_capture,
1138
cf52df8a 1139 .vidioc_enum_fmt_vid_cap_mplane = fimc_cap_enum_fmt_mplane,
e578588e 1140 .vidioc_try_fmt_vid_cap_mplane = fimc_cap_try_fmt_mplane,
ef7af59b 1141 .vidioc_s_fmt_vid_cap_mplane = fimc_cap_s_fmt_mplane,
e578588e 1142 .vidioc_g_fmt_vid_cap_mplane = fimc_cap_g_fmt_mplane,
5f3cc447
SN
1143
1144 .vidioc_reqbufs = fimc_cap_reqbufs,
1145 .vidioc_querybuf = fimc_cap_querybuf,
1146
1147 .vidioc_qbuf = fimc_cap_qbuf,
1148 .vidioc_dqbuf = fimc_cap_dqbuf,
1149
3b4c34aa
SN
1150 .vidioc_prepare_buf = fimc_cap_prepare_buf,
1151 .vidioc_create_bufs = fimc_cap_create_bufs,
1152
5f3cc447
SN
1153 .vidioc_streamon = fimc_cap_streamon,
1154 .vidioc_streamoff = fimc_cap_streamoff,
1155
f9331d11
SN
1156 .vidioc_g_selection = fimc_cap_g_selection,
1157 .vidioc_s_selection = fimc_cap_s_selection,
5f3cc447
SN
1158
1159 .vidioc_enum_input = fimc_cap_enum_input,
1160 .vidioc_s_input = fimc_cap_s_input,
1161 .vidioc_g_input = fimc_cap_g_input,
1162};
1163
237e0265 1164/* Capture subdev media entity operations */
d09a7dc8
SN
1165static int fimc_link_setup(struct media_entity *entity,
1166 const struct media_pad *local,
1167 const struct media_pad *remote, u32 flags)
1168{
237e0265
SN
1169 struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
1170 struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
1171
1172 if (media_entity_type(remote->entity) != MEDIA_ENT_T_V4L2_SUBDEV)
1173 return -EINVAL;
d09a7dc8
SN
1174
1175 if (WARN_ON(fimc == NULL))
1176 return 0;
1177
1178 dbg("%s --> %s, flags: 0x%x. input: 0x%x",
1179 local->entity->name, remote->entity->name, flags,
1180 fimc->vid_cap.input);
1181
1182 if (flags & MEDIA_LNK_FL_ENABLED) {
1183 if (fimc->vid_cap.input != 0)
1184 return -EBUSY;
1185 fimc->vid_cap.input = sd->grp_id;
1186 return 0;
1187 }
1188
1189 fimc->vid_cap.input = 0;
1190 return 0;
1191}
1192
237e0265 1193static const struct media_entity_operations fimc_sd_media_ops = {
d09a7dc8
SN
1194 .link_setup = fimc_link_setup,
1195};
1196
e1d72f4d
SN
1197/**
1198 * fimc_sensor_notify - v4l2_device notification from a sensor subdev
1199 * @sd: pointer to a subdev generating the notification
1200 * @notification: the notification type, must be S5P_FIMC_TX_END_NOTIFY
1201 * @arg: pointer to an u32 type integer that stores the frame payload value
1202 *
1203 * The End Of Frame notification sent by sensor subdev in its still capture
1204 * mode. If there is only a single VSYNC generated by the sensor at the
1205 * beginning of a frame transmission, FIMC does not issue the LastIrq
1206 * (end of frame) interrupt. And this notification is used to complete the
1207 * frame capture and returning a buffer to user-space. Subdev drivers should
1208 * call this notification from their last 'End of frame capture' interrupt.
1209 */
1210void fimc_sensor_notify(struct v4l2_subdev *sd, unsigned int notification,
1211 void *arg)
1212{
1213 struct fimc_sensor_info *sensor;
1214 struct fimc_vid_buffer *buf;
1215 struct fimc_md *fmd;
1216 struct fimc_dev *fimc;
1217 unsigned long flags;
1218
1219 if (sd == NULL)
1220 return;
1221
1222 sensor = v4l2_get_subdev_hostdata(sd);
1223 fmd = entity_to_fimc_mdev(&sd->entity);
1224
1225 spin_lock_irqsave(&fmd->slock, flags);
1226 fimc = sensor ? sensor->host : NULL;
1227
1228 if (fimc && arg && notification == S5P_FIMC_TX_END_NOTIFY &&
1229 test_bit(ST_CAPT_PEND, &fimc->state)) {
1230 unsigned long irq_flags;
1231 spin_lock_irqsave(&fimc->slock, irq_flags);
1232 if (!list_empty(&fimc->vid_cap.active_buf_q)) {
1233 buf = list_entry(fimc->vid_cap.active_buf_q.next,
1234 struct fimc_vid_buffer, list);
1235 vb2_set_plane_payload(&buf->vb, 0, *((u32 *)arg));
1236 }
1237 fimc_capture_irq_handler(fimc, true);
1238 fimc_deactivate_capture(fimc);
1239 spin_unlock_irqrestore(&fimc->slock, irq_flags);
1240 }
1241 spin_unlock_irqrestore(&fmd->slock, flags);
1242}
1243
237e0265
SN
1244static int fimc_subdev_enum_mbus_code(struct v4l2_subdev *sd,
1245 struct v4l2_subdev_fh *fh,
1246 struct v4l2_subdev_mbus_code_enum *code)
1247{
1248 struct fimc_fmt *fmt;
1249
1250 fmt = fimc_find_format(NULL, NULL, FMT_FLAGS_CAM, code->index);
1251 if (!fmt)
1252 return -EINVAL;
1253 code->code = fmt->mbus_code;
1254 return 0;
1255}
1256
1257static int fimc_subdev_get_fmt(struct v4l2_subdev *sd,
1258 struct v4l2_subdev_fh *fh,
1259 struct v4l2_subdev_format *fmt)
1260{
1261 struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
1262 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
1263 struct v4l2_mbus_framefmt *mf;
1264 struct fimc_frame *ff;
1265
1266 if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
1267 mf = v4l2_subdev_get_try_format(fh, fmt->pad);
1268 fmt->format = *mf;
1269 return 0;
1270 }
1271 mf = &fmt->format;
1272 mf->colorspace = V4L2_COLORSPACE_JPEG;
1273 ff = fmt->pad == FIMC_SD_PAD_SINK ? &ctx->s_frame : &ctx->d_frame;
1274
1275 mutex_lock(&fimc->lock);
1276 /* The pixel code is same on both input and output pad */
1277 if (!WARN_ON(ctx->s_frame.fmt == NULL))
1278 mf->code = ctx->s_frame.fmt->mbus_code;
1279 mf->width = ff->f_width;
1280 mf->height = ff->f_height;
1281 mutex_unlock(&fimc->lock);
1282
1283 return 0;
1284}
1285
1286static int fimc_subdev_set_fmt(struct v4l2_subdev *sd,
1287 struct v4l2_subdev_fh *fh,
1288 struct v4l2_subdev_format *fmt)
1289{
1290 struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
1291 struct v4l2_mbus_framefmt *mf = &fmt->format;
1292 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
1293 struct fimc_frame *ff;
1294 struct fimc_fmt *ffmt;
1295
1296 dbg("pad%d: code: 0x%x, %dx%d",
1297 fmt->pad, mf->code, mf->width, mf->height);
1298
1299 if (fmt->pad == FIMC_SD_PAD_SOURCE &&
1300 vb2_is_busy(&fimc->vid_cap.vbq))
1301 return -EBUSY;
1302
1303 mutex_lock(&fimc->lock);
1304 ffmt = fimc_capture_try_format(ctx, &mf->width, &mf->height,
1305 &mf->code, NULL, fmt->pad);
1306 mutex_unlock(&fimc->lock);
1307 mf->colorspace = V4L2_COLORSPACE_JPEG;
1308
1309 if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
1310 mf = v4l2_subdev_get_try_format(fh, fmt->pad);
1311 *mf = fmt->format;
1312 return 0;
1313 }
dafb9c70
SN
1314 /* Update RGB Alpha control state and value range */
1315 fimc_alpha_ctrl_update(ctx);
1316
ee7160e5
SN
1317 fimc_capture_mark_jpeg_xfer(ctx, fimc_fmt_is_jpeg(ffmt->color));
1318
237e0265
SN
1319 ff = fmt->pad == FIMC_SD_PAD_SINK ?
1320 &ctx->s_frame : &ctx->d_frame;
1321
1322 mutex_lock(&fimc->lock);
1323 set_frame_bounds(ff, mf->width, mf->height);
393a23fc 1324 fimc->vid_cap.mf = *mf;
237e0265
SN
1325 ff->fmt = ffmt;
1326
1327 /* Reset the crop rectangle if required. */
1328 if (!(fmt->pad == FIMC_SD_PAD_SOURCE && (ctx->state & FIMC_DST_CROP)))
1329 set_frame_crop(ff, 0, 0, mf->width, mf->height);
1330
1331 if (fmt->pad == FIMC_SD_PAD_SINK)
1332 ctx->state &= ~FIMC_DST_CROP;
1333 mutex_unlock(&fimc->lock);
1334 return 0;
1335}
1336
1337static int fimc_subdev_get_crop(struct v4l2_subdev *sd,
1338 struct v4l2_subdev_fh *fh,
1339 struct v4l2_subdev_crop *crop)
1340{
1341 struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
1342 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
1343 struct v4l2_rect *r = &crop->rect;
1344 struct fimc_frame *ff;
1345
1346 if (crop->which == V4L2_SUBDEV_FORMAT_TRY) {
1347 crop->rect = *v4l2_subdev_get_try_crop(fh, crop->pad);
1348 return 0;
1349 }
1350 ff = crop->pad == FIMC_SD_PAD_SINK ?
1351 &ctx->s_frame : &ctx->d_frame;
1352
1353 mutex_lock(&fimc->lock);
1354 r->left = ff->offs_h;
1355 r->top = ff->offs_v;
1356 r->width = ff->width;
1357 r->height = ff->height;
1358 mutex_unlock(&fimc->lock);
1359
1360 dbg("ff:%p, pad%d: l:%d, t:%d, %dx%d, f_w: %d, f_h: %d",
1361 ff, crop->pad, r->left, r->top, r->width, r->height,
1362 ff->f_width, ff->f_height);
1363
1364 return 0;
1365}
1366
1367static int fimc_subdev_set_crop(struct v4l2_subdev *sd,
1368 struct v4l2_subdev_fh *fh,
1369 struct v4l2_subdev_crop *crop)
1370{
1371 struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
1372 struct fimc_ctx *ctx = fimc->vid_cap.ctx;
1373 struct v4l2_rect *r = &crop->rect;
1374 struct fimc_frame *ff;
1375 unsigned long flags;
1376
1377 dbg("(%d,%d)/%dx%d", r->left, r->top, r->width, r->height);
1378
1379 ff = crop->pad == FIMC_SD_PAD_SOURCE ?
1380 &ctx->d_frame : &ctx->s_frame;
1381
1382 mutex_lock(&fimc->lock);
1383 fimc_capture_try_crop(ctx, r, crop->pad);
1384
1385 if (crop->which == V4L2_SUBDEV_FORMAT_TRY) {
e985dbf7 1386 mutex_unlock(&fimc->lock);
237e0265
SN
1387 *v4l2_subdev_get_try_crop(fh, crop->pad) = *r;
1388 return 0;
1389 }
1390 spin_lock_irqsave(&fimc->slock, flags);
1391 set_frame_crop(ff, r->left, r->top, r->width, r->height);
1392 if (crop->pad == FIMC_SD_PAD_SOURCE)
1393 ctx->state |= FIMC_DST_CROP;
1394
1395 set_bit(ST_CAPT_APPLY_CFG, &fimc->state);
1396 spin_unlock_irqrestore(&fimc->slock, flags);
1397
1398 dbg("pad%d: (%d,%d)/%dx%d", crop->pad, r->left, r->top,
1399 r->width, r->height);
1400
1401 mutex_unlock(&fimc->lock);
1402 return 0;
1403}
1404
1405static struct v4l2_subdev_pad_ops fimc_subdev_pad_ops = {
1406 .enum_mbus_code = fimc_subdev_enum_mbus_code,
1407 .get_fmt = fimc_subdev_get_fmt,
1408 .set_fmt = fimc_subdev_set_fmt,
1409 .get_crop = fimc_subdev_get_crop,
1410 .set_crop = fimc_subdev_set_crop,
1411};
1412
1413static struct v4l2_subdev_ops fimc_subdev_ops = {
1414 .pad = &fimc_subdev_pad_ops,
1415};
1416
1417static int fimc_create_capture_subdev(struct fimc_dev *fimc,
1418 struct v4l2_device *v4l2_dev)
1419{
1420 struct v4l2_subdev *sd;
1421 int ret;
1422
1423 sd = kzalloc(sizeof(*sd), GFP_KERNEL);
1424 if (!sd)
1425 return -ENOMEM;
1426
1427 v4l2_subdev_init(sd, &fimc_subdev_ops);
1428 sd->flags = V4L2_SUBDEV_FL_HAS_DEVNODE;
1429 snprintf(sd->name, sizeof(sd->name), "FIMC.%d", fimc->pdev->id);
1430
1431 fimc->vid_cap.sd_pads[FIMC_SD_PAD_SINK].flags = MEDIA_PAD_FL_SINK;
1432 fimc->vid_cap.sd_pads[FIMC_SD_PAD_SOURCE].flags = MEDIA_PAD_FL_SOURCE;
1433 ret = media_entity_init(&sd->entity, FIMC_SD_PADS_NUM,
1434 fimc->vid_cap.sd_pads, 0);
1435 if (ret)
1436 goto me_err;
1437 ret = v4l2_device_register_subdev(v4l2_dev, sd);
1438 if (ret)
1439 goto sd_err;
1440
1441 fimc->vid_cap.subdev = sd;
1442 v4l2_set_subdevdata(sd, fimc);
1443 sd->entity.ops = &fimc_sd_media_ops;
1444 return 0;
1445sd_err:
1446 media_entity_cleanup(&sd->entity);
1447me_err:
1448 kfree(sd);
1449 return ret;
1450}
1451
1452static void fimc_destroy_capture_subdev(struct fimc_dev *fimc)
1453{
1454 struct v4l2_subdev *sd = fimc->vid_cap.subdev;
1455
1456 if (!sd)
1457 return;
1458 media_entity_cleanup(&sd->entity);
1459 v4l2_device_unregister_subdev(sd);
1460 kfree(sd);
64c570f5 1461 fimc->vid_cap.subdev = NULL;
237e0265
SN
1462}
1463
1464/* Set default format at the sensor and host interface */
1465static int fimc_capture_set_default_format(struct fimc_dev *fimc)
1466{
1467 struct v4l2_format fmt = {
1468 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE,
1469 .fmt.pix_mp = {
1470 .width = 640,
1471 .height = 480,
1472 .pixelformat = V4L2_PIX_FMT_YUYV,
1473 .field = V4L2_FIELD_NONE,
1474 .colorspace = V4L2_COLORSPACE_JPEG,
1475 },
1476 };
1477
1478 return fimc_capture_set_format(fimc, &fmt);
1479}
1480
ef7af59b 1481/* fimc->lock must be already initialized */
30c9939d
SN
1482int fimc_register_capture_device(struct fimc_dev *fimc,
1483 struct v4l2_device *v4l2_dev)
5f3cc447 1484{
5f3cc447
SN
1485 struct video_device *vfd;
1486 struct fimc_vid_cap *vid_cap;
1487 struct fimc_ctx *ctx;
2dab38e2 1488 struct vb2_queue *q;
30c9939d 1489 int ret = -ENOMEM;
5f3cc447
SN
1490
1491 ctx = kzalloc(sizeof *ctx, GFP_KERNEL);
1492 if (!ctx)
1493 return -ENOMEM;
1494
1495 ctx->fimc_dev = fimc;
1496 ctx->in_path = FIMC_CAMERA;
1497 ctx->out_path = FIMC_DMA;
1498 ctx->state = FIMC_CTX_CAP;
237e0265
SN
1499 ctx->s_frame.fmt = fimc_find_format(NULL, NULL, FMT_FLAGS_CAM, 0);
1500 ctx->d_frame.fmt = fimc_find_format(NULL, NULL, FMT_FLAGS_CAM, 0);
5f3cc447 1501
5f3cc447
SN
1502 vfd = video_device_alloc();
1503 if (!vfd) {
1504 v4l2_err(v4l2_dev, "Failed to allocate video device\n");
30c9939d 1505 goto err_vd_alloc;
5f3cc447
SN
1506 }
1507
30c9939d
SN
1508 snprintf(vfd->name, sizeof(vfd->name), "%s.capture",
1509 dev_name(&fimc->pdev->dev));
5f3cc447
SN
1510
1511 vfd->fops = &fimc_capture_fops;
1512 vfd->ioctl_ops = &fimc_capture_ioctl_ops;
574e1717 1513 vfd->v4l2_dev = v4l2_dev;
5f3cc447
SN
1514 vfd->minor = -1;
1515 vfd->release = video_device_release;
8293ebfc 1516 vfd->lock = &fimc->lock;
5f3cc447
SN
1517 video_set_drvdata(vfd, fimc);
1518
1519 vid_cap = &fimc->vid_cap;
1520 vid_cap->vfd = vfd;
1521 vid_cap->active_buf_cnt = 0;
1522 vid_cap->reqbufs_count = 0;
1523 vid_cap->refcnt = 0;
5f3cc447
SN
1524
1525 INIT_LIST_HEAD(&vid_cap->pending_buf_q);
1526 INIT_LIST_HEAD(&vid_cap->active_buf_q);
1527 spin_lock_init(&ctx->slock);
1528 vid_cap->ctx = ctx;
1529
2dab38e2
SN
1530 q = &fimc->vid_cap.vbq;
1531 memset(q, 0, sizeof(*q));
ef7af59b 1532 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
2dab38e2
SN
1533 q->io_modes = VB2_MMAP | VB2_USERPTR;
1534 q->drv_priv = fimc->vid_cap.ctx;
1535 q->ops = &fimc_capture_qops;
1536 q->mem_ops = &vb2_dma_contig_memops;
1537 q->buf_struct_size = sizeof(struct fimc_vid_buffer);
1538
1539 vb2_queue_init(q);
5f3cc447 1540
574e1717
SN
1541 fimc->vid_cap.vd_pad.flags = MEDIA_PAD_FL_SINK;
1542 ret = media_entity_init(&vfd->entity, 1, &fimc->vid_cap.vd_pad, 0);
1543 if (ret)
1544 goto err_ent;
237e0265
SN
1545 ret = fimc_create_capture_subdev(fimc, v4l2_dev);
1546 if (ret)
1547 goto err_sd_reg;
574e1717 1548
131b6c61 1549 vfd->ctrl_handler = &ctx->ctrl_handler;
5f3cc447
SN
1550 return 0;
1551
237e0265
SN
1552err_sd_reg:
1553 media_entity_cleanup(&vfd->entity);
574e1717 1554err_ent:
5f3cc447 1555 video_device_release(vfd);
30c9939d 1556err_vd_alloc:
cfd77310 1557 kfree(ctx);
5f3cc447
SN
1558 return ret;
1559}
1560
1561void fimc_unregister_capture_device(struct fimc_dev *fimc)
1562{
574e1717 1563 struct video_device *vfd = fimc->vid_cap.vfd;
5f3cc447 1564
574e1717
SN
1565 if (vfd) {
1566 media_entity_cleanup(&vfd->entity);
96a85742
SN
1567 /* Can also be called if video device was
1568 not registered */
574e1717
SN
1569 video_unregister_device(vfd);
1570 }
237e0265 1571 fimc_destroy_capture_subdev(fimc);
574e1717 1572 kfree(fimc->vid_cap.ctx);
96a85742 1573 fimc->vid_cap.ctx = NULL;
5f3cc447 1574}