perf tools: Don't clone maps from parent when synthesizing forks
[linux/fpc-iii.git] / drivers / media / platform / coda / imx-vdoa.c
blob96ab4b61669a364476a2897ca19f6db2685ecbb6
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/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>
27 #include "imx-vdoa.h"
29 #define VDOA_NAME "imx-vdoa"
31 #define VDOAC 0x00
32 #define VDOASRR 0x04
33 #define VDOAIE 0x08
34 #define VDOAIST 0x0c
35 #define VDOAFP 0x10
36 #define VDOAIEBA00 0x14
37 #define VDOAIEBA01 0x18
38 #define VDOAIEBA02 0x1c
39 #define VDOAIEBA10 0x20
40 #define VDOAIEBA11 0x24
41 #define VDOAIEBA12 0x28
42 #define VDOASL 0x2c
43 #define VDOAIUBO 0x30
44 #define VDOAVEBA0 0x34
45 #define VDOAVEBA1 0x38
46 #define VDOAVEBA2 0x3c
47 #define VDOAVUBO 0x40
48 #define VDOASR 0x44
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)
80 enum {
81 V4L2_M2M_SRC = 0,
82 V4L2_M2M_DST = 1,
85 struct vdoa_data {
86 struct vdoa_ctx *curr_ctx;
87 struct device *dev;
88 struct clk *vdoa_clk;
89 void __iomem *regs;
92 struct vdoa_q_data {
93 unsigned int width;
94 unsigned int height;
95 unsigned int bytesperline;
96 unsigned int sizeimage;
97 u32 pixelformat;
100 struct vdoa_ctx {
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;
112 u32 val;
114 /* Disable interrupts */
115 writel(0, vdoa->regs + VDOAIE);
117 curr_ctx = vdoa->curr_ctx;
118 if (!curr_ctx) {
119 dev_warn(vdoa->dev,
120 "Instance released before the end of transaction\n");
121 return IRQ_HANDLED;
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);
135 return IRQ_HANDLED;
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)
143 return 0;
145 if (!wait_for_completion_timeout(&ctx->completion,
146 msecs_to_jiffies(300))) {
147 dev_err(vdoa->dev,
148 "Timeout waiting for transfer result\n");
149 return -ETIMEDOUT;
152 return 0;
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;
160 u32 val;
162 if (vdoa->curr_ctx)
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)
175 val = VDOAC_PFS;
176 else
177 val = 0;
178 writel(val, vdoa->regs + VDOAC);
180 writel(dst_q_data->height << 16 | dst_q_data->width,
181 vdoa->regs + VDOAFP);
183 val = dst;
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;
192 else
193 val = 0;
194 writel(val, vdoa->regs + VDOAIUBO);
196 val = src;
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;
210 int err;
212 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
213 if (!ctx)
214 return NULL;
216 err = clk_prepare_enable(vdoa->vdoa_clk);
217 if (err) {
218 kfree(ctx);
219 return NULL;
222 init_completion(&ctx->completion);
223 ctx->vdoa = vdoa;
225 return ctx;
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);
239 kfree(ctx);
241 EXPORT_SYMBOL(vdoa_context_destroy);
243 int vdoa_context_configure(struct vdoa_ctx *ctx,
244 unsigned int width, unsigned int height,
245 u32 pixelformat)
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)
252 return -EINVAL;
254 if (pixelformat != V4L2_PIX_FMT_YUYV &&
255 pixelformat != V4L2_PIX_FMT_NV12)
256 return -EINVAL;
258 /* If no context is passed, only check if the format is valid */
259 if (!ctx)
260 return 0;
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;
279 break;
280 case V4L2_PIX_FMT_NV12:
281 default:
282 dst_q_data->bytesperline = width;
283 dst_q_data->sizeimage =
284 dst_q_data->bytesperline * height * 3 / 2;
285 break;
288 return 0;
290 EXPORT_SYMBOL(vdoa_context_configure);
292 static int vdoa_probe(struct platform_device *pdev)
294 struct vdoa_data *vdoa;
295 struct resource *res;
296 int ret;
298 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
300 vdoa = devm_kzalloc(&pdev->dev, sizeof(*vdoa), GFP_KERNEL);
301 if (!vdoa)
302 return -ENOMEM;
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);
318 if (!res)
319 return -EINVAL;
320 ret = devm_request_threaded_irq(&pdev->dev, res->start, NULL,
321 vdoa_irq_handler, IRQF_ONESHOT,
322 "vdoa", vdoa);
323 if (ret < 0) {
324 dev_err(vdoa->dev, "Failed to get irq\n");
325 return ret;
328 platform_set_drvdata(pdev, vdoa);
330 return 0;
333 static int vdoa_remove(struct platform_device *pdev)
335 return 0;
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 = {
345 .probe = vdoa_probe,
346 .remove = vdoa_remove,
347 .driver = {
348 .name = VDOA_NAME,
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");