blob: d79e214ce8ce3e7526027aea3141c16f9a609a39 [file] [log] [blame]
Kamil Debski91884732011-10-06 11:32:12 -03001/*
2 * Samsung S5P G2D - 2D Graphics Accelerator Driver
3 *
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * Kamil Debski, <k.debski@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 by the
9 * Free Software Foundation; either version 2 of the
10 * License, or (at your option) any later version
11 */
12
13#include <linux/module.h>
14#include <linux/fs.h>
15#include <linux/version.h>
16#include <linux/timer.h>
17#include <linux/sched.h>
18#include <linux/slab.h>
19#include <linux/clk.h>
20#include <linux/interrupt.h>
Sachin Kamat5ce60d72013-02-06 01:29:43 -030021#include <linux/of.h>
Kamil Debski91884732011-10-06 11:32:12 -030022
23#include <linux/platform_device.h>
24#include <media/v4l2-mem2mem.h>
25#include <media/v4l2-device.h>
26#include <media/v4l2-ioctl.h>
27#include <media/videobuf2-core.h>
28#include <media/videobuf2-dma-contig.h>
29
30#include "g2d.h"
31#include "g2d-regs.h"
32
33#define fh2ctx(__fh) container_of(__fh, struct g2d_ctx, fh)
34
35static struct g2d_fmt formats[] = {
36 {
37 .name = "XRGB_8888",
38 .fourcc = V4L2_PIX_FMT_RGB32,
39 .depth = 32,
40 .hw = COLOR_MODE(ORDER_XRGB, MODE_XRGB_8888),
41 },
42 {
43 .name = "RGB_565",
44 .fourcc = V4L2_PIX_FMT_RGB565X,
45 .depth = 16,
46 .hw = COLOR_MODE(ORDER_XRGB, MODE_RGB_565),
47 },
48 {
49 .name = "XRGB_1555",
50 .fourcc = V4L2_PIX_FMT_RGB555X,
51 .depth = 16,
52 .hw = COLOR_MODE(ORDER_XRGB, MODE_XRGB_1555),
53 },
54 {
55 .name = "XRGB_4444",
56 .fourcc = V4L2_PIX_FMT_RGB444,
57 .depth = 16,
58 .hw = COLOR_MODE(ORDER_XRGB, MODE_XRGB_4444),
59 },
60 {
61 .name = "PACKED_RGB_888",
62 .fourcc = V4L2_PIX_FMT_RGB24,
63 .depth = 24,
64 .hw = COLOR_MODE(ORDER_XRGB, MODE_PACKED_RGB_888),
65 },
66};
67#define NUM_FORMATS ARRAY_SIZE(formats)
68
Sachin Kamatec76afe2012-05-10 03:35:48 -030069static struct g2d_frame def_frame = {
Kamil Debski91884732011-10-06 11:32:12 -030070 .width = DEFAULT_WIDTH,
71 .height = DEFAULT_HEIGHT,
72 .c_width = DEFAULT_WIDTH,
73 .c_height = DEFAULT_HEIGHT,
74 .o_width = 0,
75 .o_height = 0,
76 .fmt = &formats[0],
77 .right = DEFAULT_WIDTH,
78 .bottom = DEFAULT_HEIGHT,
79};
80
Sachin Kamatec76afe2012-05-10 03:35:48 -030081static struct g2d_fmt *find_fmt(struct v4l2_format *f)
Kamil Debski91884732011-10-06 11:32:12 -030082{
83 unsigned int i;
84 for (i = 0; i < NUM_FORMATS; i++) {
85 if (formats[i].fourcc == f->fmt.pix.pixelformat)
86 return &formats[i];
87 }
88 return NULL;
89}
90
91
92static struct g2d_frame *get_frame(struct g2d_ctx *ctx,
93 enum v4l2_buf_type type)
94{
95 switch (type) {
96 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
97 return &ctx->in;
98 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
99 return &ctx->out;
100 default:
101 return ERR_PTR(-EINVAL);
102 }
103}
104
105static int g2d_queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
106 unsigned int *nbuffers, unsigned int *nplanes,
107 unsigned int sizes[], void *alloc_ctxs[])
108{
109 struct g2d_ctx *ctx = vb2_get_drv_priv(vq);
110 struct g2d_frame *f = get_frame(ctx, vq->type);
111
112 if (IS_ERR(f))
113 return PTR_ERR(f);
114
115 sizes[0] = f->size;
116 *nplanes = 1;
117 alloc_ctxs[0] = ctx->dev->alloc_ctx;
118
119 if (*nbuffers == 0)
120 *nbuffers = 1;
121
122 return 0;
123}
124
125static int g2d_buf_prepare(struct vb2_buffer *vb)
126{
127 struct g2d_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
128 struct g2d_frame *f = get_frame(ctx, vb->vb2_queue->type);
129
130 if (IS_ERR(f))
131 return PTR_ERR(f);
132 vb2_set_plane_payload(vb, 0, f->size);
133 return 0;
134}
135
136static void g2d_buf_queue(struct vb2_buffer *vb)
137{
138 struct g2d_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300139 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Kamil Debski91884732011-10-06 11:32:12 -0300140}
141
Kamil Debski91884732011-10-06 11:32:12 -0300142static struct vb2_ops g2d_qops = {
143 .queue_setup = g2d_queue_setup,
144 .buf_prepare = g2d_buf_prepare,
145 .buf_queue = g2d_buf_queue,
146};
147
148static int queue_init(void *priv, struct vb2_queue *src_vq,
149 struct vb2_queue *dst_vq)
150{
151 struct g2d_ctx *ctx = priv;
152 int ret;
153
Kamil Debski91884732011-10-06 11:32:12 -0300154 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
155 src_vq->io_modes = VB2_MMAP | VB2_USERPTR;
156 src_vq->drv_priv = ctx;
157 src_vq->ops = &g2d_qops;
158 src_vq->mem_ops = &vb2_dma_contig_memops;
159 src_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
Sakari Ailusade48682014-02-25 19:12:19 -0300160 src_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300161 src_vq->lock = &ctx->dev->mutex;
Kamil Debski91884732011-10-06 11:32:12 -0300162
163 ret = vb2_queue_init(src_vq);
164 if (ret)
165 return ret;
166
Kamil Debski91884732011-10-06 11:32:12 -0300167 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
168 dst_vq->io_modes = VB2_MMAP | VB2_USERPTR;
169 dst_vq->drv_priv = ctx;
170 dst_vq->ops = &g2d_qops;
171 dst_vq->mem_ops = &vb2_dma_contig_memops;
172 dst_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
Sakari Ailusade48682014-02-25 19:12:19 -0300173 dst_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300174 dst_vq->lock = &ctx->dev->mutex;
Kamil Debski91884732011-10-06 11:32:12 -0300175
176 return vb2_queue_init(dst_vq);
177}
178
179static int g2d_s_ctrl(struct v4l2_ctrl *ctrl)
180{
181 struct g2d_ctx *ctx = container_of(ctrl->handler, struct g2d_ctx,
182 ctrl_handler);
Kamil Debski27dda972012-02-16 10:52:47 -0300183 unsigned long flags;
184
185 spin_lock_irqsave(&ctx->dev->ctrl_lock, flags);
Kamil Debski91884732011-10-06 11:32:12 -0300186 switch (ctrl->id) {
187 case V4L2_CID_COLORFX:
188 if (ctrl->val == V4L2_COLORFX_NEGATIVE)
189 ctx->rop = ROP4_INVERT;
190 else
191 ctx->rop = ROP4_COPY;
Kamil Debski7f6cce62012-01-02 09:19:25 -0300192 break;
Sachin Kamatd0d28322012-02-16 10:52:16 -0300193
194 case V4L2_CID_HFLIP:
195 ctx->flip = ctx->ctrl_hflip->val | (ctx->ctrl_vflip->val << 1);
196 break;
197
Kamil Debski91884732011-10-06 11:32:12 -0300198 }
Kamil Debski27dda972012-02-16 10:52:47 -0300199 spin_unlock_irqrestore(&ctx->dev->ctrl_lock, flags);
Kamil Debski91884732011-10-06 11:32:12 -0300200 return 0;
201}
202
203static const struct v4l2_ctrl_ops g2d_ctrl_ops = {
204 .s_ctrl = g2d_s_ctrl,
205};
206
Sachin Kamatec76afe2012-05-10 03:35:48 -0300207static int g2d_setup_ctrls(struct g2d_ctx *ctx)
Kamil Debski91884732011-10-06 11:32:12 -0300208{
209 struct g2d_dev *dev = ctx->dev;
210
Sachin Kamatd0d28322012-02-16 10:52:16 -0300211 v4l2_ctrl_handler_init(&ctx->ctrl_handler, 3);
212
213 ctx->ctrl_hflip = v4l2_ctrl_new_std(&ctx->ctrl_handler, &g2d_ctrl_ops,
214 V4L2_CID_HFLIP, 0, 1, 1, 0);
215
216 ctx->ctrl_vflip = v4l2_ctrl_new_std(&ctx->ctrl_handler, &g2d_ctrl_ops,
217 V4L2_CID_VFLIP, 0, 1, 1, 0);
Kamil Debski91884732011-10-06 11:32:12 -0300218
219 v4l2_ctrl_new_std_menu(
220 &ctx->ctrl_handler,
221 &g2d_ctrl_ops,
222 V4L2_CID_COLORFX,
223 V4L2_COLORFX_NEGATIVE,
224 ~((1 << V4L2_COLORFX_NONE) | (1 << V4L2_COLORFX_NEGATIVE)),
225 V4L2_COLORFX_NONE);
226
227 if (ctx->ctrl_handler.error) {
Sachin Kamatd0d28322012-02-16 10:52:16 -0300228 int err = ctx->ctrl_handler.error;
229 v4l2_err(&dev->v4l2_dev, "g2d_setup_ctrls failed\n");
230 v4l2_ctrl_handler_free(&ctx->ctrl_handler);
231 return err;
Kamil Debski91884732011-10-06 11:32:12 -0300232 }
233
Sachin Kamatd0d28322012-02-16 10:52:16 -0300234 v4l2_ctrl_cluster(2, &ctx->ctrl_hflip);
235
Kamil Debski91884732011-10-06 11:32:12 -0300236 return 0;
237}
238
239static int g2d_open(struct file *file)
240{
241 struct g2d_dev *dev = video_drvdata(file);
242 struct g2d_ctx *ctx = NULL;
243 int ret = 0;
244
245 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
246 if (!ctx)
247 return -ENOMEM;
248 ctx->dev = dev;
249 /* Set default formats */
250 ctx->in = def_frame;
251 ctx->out = def_frame;
252
Hans Verkuilde40cb22012-06-24 06:58:28 -0300253 if (mutex_lock_interruptible(&dev->mutex)) {
254 kfree(ctx);
255 return -ERESTARTSYS;
256 }
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300257 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx, &queue_init);
258 if (IS_ERR(ctx->fh.m2m_ctx)) {
259 ret = PTR_ERR(ctx->fh.m2m_ctx);
Hans Verkuilde40cb22012-06-24 06:58:28 -0300260 mutex_unlock(&dev->mutex);
Kamil Debski91884732011-10-06 11:32:12 -0300261 kfree(ctx);
262 return ret;
263 }
264 v4l2_fh_init(&ctx->fh, video_devdata(file));
265 file->private_data = &ctx->fh;
266 v4l2_fh_add(&ctx->fh);
267
268 g2d_setup_ctrls(ctx);
269
270 /* Write the default values to the ctx struct */
271 v4l2_ctrl_handler_setup(&ctx->ctrl_handler);
272
273 ctx->fh.ctrl_handler = &ctx->ctrl_handler;
Hans Verkuilde40cb22012-06-24 06:58:28 -0300274 mutex_unlock(&dev->mutex);
Kamil Debski91884732011-10-06 11:32:12 -0300275
276 v4l2_info(&dev->v4l2_dev, "instance opened\n");
277 return 0;
278}
279
280static int g2d_release(struct file *file)
281{
282 struct g2d_dev *dev = video_drvdata(file);
283 struct g2d_ctx *ctx = fh2ctx(file->private_data);
284
285 v4l2_ctrl_handler_free(&ctx->ctrl_handler);
286 v4l2_fh_del(&ctx->fh);
287 v4l2_fh_exit(&ctx->fh);
288 kfree(ctx);
289 v4l2_info(&dev->v4l2_dev, "instance closed\n");
290 return 0;
291}
292
293
294static int vidioc_querycap(struct file *file, void *priv,
295 struct v4l2_capability *cap)
296{
297 strncpy(cap->driver, G2D_NAME, sizeof(cap->driver) - 1);
298 strncpy(cap->card, G2D_NAME, sizeof(cap->card) - 1);
299 cap->bus_info[0] = 0;
300 cap->version = KERNEL_VERSION(1, 0, 0);
Sylwester Nawrockif0476a82012-07-26 09:30:00 -0300301 /*
302 * This is only a mem-to-mem video device. The capture and output
303 * device capability flags are left only for backward compatibility
304 * and are scheduled for removal.
305 */
306 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VIDEO_OUTPUT |
307 V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
Kamil Debski91884732011-10-06 11:32:12 -0300308 return 0;
309}
310
311static int vidioc_enum_fmt(struct file *file, void *prv, struct v4l2_fmtdesc *f)
312{
313 struct g2d_fmt *fmt;
314 if (f->index >= NUM_FORMATS)
315 return -EINVAL;
316 fmt = &formats[f->index];
317 f->pixelformat = fmt->fourcc;
318 strncpy(f->description, fmt->name, sizeof(f->description) - 1);
319 return 0;
320}
321
322static int vidioc_g_fmt(struct file *file, void *prv, struct v4l2_format *f)
323{
324 struct g2d_ctx *ctx = prv;
325 struct vb2_queue *vq;
326 struct g2d_frame *frm;
327
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300328 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
Kamil Debski91884732011-10-06 11:32:12 -0300329 if (!vq)
330 return -EINVAL;
331 frm = get_frame(ctx, f->type);
332 if (IS_ERR(frm))
333 return PTR_ERR(frm);
334
335 f->fmt.pix.width = frm->width;
336 f->fmt.pix.height = frm->height;
337 f->fmt.pix.field = V4L2_FIELD_NONE;
338 f->fmt.pix.pixelformat = frm->fmt->fourcc;
339 f->fmt.pix.bytesperline = (frm->width * frm->fmt->depth) >> 3;
340 f->fmt.pix.sizeimage = frm->size;
341 return 0;
342}
343
344static int vidioc_try_fmt(struct file *file, void *prv, struct v4l2_format *f)
345{
346 struct g2d_fmt *fmt;
347 enum v4l2_field *field;
348
349 fmt = find_fmt(f);
350 if (!fmt)
351 return -EINVAL;
352
353 field = &f->fmt.pix.field;
354 if (*field == V4L2_FIELD_ANY)
355 *field = V4L2_FIELD_NONE;
356 else if (*field != V4L2_FIELD_NONE)
357 return -EINVAL;
358
359 if (f->fmt.pix.width > MAX_WIDTH)
360 f->fmt.pix.width = MAX_WIDTH;
361 if (f->fmt.pix.height > MAX_HEIGHT)
362 f->fmt.pix.height = MAX_HEIGHT;
363
364 if (f->fmt.pix.width < 1)
365 f->fmt.pix.width = 1;
366 if (f->fmt.pix.height < 1)
367 f->fmt.pix.height = 1;
368
369 f->fmt.pix.bytesperline = (f->fmt.pix.width * fmt->depth) >> 3;
370 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
371 return 0;
372}
373
374static int vidioc_s_fmt(struct file *file, void *prv, struct v4l2_format *f)
375{
376 struct g2d_ctx *ctx = prv;
377 struct g2d_dev *dev = ctx->dev;
378 struct vb2_queue *vq;
379 struct g2d_frame *frm;
380 struct g2d_fmt *fmt;
381 int ret = 0;
382
383 /* Adjust all values accordingly to the hardware capabilities
384 * and chosen format. */
385 ret = vidioc_try_fmt(file, prv, f);
386 if (ret)
387 return ret;
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300388 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
Kamil Debski91884732011-10-06 11:32:12 -0300389 if (vb2_is_busy(vq)) {
390 v4l2_err(&dev->v4l2_dev, "queue (%d) bust\n", f->type);
391 return -EBUSY;
392 }
393 frm = get_frame(ctx, f->type);
394 if (IS_ERR(frm))
395 return PTR_ERR(frm);
396 fmt = find_fmt(f);
397 if (!fmt)
398 return -EINVAL;
399 frm->width = f->fmt.pix.width;
400 frm->height = f->fmt.pix.height;
401 frm->size = f->fmt.pix.sizeimage;
402 /* Reset crop settings */
403 frm->o_width = 0;
404 frm->o_height = 0;
405 frm->c_width = frm->width;
406 frm->c_height = frm->height;
407 frm->right = frm->width;
408 frm->bottom = frm->height;
409 frm->fmt = fmt;
410 frm->stride = f->fmt.pix.bytesperline;
411 return 0;
412}
413
Kamil Debski91884732011-10-06 11:32:12 -0300414static int vidioc_cropcap(struct file *file, void *priv,
415 struct v4l2_cropcap *cr)
416{
417 struct g2d_ctx *ctx = priv;
418 struct g2d_frame *f;
419
420 f = get_frame(ctx, cr->type);
421 if (IS_ERR(f))
422 return PTR_ERR(f);
423
424 cr->bounds.left = 0;
425 cr->bounds.top = 0;
426 cr->bounds.width = f->width;
427 cr->bounds.height = f->height;
428 cr->defrect = cr->bounds;
429 return 0;
430}
431
432static int vidioc_g_crop(struct file *file, void *prv, struct v4l2_crop *cr)
433{
434 struct g2d_ctx *ctx = prv;
435 struct g2d_frame *f;
436
437 f = get_frame(ctx, cr->type);
438 if (IS_ERR(f))
439 return PTR_ERR(f);
440
441 cr->c.left = f->o_height;
442 cr->c.top = f->o_width;
443 cr->c.width = f->c_width;
444 cr->c.height = f->c_height;
445 return 0;
446}
447
Hans Verkuil21ec9c92012-09-05 05:10:48 -0300448static int vidioc_try_crop(struct file *file, void *prv, const struct v4l2_crop *cr)
Kamil Debski91884732011-10-06 11:32:12 -0300449{
450 struct g2d_ctx *ctx = prv;
451 struct g2d_dev *dev = ctx->dev;
452 struct g2d_frame *f;
453
454 f = get_frame(ctx, cr->type);
455 if (IS_ERR(f))
456 return PTR_ERR(f);
457
458 if (cr->c.top < 0 || cr->c.left < 0) {
459 v4l2_err(&dev->v4l2_dev,
460 "doesn't support negative values for top & left\n");
461 return -EINVAL;
462 }
463
464 return 0;
465}
466
Hans Verkuil4f996592012-09-05 05:10:48 -0300467static int vidioc_s_crop(struct file *file, void *prv, const struct v4l2_crop *cr)
Kamil Debski91884732011-10-06 11:32:12 -0300468{
469 struct g2d_ctx *ctx = prv;
470 struct g2d_frame *f;
471 int ret;
472
473 ret = vidioc_try_crop(file, prv, cr);
474 if (ret)
475 return ret;
476 f = get_frame(ctx, cr->type);
477 if (IS_ERR(f))
478 return PTR_ERR(f);
479
480 f->c_width = cr->c.width;
481 f->c_height = cr->c.height;
482 f->o_width = cr->c.left;
483 f->o_height = cr->c.top;
484 f->bottom = f->o_height + f->c_height;
485 f->right = f->o_width + f->c_width;
486 return 0;
487}
488
Kamil Debski91884732011-10-06 11:32:12 -0300489static void job_abort(void *prv)
490{
491 struct g2d_ctx *ctx = prv;
492 struct g2d_dev *dev = ctx->dev;
Kamil Debski91884732011-10-06 11:32:12 -0300493
Sachin Kamat23568772012-05-10 03:35:47 -0300494 if (dev->curr == NULL) /* No job currently running */
Kamil Debski91884732011-10-06 11:32:12 -0300495 return;
496
Mauro Carvalho Chehabdc916aa2014-08-26 10:52:56 -0300497 wait_event_timeout(dev->irq_queue,
498 dev->curr == NULL,
499 msecs_to_jiffies(G2D_TIMEOUT));
Kamil Debski91884732011-10-06 11:32:12 -0300500}
501
502static void device_run(void *prv)
503{
504 struct g2d_ctx *ctx = prv;
505 struct g2d_dev *dev = ctx->dev;
506 struct vb2_buffer *src, *dst;
Kamil Debski27dda972012-02-16 10:52:47 -0300507 unsigned long flags;
Kamil Debski91884732011-10-06 11:32:12 -0300508 u32 cmd = 0;
509
510 dev->curr = ctx;
511
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300512 src = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
513 dst = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
Kamil Debski91884732011-10-06 11:32:12 -0300514
515 clk_enable(dev->gate);
516 g2d_reset(dev);
517
Kamil Debski27dda972012-02-16 10:52:47 -0300518 spin_lock_irqsave(&dev->ctrl_lock, flags);
519
Kamil Debski91884732011-10-06 11:32:12 -0300520 g2d_set_src_size(dev, &ctx->in);
521 g2d_set_src_addr(dev, vb2_dma_contig_plane_dma_addr(src, 0));
522
523 g2d_set_dst_size(dev, &ctx->out);
524 g2d_set_dst_addr(dev, vb2_dma_contig_plane_dma_addr(dst, 0));
525
526 g2d_set_rop4(dev, ctx->rop);
Sachin Kamatd0d28322012-02-16 10:52:16 -0300527 g2d_set_flip(dev, ctx->flip);
528
Kamil Debski91884732011-10-06 11:32:12 -0300529 if (ctx->in.c_width != ctx->out.c_width ||
Sachin Kamat62ce2722013-01-17 00:07:18 -0300530 ctx->in.c_height != ctx->out.c_height) {
531 if (dev->variant->hw_rev == TYPE_G2D_3X)
532 cmd |= CMD_V3_ENABLE_STRETCH;
533 else
534 g2d_set_v41_stretch(dev, &ctx->in, &ctx->out);
535 }
536
Kamil Debski91884732011-10-06 11:32:12 -0300537 g2d_set_cmd(dev, cmd);
538 g2d_start(dev);
Kamil Debski27dda972012-02-16 10:52:47 -0300539
540 spin_unlock_irqrestore(&dev->ctrl_lock, flags);
Kamil Debski91884732011-10-06 11:32:12 -0300541}
542
543static irqreturn_t g2d_isr(int irq, void *prv)
544{
545 struct g2d_dev *dev = prv;
546 struct g2d_ctx *ctx = dev->curr;
547 struct vb2_buffer *src, *dst;
548
549 g2d_clear_int(dev);
550 clk_disable(dev->gate);
551
Sachin Kamat23568772012-05-10 03:35:47 -0300552 BUG_ON(ctx == NULL);
Kamil Debski91884732011-10-06 11:32:12 -0300553
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300554 src = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx);
555 dst = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx);
Kamil Debski91884732011-10-06 11:32:12 -0300556
Sachin Kamat23568772012-05-10 03:35:47 -0300557 BUG_ON(src == NULL);
558 BUG_ON(dst == NULL);
Kamil Debski91884732011-10-06 11:32:12 -0300559
Kamil Debskidc7be2952013-04-24 09:34:03 -0300560 dst->v4l2_buf.timecode = src->v4l2_buf.timecode;
561 dst->v4l2_buf.timestamp = src->v4l2_buf.timestamp;
Sakari Ailus309f4d62014-02-08 14:21:35 -0300562 dst->v4l2_buf.flags &= ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
563 dst->v4l2_buf.flags |=
564 src->v4l2_buf.flags & V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
Kamil Debskidc7be2952013-04-24 09:34:03 -0300565
Kamil Debski91884732011-10-06 11:32:12 -0300566 v4l2_m2m_buf_done(src, VB2_BUF_STATE_DONE);
567 v4l2_m2m_buf_done(dst, VB2_BUF_STATE_DONE);
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300568 v4l2_m2m_job_finish(dev->m2m_dev, ctx->fh.m2m_ctx);
Kamil Debski91884732011-10-06 11:32:12 -0300569
Sachin Kamat23568772012-05-10 03:35:47 -0300570 dev->curr = NULL;
Kamil Debski91884732011-10-06 11:32:12 -0300571 wake_up(&dev->irq_queue);
572 return IRQ_HANDLED;
573}
574
575static const struct v4l2_file_operations g2d_fops = {
576 .owner = THIS_MODULE,
577 .open = g2d_open,
578 .release = g2d_release,
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300579 .poll = v4l2_m2m_fop_poll,
Kamil Debski91884732011-10-06 11:32:12 -0300580 .unlocked_ioctl = video_ioctl2,
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300581 .mmap = v4l2_m2m_fop_mmap,
Kamil Debski91884732011-10-06 11:32:12 -0300582};
583
584static const struct v4l2_ioctl_ops g2d_ioctl_ops = {
585 .vidioc_querycap = vidioc_querycap,
586
587 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt,
588 .vidioc_g_fmt_vid_cap = vidioc_g_fmt,
589 .vidioc_try_fmt_vid_cap = vidioc_try_fmt,
590 .vidioc_s_fmt_vid_cap = vidioc_s_fmt,
591
592 .vidioc_enum_fmt_vid_out = vidioc_enum_fmt,
593 .vidioc_g_fmt_vid_out = vidioc_g_fmt,
594 .vidioc_try_fmt_vid_out = vidioc_try_fmt,
595 .vidioc_s_fmt_vid_out = vidioc_s_fmt,
596
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300597 .vidioc_reqbufs = v4l2_m2m_ioctl_reqbufs,
598 .vidioc_querybuf = v4l2_m2m_ioctl_querybuf,
599 .vidioc_qbuf = v4l2_m2m_ioctl_qbuf,
600 .vidioc_dqbuf = v4l2_m2m_ioctl_dqbuf,
Kamil Debski91884732011-10-06 11:32:12 -0300601
Sylwester Nawrockifebeaa42013-08-25 18:13:17 -0300602 .vidioc_streamon = v4l2_m2m_ioctl_streamon,
603 .vidioc_streamoff = v4l2_m2m_ioctl_streamoff,
Kamil Debski91884732011-10-06 11:32:12 -0300604
605 .vidioc_g_crop = vidioc_g_crop,
606 .vidioc_s_crop = vidioc_s_crop,
607 .vidioc_cropcap = vidioc_cropcap,
608};
609
610static struct video_device g2d_videodev = {
611 .name = G2D_NAME,
612 .fops = &g2d_fops,
613 .ioctl_ops = &g2d_ioctl_ops,
614 .minor = -1,
615 .release = video_device_release,
Hans Verkuil954f3402012-09-05 06:05:50 -0300616 .vfl_dir = VFL_DIR_M2M,
Kamil Debski91884732011-10-06 11:32:12 -0300617};
618
619static struct v4l2_m2m_ops g2d_m2m_ops = {
620 .device_run = device_run,
621 .job_abort = job_abort,
Kamil Debski91884732011-10-06 11:32:12 -0300622};
623
Sachin Kamat5ce60d72013-02-06 01:29:43 -0300624static const struct of_device_id exynos_g2d_match[];
625
Kamil Debski91884732011-10-06 11:32:12 -0300626static int g2d_probe(struct platform_device *pdev)
627{
628 struct g2d_dev *dev;
629 struct video_device *vfd;
630 struct resource *res;
Sachin Kamat5ce60d72013-02-06 01:29:43 -0300631 const struct of_device_id *of_id;
Kamil Debski91884732011-10-06 11:32:12 -0300632 int ret = 0;
633
Sachin Kamat32fced02012-05-14 06:31:24 -0300634 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
Kamil Debski91884732011-10-06 11:32:12 -0300635 if (!dev)
636 return -ENOMEM;
Sachin Kamat32fced02012-05-14 06:31:24 -0300637
Kamil Debski27dda972012-02-16 10:52:47 -0300638 spin_lock_init(&dev->ctrl_lock);
Kamil Debski91884732011-10-06 11:32:12 -0300639 mutex_init(&dev->mutex);
640 atomic_set(&dev->num_inst, 0);
641 init_waitqueue_head(&dev->irq_queue);
642
643 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Kamil Debski91884732011-10-06 11:32:12 -0300644
Thierry Redingf23999e2013-01-21 06:09:07 -0300645 dev->regs = devm_ioremap_resource(&pdev->dev, res);
646 if (IS_ERR(dev->regs))
647 return PTR_ERR(dev->regs);
Kamil Debski91884732011-10-06 11:32:12 -0300648
649 dev->clk = clk_get(&pdev->dev, "sclk_fimg2d");
Tony Prisk15514fb2012-12-18 05:28:41 -0300650 if (IS_ERR(dev->clk)) {
Kamil Debski91884732011-10-06 11:32:12 -0300651 dev_err(&pdev->dev, "failed to get g2d clock\n");
Sachin Kamat32fced02012-05-14 06:31:24 -0300652 return -ENXIO;
Kamil Debski91884732011-10-06 11:32:12 -0300653 }
654
Kamil Debski11a37c72012-02-16 10:51:28 -0300655 ret = clk_prepare(dev->clk);
656 if (ret) {
657 dev_err(&pdev->dev, "failed to prepare g2d clock\n");
658 goto put_clk;
659 }
660
Kamil Debski91884732011-10-06 11:32:12 -0300661 dev->gate = clk_get(&pdev->dev, "fimg2d");
Tony Prisk15514fb2012-12-18 05:28:41 -0300662 if (IS_ERR(dev->gate)) {
Kamil Debski91884732011-10-06 11:32:12 -0300663 dev_err(&pdev->dev, "failed to get g2d clock gate\n");
664 ret = -ENXIO;
Kamil Debski11a37c72012-02-16 10:51:28 -0300665 goto unprep_clk;
666 }
667
668 ret = clk_prepare(dev->gate);
669 if (ret) {
670 dev_err(&pdev->dev, "failed to prepare g2d clock gate\n");
671 goto put_clk_gate;
Kamil Debski91884732011-10-06 11:32:12 -0300672 }
673
674 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
675 if (!res) {
676 dev_err(&pdev->dev, "failed to find IRQ\n");
677 ret = -ENXIO;
Kamil Debski11a37c72012-02-16 10:51:28 -0300678 goto unprep_clk_gate;
Kamil Debski91884732011-10-06 11:32:12 -0300679 }
680
681 dev->irq = res->start;
682
Sachin Kamat32fced02012-05-14 06:31:24 -0300683 ret = devm_request_irq(&pdev->dev, dev->irq, g2d_isr,
684 0, pdev->name, dev);
Kamil Debski91884732011-10-06 11:32:12 -0300685 if (ret) {
686 dev_err(&pdev->dev, "failed to install IRQ\n");
687 goto put_clk_gate;
688 }
689
690 dev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
691 if (IS_ERR(dev->alloc_ctx)) {
692 ret = PTR_ERR(dev->alloc_ctx);
Sachin Kamat32fced02012-05-14 06:31:24 -0300693 goto unprep_clk_gate;
Kamil Debski91884732011-10-06 11:32:12 -0300694 }
695
696 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
697 if (ret)
698 goto alloc_ctx_cleanup;
699 vfd = video_device_alloc();
700 if (!vfd) {
701 v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
702 ret = -ENOMEM;
703 goto unreg_v4l2_dev;
704 }
705 *vfd = g2d_videodev;
706 vfd->lock = &dev->mutex;
Sachin Kamat8a09a4c2013-07-15 02:36:23 -0300707 vfd->v4l2_dev = &dev->v4l2_dev;
Kamil Debski91884732011-10-06 11:32:12 -0300708 ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0);
709 if (ret) {
710 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
711 goto rel_vdev;
712 }
713 video_set_drvdata(vfd, dev);
714 snprintf(vfd->name, sizeof(vfd->name), "%s", g2d_videodev.name);
715 dev->vfd = vfd;
716 v4l2_info(&dev->v4l2_dev, "device registered as /dev/video%d\n",
717 vfd->num);
718 platform_set_drvdata(pdev, dev);
719 dev->m2m_dev = v4l2_m2m_init(&g2d_m2m_ops);
720 if (IS_ERR(dev->m2m_dev)) {
721 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
722 ret = PTR_ERR(dev->m2m_dev);
723 goto unreg_video_dev;
724 }
725
726 def_frame.stride = (def_frame.width * def_frame.fmt->depth) >> 3;
Sachin Kamat5ce60d72013-02-06 01:29:43 -0300727
728 if (!pdev->dev.of_node) {
729 dev->variant = g2d_get_drv_data(pdev);
730 } else {
731 of_id = of_match_node(exynos_g2d_match, pdev->dev.of_node);
732 if (!of_id) {
733 ret = -ENODEV;
734 goto unreg_video_dev;
735 }
736 dev->variant = (struct g2d_variant *)of_id->data;
737 }
Kamil Debski91884732011-10-06 11:32:12 -0300738
739 return 0;
740
741unreg_video_dev:
742 video_unregister_device(dev->vfd);
743rel_vdev:
744 video_device_release(vfd);
745unreg_v4l2_dev:
746 v4l2_device_unregister(&dev->v4l2_dev);
747alloc_ctx_cleanup:
748 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
Kamil Debski11a37c72012-02-16 10:51:28 -0300749unprep_clk_gate:
750 clk_unprepare(dev->gate);
Kamil Debski91884732011-10-06 11:32:12 -0300751put_clk_gate:
752 clk_put(dev->gate);
Kamil Debski11a37c72012-02-16 10:51:28 -0300753unprep_clk:
754 clk_unprepare(dev->clk);
Kamil Debski91884732011-10-06 11:32:12 -0300755put_clk:
756 clk_put(dev->clk);
Sachin Kamat32fced02012-05-14 06:31:24 -0300757
Kamil Debski91884732011-10-06 11:32:12 -0300758 return ret;
759}
760
761static int g2d_remove(struct platform_device *pdev)
762{
Jingoo Han4e3eff62013-09-09 02:52:24 -0300763 struct g2d_dev *dev = platform_get_drvdata(pdev);
Kamil Debski91884732011-10-06 11:32:12 -0300764
765 v4l2_info(&dev->v4l2_dev, "Removing " G2D_NAME);
766 v4l2_m2m_release(dev->m2m_dev);
767 video_unregister_device(dev->vfd);
768 v4l2_device_unregister(&dev->v4l2_dev);
769 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
Kamil Debski11a37c72012-02-16 10:51:28 -0300770 clk_unprepare(dev->gate);
Kamil Debski91884732011-10-06 11:32:12 -0300771 clk_put(dev->gate);
Kamil Debski11a37c72012-02-16 10:51:28 -0300772 clk_unprepare(dev->clk);
Kamil Debski91884732011-10-06 11:32:12 -0300773 clk_put(dev->clk);
Kamil Debski91884732011-10-06 11:32:12 -0300774 return 0;
775}
776
Sachin Kamat62ce2722013-01-17 00:07:18 -0300777static struct g2d_variant g2d_drvdata_v3x = {
Sachin Kamat5ce60d72013-02-06 01:29:43 -0300778 .hw_rev = TYPE_G2D_3X, /* Revision 3.0 for S5PV210 and Exynos4210 */
Sachin Kamat62ce2722013-01-17 00:07:18 -0300779};
780
781static struct g2d_variant g2d_drvdata_v4x = {
782 .hw_rev = TYPE_G2D_4X, /* Revision 4.1 for Exynos4X12 and Exynos5 */
783};
784
Sachin Kamat5ce60d72013-02-06 01:29:43 -0300785static const struct of_device_id exynos_g2d_match[] = {
786 {
787 .compatible = "samsung,s5pv210-g2d",
788 .data = &g2d_drvdata_v3x,
789 }, {
790 .compatible = "samsung,exynos4212-g2d",
791 .data = &g2d_drvdata_v4x,
792 },
793 {},
794};
795MODULE_DEVICE_TABLE(of, exynos_g2d_match);
796
Sachin Kamat62ce2722013-01-17 00:07:18 -0300797static struct platform_device_id g2d_driver_ids[] = {
798 {
799 .name = "s5p-g2d",
800 .driver_data = (unsigned long)&g2d_drvdata_v3x,
801 }, {
802 .name = "s5p-g2d-v4x",
803 .driver_data = (unsigned long)&g2d_drvdata_v4x,
804 },
805 {},
806};
807MODULE_DEVICE_TABLE(platform, g2d_driver_ids);
808
Kamil Debski91884732011-10-06 11:32:12 -0300809static struct platform_driver g2d_pdrv = {
810 .probe = g2d_probe,
811 .remove = g2d_remove,
Sachin Kamat62ce2722013-01-17 00:07:18 -0300812 .id_table = g2d_driver_ids,
Kamil Debski91884732011-10-06 11:32:12 -0300813 .driver = {
814 .name = G2D_NAME,
815 .owner = THIS_MODULE,
Sachin Kamat5ce60d72013-02-06 01:29:43 -0300816 .of_match_table = exynos_g2d_match,
Kamil Debski91884732011-10-06 11:32:12 -0300817 },
818};
819
Axel Lin1d6629b2012-01-10 03:21:49 -0300820module_platform_driver(g2d_pdrv);
Kamil Debski91884732011-10-06 11:32:12 -0300821
822MODULE_AUTHOR("Kamil Debski <k.debski@samsung.com>");
823MODULE_DESCRIPTION("S5P G2D 2d graphics accelerator driver");
824MODULE_LICENSE("GPL");