Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / media / platform / coda / imx-vdoa.c
blob85a66e4e2f9a92477d7c2465d29c0f4266dde757
1 /*
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/dma-mapping.h>
22 #include <linux/platform_device.h>
23 #include <linux/videodev2.h>
24 #include <linux/slab.h>
26 #include "imx-vdoa.h"
28 #define VDOA_NAME "imx-vdoa"
30 #define VDOAC 0x00
31 #define VDOASRR 0x04
32 #define VDOAIE 0x08
33 #define VDOAIST 0x0c
34 #define VDOAFP 0x10
35 #define VDOAIEBA00 0x14
36 #define VDOAIEBA01 0x18
37 #define VDOAIEBA02 0x1c
38 #define VDOAIEBA10 0x20
39 #define VDOAIEBA11 0x24
40 #define VDOAIEBA12 0x28
41 #define VDOASL 0x2c
42 #define VDOAIUBO 0x30
43 #define VDOAVEBA0 0x34
44 #define VDOAVEBA1 0x38
45 #define VDOAVEBA2 0x3c
46 #define VDOAVUBO 0x40
47 #define VDOASR 0x44
49 #define VDOAC_ISEL BIT(6)
50 #define VDOAC_PFS BIT(5)
51 #define VDOAC_SO BIT(4)
52 #define VDOAC_SYNC BIT(3)
53 #define VDOAC_NF BIT(2)
54 #define VDOAC_BNDM_MASK 0x3
55 #define VDOAC_BAND_HEIGHT_8 0x0
56 #define VDOAC_BAND_HEIGHT_16 0x1
57 #define VDOAC_BAND_HEIGHT_32 0x2
59 #define VDOASRR_START BIT(1)
60 #define VDOASRR_SWRST BIT(0)
62 #define VDOAIE_EITERR BIT(1)
63 #define VDOAIE_EIEOT BIT(0)
65 #define VDOAIST_TERR BIT(1)
66 #define VDOAIST_EOT BIT(0)
68 #define VDOAFP_FH_MASK (0x1fff << 16)
69 #define VDOAFP_FW_MASK (0x3fff)
71 #define VDOASL_VSLY_MASK (0x3fff << 16)
72 #define VDOASL_ISLY_MASK (0x7fff)
74 #define VDOASR_ERRW BIT(4)
75 #define VDOASR_EOB BIT(3)
76 #define VDOASR_CURRENT_FRAME (0x3 << 1)
77 #define VDOASR_CURRENT_BUFFER BIT(1)
79 enum {
80 V4L2_M2M_SRC = 0,
81 V4L2_M2M_DST = 1,
84 struct vdoa_data {
85 struct vdoa_ctx *curr_ctx;
86 struct device *dev;
87 struct clk *vdoa_clk;
88 void __iomem *regs;
91 struct vdoa_q_data {
92 unsigned int width;
93 unsigned int height;
94 unsigned int bytesperline;
95 unsigned int sizeimage;
96 u32 pixelformat;
99 struct vdoa_ctx {
100 struct vdoa_data *vdoa;
101 struct completion completion;
102 struct vdoa_q_data q_data[2];
103 unsigned int submitted_job;
104 unsigned int completed_job;
107 static irqreturn_t vdoa_irq_handler(int irq, void *data)
109 struct vdoa_data *vdoa = data;
110 struct vdoa_ctx *curr_ctx;
111 u32 val;
113 /* Disable interrupts */
114 writel(0, vdoa->regs + VDOAIE);
116 curr_ctx = vdoa->curr_ctx;
117 if (!curr_ctx) {
118 dev_warn(vdoa->dev,
119 "Instance released before the end of transaction\n");
120 return IRQ_HANDLED;
123 val = readl(vdoa->regs + VDOAIST);
124 writel(val, vdoa->regs + VDOAIST);
125 if (val & VDOAIST_TERR) {
126 val = readl(vdoa->regs + VDOASR) & VDOASR_ERRW;
127 dev_err(vdoa->dev, "AXI %s error\n", val ? "write" : "read");
128 } else if (!(val & VDOAIST_EOT)) {
129 dev_warn(vdoa->dev, "Spurious interrupt\n");
131 curr_ctx->completed_job++;
132 complete(&curr_ctx->completion);
134 return IRQ_HANDLED;
137 int vdoa_wait_for_completion(struct vdoa_ctx *ctx)
139 struct vdoa_data *vdoa = ctx->vdoa;
141 if (ctx->submitted_job == ctx->completed_job)
142 return 0;
144 if (!wait_for_completion_timeout(&ctx->completion,
145 msecs_to_jiffies(300))) {
146 dev_err(vdoa->dev,
147 "Timeout waiting for transfer result\n");
148 return -ETIMEDOUT;
151 return 0;
153 EXPORT_SYMBOL(vdoa_wait_for_completion);
155 void vdoa_device_run(struct vdoa_ctx *ctx, dma_addr_t dst, dma_addr_t src)
157 struct vdoa_q_data *src_q_data, *dst_q_data;
158 struct vdoa_data *vdoa = ctx->vdoa;
159 u32 val;
161 if (vdoa->curr_ctx)
162 vdoa_wait_for_completion(vdoa->curr_ctx);
164 vdoa->curr_ctx = ctx;
166 reinit_completion(&ctx->completion);
167 ctx->submitted_job++;
169 src_q_data = &ctx->q_data[V4L2_M2M_SRC];
170 dst_q_data = &ctx->q_data[V4L2_M2M_DST];
172 /* Progressive, no sync, 1 frame per run */
173 if (dst_q_data->pixelformat == V4L2_PIX_FMT_YUYV)
174 val = VDOAC_PFS;
175 else
176 val = 0;
177 writel(val, vdoa->regs + VDOAC);
179 writel(dst_q_data->height << 16 | dst_q_data->width,
180 vdoa->regs + VDOAFP);
182 val = dst;
183 writel(val, vdoa->regs + VDOAIEBA00);
185 writel(src_q_data->bytesperline << 16 | dst_q_data->bytesperline,
186 vdoa->regs + VDOASL);
188 if (dst_q_data->pixelformat == V4L2_PIX_FMT_NV12 ||
189 dst_q_data->pixelformat == V4L2_PIX_FMT_NV21)
190 val = dst_q_data->bytesperline * dst_q_data->height;
191 else
192 val = 0;
193 writel(val, vdoa->regs + VDOAIUBO);
195 val = src;
196 writel(val, vdoa->regs + VDOAVEBA0);
197 val = round_up(src_q_data->bytesperline * src_q_data->height, 4096);
198 writel(val, vdoa->regs + VDOAVUBO);
200 /* Enable interrupts and start transfer */
201 writel(VDOAIE_EITERR | VDOAIE_EIEOT, vdoa->regs + VDOAIE);
202 writel(VDOASRR_START, vdoa->regs + VDOASRR);
204 EXPORT_SYMBOL(vdoa_device_run);
206 struct vdoa_ctx *vdoa_context_create(struct vdoa_data *vdoa)
208 struct vdoa_ctx *ctx;
209 int err;
211 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
212 if (!ctx)
213 return NULL;
215 err = clk_prepare_enable(vdoa->vdoa_clk);
216 if (err) {
217 kfree(ctx);
218 return NULL;
221 init_completion(&ctx->completion);
222 ctx->vdoa = vdoa;
224 return ctx;
226 EXPORT_SYMBOL(vdoa_context_create);
228 void vdoa_context_destroy(struct vdoa_ctx *ctx)
230 struct vdoa_data *vdoa = ctx->vdoa;
232 if (vdoa->curr_ctx == ctx) {
233 vdoa_wait_for_completion(vdoa->curr_ctx);
234 vdoa->curr_ctx = NULL;
237 clk_disable_unprepare(vdoa->vdoa_clk);
238 kfree(ctx);
240 EXPORT_SYMBOL(vdoa_context_destroy);
242 int vdoa_context_configure(struct vdoa_ctx *ctx,
243 unsigned int width, unsigned int height,
244 u32 pixelformat)
246 struct vdoa_q_data *src_q_data;
247 struct vdoa_q_data *dst_q_data;
249 if (width < 16 || width > 8192 || width % 16 != 0 ||
250 height < 16 || height > 4096 || height % 16 != 0)
251 return -EINVAL;
253 if (pixelformat != V4L2_PIX_FMT_YUYV &&
254 pixelformat != V4L2_PIX_FMT_NV12)
255 return -EINVAL;
257 /* If no context is passed, only check if the format is valid */
258 if (!ctx)
259 return 0;
261 src_q_data = &ctx->q_data[V4L2_M2M_SRC];
262 dst_q_data = &ctx->q_data[V4L2_M2M_DST];
264 src_q_data->width = width;
265 src_q_data->height = height;
266 src_q_data->bytesperline = width;
267 src_q_data->sizeimage =
268 round_up(src_q_data->bytesperline * height, 4096) +
269 src_q_data->bytesperline * height / 2;
271 dst_q_data->width = width;
272 dst_q_data->height = height;
273 dst_q_data->pixelformat = pixelformat;
274 switch (pixelformat) {
275 case V4L2_PIX_FMT_YUYV:
276 dst_q_data->bytesperline = width * 2;
277 dst_q_data->sizeimage = dst_q_data->bytesperline * height;
278 break;
279 case V4L2_PIX_FMT_NV12:
280 default:
281 dst_q_data->bytesperline = width;
282 dst_q_data->sizeimage =
283 dst_q_data->bytesperline * height * 3 / 2;
284 break;
287 return 0;
289 EXPORT_SYMBOL(vdoa_context_configure);
291 static int vdoa_probe(struct platform_device *pdev)
293 struct vdoa_data *vdoa;
294 struct resource *res;
295 int ret;
297 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
299 vdoa = devm_kzalloc(&pdev->dev, sizeof(*vdoa), GFP_KERNEL);
300 if (!vdoa)
301 return -ENOMEM;
303 vdoa->dev = &pdev->dev;
305 vdoa->vdoa_clk = devm_clk_get(vdoa->dev, NULL);
306 if (IS_ERR(vdoa->vdoa_clk)) {
307 dev_err(vdoa->dev, "Failed to get clock\n");
308 return PTR_ERR(vdoa->vdoa_clk);
311 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
312 vdoa->regs = devm_ioremap_resource(vdoa->dev, res);
313 if (IS_ERR(vdoa->regs))
314 return PTR_ERR(vdoa->regs);
316 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
317 if (!res)
318 return -EINVAL;
319 ret = devm_request_threaded_irq(&pdev->dev, res->start, NULL,
320 vdoa_irq_handler, IRQF_ONESHOT,
321 "vdoa", vdoa);
322 if (ret < 0) {
323 dev_err(vdoa->dev, "Failed to get irq\n");
324 return ret;
327 platform_set_drvdata(pdev, vdoa);
329 return 0;
332 static int vdoa_remove(struct platform_device *pdev)
334 return 0;
337 static const struct of_device_id vdoa_dt_ids[] = {
338 { .compatible = "fsl,imx6q-vdoa" },
341 MODULE_DEVICE_TABLE(of, vdoa_dt_ids);
343 static struct platform_driver vdoa_driver = {
344 .probe = vdoa_probe,
345 .remove = vdoa_remove,
346 .driver = {
347 .name = VDOA_NAME,
348 .of_match_table = vdoa_dt_ids,
352 module_platform_driver(vdoa_driver);
354 MODULE_DESCRIPTION("Video Data Order Adapter");
355 MODULE_AUTHOR("Philipp Zabel <philipp.zabel@gmail.com>");
356 MODULE_ALIAS("platform:imx-vdoa");
357 MODULE_LICENSE("GPL");