[media] s5p-fimc: Remove dependency on fimc-core.h in fimc-lite driver
[deliverable/linux.git] / drivers / media / platform / s5p-fimc / fimc-core.c
1 /*
2 * Samsung S5P/EXYNOS4 SoC series FIMC (CAMIF) driver
3 *
4 * Copyright (C) 2010-2012 Samsung Electronics Co., Ltd.
5 * 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 as published
9 * by the Free Software Foundation, either version 2 of the License,
10 * or (at your option) any later version.
11 */
12
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/types.h>
16 #include <linux/errno.h>
17 #include <linux/bug.h>
18 #include <linux/interrupt.h>
19 #include <linux/device.h>
20 #include <linux/platform_device.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/list.h>
23 #include <linux/mfd/syscon.h>
24 #include <linux/io.h>
25 #include <linux/of.h>
26 #include <linux/of_device.h>
27 #include <linux/slab.h>
28 #include <linux/clk.h>
29 #include <media/v4l2-ioctl.h>
30 #include <media/videobuf2-core.h>
31 #include <media/videobuf2-dma-contig.h>
32
33 #include "fimc-core.h"
34 #include "fimc-reg.h"
35 #include "fimc-mdevice.h"
36
37 static char *fimc_clocks[MAX_FIMC_CLOCKS] = {
38 "sclk_fimc", "fimc"
39 };
40
41 static struct fimc_fmt fimc_formats[] = {
42 {
43 .name = "RGB565",
44 .fourcc = V4L2_PIX_FMT_RGB565,
45 .depth = { 16 },
46 .color = FIMC_FMT_RGB565,
47 .memplanes = 1,
48 .colplanes = 1,
49 .flags = FMT_FLAGS_M2M,
50 }, {
51 .name = "BGR666",
52 .fourcc = V4L2_PIX_FMT_BGR666,
53 .depth = { 32 },
54 .color = FIMC_FMT_RGB666,
55 .memplanes = 1,
56 .colplanes = 1,
57 .flags = FMT_FLAGS_M2M,
58 }, {
59 .name = "ARGB8888, 32 bpp",
60 .fourcc = V4L2_PIX_FMT_RGB32,
61 .depth = { 32 },
62 .color = FIMC_FMT_RGB888,
63 .memplanes = 1,
64 .colplanes = 1,
65 .flags = FMT_FLAGS_M2M | FMT_HAS_ALPHA,
66 }, {
67 .name = "ARGB1555",
68 .fourcc = V4L2_PIX_FMT_RGB555,
69 .depth = { 16 },
70 .color = FIMC_FMT_RGB555,
71 .memplanes = 1,
72 .colplanes = 1,
73 .flags = FMT_FLAGS_M2M_OUT | FMT_HAS_ALPHA,
74 }, {
75 .name = "ARGB4444",
76 .fourcc = V4L2_PIX_FMT_RGB444,
77 .depth = { 16 },
78 .color = FIMC_FMT_RGB444,
79 .memplanes = 1,
80 .colplanes = 1,
81 .flags = FMT_FLAGS_M2M_OUT | FMT_HAS_ALPHA,
82 }, {
83 .name = "YUV 4:4:4",
84 .mbus_code = V4L2_MBUS_FMT_YUV10_1X30,
85 .flags = FMT_FLAGS_WRITEBACK,
86 }, {
87 .name = "YUV 4:2:2 packed, YCbYCr",
88 .fourcc = V4L2_PIX_FMT_YUYV,
89 .depth = { 16 },
90 .color = FIMC_FMT_YCBYCR422,
91 .memplanes = 1,
92 .colplanes = 1,
93 .mbus_code = V4L2_MBUS_FMT_YUYV8_2X8,
94 .flags = FMT_FLAGS_M2M | FMT_FLAGS_CAM,
95 }, {
96 .name = "YUV 4:2:2 packed, CbYCrY",
97 .fourcc = V4L2_PIX_FMT_UYVY,
98 .depth = { 16 },
99 .color = FIMC_FMT_CBYCRY422,
100 .memplanes = 1,
101 .colplanes = 1,
102 .mbus_code = V4L2_MBUS_FMT_UYVY8_2X8,
103 .flags = FMT_FLAGS_M2M | FMT_FLAGS_CAM,
104 }, {
105 .name = "YUV 4:2:2 packed, CrYCbY",
106 .fourcc = V4L2_PIX_FMT_VYUY,
107 .depth = { 16 },
108 .color = FIMC_FMT_CRYCBY422,
109 .memplanes = 1,
110 .colplanes = 1,
111 .mbus_code = V4L2_MBUS_FMT_VYUY8_2X8,
112 .flags = FMT_FLAGS_M2M | FMT_FLAGS_CAM,
113 }, {
114 .name = "YUV 4:2:2 packed, YCrYCb",
115 .fourcc = V4L2_PIX_FMT_YVYU,
116 .depth = { 16 },
117 .color = FIMC_FMT_YCRYCB422,
118 .memplanes = 1,
119 .colplanes = 1,
120 .mbus_code = V4L2_MBUS_FMT_YVYU8_2X8,
121 .flags = FMT_FLAGS_M2M | FMT_FLAGS_CAM,
122 }, {
123 .name = "YUV 4:2:2 planar, Y/Cb/Cr",
124 .fourcc = V4L2_PIX_FMT_YUV422P,
125 .depth = { 12 },
126 .color = FIMC_FMT_YCBYCR422,
127 .memplanes = 1,
128 .colplanes = 3,
129 .flags = FMT_FLAGS_M2M,
130 }, {
131 .name = "YUV 4:2:2 planar, Y/CbCr",
132 .fourcc = V4L2_PIX_FMT_NV16,
133 .depth = { 16 },
134 .color = FIMC_FMT_YCBYCR422,
135 .memplanes = 1,
136 .colplanes = 2,
137 .flags = FMT_FLAGS_M2M,
138 }, {
139 .name = "YUV 4:2:2 planar, Y/CrCb",
140 .fourcc = V4L2_PIX_FMT_NV61,
141 .depth = { 16 },
142 .color = FIMC_FMT_YCRYCB422,
143 .memplanes = 1,
144 .colplanes = 2,
145 .flags = FMT_FLAGS_M2M,
146 }, {
147 .name = "YUV 4:2:0 planar, YCbCr",
148 .fourcc = V4L2_PIX_FMT_YUV420,
149 .depth = { 12 },
150 .color = FIMC_FMT_YCBCR420,
151 .memplanes = 1,
152 .colplanes = 3,
153 .flags = FMT_FLAGS_M2M,
154 }, {
155 .name = "YUV 4:2:0 planar, Y/CbCr",
156 .fourcc = V4L2_PIX_FMT_NV12,
157 .depth = { 12 },
158 .color = FIMC_FMT_YCBCR420,
159 .memplanes = 1,
160 .colplanes = 2,
161 .flags = FMT_FLAGS_M2M,
162 }, {
163 .name = "YUV 4:2:0 non-contig. 2p, Y/CbCr",
164 .fourcc = V4L2_PIX_FMT_NV12M,
165 .color = FIMC_FMT_YCBCR420,
166 .depth = { 8, 4 },
167 .memplanes = 2,
168 .colplanes = 2,
169 .flags = FMT_FLAGS_M2M,
170 }, {
171 .name = "YUV 4:2:0 non-contig. 3p, Y/Cb/Cr",
172 .fourcc = V4L2_PIX_FMT_YUV420M,
173 .color = FIMC_FMT_YCBCR420,
174 .depth = { 8, 2, 2 },
175 .memplanes = 3,
176 .colplanes = 3,
177 .flags = FMT_FLAGS_M2M,
178 }, {
179 .name = "YUV 4:2:0 non-contig. 2p, tiled",
180 .fourcc = V4L2_PIX_FMT_NV12MT,
181 .color = FIMC_FMT_YCBCR420,
182 .depth = { 8, 4 },
183 .memplanes = 2,
184 .colplanes = 2,
185 .flags = FMT_FLAGS_M2M,
186 }, {
187 .name = "JPEG encoded data",
188 .fourcc = V4L2_PIX_FMT_JPEG,
189 .color = FIMC_FMT_JPEG,
190 .depth = { 8 },
191 .memplanes = 1,
192 .colplanes = 1,
193 .mbus_code = V4L2_MBUS_FMT_JPEG_1X8,
194 .flags = FMT_FLAGS_CAM | FMT_FLAGS_COMPRESSED,
195 }, {
196 .name = "S5C73MX interleaved UYVY/JPEG",
197 .fourcc = V4L2_PIX_FMT_S5C_UYVY_JPG,
198 .color = FIMC_FMT_YUYV_JPEG,
199 .depth = { 8 },
200 .memplanes = 2,
201 .colplanes = 1,
202 .mdataplanes = 0x2, /* plane 1 holds frame meta data */
203 .mbus_code = V4L2_MBUS_FMT_S5C_UYVY_JPEG_1X8,
204 .flags = FMT_FLAGS_CAM | FMT_FLAGS_COMPRESSED,
205 },
206 };
207
208 struct fimc_fmt *fimc_get_format(unsigned int index)
209 {
210 if (index >= ARRAY_SIZE(fimc_formats))
211 return NULL;
212
213 return &fimc_formats[index];
214 }
215
216 int fimc_check_scaler_ratio(struct fimc_ctx *ctx, int sw, int sh,
217 int dw, int dh, int rotation)
218 {
219 if (rotation == 90 || rotation == 270)
220 swap(dw, dh);
221
222 if (!ctx->scaler.enabled)
223 return (sw == dw && sh == dh) ? 0 : -EINVAL;
224
225 if ((sw >= SCALER_MAX_HRATIO * dw) || (sh >= SCALER_MAX_VRATIO * dh))
226 return -EINVAL;
227
228 return 0;
229 }
230
231 static int fimc_get_scaler_factor(u32 src, u32 tar, u32 *ratio, u32 *shift)
232 {
233 u32 sh = 6;
234
235 if (src >= 64 * tar)
236 return -EINVAL;
237
238 while (sh--) {
239 u32 tmp = 1 << sh;
240 if (src >= tar * tmp) {
241 *shift = sh, *ratio = tmp;
242 return 0;
243 }
244 }
245 *shift = 0, *ratio = 1;
246 return 0;
247 }
248
249 int fimc_set_scaler_info(struct fimc_ctx *ctx)
250 {
251 const struct fimc_variant *variant = ctx->fimc_dev->variant;
252 struct device *dev = &ctx->fimc_dev->pdev->dev;
253 struct fimc_scaler *sc = &ctx->scaler;
254 struct fimc_frame *s_frame = &ctx->s_frame;
255 struct fimc_frame *d_frame = &ctx->d_frame;
256 int tx, ty, sx, sy;
257 int ret;
258
259 if (ctx->rotation == 90 || ctx->rotation == 270) {
260 ty = d_frame->width;
261 tx = d_frame->height;
262 } else {
263 tx = d_frame->width;
264 ty = d_frame->height;
265 }
266 if (tx <= 0 || ty <= 0) {
267 dev_err(dev, "Invalid target size: %dx%d\n", tx, ty);
268 return -EINVAL;
269 }
270
271 sx = s_frame->width;
272 sy = s_frame->height;
273 if (sx <= 0 || sy <= 0) {
274 dev_err(dev, "Invalid source size: %dx%d\n", sx, sy);
275 return -EINVAL;
276 }
277 sc->real_width = sx;
278 sc->real_height = sy;
279
280 ret = fimc_get_scaler_factor(sx, tx, &sc->pre_hratio, &sc->hfactor);
281 if (ret)
282 return ret;
283
284 ret = fimc_get_scaler_factor(sy, ty, &sc->pre_vratio, &sc->vfactor);
285 if (ret)
286 return ret;
287
288 sc->pre_dst_width = sx / sc->pre_hratio;
289 sc->pre_dst_height = sy / sc->pre_vratio;
290
291 if (variant->has_mainscaler_ext) {
292 sc->main_hratio = (sx << 14) / (tx << sc->hfactor);
293 sc->main_vratio = (sy << 14) / (ty << sc->vfactor);
294 } else {
295 sc->main_hratio = (sx << 8) / (tx << sc->hfactor);
296 sc->main_vratio = (sy << 8) / (ty << sc->vfactor);
297
298 }
299
300 sc->scaleup_h = (tx >= sx) ? 1 : 0;
301 sc->scaleup_v = (ty >= sy) ? 1 : 0;
302
303 /* check to see if input and output size/format differ */
304 if (s_frame->fmt->color == d_frame->fmt->color
305 && s_frame->width == d_frame->width
306 && s_frame->height == d_frame->height)
307 sc->copy_mode = 1;
308 else
309 sc->copy_mode = 0;
310
311 return 0;
312 }
313
314 static irqreturn_t fimc_irq_handler(int irq, void *priv)
315 {
316 struct fimc_dev *fimc = priv;
317 struct fimc_ctx *ctx;
318
319 fimc_hw_clear_irq(fimc);
320
321 spin_lock(&fimc->slock);
322
323 if (test_and_clear_bit(ST_M2M_PEND, &fimc->state)) {
324 if (test_and_clear_bit(ST_M2M_SUSPENDING, &fimc->state)) {
325 set_bit(ST_M2M_SUSPENDED, &fimc->state);
326 wake_up(&fimc->irq_queue);
327 goto out;
328 }
329 ctx = v4l2_m2m_get_curr_priv(fimc->m2m.m2m_dev);
330 if (ctx != NULL) {
331 spin_unlock(&fimc->slock);
332 fimc_m2m_job_finish(ctx, VB2_BUF_STATE_DONE);
333
334 if (ctx->state & FIMC_CTX_SHUT) {
335 ctx->state &= ~FIMC_CTX_SHUT;
336 wake_up(&fimc->irq_queue);
337 }
338 return IRQ_HANDLED;
339 }
340 } else if (test_bit(ST_CAPT_PEND, &fimc->state)) {
341 int last_buf = test_bit(ST_CAPT_JPEG, &fimc->state) &&
342 fimc->vid_cap.reqbufs_count == 1;
343 fimc_capture_irq_handler(fimc, !last_buf);
344 }
345 out:
346 spin_unlock(&fimc->slock);
347 return IRQ_HANDLED;
348 }
349
350 /* The color format (colplanes, memplanes) must be already configured. */
351 int fimc_prepare_addr(struct fimc_ctx *ctx, struct vb2_buffer *vb,
352 struct fimc_frame *frame, struct fimc_addr *paddr)
353 {
354 int ret = 0;
355 u32 pix_size;
356
357 if (vb == NULL || frame == NULL)
358 return -EINVAL;
359
360 pix_size = frame->width * frame->height;
361
362 dbg("memplanes= %d, colplanes= %d, pix_size= %d",
363 frame->fmt->memplanes, frame->fmt->colplanes, pix_size);
364
365 paddr->y = vb2_dma_contig_plane_dma_addr(vb, 0);
366
367 if (frame->fmt->memplanes == 1) {
368 switch (frame->fmt->colplanes) {
369 case 1:
370 paddr->cb = 0;
371 paddr->cr = 0;
372 break;
373 case 2:
374 /* decompose Y into Y/Cb */
375 paddr->cb = (u32)(paddr->y + pix_size);
376 paddr->cr = 0;
377 break;
378 case 3:
379 paddr->cb = (u32)(paddr->y + pix_size);
380 /* decompose Y into Y/Cb/Cr */
381 if (FIMC_FMT_YCBCR420 == frame->fmt->color)
382 paddr->cr = (u32)(paddr->cb
383 + (pix_size >> 2));
384 else /* 422 */
385 paddr->cr = (u32)(paddr->cb
386 + (pix_size >> 1));
387 break;
388 default:
389 return -EINVAL;
390 }
391 } else if (!frame->fmt->mdataplanes) {
392 if (frame->fmt->memplanes >= 2)
393 paddr->cb = vb2_dma_contig_plane_dma_addr(vb, 1);
394
395 if (frame->fmt->memplanes == 3)
396 paddr->cr = vb2_dma_contig_plane_dma_addr(vb, 2);
397 }
398
399 dbg("PHYS_ADDR: y= 0x%X cb= 0x%X cr= 0x%X ret= %d",
400 paddr->y, paddr->cb, paddr->cr, ret);
401
402 return ret;
403 }
404
405 /* Set order for 1 and 2 plane YCBCR 4:2:2 formats. */
406 void fimc_set_yuv_order(struct fimc_ctx *ctx)
407 {
408 /* The one only mode supported in SoC. */
409 ctx->in_order_2p = FIMC_REG_CIOCTRL_ORDER422_2P_LSB_CRCB;
410 ctx->out_order_2p = FIMC_REG_CIOCTRL_ORDER422_2P_LSB_CRCB;
411
412 /* Set order for 1 plane input formats. */
413 switch (ctx->s_frame.fmt->color) {
414 case FIMC_FMT_YCRYCB422:
415 ctx->in_order_1p = FIMC_REG_MSCTRL_ORDER422_CBYCRY;
416 break;
417 case FIMC_FMT_CBYCRY422:
418 ctx->in_order_1p = FIMC_REG_MSCTRL_ORDER422_YCRYCB;
419 break;
420 case FIMC_FMT_CRYCBY422:
421 ctx->in_order_1p = FIMC_REG_MSCTRL_ORDER422_YCBYCR;
422 break;
423 case FIMC_FMT_YCBYCR422:
424 default:
425 ctx->in_order_1p = FIMC_REG_MSCTRL_ORDER422_CRYCBY;
426 break;
427 }
428 dbg("ctx->in_order_1p= %d", ctx->in_order_1p);
429
430 switch (ctx->d_frame.fmt->color) {
431 case FIMC_FMT_YCRYCB422:
432 ctx->out_order_1p = FIMC_REG_CIOCTRL_ORDER422_CBYCRY;
433 break;
434 case FIMC_FMT_CBYCRY422:
435 ctx->out_order_1p = FIMC_REG_CIOCTRL_ORDER422_YCRYCB;
436 break;
437 case FIMC_FMT_CRYCBY422:
438 ctx->out_order_1p = FIMC_REG_CIOCTRL_ORDER422_YCBYCR;
439 break;
440 case FIMC_FMT_YCBYCR422:
441 default:
442 ctx->out_order_1p = FIMC_REG_CIOCTRL_ORDER422_CRYCBY;
443 break;
444 }
445 dbg("ctx->out_order_1p= %d", ctx->out_order_1p);
446 }
447
448 void fimc_prepare_dma_offset(struct fimc_ctx *ctx, struct fimc_frame *f)
449 {
450 bool pix_hoff = ctx->fimc_dev->drv_data->dma_pix_hoff;
451 u32 i, depth = 0;
452
453 for (i = 0; i < f->fmt->colplanes; i++)
454 depth += f->fmt->depth[i];
455
456 f->dma_offset.y_h = f->offs_h;
457 if (!pix_hoff)
458 f->dma_offset.y_h *= (depth >> 3);
459
460 f->dma_offset.y_v = f->offs_v;
461
462 f->dma_offset.cb_h = f->offs_h;
463 f->dma_offset.cb_v = f->offs_v;
464
465 f->dma_offset.cr_h = f->offs_h;
466 f->dma_offset.cr_v = f->offs_v;
467
468 if (!pix_hoff) {
469 if (f->fmt->colplanes == 3) {
470 f->dma_offset.cb_h >>= 1;
471 f->dma_offset.cr_h >>= 1;
472 }
473 if (f->fmt->color == FIMC_FMT_YCBCR420) {
474 f->dma_offset.cb_v >>= 1;
475 f->dma_offset.cr_v >>= 1;
476 }
477 }
478
479 dbg("in_offset: color= %d, y_h= %d, y_v= %d",
480 f->fmt->color, f->dma_offset.y_h, f->dma_offset.y_v);
481 }
482
483 static int fimc_set_color_effect(struct fimc_ctx *ctx, enum v4l2_colorfx colorfx)
484 {
485 struct fimc_effect *effect = &ctx->effect;
486
487 switch (colorfx) {
488 case V4L2_COLORFX_NONE:
489 effect->type = FIMC_REG_CIIMGEFF_FIN_BYPASS;
490 break;
491 case V4L2_COLORFX_BW:
492 effect->type = FIMC_REG_CIIMGEFF_FIN_ARBITRARY;
493 effect->pat_cb = 128;
494 effect->pat_cr = 128;
495 break;
496 case V4L2_COLORFX_SEPIA:
497 effect->type = FIMC_REG_CIIMGEFF_FIN_ARBITRARY;
498 effect->pat_cb = 115;
499 effect->pat_cr = 145;
500 break;
501 case V4L2_COLORFX_NEGATIVE:
502 effect->type = FIMC_REG_CIIMGEFF_FIN_NEGATIVE;
503 break;
504 case V4L2_COLORFX_EMBOSS:
505 effect->type = FIMC_REG_CIIMGEFF_FIN_EMBOSSING;
506 break;
507 case V4L2_COLORFX_ART_FREEZE:
508 effect->type = FIMC_REG_CIIMGEFF_FIN_ARTFREEZE;
509 break;
510 case V4L2_COLORFX_SILHOUETTE:
511 effect->type = FIMC_REG_CIIMGEFF_FIN_SILHOUETTE;
512 break;
513 case V4L2_COLORFX_SET_CBCR:
514 effect->type = FIMC_REG_CIIMGEFF_FIN_ARBITRARY;
515 effect->pat_cb = ctx->ctrls.colorfx_cbcr->val >> 8;
516 effect->pat_cr = ctx->ctrls.colorfx_cbcr->val & 0xff;
517 break;
518 default:
519 return -EINVAL;
520 }
521
522 return 0;
523 }
524
525 /*
526 * V4L2 controls handling
527 */
528 #define ctrl_to_ctx(__ctrl) \
529 container_of((__ctrl)->handler, struct fimc_ctx, ctrls.handler)
530
531 static int __fimc_s_ctrl(struct fimc_ctx *ctx, struct v4l2_ctrl *ctrl)
532 {
533 struct fimc_dev *fimc = ctx->fimc_dev;
534 const struct fimc_variant *variant = fimc->variant;
535 int ret = 0;
536
537 if (ctrl->flags & V4L2_CTRL_FLAG_INACTIVE)
538 return 0;
539
540 switch (ctrl->id) {
541 case V4L2_CID_HFLIP:
542 ctx->hflip = ctrl->val;
543 break;
544
545 case V4L2_CID_VFLIP:
546 ctx->vflip = ctrl->val;
547 break;
548
549 case V4L2_CID_ROTATE:
550 if (fimc_capture_pending(fimc)) {
551 ret = fimc_check_scaler_ratio(ctx, ctx->s_frame.width,
552 ctx->s_frame.height, ctx->d_frame.width,
553 ctx->d_frame.height, ctrl->val);
554 if (ret)
555 return -EINVAL;
556 }
557 if ((ctrl->val == 90 || ctrl->val == 270) &&
558 !variant->has_out_rot)
559 return -EINVAL;
560
561 ctx->rotation = ctrl->val;
562 break;
563
564 case V4L2_CID_ALPHA_COMPONENT:
565 ctx->d_frame.alpha = ctrl->val;
566 break;
567
568 case V4L2_CID_COLORFX:
569 ret = fimc_set_color_effect(ctx, ctrl->val);
570 if (ret)
571 return ret;
572 break;
573 }
574
575 ctx->state |= FIMC_PARAMS;
576 set_bit(ST_CAPT_APPLY_CFG, &fimc->state);
577 return 0;
578 }
579
580 static int fimc_s_ctrl(struct v4l2_ctrl *ctrl)
581 {
582 struct fimc_ctx *ctx = ctrl_to_ctx(ctrl);
583 unsigned long flags;
584 int ret;
585
586 spin_lock_irqsave(&ctx->fimc_dev->slock, flags);
587 ret = __fimc_s_ctrl(ctx, ctrl);
588 spin_unlock_irqrestore(&ctx->fimc_dev->slock, flags);
589
590 return ret;
591 }
592
593 static const struct v4l2_ctrl_ops fimc_ctrl_ops = {
594 .s_ctrl = fimc_s_ctrl,
595 };
596
597 int fimc_ctrls_create(struct fimc_ctx *ctx)
598 {
599 unsigned int max_alpha = fimc_get_alpha_mask(ctx->d_frame.fmt);
600 struct fimc_ctrls *ctrls = &ctx->ctrls;
601 struct v4l2_ctrl_handler *handler = &ctrls->handler;
602
603 if (ctx->ctrls.ready)
604 return 0;
605
606 v4l2_ctrl_handler_init(handler, 6);
607
608 ctrls->rotate = v4l2_ctrl_new_std(handler, &fimc_ctrl_ops,
609 V4L2_CID_ROTATE, 0, 270, 90, 0);
610 ctrls->hflip = v4l2_ctrl_new_std(handler, &fimc_ctrl_ops,
611 V4L2_CID_HFLIP, 0, 1, 1, 0);
612 ctrls->vflip = v4l2_ctrl_new_std(handler, &fimc_ctrl_ops,
613 V4L2_CID_VFLIP, 0, 1, 1, 0);
614
615 if (ctx->fimc_dev->drv_data->alpha_color)
616 ctrls->alpha = v4l2_ctrl_new_std(handler, &fimc_ctrl_ops,
617 V4L2_CID_ALPHA_COMPONENT,
618 0, max_alpha, 1, 0);
619 else
620 ctrls->alpha = NULL;
621
622 ctrls->colorfx = v4l2_ctrl_new_std_menu(handler, &fimc_ctrl_ops,
623 V4L2_CID_COLORFX, V4L2_COLORFX_SET_CBCR,
624 ~0x983f, V4L2_COLORFX_NONE);
625
626 ctrls->colorfx_cbcr = v4l2_ctrl_new_std(handler, &fimc_ctrl_ops,
627 V4L2_CID_COLORFX_CBCR, 0, 0xffff, 1, 0);
628
629 ctx->effect.type = FIMC_REG_CIIMGEFF_FIN_BYPASS;
630
631 if (!handler->error) {
632 v4l2_ctrl_cluster(2, &ctrls->colorfx);
633 ctrls->ready = true;
634 }
635
636 return handler->error;
637 }
638
639 void fimc_ctrls_delete(struct fimc_ctx *ctx)
640 {
641 struct fimc_ctrls *ctrls = &ctx->ctrls;
642
643 if (ctrls->ready) {
644 v4l2_ctrl_handler_free(&ctrls->handler);
645 ctrls->ready = false;
646 ctrls->alpha = NULL;
647 }
648 }
649
650 void fimc_ctrls_activate(struct fimc_ctx *ctx, bool active)
651 {
652 unsigned int has_alpha = ctx->d_frame.fmt->flags & FMT_HAS_ALPHA;
653 struct fimc_ctrls *ctrls = &ctx->ctrls;
654
655 if (!ctrls->ready)
656 return;
657
658 mutex_lock(ctrls->handler.lock);
659 v4l2_ctrl_activate(ctrls->rotate, active);
660 v4l2_ctrl_activate(ctrls->hflip, active);
661 v4l2_ctrl_activate(ctrls->vflip, active);
662 v4l2_ctrl_activate(ctrls->colorfx, active);
663 if (ctrls->alpha)
664 v4l2_ctrl_activate(ctrls->alpha, active && has_alpha);
665
666 if (active) {
667 fimc_set_color_effect(ctx, ctrls->colorfx->cur.val);
668 ctx->rotation = ctrls->rotate->val;
669 ctx->hflip = ctrls->hflip->val;
670 ctx->vflip = ctrls->vflip->val;
671 } else {
672 ctx->effect.type = FIMC_REG_CIIMGEFF_FIN_BYPASS;
673 ctx->rotation = 0;
674 ctx->hflip = 0;
675 ctx->vflip = 0;
676 }
677 mutex_unlock(ctrls->handler.lock);
678 }
679
680 /* Update maximum value of the alpha color control */
681 void fimc_alpha_ctrl_update(struct fimc_ctx *ctx)
682 {
683 struct fimc_dev *fimc = ctx->fimc_dev;
684 struct v4l2_ctrl *ctrl = ctx->ctrls.alpha;
685
686 if (ctrl == NULL || !fimc->drv_data->alpha_color)
687 return;
688
689 v4l2_ctrl_lock(ctrl);
690 ctrl->maximum = fimc_get_alpha_mask(ctx->d_frame.fmt);
691
692 if (ctrl->cur.val > ctrl->maximum)
693 ctrl->cur.val = ctrl->maximum;
694
695 v4l2_ctrl_unlock(ctrl);
696 }
697
698 void __fimc_get_format(struct fimc_frame *frame, struct v4l2_format *f)
699 {
700 struct v4l2_pix_format_mplane *pixm = &f->fmt.pix_mp;
701 int i;
702
703 pixm->width = frame->o_width;
704 pixm->height = frame->o_height;
705 pixm->field = V4L2_FIELD_NONE;
706 pixm->pixelformat = frame->fmt->fourcc;
707 pixm->colorspace = V4L2_COLORSPACE_JPEG;
708 pixm->num_planes = frame->fmt->memplanes;
709
710 for (i = 0; i < pixm->num_planes; ++i) {
711 pixm->plane_fmt[i].bytesperline = frame->bytesperline[i];
712 pixm->plane_fmt[i].sizeimage = frame->payload[i];
713 }
714 }
715
716 /**
717 * fimc_adjust_mplane_format - adjust bytesperline/sizeimage for each plane
718 * @fmt: fimc pixel format description (input)
719 * @width: requested pixel width
720 * @height: requested pixel height
721 * @pix: multi-plane format to adjust
722 */
723 void fimc_adjust_mplane_format(struct fimc_fmt *fmt, u32 width, u32 height,
724 struct v4l2_pix_format_mplane *pix)
725 {
726 u32 bytesperline = 0;
727 int i;
728
729 pix->colorspace = V4L2_COLORSPACE_JPEG;
730 pix->field = V4L2_FIELD_NONE;
731 pix->num_planes = fmt->memplanes;
732 pix->pixelformat = fmt->fourcc;
733 pix->height = height;
734 pix->width = width;
735
736 for (i = 0; i < pix->num_planes; ++i) {
737 struct v4l2_plane_pix_format *plane_fmt = &pix->plane_fmt[i];
738 u32 bpl = plane_fmt->bytesperline;
739
740 if (fmt->colplanes > 1 && (bpl == 0 || bpl < pix->width))
741 bpl = pix->width; /* Planar */
742
743 if (fmt->colplanes == 1 && /* Packed */
744 (bpl == 0 || ((bpl * 8) / fmt->depth[i]) < pix->width))
745 bpl = (pix->width * fmt->depth[0]) / 8;
746 /*
747 * Currently bytesperline for each plane is same, except
748 * V4L2_PIX_FMT_YUV420M format. This calculation may need
749 * to be changed when other multi-planar formats are added
750 * to the fimc_formats[] array.
751 */
752 if (i == 0)
753 bytesperline = bpl;
754 else if (i == 1 && fmt->memplanes == 3)
755 bytesperline /= 2;
756
757 plane_fmt->bytesperline = bytesperline;
758 plane_fmt->sizeimage = max((pix->width * pix->height *
759 fmt->depth[i]) / 8, plane_fmt->sizeimage);
760 }
761 }
762
763 /**
764 * fimc_find_format - lookup fimc color format by fourcc or media bus format
765 * @pixelformat: fourcc to match, ignored if null
766 * @mbus_code: media bus code to match, ignored if null
767 * @mask: the color flags to match
768 * @index: offset in the fimc_formats array, ignored if negative
769 */
770 struct fimc_fmt *fimc_find_format(const u32 *pixelformat, const u32 *mbus_code,
771 unsigned int mask, int index)
772 {
773 struct fimc_fmt *fmt, *def_fmt = NULL;
774 unsigned int i;
775 int id = 0;
776
777 if (index >= (int)ARRAY_SIZE(fimc_formats))
778 return NULL;
779
780 for (i = 0; i < ARRAY_SIZE(fimc_formats); ++i) {
781 fmt = &fimc_formats[i];
782 if (!(fmt->flags & mask))
783 continue;
784 if (pixelformat && fmt->fourcc == *pixelformat)
785 return fmt;
786 if (mbus_code && fmt->mbus_code == *mbus_code)
787 return fmt;
788 if (index == id)
789 def_fmt = fmt;
790 id++;
791 }
792 return def_fmt;
793 }
794
795 static void fimc_clk_put(struct fimc_dev *fimc)
796 {
797 int i;
798 for (i = 0; i < MAX_FIMC_CLOCKS; i++) {
799 if (IS_ERR(fimc->clock[i]))
800 continue;
801 clk_unprepare(fimc->clock[i]);
802 clk_put(fimc->clock[i]);
803 fimc->clock[i] = ERR_PTR(-EINVAL);
804 }
805 }
806
807 static int fimc_clk_get(struct fimc_dev *fimc)
808 {
809 int i, ret;
810
811 for (i = 0; i < MAX_FIMC_CLOCKS; i++)
812 fimc->clock[i] = ERR_PTR(-EINVAL);
813
814 for (i = 0; i < MAX_FIMC_CLOCKS; i++) {
815 fimc->clock[i] = clk_get(&fimc->pdev->dev, fimc_clocks[i]);
816 if (IS_ERR(fimc->clock[i])) {
817 ret = PTR_ERR(fimc->clock[i]);
818 goto err;
819 }
820 ret = clk_prepare(fimc->clock[i]);
821 if (ret < 0) {
822 clk_put(fimc->clock[i]);
823 fimc->clock[i] = ERR_PTR(-EINVAL);
824 goto err;
825 }
826 }
827 return 0;
828 err:
829 fimc_clk_put(fimc);
830 dev_err(&fimc->pdev->dev, "failed to get clock: %s\n",
831 fimc_clocks[i]);
832 return -ENXIO;
833 }
834
835 static int fimc_m2m_suspend(struct fimc_dev *fimc)
836 {
837 unsigned long flags;
838 int timeout;
839
840 spin_lock_irqsave(&fimc->slock, flags);
841 if (!fimc_m2m_pending(fimc)) {
842 spin_unlock_irqrestore(&fimc->slock, flags);
843 return 0;
844 }
845 clear_bit(ST_M2M_SUSPENDED, &fimc->state);
846 set_bit(ST_M2M_SUSPENDING, &fimc->state);
847 spin_unlock_irqrestore(&fimc->slock, flags);
848
849 timeout = wait_event_timeout(fimc->irq_queue,
850 test_bit(ST_M2M_SUSPENDED, &fimc->state),
851 FIMC_SHUTDOWN_TIMEOUT);
852
853 clear_bit(ST_M2M_SUSPENDING, &fimc->state);
854 return timeout == 0 ? -EAGAIN : 0;
855 }
856
857 static int fimc_m2m_resume(struct fimc_dev *fimc)
858 {
859 unsigned long flags;
860
861 spin_lock_irqsave(&fimc->slock, flags);
862 /* Clear for full H/W setup in first run after resume */
863 fimc->m2m.ctx = NULL;
864 spin_unlock_irqrestore(&fimc->slock, flags);
865
866 if (test_and_clear_bit(ST_M2M_SUSPENDED, &fimc->state))
867 fimc_m2m_job_finish(fimc->m2m.ctx,
868 VB2_BUF_STATE_ERROR);
869 return 0;
870 }
871
872 static const struct of_device_id fimc_of_match[];
873
874 static int fimc_parse_dt(struct fimc_dev *fimc, u32 *clk_freq)
875 {
876 struct device *dev = &fimc->pdev->dev;
877 struct device_node *node = dev->of_node;
878 const struct of_device_id *of_id;
879 struct fimc_variant *v;
880 struct fimc_pix_limit *lim;
881 u32 args[FIMC_PIX_LIMITS_MAX];
882 int ret;
883
884 if (of_property_read_bool(node, "samsung,lcd-wb"))
885 return -ENODEV;
886
887 v = devm_kzalloc(dev, sizeof(*v) + sizeof(*lim), GFP_KERNEL);
888 if (!v)
889 return -ENOMEM;
890
891 of_id = of_match_node(fimc_of_match, node);
892 if (!of_id)
893 return -EINVAL;
894 fimc->drv_data = of_id->data;
895 ret = of_property_read_u32_array(node, "samsung,pix-limits",
896 args, FIMC_PIX_LIMITS_MAX);
897 if (ret < 0)
898 return ret;
899
900 lim = (struct fimc_pix_limit *)&v[1];
901
902 lim->scaler_en_w = args[0];
903 lim->scaler_dis_w = args[1];
904 lim->out_rot_en_w = args[2];
905 lim->out_rot_dis_w = args[3];
906 v->pix_limit = lim;
907
908 ret = of_property_read_u32_array(node, "samsung,min-pix-sizes",
909 args, 2);
910 v->min_inp_pixsize = ret ? FIMC_DEF_MIN_SIZE : args[0];
911 v->min_out_pixsize = ret ? FIMC_DEF_MIN_SIZE : args[1];
912 ret = of_property_read_u32_array(node, "samsung,min-pix-alignment",
913 args, 2);
914 v->min_vsize_align = ret ? FIMC_DEF_HEIGHT_ALIGN : args[0];
915 v->hor_offs_align = ret ? FIMC_DEF_HOR_OFFS_ALIGN : args[1];
916
917 ret = of_property_read_u32(node, "samsung,rotators", &args[1]);
918 v->has_inp_rot = ret ? 1 : args[1] & 0x01;
919 v->has_out_rot = ret ? 1 : args[1] & 0x10;
920 v->has_mainscaler_ext = of_property_read_bool(node,
921 "samsung,mainscaler-ext");
922
923 v->has_isp_wb = of_property_read_bool(node, "samsung,isp-wb");
924 v->has_cam_if = of_property_read_bool(node, "samsung,cam-if");
925 of_property_read_u32(node, "clock-frequency", clk_freq);
926 fimc->id = of_alias_get_id(node, "fimc");
927
928 fimc->variant = v;
929 return 0;
930 }
931
932 static int fimc_probe(struct platform_device *pdev)
933 {
934 struct device *dev = &pdev->dev;
935 u32 lclk_freq = 0;
936 struct fimc_dev *fimc;
937 struct resource *res;
938 int ret = 0;
939
940 fimc = devm_kzalloc(dev, sizeof(*fimc), GFP_KERNEL);
941 if (!fimc)
942 return -ENOMEM;
943
944 fimc->pdev = pdev;
945
946 if (dev->of_node) {
947 ret = fimc_parse_dt(fimc, &lclk_freq);
948 if (ret < 0)
949 return ret;
950 } else {
951 fimc->drv_data = fimc_get_drvdata(pdev);
952 fimc->id = pdev->id;
953 }
954 if (!fimc->drv_data || fimc->id >= fimc->drv_data->num_entities ||
955 fimc->id < 0) {
956 dev_err(dev, "Invalid driver data or device id (%d/%d)\n",
957 fimc->id, fimc->drv_data->num_entities);
958 return -EINVAL;
959 }
960 if (!dev->of_node)
961 fimc->variant = fimc->drv_data->variant[fimc->id];
962
963 init_waitqueue_head(&fimc->irq_queue);
964 spin_lock_init(&fimc->slock);
965 mutex_init(&fimc->lock);
966
967 fimc->sysreg = syscon_regmap_lookup_by_phandle(dev->of_node,
968 "samsung,sysreg");
969 if (IS_ERR(fimc->sysreg))
970 return PTR_ERR(fimc->sysreg);
971
972 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
973 fimc->regs = devm_ioremap_resource(dev, res);
974 if (IS_ERR(fimc->regs))
975 return PTR_ERR(fimc->regs);
976
977 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
978 if (res == NULL) {
979 dev_err(dev, "Failed to get IRQ resource\n");
980 return -ENXIO;
981 }
982
983 ret = fimc_clk_get(fimc);
984 if (ret)
985 return ret;
986
987 if (lclk_freq == 0)
988 lclk_freq = fimc->drv_data->lclk_frequency;
989
990 ret = clk_set_rate(fimc->clock[CLK_BUS], lclk_freq);
991 if (ret < 0)
992 return ret;
993
994 ret = clk_enable(fimc->clock[CLK_BUS]);
995 if (ret < 0)
996 return ret;
997
998 ret = devm_request_irq(dev, res->start, fimc_irq_handler,
999 0, dev_name(dev), fimc);
1000 if (ret) {
1001 dev_err(dev, "failed to install irq (%d)\n", ret);
1002 goto err_clk;
1003 }
1004
1005 ret = fimc_initialize_capture_subdev(fimc);
1006 if (ret)
1007 goto err_clk;
1008
1009 platform_set_drvdata(pdev, fimc);
1010 pm_runtime_enable(dev);
1011 ret = pm_runtime_get_sync(dev);
1012 if (ret < 0)
1013 goto err_sd;
1014 /* Initialize contiguous memory allocator */
1015 fimc->alloc_ctx = vb2_dma_contig_init_ctx(dev);
1016 if (IS_ERR(fimc->alloc_ctx)) {
1017 ret = PTR_ERR(fimc->alloc_ctx);
1018 goto err_pm;
1019 }
1020
1021 dev_dbg(dev, "FIMC.%d registered successfully\n", fimc->id);
1022
1023 pm_runtime_put(dev);
1024 return 0;
1025 err_pm:
1026 pm_runtime_put(dev);
1027 err_sd:
1028 fimc_unregister_capture_subdev(fimc);
1029 err_clk:
1030 clk_disable(fimc->clock[CLK_BUS]);
1031 fimc_clk_put(fimc);
1032 return ret;
1033 }
1034
1035 static int fimc_runtime_resume(struct device *dev)
1036 {
1037 struct fimc_dev *fimc = dev_get_drvdata(dev);
1038
1039 dbg("fimc%d: state: 0x%lx", fimc->id, fimc->state);
1040
1041 /* Enable clocks and perform basic initalization */
1042 clk_enable(fimc->clock[CLK_GATE]);
1043 fimc_hw_reset(fimc);
1044
1045 /* Resume the capture or mem-to-mem device */
1046 if (fimc_capture_busy(fimc))
1047 return fimc_capture_resume(fimc);
1048
1049 return fimc_m2m_resume(fimc);
1050 }
1051
1052 static int fimc_runtime_suspend(struct device *dev)
1053 {
1054 struct fimc_dev *fimc = dev_get_drvdata(dev);
1055 int ret = 0;
1056
1057 if (fimc_capture_busy(fimc))
1058 ret = fimc_capture_suspend(fimc);
1059 else
1060 ret = fimc_m2m_suspend(fimc);
1061 if (!ret)
1062 clk_disable(fimc->clock[CLK_GATE]);
1063
1064 dbg("fimc%d: state: 0x%lx", fimc->id, fimc->state);
1065 return ret;
1066 }
1067
1068 #ifdef CONFIG_PM_SLEEP
1069 static int fimc_resume(struct device *dev)
1070 {
1071 struct fimc_dev *fimc = dev_get_drvdata(dev);
1072 unsigned long flags;
1073
1074 dbg("fimc%d: state: 0x%lx", fimc->id, fimc->state);
1075
1076 /* Do not resume if the device was idle before system suspend */
1077 spin_lock_irqsave(&fimc->slock, flags);
1078 if (!test_and_clear_bit(ST_LPM, &fimc->state) ||
1079 (!fimc_m2m_active(fimc) && !fimc_capture_busy(fimc))) {
1080 spin_unlock_irqrestore(&fimc->slock, flags);
1081 return 0;
1082 }
1083 fimc_hw_reset(fimc);
1084 spin_unlock_irqrestore(&fimc->slock, flags);
1085
1086 if (fimc_capture_busy(fimc))
1087 return fimc_capture_resume(fimc);
1088
1089 return fimc_m2m_resume(fimc);
1090 }
1091
1092 static int fimc_suspend(struct device *dev)
1093 {
1094 struct fimc_dev *fimc = dev_get_drvdata(dev);
1095
1096 dbg("fimc%d: state: 0x%lx", fimc->id, fimc->state);
1097
1098 if (test_and_set_bit(ST_LPM, &fimc->state))
1099 return 0;
1100 if (fimc_capture_busy(fimc))
1101 return fimc_capture_suspend(fimc);
1102
1103 return fimc_m2m_suspend(fimc);
1104 }
1105 #endif /* CONFIG_PM_SLEEP */
1106
1107 static int fimc_remove(struct platform_device *pdev)
1108 {
1109 struct fimc_dev *fimc = platform_get_drvdata(pdev);
1110
1111 pm_runtime_disable(&pdev->dev);
1112 pm_runtime_set_suspended(&pdev->dev);
1113
1114 fimc_unregister_capture_subdev(fimc);
1115 vb2_dma_contig_cleanup_ctx(fimc->alloc_ctx);
1116
1117 clk_disable(fimc->clock[CLK_BUS]);
1118 fimc_clk_put(fimc);
1119
1120 dev_info(&pdev->dev, "driver unloaded\n");
1121 return 0;
1122 }
1123
1124 /* Image pixel limits, similar across several FIMC HW revisions. */
1125 static const struct fimc_pix_limit s5p_pix_limit[4] = {
1126 [0] = {
1127 .scaler_en_w = 3264,
1128 .scaler_dis_w = 8192,
1129 .out_rot_en_w = 1920,
1130 .out_rot_dis_w = 4224,
1131 },
1132 [1] = {
1133 .scaler_en_w = 4224,
1134 .scaler_dis_w = 8192,
1135 .out_rot_en_w = 1920,
1136 .out_rot_dis_w = 4224,
1137 },
1138 [2] = {
1139 .scaler_en_w = 1920,
1140 .scaler_dis_w = 8192,
1141 .out_rot_en_w = 1280,
1142 .out_rot_dis_w = 1920,
1143 },
1144 [3] = {
1145 .scaler_en_w = 1920,
1146 .scaler_dis_w = 8192,
1147 .in_rot_en_h = 1366,
1148 .in_rot_dis_w = 8192,
1149 .out_rot_en_w = 1366,
1150 .out_rot_dis_w = 1920,
1151 },
1152 };
1153
1154 static const struct fimc_variant fimc0_variant_s5p = {
1155 .has_inp_rot = 1,
1156 .has_out_rot = 1,
1157 .has_cam_if = 1,
1158 .min_inp_pixsize = 16,
1159 .min_out_pixsize = 16,
1160 .hor_offs_align = 8,
1161 .min_vsize_align = 16,
1162 .pix_limit = &s5p_pix_limit[0],
1163 };
1164
1165 static const struct fimc_variant fimc2_variant_s5p = {
1166 .has_cam_if = 1,
1167 .min_inp_pixsize = 16,
1168 .min_out_pixsize = 16,
1169 .hor_offs_align = 8,
1170 .min_vsize_align = 16,
1171 .pix_limit = &s5p_pix_limit[1],
1172 };
1173
1174 static const struct fimc_variant fimc0_variant_s5pv210 = {
1175 .has_inp_rot = 1,
1176 .has_out_rot = 1,
1177 .has_cam_if = 1,
1178 .min_inp_pixsize = 16,
1179 .min_out_pixsize = 16,
1180 .hor_offs_align = 8,
1181 .min_vsize_align = 16,
1182 .pix_limit = &s5p_pix_limit[1],
1183 };
1184
1185 static const struct fimc_variant fimc1_variant_s5pv210 = {
1186 .has_inp_rot = 1,
1187 .has_out_rot = 1,
1188 .has_cam_if = 1,
1189 .has_mainscaler_ext = 1,
1190 .min_inp_pixsize = 16,
1191 .min_out_pixsize = 16,
1192 .hor_offs_align = 1,
1193 .min_vsize_align = 1,
1194 .pix_limit = &s5p_pix_limit[2],
1195 };
1196
1197 static const struct fimc_variant fimc2_variant_s5pv210 = {
1198 .has_cam_if = 1,
1199 .min_inp_pixsize = 16,
1200 .min_out_pixsize = 16,
1201 .hor_offs_align = 8,
1202 .min_vsize_align = 16,
1203 .pix_limit = &s5p_pix_limit[2],
1204 };
1205
1206 static const struct fimc_variant fimc0_variant_exynos4210 = {
1207 .has_inp_rot = 1,
1208 .has_out_rot = 1,
1209 .has_cam_if = 1,
1210 .has_mainscaler_ext = 1,
1211 .min_inp_pixsize = 16,
1212 .min_out_pixsize = 16,
1213 .hor_offs_align = 2,
1214 .min_vsize_align = 1,
1215 .pix_limit = &s5p_pix_limit[1],
1216 };
1217
1218 static const struct fimc_variant fimc3_variant_exynos4210 = {
1219 .has_mainscaler_ext = 1,
1220 .min_inp_pixsize = 16,
1221 .min_out_pixsize = 16,
1222 .hor_offs_align = 2,
1223 .min_vsize_align = 1,
1224 .pix_limit = &s5p_pix_limit[3],
1225 };
1226
1227 /* S5PC100 */
1228 static const struct fimc_drvdata fimc_drvdata_s5p = {
1229 .variant = {
1230 [0] = &fimc0_variant_s5p,
1231 [1] = &fimc0_variant_s5p,
1232 [2] = &fimc2_variant_s5p,
1233 },
1234 .num_entities = 3,
1235 .lclk_frequency = 133000000UL,
1236 .out_buf_count = 4,
1237 };
1238
1239 /* S5PV210, S5PC110 */
1240 static const struct fimc_drvdata fimc_drvdata_s5pv210 = {
1241 .variant = {
1242 [0] = &fimc0_variant_s5pv210,
1243 [1] = &fimc1_variant_s5pv210,
1244 [2] = &fimc2_variant_s5pv210,
1245 },
1246 .num_entities = 3,
1247 .lclk_frequency = 166000000UL,
1248 .out_buf_count = 4,
1249 .dma_pix_hoff = 1,
1250 };
1251
1252 /* EXYNOS4210, S5PV310, S5PC210 */
1253 static const struct fimc_drvdata fimc_drvdata_exynos4210 = {
1254 .variant = {
1255 [0] = &fimc0_variant_exynos4210,
1256 [1] = &fimc0_variant_exynos4210,
1257 [2] = &fimc0_variant_exynos4210,
1258 [3] = &fimc3_variant_exynos4210,
1259 },
1260 .num_entities = 4,
1261 .lclk_frequency = 166000000UL,
1262 .dma_pix_hoff = 1,
1263 .cistatus2 = 1,
1264 .alpha_color = 1,
1265 .out_buf_count = 32,
1266 };
1267
1268 /* EXYNOS4212, EXYNOS4412 */
1269 static const struct fimc_drvdata fimc_drvdata_exynos4x12 = {
1270 .num_entities = 4,
1271 .lclk_frequency = 166000000UL,
1272 .dma_pix_hoff = 1,
1273 .cistatus2 = 1,
1274 .alpha_color = 1,
1275 .out_buf_count = 32,
1276 };
1277
1278 static const struct platform_device_id fimc_driver_ids[] = {
1279 {
1280 .name = "s5p-fimc",
1281 .driver_data = (unsigned long)&fimc_drvdata_s5p,
1282 }, {
1283 .name = "s5pv210-fimc",
1284 .driver_data = (unsigned long)&fimc_drvdata_s5pv210,
1285 }, {
1286 .name = "exynos4-fimc",
1287 .driver_data = (unsigned long)&fimc_drvdata_exynos4210,
1288 }, {
1289 .name = "exynos4x12-fimc",
1290 .driver_data = (unsigned long)&fimc_drvdata_exynos4x12,
1291 },
1292 { },
1293 };
1294
1295 static const struct of_device_id fimc_of_match[] = {
1296 {
1297 .compatible = "samsung,s5pv210-fimc",
1298 .data = &fimc_drvdata_s5pv210,
1299 }, {
1300 .compatible = "samsung,exynos4210-fimc",
1301 .data = &fimc_drvdata_exynos4210,
1302 }, {
1303 .compatible = "samsung,exynos4212-fimc",
1304 .data = &fimc_drvdata_exynos4x12,
1305 },
1306 { /* sentinel */ },
1307 };
1308
1309 static const struct dev_pm_ops fimc_pm_ops = {
1310 SET_SYSTEM_SLEEP_PM_OPS(fimc_suspend, fimc_resume)
1311 SET_RUNTIME_PM_OPS(fimc_runtime_suspend, fimc_runtime_resume, NULL)
1312 };
1313
1314 static struct platform_driver fimc_driver = {
1315 .probe = fimc_probe,
1316 .remove = fimc_remove,
1317 .id_table = fimc_driver_ids,
1318 .driver = {
1319 .of_match_table = fimc_of_match,
1320 .name = FIMC_MODULE_NAME,
1321 .owner = THIS_MODULE,
1322 .pm = &fimc_pm_ops,
1323 }
1324 };
1325
1326 int __init fimc_register_driver(void)
1327 {
1328 return platform_driver_register(&fimc_driver);
1329 }
1330
1331 void __exit fimc_unregister_driver(void)
1332 {
1333 platform_driver_unregister(&fimc_driver);
1334 }
This page took 0.196944 seconds and 5 git commands to generate.