2 * Samsung S5P G2D - 2D Graphics Accelerator Driver
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * Kamil Debski, <k.debski@samsung.com>
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
13 #include <linux/module.h>
15 #include <linux/timer.h>
16 #include <linux/sched.h>
17 #include <linux/slab.h>
18 #include <linux/clk.h>
19 #include <linux/interrupt.h>
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-v4l2.h>
27 #include <media/videobuf2-dma-contig.h>
32 #define fh2ctx(__fh) container_of(__fh, struct g2d_ctx, fh)
34 static struct g2d_fmt formats
[] = {
37 .fourcc
= V4L2_PIX_FMT_RGB32
,
39 .hw
= COLOR_MODE(ORDER_XRGB
, MODE_XRGB_8888
),
43 .fourcc
= V4L2_PIX_FMT_RGB565X
,
45 .hw
= COLOR_MODE(ORDER_XRGB
, MODE_RGB_565
),
49 .fourcc
= V4L2_PIX_FMT_RGB555X
,
51 .hw
= COLOR_MODE(ORDER_XRGB
, MODE_XRGB_1555
),
55 .fourcc
= V4L2_PIX_FMT_RGB444
,
57 .hw
= COLOR_MODE(ORDER_XRGB
, MODE_XRGB_4444
),
60 .name
= "PACKED_RGB_888",
61 .fourcc
= V4L2_PIX_FMT_RGB24
,
63 .hw
= COLOR_MODE(ORDER_XRGB
, MODE_PACKED_RGB_888
),
66 #define NUM_FORMATS ARRAY_SIZE(formats)
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
,
76 .right
= DEFAULT_WIDTH
,
77 .bottom
= DEFAULT_HEIGHT
,
80 static struct g2d_fmt
*find_fmt(struct v4l2_format
*f
)
83 for (i
= 0; i
< NUM_FORMATS
; i
++) {
84 if (formats
[i
].fourcc
== f
->fmt
.pix
.pixelformat
)
91 static struct g2d_frame
*get_frame(struct g2d_ctx
*ctx
,
92 enum v4l2_buf_type type
)
95 case V4L2_BUF_TYPE_VIDEO_OUTPUT
:
97 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
100 return ERR_PTR(-EINVAL
);
104 static int g2d_queue_setup(struct vb2_queue
*vq
,
105 unsigned int *nbuffers
, unsigned int *nplanes
,
106 unsigned int sizes
[], struct device
*alloc_devs
[])
108 struct g2d_ctx
*ctx
= vb2_get_drv_priv(vq
);
109 struct g2d_frame
*f
= get_frame(ctx
, vq
->type
);
123 static int g2d_buf_prepare(struct vb2_buffer
*vb
)
125 struct g2d_ctx
*ctx
= vb2_get_drv_priv(vb
->vb2_queue
);
126 struct g2d_frame
*f
= get_frame(ctx
, vb
->vb2_queue
->type
);
130 vb2_set_plane_payload(vb
, 0, f
->size
);
134 static void g2d_buf_queue(struct vb2_buffer
*vb
)
136 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
137 struct g2d_ctx
*ctx
= vb2_get_drv_priv(vb
->vb2_queue
);
138 v4l2_m2m_buf_queue(ctx
->fh
.m2m_ctx
, vbuf
);
141 static const struct vb2_ops g2d_qops
= {
142 .queue_setup
= g2d_queue_setup
,
143 .buf_prepare
= g2d_buf_prepare
,
144 .buf_queue
= g2d_buf_queue
,
145 .wait_prepare
= vb2_ops_wait_prepare
,
146 .wait_finish
= vb2_ops_wait_finish
,
149 static int queue_init(void *priv
, struct vb2_queue
*src_vq
,
150 struct vb2_queue
*dst_vq
)
152 struct g2d_ctx
*ctx
= priv
;
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 src_vq
->timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_COPY
;
162 src_vq
->lock
= &ctx
->dev
->mutex
;
163 src_vq
->dev
= ctx
->dev
->v4l2_dev
.dev
;
165 ret
= vb2_queue_init(src_vq
);
169 dst_vq
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
170 dst_vq
->io_modes
= VB2_MMAP
| VB2_USERPTR
;
171 dst_vq
->drv_priv
= ctx
;
172 dst_vq
->ops
= &g2d_qops
;
173 dst_vq
->mem_ops
= &vb2_dma_contig_memops
;
174 dst_vq
->buf_struct_size
= sizeof(struct v4l2_m2m_buffer
);
175 dst_vq
->timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_COPY
;
176 dst_vq
->lock
= &ctx
->dev
->mutex
;
177 dst_vq
->dev
= ctx
->dev
->v4l2_dev
.dev
;
179 return vb2_queue_init(dst_vq
);
182 static int g2d_s_ctrl(struct v4l2_ctrl
*ctrl
)
184 struct g2d_ctx
*ctx
= container_of(ctrl
->handler
, struct g2d_ctx
,
188 spin_lock_irqsave(&ctx
->dev
->ctrl_lock
, flags
);
190 case V4L2_CID_COLORFX
:
191 if (ctrl
->val
== V4L2_COLORFX_NEGATIVE
)
192 ctx
->rop
= ROP4_INVERT
;
194 ctx
->rop
= ROP4_COPY
;
198 ctx
->flip
= ctx
->ctrl_hflip
->val
| (ctx
->ctrl_vflip
->val
<< 1);
202 spin_unlock_irqrestore(&ctx
->dev
->ctrl_lock
, flags
);
206 static const struct v4l2_ctrl_ops g2d_ctrl_ops
= {
207 .s_ctrl
= g2d_s_ctrl
,
210 static int g2d_setup_ctrls(struct g2d_ctx
*ctx
)
212 struct g2d_dev
*dev
= ctx
->dev
;
214 v4l2_ctrl_handler_init(&ctx
->ctrl_handler
, 3);
216 ctx
->ctrl_hflip
= v4l2_ctrl_new_std(&ctx
->ctrl_handler
, &g2d_ctrl_ops
,
217 V4L2_CID_HFLIP
, 0, 1, 1, 0);
219 ctx
->ctrl_vflip
= v4l2_ctrl_new_std(&ctx
->ctrl_handler
, &g2d_ctrl_ops
,
220 V4L2_CID_VFLIP
, 0, 1, 1, 0);
222 v4l2_ctrl_new_std_menu(
226 V4L2_COLORFX_NEGATIVE
,
227 ~((1 << V4L2_COLORFX_NONE
) | (1 << V4L2_COLORFX_NEGATIVE
)),
230 if (ctx
->ctrl_handler
.error
) {
231 int err
= ctx
->ctrl_handler
.error
;
232 v4l2_err(&dev
->v4l2_dev
, "g2d_setup_ctrls failed\n");
233 v4l2_ctrl_handler_free(&ctx
->ctrl_handler
);
237 v4l2_ctrl_cluster(2, &ctx
->ctrl_hflip
);
242 static int g2d_open(struct file
*file
)
244 struct g2d_dev
*dev
= video_drvdata(file
);
245 struct g2d_ctx
*ctx
= NULL
;
248 ctx
= kzalloc(sizeof(*ctx
), GFP_KERNEL
);
252 /* Set default formats */
254 ctx
->out
= def_frame
;
256 if (mutex_lock_interruptible(&dev
->mutex
)) {
260 ctx
->fh
.m2m_ctx
= v4l2_m2m_ctx_init(dev
->m2m_dev
, ctx
, &queue_init
);
261 if (IS_ERR(ctx
->fh
.m2m_ctx
)) {
262 ret
= PTR_ERR(ctx
->fh
.m2m_ctx
);
263 mutex_unlock(&dev
->mutex
);
267 v4l2_fh_init(&ctx
->fh
, video_devdata(file
));
268 file
->private_data
= &ctx
->fh
;
269 v4l2_fh_add(&ctx
->fh
);
271 g2d_setup_ctrls(ctx
);
273 /* Write the default values to the ctx struct */
274 v4l2_ctrl_handler_setup(&ctx
->ctrl_handler
);
276 ctx
->fh
.ctrl_handler
= &ctx
->ctrl_handler
;
277 mutex_unlock(&dev
->mutex
);
279 v4l2_info(&dev
->v4l2_dev
, "instance opened\n");
283 static int g2d_release(struct file
*file
)
285 struct g2d_dev
*dev
= video_drvdata(file
);
286 struct g2d_ctx
*ctx
= fh2ctx(file
->private_data
);
288 v4l2_ctrl_handler_free(&ctx
->ctrl_handler
);
289 v4l2_fh_del(&ctx
->fh
);
290 v4l2_fh_exit(&ctx
->fh
);
292 v4l2_info(&dev
->v4l2_dev
, "instance closed\n");
297 static int vidioc_querycap(struct file
*file
, void *priv
,
298 struct v4l2_capability
*cap
)
300 strncpy(cap
->driver
, G2D_NAME
, sizeof(cap
->driver
) - 1);
301 strncpy(cap
->card
, G2D_NAME
, sizeof(cap
->card
) - 1);
302 cap
->bus_info
[0] = 0;
303 cap
->device_caps
= V4L2_CAP_VIDEO_M2M
| V4L2_CAP_STREAMING
;
304 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
308 static int vidioc_enum_fmt(struct file
*file
, void *prv
, struct v4l2_fmtdesc
*f
)
311 if (f
->index
>= NUM_FORMATS
)
313 fmt
= &formats
[f
->index
];
314 f
->pixelformat
= fmt
->fourcc
;
315 strncpy(f
->description
, fmt
->name
, sizeof(f
->description
) - 1);
319 static int vidioc_g_fmt(struct file
*file
, void *prv
, struct v4l2_format
*f
)
321 struct g2d_ctx
*ctx
= prv
;
322 struct vb2_queue
*vq
;
323 struct g2d_frame
*frm
;
325 vq
= v4l2_m2m_get_vq(ctx
->fh
.m2m_ctx
, f
->type
);
328 frm
= get_frame(ctx
, f
->type
);
332 f
->fmt
.pix
.width
= frm
->width
;
333 f
->fmt
.pix
.height
= frm
->height
;
334 f
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
335 f
->fmt
.pix
.pixelformat
= frm
->fmt
->fourcc
;
336 f
->fmt
.pix
.bytesperline
= (frm
->width
* frm
->fmt
->depth
) >> 3;
337 f
->fmt
.pix
.sizeimage
= frm
->size
;
341 static int vidioc_try_fmt(struct file
*file
, void *prv
, struct v4l2_format
*f
)
344 enum v4l2_field
*field
;
350 field
= &f
->fmt
.pix
.field
;
351 if (*field
== V4L2_FIELD_ANY
)
352 *field
= V4L2_FIELD_NONE
;
353 else if (*field
!= V4L2_FIELD_NONE
)
356 if (f
->fmt
.pix
.width
> MAX_WIDTH
)
357 f
->fmt
.pix
.width
= MAX_WIDTH
;
358 if (f
->fmt
.pix
.height
> MAX_HEIGHT
)
359 f
->fmt
.pix
.height
= MAX_HEIGHT
;
361 if (f
->fmt
.pix
.width
< 1)
362 f
->fmt
.pix
.width
= 1;
363 if (f
->fmt
.pix
.height
< 1)
364 f
->fmt
.pix
.height
= 1;
366 f
->fmt
.pix
.bytesperline
= (f
->fmt
.pix
.width
* fmt
->depth
) >> 3;
367 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
371 static int vidioc_s_fmt(struct file
*file
, void *prv
, struct v4l2_format
*f
)
373 struct g2d_ctx
*ctx
= prv
;
374 struct g2d_dev
*dev
= ctx
->dev
;
375 struct vb2_queue
*vq
;
376 struct g2d_frame
*frm
;
380 /* Adjust all values accordingly to the hardware capabilities
381 * and chosen format. */
382 ret
= vidioc_try_fmt(file
, prv
, f
);
385 vq
= v4l2_m2m_get_vq(ctx
->fh
.m2m_ctx
, f
->type
);
386 if (vb2_is_busy(vq
)) {
387 v4l2_err(&dev
->v4l2_dev
, "queue (%d) bust\n", f
->type
);
390 frm
= get_frame(ctx
, f
->type
);
396 frm
->width
= f
->fmt
.pix
.width
;
397 frm
->height
= f
->fmt
.pix
.height
;
398 frm
->size
= f
->fmt
.pix
.sizeimage
;
399 /* Reset crop settings */
402 frm
->c_width
= frm
->width
;
403 frm
->c_height
= frm
->height
;
404 frm
->right
= frm
->width
;
405 frm
->bottom
= frm
->height
;
407 frm
->stride
= f
->fmt
.pix
.bytesperline
;
411 static int vidioc_cropcap(struct file
*file
, void *priv
,
412 struct v4l2_cropcap
*cr
)
414 struct g2d_ctx
*ctx
= priv
;
417 f
= get_frame(ctx
, cr
->type
);
423 cr
->bounds
.width
= f
->width
;
424 cr
->bounds
.height
= f
->height
;
425 cr
->defrect
= cr
->bounds
;
429 static int vidioc_g_crop(struct file
*file
, void *prv
, struct v4l2_crop
*cr
)
431 struct g2d_ctx
*ctx
= prv
;
434 f
= get_frame(ctx
, cr
->type
);
438 cr
->c
.left
= f
->o_height
;
439 cr
->c
.top
= f
->o_width
;
440 cr
->c
.width
= f
->c_width
;
441 cr
->c
.height
= f
->c_height
;
445 static int vidioc_try_crop(struct file
*file
, void *prv
, const struct v4l2_crop
*cr
)
447 struct g2d_ctx
*ctx
= prv
;
448 struct g2d_dev
*dev
= ctx
->dev
;
451 f
= get_frame(ctx
, cr
->type
);
455 if (cr
->c
.top
< 0 || cr
->c
.left
< 0) {
456 v4l2_err(&dev
->v4l2_dev
,
457 "doesn't support negative values for top & left\n");
464 static int vidioc_s_crop(struct file
*file
, void *prv
, const struct v4l2_crop
*cr
)
466 struct g2d_ctx
*ctx
= prv
;
470 ret
= vidioc_try_crop(file
, prv
, cr
);
473 f
= get_frame(ctx
, cr
->type
);
477 f
->c_width
= cr
->c
.width
;
478 f
->c_height
= cr
->c
.height
;
479 f
->o_width
= cr
->c
.left
;
480 f
->o_height
= cr
->c
.top
;
481 f
->bottom
= f
->o_height
+ f
->c_height
;
482 f
->right
= f
->o_width
+ f
->c_width
;
486 static void device_run(void *prv
)
488 struct g2d_ctx
*ctx
= prv
;
489 struct g2d_dev
*dev
= ctx
->dev
;
490 struct vb2_buffer
*src
, *dst
;
496 src
= v4l2_m2m_next_src_buf(ctx
->fh
.m2m_ctx
);
497 dst
= v4l2_m2m_next_dst_buf(ctx
->fh
.m2m_ctx
);
499 clk_enable(dev
->gate
);
502 spin_lock_irqsave(&dev
->ctrl_lock
, flags
);
504 g2d_set_src_size(dev
, &ctx
->in
);
505 g2d_set_src_addr(dev
, vb2_dma_contig_plane_dma_addr(src
, 0));
507 g2d_set_dst_size(dev
, &ctx
->out
);
508 g2d_set_dst_addr(dev
, vb2_dma_contig_plane_dma_addr(dst
, 0));
510 g2d_set_rop4(dev
, ctx
->rop
);
511 g2d_set_flip(dev
, ctx
->flip
);
513 if (ctx
->in
.c_width
!= ctx
->out
.c_width
||
514 ctx
->in
.c_height
!= ctx
->out
.c_height
) {
515 if (dev
->variant
->hw_rev
== TYPE_G2D_3X
)
516 cmd
|= CMD_V3_ENABLE_STRETCH
;
518 g2d_set_v41_stretch(dev
, &ctx
->in
, &ctx
->out
);
521 g2d_set_cmd(dev
, cmd
);
524 spin_unlock_irqrestore(&dev
->ctrl_lock
, flags
);
527 static irqreturn_t
g2d_isr(int irq
, void *prv
)
529 struct g2d_dev
*dev
= prv
;
530 struct g2d_ctx
*ctx
= dev
->curr
;
531 struct vb2_v4l2_buffer
*src
, *dst
;
534 clk_disable(dev
->gate
);
538 src
= v4l2_m2m_src_buf_remove(ctx
->fh
.m2m_ctx
);
539 dst
= v4l2_m2m_dst_buf_remove(ctx
->fh
.m2m_ctx
);
544 dst
->timecode
= src
->timecode
;
545 dst
->vb2_buf
.timestamp
= src
->vb2_buf
.timestamp
;
546 dst
->flags
&= ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK
;
548 src
->flags
& V4L2_BUF_FLAG_TSTAMP_SRC_MASK
;
550 v4l2_m2m_buf_done(src
, VB2_BUF_STATE_DONE
);
551 v4l2_m2m_buf_done(dst
, VB2_BUF_STATE_DONE
);
552 v4l2_m2m_job_finish(dev
->m2m_dev
, ctx
->fh
.m2m_ctx
);
558 static const struct v4l2_file_operations g2d_fops
= {
559 .owner
= THIS_MODULE
,
561 .release
= g2d_release
,
562 .poll
= v4l2_m2m_fop_poll
,
563 .unlocked_ioctl
= video_ioctl2
,
564 .mmap
= v4l2_m2m_fop_mmap
,
567 static const struct v4l2_ioctl_ops g2d_ioctl_ops
= {
568 .vidioc_querycap
= vidioc_querycap
,
570 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt
,
571 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt
,
572 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt
,
573 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt
,
575 .vidioc_enum_fmt_vid_out
= vidioc_enum_fmt
,
576 .vidioc_g_fmt_vid_out
= vidioc_g_fmt
,
577 .vidioc_try_fmt_vid_out
= vidioc_try_fmt
,
578 .vidioc_s_fmt_vid_out
= vidioc_s_fmt
,
580 .vidioc_reqbufs
= v4l2_m2m_ioctl_reqbufs
,
581 .vidioc_querybuf
= v4l2_m2m_ioctl_querybuf
,
582 .vidioc_qbuf
= v4l2_m2m_ioctl_qbuf
,
583 .vidioc_dqbuf
= v4l2_m2m_ioctl_dqbuf
,
585 .vidioc_streamon
= v4l2_m2m_ioctl_streamon
,
586 .vidioc_streamoff
= v4l2_m2m_ioctl_streamoff
,
588 .vidioc_g_crop
= vidioc_g_crop
,
589 .vidioc_s_crop
= vidioc_s_crop
,
590 .vidioc_cropcap
= vidioc_cropcap
,
593 static const struct video_device g2d_videodev
= {
596 .ioctl_ops
= &g2d_ioctl_ops
,
598 .release
= video_device_release
,
599 .vfl_dir
= VFL_DIR_M2M
,
602 static const struct v4l2_m2m_ops g2d_m2m_ops
= {
603 .device_run
= device_run
,
606 static const struct of_device_id exynos_g2d_match
[];
608 static int g2d_probe(struct platform_device
*pdev
)
611 struct video_device
*vfd
;
612 struct resource
*res
;
613 const struct of_device_id
*of_id
;
616 dev
= devm_kzalloc(&pdev
->dev
, sizeof(*dev
), GFP_KERNEL
);
620 spin_lock_init(&dev
->ctrl_lock
);
621 mutex_init(&dev
->mutex
);
622 atomic_set(&dev
->num_inst
, 0);
624 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
626 dev
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
627 if (IS_ERR(dev
->regs
))
628 return PTR_ERR(dev
->regs
);
630 dev
->clk
= clk_get(&pdev
->dev
, "sclk_fimg2d");
631 if (IS_ERR(dev
->clk
)) {
632 dev_err(&pdev
->dev
, "failed to get g2d clock\n");
636 ret
= clk_prepare(dev
->clk
);
638 dev_err(&pdev
->dev
, "failed to prepare g2d clock\n");
642 dev
->gate
= clk_get(&pdev
->dev
, "fimg2d");
643 if (IS_ERR(dev
->gate
)) {
644 dev_err(&pdev
->dev
, "failed to get g2d clock gate\n");
649 ret
= clk_prepare(dev
->gate
);
651 dev_err(&pdev
->dev
, "failed to prepare g2d clock gate\n");
655 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
657 dev_err(&pdev
->dev
, "failed to find IRQ\n");
659 goto unprep_clk_gate
;
662 dev
->irq
= res
->start
;
664 ret
= devm_request_irq(&pdev
->dev
, dev
->irq
, g2d_isr
,
667 dev_err(&pdev
->dev
, "failed to install IRQ\n");
668 goto unprep_clk_gate
;
671 vb2_dma_contig_set_max_seg_size(&pdev
->dev
, DMA_BIT_MASK(32));
673 ret
= v4l2_device_register(&pdev
->dev
, &dev
->v4l2_dev
);
675 goto unprep_clk_gate
;
676 vfd
= video_device_alloc();
678 v4l2_err(&dev
->v4l2_dev
, "Failed to allocate video device\n");
683 vfd
->lock
= &dev
->mutex
;
684 vfd
->v4l2_dev
= &dev
->v4l2_dev
;
685 ret
= video_register_device(vfd
, VFL_TYPE_GRABBER
, 0);
687 v4l2_err(&dev
->v4l2_dev
, "Failed to register video device\n");
690 video_set_drvdata(vfd
, dev
);
692 v4l2_info(&dev
->v4l2_dev
, "device registered as /dev/video%d\n",
694 platform_set_drvdata(pdev
, dev
);
695 dev
->m2m_dev
= v4l2_m2m_init(&g2d_m2m_ops
);
696 if (IS_ERR(dev
->m2m_dev
)) {
697 v4l2_err(&dev
->v4l2_dev
, "Failed to init mem2mem device\n");
698 ret
= PTR_ERR(dev
->m2m_dev
);
699 goto unreg_video_dev
;
702 def_frame
.stride
= (def_frame
.width
* def_frame
.fmt
->depth
) >> 3;
704 of_id
= of_match_node(exynos_g2d_match
, pdev
->dev
.of_node
);
707 goto unreg_video_dev
;
709 dev
->variant
= (struct g2d_variant
*)of_id
->data
;
714 video_unregister_device(dev
->vfd
);
716 video_device_release(vfd
);
718 v4l2_device_unregister(&dev
->v4l2_dev
);
720 clk_unprepare(dev
->gate
);
724 clk_unprepare(dev
->clk
);
731 static int g2d_remove(struct platform_device
*pdev
)
733 struct g2d_dev
*dev
= platform_get_drvdata(pdev
);
735 v4l2_info(&dev
->v4l2_dev
, "Removing " G2D_NAME
);
736 v4l2_m2m_release(dev
->m2m_dev
);
737 video_unregister_device(dev
->vfd
);
738 v4l2_device_unregister(&dev
->v4l2_dev
);
739 vb2_dma_contig_clear_max_seg_size(&pdev
->dev
);
740 clk_unprepare(dev
->gate
);
742 clk_unprepare(dev
->clk
);
747 static struct g2d_variant g2d_drvdata_v3x
= {
748 .hw_rev
= TYPE_G2D_3X
, /* Revision 3.0 for S5PV210 and Exynos4210 */
751 static struct g2d_variant g2d_drvdata_v4x
= {
752 .hw_rev
= TYPE_G2D_4X
, /* Revision 4.1 for Exynos4X12 and Exynos5 */
755 static const struct of_device_id exynos_g2d_match
[] = {
757 .compatible
= "samsung,s5pv210-g2d",
758 .data
= &g2d_drvdata_v3x
,
760 .compatible
= "samsung,exynos4212-g2d",
761 .data
= &g2d_drvdata_v4x
,
765 MODULE_DEVICE_TABLE(of
, exynos_g2d_match
);
767 static struct platform_driver g2d_pdrv
= {
769 .remove
= g2d_remove
,
772 .of_match_table
= exynos_g2d_match
,
776 module_platform_driver(g2d_pdrv
);
778 MODULE_AUTHOR("Kamil Debski <k.debski@samsung.com>");
779 MODULE_DESCRIPTION("S5P G2D 2d graphics accelerator driver");
780 MODULE_LICENSE("GPL");