2 * i.MX6 Video Data Order Adapter (VDOA)
4 * Copyright (C) 2014 Philipp Zabel
5 * Copyright (C) 2016 Pengutronix, Michael Tretter <kernel@pengutronix.de>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2, as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/clk.h>
18 #include <linux/device.h>
19 #include <linux/interrupt.h>
20 #include <linux/module.h>
21 #include <linux/mod_devicetable.h>
22 #include <linux/dma-mapping.h>
23 #include <linux/platform_device.h>
24 #include <linux/videodev2.h>
25 #include <linux/slab.h>
29 #define VDOA_NAME "imx-vdoa"
36 #define VDOAIEBA00 0x14
37 #define VDOAIEBA01 0x18
38 #define VDOAIEBA02 0x1c
39 #define VDOAIEBA10 0x20
40 #define VDOAIEBA11 0x24
41 #define VDOAIEBA12 0x28
44 #define VDOAVEBA0 0x34
45 #define VDOAVEBA1 0x38
46 #define VDOAVEBA2 0x3c
50 #define VDOAC_ISEL BIT(6)
51 #define VDOAC_PFS BIT(5)
52 #define VDOAC_SO BIT(4)
53 #define VDOAC_SYNC BIT(3)
54 #define VDOAC_NF BIT(2)
55 #define VDOAC_BNDM_MASK 0x3
56 #define VDOAC_BAND_HEIGHT_8 0x0
57 #define VDOAC_BAND_HEIGHT_16 0x1
58 #define VDOAC_BAND_HEIGHT_32 0x2
60 #define VDOASRR_START BIT(1)
61 #define VDOASRR_SWRST BIT(0)
63 #define VDOAIE_EITERR BIT(1)
64 #define VDOAIE_EIEOT BIT(0)
66 #define VDOAIST_TERR BIT(1)
67 #define VDOAIST_EOT BIT(0)
69 #define VDOAFP_FH_MASK (0x1fff << 16)
70 #define VDOAFP_FW_MASK (0x3fff)
72 #define VDOASL_VSLY_MASK (0x3fff << 16)
73 #define VDOASL_ISLY_MASK (0x7fff)
75 #define VDOASR_ERRW BIT(4)
76 #define VDOASR_EOB BIT(3)
77 #define VDOASR_CURRENT_FRAME (0x3 << 1)
78 #define VDOASR_CURRENT_BUFFER BIT(1)
86 struct vdoa_ctx
*curr_ctx
;
95 unsigned int bytesperline
;
96 unsigned int sizeimage
;
101 struct vdoa_data
*vdoa
;
102 struct completion completion
;
103 struct vdoa_q_data q_data
[2];
104 unsigned int submitted_job
;
105 unsigned int completed_job
;
108 static irqreturn_t
vdoa_irq_handler(int irq
, void *data
)
110 struct vdoa_data
*vdoa
= data
;
111 struct vdoa_ctx
*curr_ctx
;
114 /* Disable interrupts */
115 writel(0, vdoa
->regs
+ VDOAIE
);
117 curr_ctx
= vdoa
->curr_ctx
;
120 "Instance released before the end of transaction\n");
124 val
= readl(vdoa
->regs
+ VDOAIST
);
125 writel(val
, vdoa
->regs
+ VDOAIST
);
126 if (val
& VDOAIST_TERR
) {
127 val
= readl(vdoa
->regs
+ VDOASR
) & VDOASR_ERRW
;
128 dev_err(vdoa
->dev
, "AXI %s error\n", val
? "write" : "read");
129 } else if (!(val
& VDOAIST_EOT
)) {
130 dev_warn(vdoa
->dev
, "Spurious interrupt\n");
132 curr_ctx
->completed_job
++;
133 complete(&curr_ctx
->completion
);
138 int vdoa_wait_for_completion(struct vdoa_ctx
*ctx
)
140 struct vdoa_data
*vdoa
= ctx
->vdoa
;
142 if (ctx
->submitted_job
== ctx
->completed_job
)
145 if (!wait_for_completion_timeout(&ctx
->completion
,
146 msecs_to_jiffies(300))) {
148 "Timeout waiting for transfer result\n");
154 EXPORT_SYMBOL(vdoa_wait_for_completion
);
156 void vdoa_device_run(struct vdoa_ctx
*ctx
, dma_addr_t dst
, dma_addr_t src
)
158 struct vdoa_q_data
*src_q_data
, *dst_q_data
;
159 struct vdoa_data
*vdoa
= ctx
->vdoa
;
163 vdoa_wait_for_completion(vdoa
->curr_ctx
);
165 vdoa
->curr_ctx
= ctx
;
167 reinit_completion(&ctx
->completion
);
168 ctx
->submitted_job
++;
170 src_q_data
= &ctx
->q_data
[V4L2_M2M_SRC
];
171 dst_q_data
= &ctx
->q_data
[V4L2_M2M_DST
];
173 /* Progressive, no sync, 1 frame per run */
174 if (dst_q_data
->pixelformat
== V4L2_PIX_FMT_YUYV
)
178 writel(val
, vdoa
->regs
+ VDOAC
);
180 writel(dst_q_data
->height
<< 16 | dst_q_data
->width
,
181 vdoa
->regs
+ VDOAFP
);
184 writel(val
, vdoa
->regs
+ VDOAIEBA00
);
186 writel(src_q_data
->bytesperline
<< 16 | dst_q_data
->bytesperline
,
187 vdoa
->regs
+ VDOASL
);
189 if (dst_q_data
->pixelformat
== V4L2_PIX_FMT_NV12
||
190 dst_q_data
->pixelformat
== V4L2_PIX_FMT_NV21
)
191 val
= dst_q_data
->bytesperline
* dst_q_data
->height
;
194 writel(val
, vdoa
->regs
+ VDOAIUBO
);
197 writel(val
, vdoa
->regs
+ VDOAVEBA0
);
198 val
= round_up(src_q_data
->bytesperline
* src_q_data
->height
, 4096);
199 writel(val
, vdoa
->regs
+ VDOAVUBO
);
201 /* Enable interrupts and start transfer */
202 writel(VDOAIE_EITERR
| VDOAIE_EIEOT
, vdoa
->regs
+ VDOAIE
);
203 writel(VDOASRR_START
, vdoa
->regs
+ VDOASRR
);
205 EXPORT_SYMBOL(vdoa_device_run
);
207 struct vdoa_ctx
*vdoa_context_create(struct vdoa_data
*vdoa
)
209 struct vdoa_ctx
*ctx
;
212 ctx
= kzalloc(sizeof(*ctx
), GFP_KERNEL
);
216 err
= clk_prepare_enable(vdoa
->vdoa_clk
);
222 init_completion(&ctx
->completion
);
227 EXPORT_SYMBOL(vdoa_context_create
);
229 void vdoa_context_destroy(struct vdoa_ctx
*ctx
)
231 struct vdoa_data
*vdoa
= ctx
->vdoa
;
233 if (vdoa
->curr_ctx
== ctx
) {
234 vdoa_wait_for_completion(vdoa
->curr_ctx
);
235 vdoa
->curr_ctx
= NULL
;
238 clk_disable_unprepare(vdoa
->vdoa_clk
);
241 EXPORT_SYMBOL(vdoa_context_destroy
);
243 int vdoa_context_configure(struct vdoa_ctx
*ctx
,
244 unsigned int width
, unsigned int height
,
247 struct vdoa_q_data
*src_q_data
;
248 struct vdoa_q_data
*dst_q_data
;
250 if (width
< 16 || width
> 8192 || width
% 16 != 0 ||
251 height
< 16 || height
> 4096 || height
% 16 != 0)
254 if (pixelformat
!= V4L2_PIX_FMT_YUYV
&&
255 pixelformat
!= V4L2_PIX_FMT_NV12
)
258 /* If no context is passed, only check if the format is valid */
262 src_q_data
= &ctx
->q_data
[V4L2_M2M_SRC
];
263 dst_q_data
= &ctx
->q_data
[V4L2_M2M_DST
];
265 src_q_data
->width
= width
;
266 src_q_data
->height
= height
;
267 src_q_data
->bytesperline
= width
;
268 src_q_data
->sizeimage
=
269 round_up(src_q_data
->bytesperline
* height
, 4096) +
270 src_q_data
->bytesperline
* height
/ 2;
272 dst_q_data
->width
= width
;
273 dst_q_data
->height
= height
;
274 dst_q_data
->pixelformat
= pixelformat
;
275 switch (pixelformat
) {
276 case V4L2_PIX_FMT_YUYV
:
277 dst_q_data
->bytesperline
= width
* 2;
278 dst_q_data
->sizeimage
= dst_q_data
->bytesperline
* height
;
280 case V4L2_PIX_FMT_NV12
:
282 dst_q_data
->bytesperline
= width
;
283 dst_q_data
->sizeimage
=
284 dst_q_data
->bytesperline
* height
* 3 / 2;
290 EXPORT_SYMBOL(vdoa_context_configure
);
292 static int vdoa_probe(struct platform_device
*pdev
)
294 struct vdoa_data
*vdoa
;
295 struct resource
*res
;
298 dma_set_coherent_mask(&pdev
->dev
, DMA_BIT_MASK(32));
300 vdoa
= devm_kzalloc(&pdev
->dev
, sizeof(*vdoa
), GFP_KERNEL
);
304 vdoa
->dev
= &pdev
->dev
;
306 vdoa
->vdoa_clk
= devm_clk_get(vdoa
->dev
, NULL
);
307 if (IS_ERR(vdoa
->vdoa_clk
)) {
308 dev_err(vdoa
->dev
, "Failed to get clock\n");
309 return PTR_ERR(vdoa
->vdoa_clk
);
312 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
313 vdoa
->regs
= devm_ioremap_resource(vdoa
->dev
, res
);
314 if (IS_ERR(vdoa
->regs
))
315 return PTR_ERR(vdoa
->regs
);
317 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
320 ret
= devm_request_threaded_irq(&pdev
->dev
, res
->start
, NULL
,
321 vdoa_irq_handler
, IRQF_ONESHOT
,
324 dev_err(vdoa
->dev
, "Failed to get irq\n");
328 platform_set_drvdata(pdev
, vdoa
);
333 static int vdoa_remove(struct platform_device
*pdev
)
338 static const struct of_device_id vdoa_dt_ids
[] = {
339 { .compatible
= "fsl,imx6q-vdoa" },
342 MODULE_DEVICE_TABLE(of
, vdoa_dt_ids
);
344 static struct platform_driver vdoa_driver
= {
346 .remove
= vdoa_remove
,
349 .of_match_table
= vdoa_dt_ids
,
353 module_platform_driver(vdoa_driver
);
355 MODULE_DESCRIPTION("Video Data Order Adapter");
356 MODULE_AUTHOR("Philipp Zabel <philipp.zabel@gmail.com>");
357 MODULE_ALIAS("platform:imx-vdoa");
358 MODULE_LICENSE("GPL");