Merge git://1984.lsi.us.es/nf-next
[cascardo/linux.git] / drivers / media / video / s5p-g2d / g2d.c
1 /*
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>
21
22 #include <linux/platform_device.h>
23 #include <media/v4l2-mem2mem.h>
24 #include <media/v4l2-device.h>
25 #include <media/v4l2-ioctl.h>
26 #include <media/videobuf2-core.h>
27 #include <media/videobuf2-dma-contig.h>
28
29 #include "g2d.h"
30 #include "g2d-regs.h"
31
32 #define fh2ctx(__fh) container_of(__fh, struct g2d_ctx, fh)
33
34 static struct g2d_fmt formats[] = {
35         {
36                 .name   = "XRGB_8888",
37                 .fourcc = V4L2_PIX_FMT_RGB32,
38                 .depth  = 32,
39                 .hw     = COLOR_MODE(ORDER_XRGB, MODE_XRGB_8888),
40         },
41         {
42                 .name   = "RGB_565",
43                 .fourcc = V4L2_PIX_FMT_RGB565X,
44                 .depth  = 16,
45                 .hw     = COLOR_MODE(ORDER_XRGB, MODE_RGB_565),
46         },
47         {
48                 .name   = "XRGB_1555",
49                 .fourcc = V4L2_PIX_FMT_RGB555X,
50                 .depth  = 16,
51                 .hw     = COLOR_MODE(ORDER_XRGB, MODE_XRGB_1555),
52         },
53         {
54                 .name   = "XRGB_4444",
55                 .fourcc = V4L2_PIX_FMT_RGB444,
56                 .depth  = 16,
57                 .hw     = COLOR_MODE(ORDER_XRGB, MODE_XRGB_4444),
58         },
59         {
60                 .name   = "PACKED_RGB_888",
61                 .fourcc = V4L2_PIX_FMT_RGB24,
62                 .depth  = 24,
63                 .hw     = COLOR_MODE(ORDER_XRGB, MODE_PACKED_RGB_888),
64         },
65 };
66 #define NUM_FORMATS ARRAY_SIZE(formats)
67
68 static struct g2d_frame def_frame = {
69         .width          = DEFAULT_WIDTH,
70         .height         = DEFAULT_HEIGHT,
71         .c_width        = DEFAULT_WIDTH,
72         .c_height       = DEFAULT_HEIGHT,
73         .o_width        = 0,
74         .o_height       = 0,
75         .fmt            = &formats[0],
76         .right          = DEFAULT_WIDTH,
77         .bottom         = DEFAULT_HEIGHT,
78 };
79
80 static struct g2d_fmt *find_fmt(struct v4l2_format *f)
81 {
82         unsigned int i;
83         for (i = 0; i < NUM_FORMATS; i++) {
84                 if (formats[i].fourcc == f->fmt.pix.pixelformat)
85                         return &formats[i];
86         }
87         return NULL;
88 }
89
90
91 static struct g2d_frame *get_frame(struct g2d_ctx *ctx,
92                                                         enum v4l2_buf_type type)
93 {
94         switch (type) {
95         case V4L2_BUF_TYPE_VIDEO_OUTPUT:
96                 return &ctx->in;
97         case V4L2_BUF_TYPE_VIDEO_CAPTURE:
98                 return &ctx->out;
99         default:
100                 return ERR_PTR(-EINVAL);
101         }
102 }
103
104 static int g2d_queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
105                            unsigned int *nbuffers, unsigned int *nplanes,
106                            unsigned int sizes[], void *alloc_ctxs[])
107 {
108         struct g2d_ctx *ctx = vb2_get_drv_priv(vq);
109         struct g2d_frame *f = get_frame(ctx, vq->type);
110
111         if (IS_ERR(f))
112                 return PTR_ERR(f);
113
114         sizes[0] = f->size;
115         *nplanes = 1;
116         alloc_ctxs[0] = ctx->dev->alloc_ctx;
117
118         if (*nbuffers == 0)
119                 *nbuffers = 1;
120
121         return 0;
122 }
123
124 static int g2d_buf_prepare(struct vb2_buffer *vb)
125 {
126         struct g2d_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
127         struct g2d_frame *f = get_frame(ctx, vb->vb2_queue->type);
128
129         if (IS_ERR(f))
130                 return PTR_ERR(f);
131         vb2_set_plane_payload(vb, 0, f->size);
132         return 0;
133 }
134
135 static void g2d_buf_queue(struct vb2_buffer *vb)
136 {
137         struct g2d_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
138         v4l2_m2m_buf_queue(ctx->m2m_ctx, vb);
139 }
140
141
142 static 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
148 static 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
154         memset(src_vq, 0, sizeof(*src_vq));
155         src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
156         src_vq->io_modes = VB2_MMAP | VB2_USERPTR;
157         src_vq->drv_priv = ctx;
158         src_vq->ops = &g2d_qops;
159         src_vq->mem_ops = &vb2_dma_contig_memops;
160         src_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
161
162         ret = vb2_queue_init(src_vq);
163         if (ret)
164                 return ret;
165
166         memset(dst_vq, 0, sizeof(*dst_vq));
167         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);
173
174         return vb2_queue_init(dst_vq);
175 }
176
177 static int g2d_s_ctrl(struct v4l2_ctrl *ctrl)
178 {
179         struct g2d_ctx *ctx = container_of(ctrl->handler, struct g2d_ctx,
180                                                                 ctrl_handler);
181         unsigned long flags;
182
183         spin_lock_irqsave(&ctx->dev->ctrl_lock, flags);
184         switch (ctrl->id) {
185         case V4L2_CID_COLORFX:
186                 if (ctrl->val == V4L2_COLORFX_NEGATIVE)
187                         ctx->rop = ROP4_INVERT;
188                 else
189                         ctx->rop = ROP4_COPY;
190                 break;
191
192         case V4L2_CID_HFLIP:
193                 ctx->flip = ctx->ctrl_hflip->val | (ctx->ctrl_vflip->val << 1);
194                 break;
195
196         }
197         spin_unlock_irqrestore(&ctx->dev->ctrl_lock, flags);
198         return 0;
199 }
200
201 static const struct v4l2_ctrl_ops g2d_ctrl_ops = {
202         .s_ctrl         = g2d_s_ctrl,
203 };
204
205 static int g2d_setup_ctrls(struct g2d_ctx *ctx)
206 {
207         struct g2d_dev *dev = ctx->dev;
208
209         v4l2_ctrl_handler_init(&ctx->ctrl_handler, 3);
210
211         ctx->ctrl_hflip = v4l2_ctrl_new_std(&ctx->ctrl_handler, &g2d_ctrl_ops,
212                                                 V4L2_CID_HFLIP, 0, 1, 1, 0);
213
214         ctx->ctrl_vflip = v4l2_ctrl_new_std(&ctx->ctrl_handler, &g2d_ctrl_ops,
215                                                 V4L2_CID_VFLIP, 0, 1, 1, 0);
216
217         v4l2_ctrl_new_std_menu(
218                 &ctx->ctrl_handler,
219                 &g2d_ctrl_ops,
220                 V4L2_CID_COLORFX,
221                 V4L2_COLORFX_NEGATIVE,
222                 ~((1 << V4L2_COLORFX_NONE) | (1 << V4L2_COLORFX_NEGATIVE)),
223                 V4L2_COLORFX_NONE);
224
225         if (ctx->ctrl_handler.error) {
226                 int err = ctx->ctrl_handler.error;
227                 v4l2_err(&dev->v4l2_dev, "g2d_setup_ctrls failed\n");
228                 v4l2_ctrl_handler_free(&ctx->ctrl_handler);
229                 return err;
230         }
231
232         v4l2_ctrl_cluster(2, &ctx->ctrl_hflip);
233
234         return 0;
235 }
236
237 static int g2d_open(struct file *file)
238 {
239         struct g2d_dev *dev = video_drvdata(file);
240         struct g2d_ctx *ctx = NULL;
241         int ret = 0;
242
243         ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
244         if (!ctx)
245                 return -ENOMEM;
246         ctx->dev = dev;
247         /* Set default formats */
248         ctx->in         = def_frame;
249         ctx->out        = def_frame;
250
251         ctx->m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx, &queue_init);
252         if (IS_ERR(ctx->m2m_ctx)) {
253                 ret = PTR_ERR(ctx->m2m_ctx);
254                 kfree(ctx);
255                 return ret;
256         }
257         v4l2_fh_init(&ctx->fh, video_devdata(file));
258         file->private_data = &ctx->fh;
259         v4l2_fh_add(&ctx->fh);
260
261         g2d_setup_ctrls(ctx);
262
263         /* Write the default values to the ctx struct */
264         v4l2_ctrl_handler_setup(&ctx->ctrl_handler);
265
266         ctx->fh.ctrl_handler = &ctx->ctrl_handler;
267
268         v4l2_info(&dev->v4l2_dev, "instance opened\n");
269         return 0;
270 }
271
272 static int g2d_release(struct file *file)
273 {
274         struct g2d_dev *dev = video_drvdata(file);
275         struct g2d_ctx *ctx = fh2ctx(file->private_data);
276
277         v4l2_ctrl_handler_free(&ctx->ctrl_handler);
278         v4l2_fh_del(&ctx->fh);
279         v4l2_fh_exit(&ctx->fh);
280         kfree(ctx);
281         v4l2_info(&dev->v4l2_dev, "instance closed\n");
282         return 0;
283 }
284
285
286 static int vidioc_querycap(struct file *file, void *priv,
287                                 struct v4l2_capability *cap)
288 {
289         strncpy(cap->driver, G2D_NAME, sizeof(cap->driver) - 1);
290         strncpy(cap->card, G2D_NAME, sizeof(cap->card) - 1);
291         cap->bus_info[0] = 0;
292         cap->version = KERNEL_VERSION(1, 0, 0);
293         /*
294          * This is only a mem-to-mem video device. The capture and output
295          * device capability flags are left only for backward compatibility
296          * and are scheduled for removal.
297          */
298         cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VIDEO_OUTPUT |
299                             V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
300         return 0;
301 }
302
303 static int vidioc_enum_fmt(struct file *file, void *prv, struct v4l2_fmtdesc *f)
304 {
305         struct g2d_fmt *fmt;
306         if (f->index >= NUM_FORMATS)
307                 return -EINVAL;
308         fmt = &formats[f->index];
309         f->pixelformat = fmt->fourcc;
310         strncpy(f->description, fmt->name, sizeof(f->description) - 1);
311         return 0;
312 }
313
314 static int vidioc_g_fmt(struct file *file, void *prv, struct v4l2_format *f)
315 {
316         struct g2d_ctx *ctx = prv;
317         struct vb2_queue *vq;
318         struct g2d_frame *frm;
319
320         vq = v4l2_m2m_get_vq(ctx->m2m_ctx, f->type);
321         if (!vq)
322                 return -EINVAL;
323         frm = get_frame(ctx, f->type);
324         if (IS_ERR(frm))
325                 return PTR_ERR(frm);
326
327         f->fmt.pix.width                = frm->width;
328         f->fmt.pix.height               = frm->height;
329         f->fmt.pix.field                = V4L2_FIELD_NONE;
330         f->fmt.pix.pixelformat          = frm->fmt->fourcc;
331         f->fmt.pix.bytesperline         = (frm->width * frm->fmt->depth) >> 3;
332         f->fmt.pix.sizeimage            = frm->size;
333         return 0;
334 }
335
336 static int vidioc_try_fmt(struct file *file, void *prv, struct v4l2_format *f)
337 {
338         struct g2d_fmt *fmt;
339         enum v4l2_field *field;
340
341         fmt = find_fmt(f);
342         if (!fmt)
343                 return -EINVAL;
344
345         field = &f->fmt.pix.field;
346         if (*field == V4L2_FIELD_ANY)
347                 *field = V4L2_FIELD_NONE;
348         else if (*field != V4L2_FIELD_NONE)
349                 return -EINVAL;
350
351         if (f->fmt.pix.width > MAX_WIDTH)
352                 f->fmt.pix.width = MAX_WIDTH;
353         if (f->fmt.pix.height > MAX_HEIGHT)
354                 f->fmt.pix.height = MAX_HEIGHT;
355
356         if (f->fmt.pix.width < 1)
357                 f->fmt.pix.width = 1;
358         if (f->fmt.pix.height < 1)
359                 f->fmt.pix.height = 1;
360
361         f->fmt.pix.bytesperline = (f->fmt.pix.width * fmt->depth) >> 3;
362         f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
363         return 0;
364 }
365
366 static int vidioc_s_fmt(struct file *file, void *prv, struct v4l2_format *f)
367 {
368         struct g2d_ctx *ctx = prv;
369         struct g2d_dev *dev = ctx->dev;
370         struct vb2_queue *vq;
371         struct g2d_frame *frm;
372         struct g2d_fmt *fmt;
373         int ret = 0;
374
375         /* Adjust all values accordingly to the hardware capabilities
376          * and chosen format. */
377         ret = vidioc_try_fmt(file, prv, f);
378         if (ret)
379                 return ret;
380         vq = v4l2_m2m_get_vq(ctx->m2m_ctx, f->type);
381         if (vb2_is_busy(vq)) {
382                 v4l2_err(&dev->v4l2_dev, "queue (%d) bust\n", f->type);
383                 return -EBUSY;
384         }
385         frm = get_frame(ctx, f->type);
386         if (IS_ERR(frm))
387                 return PTR_ERR(frm);
388         fmt = find_fmt(f);
389         if (!fmt)
390                 return -EINVAL;
391         frm->width      = f->fmt.pix.width;
392         frm->height     = f->fmt.pix.height;
393         frm->size       = f->fmt.pix.sizeimage;
394         /* Reset crop settings */
395         frm->o_width    = 0;
396         frm->o_height   = 0;
397         frm->c_width    = frm->width;
398         frm->c_height   = frm->height;
399         frm->right      = frm->width;
400         frm->bottom     = frm->height;
401         frm->fmt        = fmt;
402         frm->stride     = f->fmt.pix.bytesperline;
403         return 0;
404 }
405
406 static unsigned int g2d_poll(struct file *file, struct poll_table_struct *wait)
407 {
408         struct g2d_ctx *ctx = fh2ctx(file->private_data);
409         return v4l2_m2m_poll(file, ctx->m2m_ctx, wait);
410 }
411
412 static int g2d_mmap(struct file *file, struct vm_area_struct *vma)
413 {
414         struct g2d_ctx *ctx = fh2ctx(file->private_data);
415         return v4l2_m2m_mmap(file, ctx->m2m_ctx, vma);
416 }
417
418 static int vidioc_reqbufs(struct file *file, void *priv,
419                         struct v4l2_requestbuffers *reqbufs)
420 {
421         struct g2d_ctx *ctx = priv;
422         return v4l2_m2m_reqbufs(file, ctx->m2m_ctx, reqbufs);
423 }
424
425 static int vidioc_querybuf(struct file *file, void *priv,
426                         struct v4l2_buffer *buf)
427 {
428         struct g2d_ctx *ctx = priv;
429         return v4l2_m2m_querybuf(file, ctx->m2m_ctx, buf);
430 }
431
432 static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *buf)
433 {
434         struct g2d_ctx *ctx = priv;
435         return v4l2_m2m_qbuf(file, ctx->m2m_ctx, buf);
436 }
437
438 static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *buf)
439 {
440         struct g2d_ctx *ctx = priv;
441         return v4l2_m2m_dqbuf(file, ctx->m2m_ctx, buf);
442 }
443
444
445 static int vidioc_streamon(struct file *file, void *priv,
446                                         enum v4l2_buf_type type)
447 {
448         struct g2d_ctx *ctx = priv;
449         return v4l2_m2m_streamon(file, ctx->m2m_ctx, type);
450 }
451
452 static int vidioc_streamoff(struct file *file, void *priv,
453                                         enum v4l2_buf_type type)
454 {
455         struct g2d_ctx *ctx = priv;
456         return v4l2_m2m_streamoff(file, ctx->m2m_ctx, type);
457 }
458
459 static int vidioc_cropcap(struct file *file, void *priv,
460                                         struct v4l2_cropcap *cr)
461 {
462         struct g2d_ctx *ctx = priv;
463         struct g2d_frame *f;
464
465         f = get_frame(ctx, cr->type);
466         if (IS_ERR(f))
467                 return PTR_ERR(f);
468
469         cr->bounds.left         = 0;
470         cr->bounds.top          = 0;
471         cr->bounds.width        = f->width;
472         cr->bounds.height       = f->height;
473         cr->defrect             = cr->bounds;
474         return 0;
475 }
476
477 static int vidioc_g_crop(struct file *file, void *prv, struct v4l2_crop *cr)
478 {
479         struct g2d_ctx *ctx = prv;
480         struct g2d_frame *f;
481
482         f = get_frame(ctx, cr->type);
483         if (IS_ERR(f))
484                 return PTR_ERR(f);
485
486         cr->c.left      = f->o_height;
487         cr->c.top       = f->o_width;
488         cr->c.width     = f->c_width;
489         cr->c.height    = f->c_height;
490         return 0;
491 }
492
493 static int vidioc_try_crop(struct file *file, void *prv, struct v4l2_crop *cr)
494 {
495         struct g2d_ctx *ctx = prv;
496         struct g2d_dev *dev = ctx->dev;
497         struct g2d_frame *f;
498
499         f = get_frame(ctx, cr->type);
500         if (IS_ERR(f))
501                 return PTR_ERR(f);
502
503         if (cr->c.top < 0 || cr->c.left < 0) {
504                 v4l2_err(&dev->v4l2_dev,
505                         "doesn't support negative values for top & left\n");
506                 return -EINVAL;
507         }
508
509         return 0;
510 }
511
512 static int vidioc_s_crop(struct file *file, void *prv, struct v4l2_crop *cr)
513 {
514         struct g2d_ctx *ctx = prv;
515         struct g2d_frame *f;
516         int ret;
517
518         ret = vidioc_try_crop(file, prv, cr);
519         if (ret)
520                 return ret;
521         f = get_frame(ctx, cr->type);
522         if (IS_ERR(f))
523                 return PTR_ERR(f);
524
525         f->c_width      = cr->c.width;
526         f->c_height     = cr->c.height;
527         f->o_width      = cr->c.left;
528         f->o_height     = cr->c.top;
529         f->bottom       = f->o_height + f->c_height;
530         f->right        = f->o_width + f->c_width;
531         return 0;
532 }
533
534 static void g2d_lock(void *prv)
535 {
536         struct g2d_ctx *ctx = prv;
537         struct g2d_dev *dev = ctx->dev;
538         mutex_lock(&dev->mutex);
539 }
540
541 static void g2d_unlock(void *prv)
542 {
543         struct g2d_ctx *ctx = prv;
544         struct g2d_dev *dev = ctx->dev;
545         mutex_unlock(&dev->mutex);
546 }
547
548 static void job_abort(void *prv)
549 {
550         struct g2d_ctx *ctx = prv;
551         struct g2d_dev *dev = ctx->dev;
552         int ret;
553
554         if (dev->curr == NULL) /* No job currently running */
555                 return;
556
557         ret = wait_event_timeout(dev->irq_queue,
558                 dev->curr == NULL,
559                 msecs_to_jiffies(G2D_TIMEOUT));
560 }
561
562 static void device_run(void *prv)
563 {
564         struct g2d_ctx *ctx = prv;
565         struct g2d_dev *dev = ctx->dev;
566         struct vb2_buffer *src, *dst;
567         unsigned long flags;
568         u32 cmd = 0;
569
570         dev->curr = ctx;
571
572         src = v4l2_m2m_next_src_buf(ctx->m2m_ctx);
573         dst = v4l2_m2m_next_dst_buf(ctx->m2m_ctx);
574
575         clk_enable(dev->gate);
576         g2d_reset(dev);
577
578         spin_lock_irqsave(&dev->ctrl_lock, flags);
579
580         g2d_set_src_size(dev, &ctx->in);
581         g2d_set_src_addr(dev, vb2_dma_contig_plane_dma_addr(src, 0));
582
583         g2d_set_dst_size(dev, &ctx->out);
584         g2d_set_dst_addr(dev, vb2_dma_contig_plane_dma_addr(dst, 0));
585
586         g2d_set_rop4(dev, ctx->rop);
587         g2d_set_flip(dev, ctx->flip);
588
589         if (ctx->in.c_width != ctx->out.c_width ||
590                 ctx->in.c_height != ctx->out.c_height)
591                 cmd |= g2d_cmd_stretch(1);
592         g2d_set_cmd(dev, cmd);
593         g2d_start(dev);
594
595         spin_unlock_irqrestore(&dev->ctrl_lock, flags);
596 }
597
598 static irqreturn_t g2d_isr(int irq, void *prv)
599 {
600         struct g2d_dev *dev = prv;
601         struct g2d_ctx *ctx = dev->curr;
602         struct vb2_buffer *src, *dst;
603
604         g2d_clear_int(dev);
605         clk_disable(dev->gate);
606
607         BUG_ON(ctx == NULL);
608
609         src = v4l2_m2m_src_buf_remove(ctx->m2m_ctx);
610         dst = v4l2_m2m_dst_buf_remove(ctx->m2m_ctx);
611
612         BUG_ON(src == NULL);
613         BUG_ON(dst == NULL);
614
615         v4l2_m2m_buf_done(src, VB2_BUF_STATE_DONE);
616         v4l2_m2m_buf_done(dst, VB2_BUF_STATE_DONE);
617         v4l2_m2m_job_finish(dev->m2m_dev, ctx->m2m_ctx);
618
619         dev->curr = NULL;
620         wake_up(&dev->irq_queue);
621         return IRQ_HANDLED;
622 }
623
624 static const struct v4l2_file_operations g2d_fops = {
625         .owner          = THIS_MODULE,
626         .open           = g2d_open,
627         .release        = g2d_release,
628         .poll           = g2d_poll,
629         .unlocked_ioctl = video_ioctl2,
630         .mmap           = g2d_mmap,
631 };
632
633 static const struct v4l2_ioctl_ops g2d_ioctl_ops = {
634         .vidioc_querycap        = vidioc_querycap,
635
636         .vidioc_enum_fmt_vid_cap        = vidioc_enum_fmt,
637         .vidioc_g_fmt_vid_cap           = vidioc_g_fmt,
638         .vidioc_try_fmt_vid_cap         = vidioc_try_fmt,
639         .vidioc_s_fmt_vid_cap           = vidioc_s_fmt,
640
641         .vidioc_enum_fmt_vid_out        = vidioc_enum_fmt,
642         .vidioc_g_fmt_vid_out           = vidioc_g_fmt,
643         .vidioc_try_fmt_vid_out         = vidioc_try_fmt,
644         .vidioc_s_fmt_vid_out           = vidioc_s_fmt,
645
646         .vidioc_reqbufs                 = vidioc_reqbufs,
647         .vidioc_querybuf                = vidioc_querybuf,
648
649         .vidioc_qbuf                    = vidioc_qbuf,
650         .vidioc_dqbuf                   = vidioc_dqbuf,
651
652         .vidioc_streamon                = vidioc_streamon,
653         .vidioc_streamoff               = vidioc_streamoff,
654
655         .vidioc_g_crop                  = vidioc_g_crop,
656         .vidioc_s_crop                  = vidioc_s_crop,
657         .vidioc_cropcap                 = vidioc_cropcap,
658 };
659
660 static struct video_device g2d_videodev = {
661         .name           = G2D_NAME,
662         .fops           = &g2d_fops,
663         .ioctl_ops      = &g2d_ioctl_ops,
664         .minor          = -1,
665         .release        = video_device_release,
666 };
667
668 static struct v4l2_m2m_ops g2d_m2m_ops = {
669         .device_run     = device_run,
670         .job_abort      = job_abort,
671         .lock           = g2d_lock,
672         .unlock         = g2d_unlock,
673 };
674
675 static int g2d_probe(struct platform_device *pdev)
676 {
677         struct g2d_dev *dev;
678         struct video_device *vfd;
679         struct resource *res;
680         int ret = 0;
681
682         dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
683         if (!dev)
684                 return -ENOMEM;
685
686         spin_lock_init(&dev->ctrl_lock);
687         mutex_init(&dev->mutex);
688         atomic_set(&dev->num_inst, 0);
689         init_waitqueue_head(&dev->irq_queue);
690
691         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
692
693         dev->regs = devm_request_and_ioremap(&pdev->dev, res);
694         if (dev->regs == NULL) {
695                         dev_err(&pdev->dev, "Failed to obtain io memory\n");
696                         return -ENOENT;
697         }
698
699         dev->clk = clk_get(&pdev->dev, "sclk_fimg2d");
700         if (IS_ERR_OR_NULL(dev->clk)) {
701                 dev_err(&pdev->dev, "failed to get g2d clock\n");
702                 return -ENXIO;
703         }
704
705         ret = clk_prepare(dev->clk);
706         if (ret) {
707                 dev_err(&pdev->dev, "failed to prepare g2d clock\n");
708                 goto put_clk;
709         }
710
711         dev->gate = clk_get(&pdev->dev, "fimg2d");
712         if (IS_ERR_OR_NULL(dev->gate)) {
713                 dev_err(&pdev->dev, "failed to get g2d clock gate\n");
714                 ret = -ENXIO;
715                 goto unprep_clk;
716         }
717
718         ret = clk_prepare(dev->gate);
719         if (ret) {
720                 dev_err(&pdev->dev, "failed to prepare g2d clock gate\n");
721                 goto put_clk_gate;
722         }
723
724         res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
725         if (!res) {
726                 dev_err(&pdev->dev, "failed to find IRQ\n");
727                 ret = -ENXIO;
728                 goto unprep_clk_gate;
729         }
730
731         dev->irq = res->start;
732
733         ret = devm_request_irq(&pdev->dev, dev->irq, g2d_isr,
734                                                 0, pdev->name, dev);
735         if (ret) {
736                 dev_err(&pdev->dev, "failed to install IRQ\n");
737                 goto put_clk_gate;
738         }
739
740         dev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
741         if (IS_ERR(dev->alloc_ctx)) {
742                 ret = PTR_ERR(dev->alloc_ctx);
743                 goto unprep_clk_gate;
744         }
745
746         ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
747         if (ret)
748                 goto alloc_ctx_cleanup;
749         vfd = video_device_alloc();
750         if (!vfd) {
751                 v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
752                 ret = -ENOMEM;
753                 goto unreg_v4l2_dev;
754         }
755         *vfd = g2d_videodev;
756         /* Locking in file operations other than ioctl should be done
757            by the driver, not the V4L2 core.
758            This driver needs auditing so that this flag can be removed. */
759         set_bit(V4L2_FL_LOCK_ALL_FOPS, &vfd->flags);
760         vfd->lock = &dev->mutex;
761         ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0);
762         if (ret) {
763                 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
764                 goto rel_vdev;
765         }
766         video_set_drvdata(vfd, dev);
767         snprintf(vfd->name, sizeof(vfd->name), "%s", g2d_videodev.name);
768         dev->vfd = vfd;
769         v4l2_info(&dev->v4l2_dev, "device registered as /dev/video%d\n",
770                                                                 vfd->num);
771         platform_set_drvdata(pdev, dev);
772         dev->m2m_dev = v4l2_m2m_init(&g2d_m2m_ops);
773         if (IS_ERR(dev->m2m_dev)) {
774                 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
775                 ret = PTR_ERR(dev->m2m_dev);
776                 goto unreg_video_dev;
777         }
778
779         def_frame.stride = (def_frame.width * def_frame.fmt->depth) >> 3;
780
781         return 0;
782
783 unreg_video_dev:
784         video_unregister_device(dev->vfd);
785 rel_vdev:
786         video_device_release(vfd);
787 unreg_v4l2_dev:
788         v4l2_device_unregister(&dev->v4l2_dev);
789 alloc_ctx_cleanup:
790         vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
791 unprep_clk_gate:
792         clk_unprepare(dev->gate);
793 put_clk_gate:
794         clk_put(dev->gate);
795 unprep_clk:
796         clk_unprepare(dev->clk);
797 put_clk:
798         clk_put(dev->clk);
799
800         return ret;
801 }
802
803 static int g2d_remove(struct platform_device *pdev)
804 {
805         struct g2d_dev *dev = (struct g2d_dev *)platform_get_drvdata(pdev);
806
807         v4l2_info(&dev->v4l2_dev, "Removing " G2D_NAME);
808         v4l2_m2m_release(dev->m2m_dev);
809         video_unregister_device(dev->vfd);
810         v4l2_device_unregister(&dev->v4l2_dev);
811         vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
812         clk_unprepare(dev->gate);
813         clk_put(dev->gate);
814         clk_unprepare(dev->clk);
815         clk_put(dev->clk);
816         return 0;
817 }
818
819 static struct platform_driver g2d_pdrv = {
820         .probe          = g2d_probe,
821         .remove         = g2d_remove,
822         .driver         = {
823                 .name = G2D_NAME,
824                 .owner = THIS_MODULE,
825         },
826 };
827
828 module_platform_driver(g2d_pdrv);
829
830 MODULE_AUTHOR("Kamil Debski <k.debski@samsung.com>");
831 MODULE_DESCRIPTION("S5P G2D 2d graphics accelerator driver");
832 MODULE_LICENSE("GPL");