blob: 6eaf88e88862f955558fbb04d7d593acf9aa044a [file] [log] [blame]
Javier Martin186b2502012-07-26 05:53:35 -03001/*
2 * Coda multi-standard codec IP
3 *
4 * Copyright (C) 2012 Vista Silicon S.L.
5 * Javier Martin, <javier.martin@vista-silicon.com>
6 * Xavier Duret
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/clk.h>
Philipp Zabelf61c0b12014-07-11 06:36:40 -030015#include <linux/debugfs.h>
Javier Martin186b2502012-07-26 05:53:35 -030016#include <linux/delay.h>
17#include <linux/firmware.h>
Philipp Zabel657eee72013-04-29 16:17:14 -070018#include <linux/genalloc.h>
Javier Martin186b2502012-07-26 05:53:35 -030019#include <linux/interrupt.h>
20#include <linux/io.h>
21#include <linux/irq.h>
Philipp Zabel9082a7c2013-06-21 03:55:31 -030022#include <linux/kfifo.h>
Javier Martin186b2502012-07-26 05:53:35 -030023#include <linux/module.h>
24#include <linux/of_device.h>
25#include <linux/platform_device.h>
Philipp Zabel1e172732014-07-11 06:36:23 -030026#include <linux/pm_runtime.h>
Javier Martin186b2502012-07-26 05:53:35 -030027#include <linux/slab.h>
28#include <linux/videodev2.h>
29#include <linux/of.h>
Philipp Zabel657eee72013-04-29 16:17:14 -070030#include <linux/platform_data/coda.h>
Philipp Zabel8f452842014-07-11 06:36:35 -030031#include <linux/reset.h>
Javier Martin186b2502012-07-26 05:53:35 -030032
33#include <media/v4l2-ctrls.h>
34#include <media/v4l2-device.h>
Philipp Zabel918c66f2013-06-27 06:59:01 -030035#include <media/v4l2-event.h>
Javier Martin186b2502012-07-26 05:53:35 -030036#include <media/v4l2-ioctl.h>
37#include <media/v4l2-mem2mem.h>
38#include <media/videobuf2-core.h>
39#include <media/videobuf2-dma-contig.h>
40
Philipp Zabela2b3e462014-07-23 12:28:39 -030041#include "coda.h"
Javier Martin186b2502012-07-26 05:53:35 -030042
43#define CODA_NAME "coda"
44
Philipp Zabel0cddc7e2013-09-30 10:34:44 -030045#define CODADX6_MAX_INSTANCES 4
Philipp Zabel2c11d1b2014-10-02 14:08:28 -030046#define CODA_MAX_FORMATS 4
Javier Martin186b2502012-07-26 05:53:35 -030047
Javier Martin186b2502012-07-26 05:53:35 -030048#define CODA_PARA_BUF_SIZE (10 * 1024)
49#define CODA_ISRAM_SIZE (2048 * 2)
50
Javier Martin186b2502012-07-26 05:53:35 -030051#define MIN_W 176
52#define MIN_H 144
Javier Martin186b2502012-07-26 05:53:35 -030053
54#define S_ALIGN 1 /* multiple of 2 */
55#define W_ALIGN 1 /* multiple of 2 */
56#define H_ALIGN 1 /* multiple of 2 */
57
58#define fh_to_ctx(__fh) container_of(__fh, struct coda_ctx, fh)
59
Philipp Zabel79924ca2014-07-23 12:28:45 -030060int coda_debug;
Philipp Zabelc4eb1bfc2013-05-21 04:24:16 -030061module_param(coda_debug, int, 0644);
Philipp Zabeld60b18b2014-08-05 14:00:15 -030062MODULE_PARM_DESC(coda_debug, "Debug level (0-2)");
Javier Martin186b2502012-07-26 05:53:35 -030063
Javier Martin186b2502012-07-26 05:53:35 -030064struct coda_fmt {
65 char *name;
66 u32 fourcc;
Philipp Zabelb96904e2013-05-23 10:42:58 -030067};
68
Philipp Zabela2b3e462014-07-23 12:28:39 -030069void coda_write(struct coda_dev *dev, u32 data, u32 reg)
Javier Martin186b2502012-07-26 05:53:35 -030070{
Philipp Zabeld60b18b2014-08-05 14:00:15 -030071 v4l2_dbg(2, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -030072 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
73 writel(data, dev->regs_base + reg);
74}
75
Philipp Zabela2b3e462014-07-23 12:28:39 -030076unsigned int coda_read(struct coda_dev *dev, u32 reg)
Javier Martin186b2502012-07-26 05:53:35 -030077{
78 u32 data;
Philipp Zabelf23797b2014-08-06 08:02:23 -030079
Javier Martin186b2502012-07-26 05:53:35 -030080 data = readl(dev->regs_base + reg);
Philipp Zabeld60b18b2014-08-05 14:00:15 -030081 v4l2_dbg(2, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -030082 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
83 return data;
84}
85
Philipp Zabel856d7d92014-09-29 09:53:44 -030086void coda_write_base(struct coda_ctx *ctx, struct coda_q_data *q_data,
87 struct vb2_buffer *buf, unsigned int reg_y)
88{
89 u32 base_y = vb2_dma_contig_plane_dma_addr(buf, 0);
90 u32 base_cb, base_cr;
91
92 switch (q_data->fourcc) {
93 case V4L2_PIX_FMT_YVU420:
94 /* Switch Cb and Cr for YVU420 format */
95 base_cr = base_y + q_data->bytesperline * q_data->height;
96 base_cb = base_cr + q_data->bytesperline * q_data->height / 4;
97 break;
98 case V4L2_PIX_FMT_YUV420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -030099 case V4L2_PIX_FMT_NV12:
Philipp Zabel856d7d92014-09-29 09:53:44 -0300100 default:
101 base_cb = base_y + q_data->bytesperline * q_data->height;
102 base_cr = base_cb + q_data->bytesperline * q_data->height / 4;
103 break;
Philipp Zabel4de69312014-10-02 14:08:26 -0300104 case V4L2_PIX_FMT_YUV422P:
105 base_cb = base_y + q_data->bytesperline * q_data->height;
106 base_cr = base_cb + q_data->bytesperline * q_data->height / 2;
Philipp Zabel856d7d92014-09-29 09:53:44 -0300107 }
108
109 coda_write(ctx->dev, base_y, reg_y);
110 coda_write(ctx->dev, base_cb, reg_y + 4);
111 coda_write(ctx->dev, base_cr, reg_y + 8);
112}
113
Javier Martin186b2502012-07-26 05:53:35 -0300114/*
Philipp Zabelb96904e2013-05-23 10:42:58 -0300115 * Array of all formats supported by any version of Coda:
Javier Martin186b2502012-07-26 05:53:35 -0300116 */
Philipp Zabel814c3762014-07-18 07:22:45 -0300117static const struct coda_fmt coda_formats[] = {
Javier Martin186b2502012-07-26 05:53:35 -0300118 {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300119 .name = "YUV 4:2:0 Planar, YCbCr",
Javier Martin186b2502012-07-26 05:53:35 -0300120 .fourcc = V4L2_PIX_FMT_YUV420,
Philipp Zabelb96904e2013-05-23 10:42:58 -0300121 },
122 {
123 .name = "YUV 4:2:0 Planar, YCrCb",
124 .fourcc = V4L2_PIX_FMT_YVU420,
Javier Martin186b2502012-07-26 05:53:35 -0300125 },
126 {
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300127 .name = "YUV 4:2:0 Partial interleaved Y/CbCr",
128 .fourcc = V4L2_PIX_FMT_NV12,
129 },
130 {
Philipp Zabel4de69312014-10-02 14:08:26 -0300131 .name = "YUV 4:2:2 Planar, YCbCr",
132 .fourcc = V4L2_PIX_FMT_YUV422P,
133 },
134 {
Javier Martin186b2502012-07-26 05:53:35 -0300135 .name = "H264 Encoded Stream",
136 .fourcc = V4L2_PIX_FMT_H264,
Javier Martin186b2502012-07-26 05:53:35 -0300137 },
138 {
139 .name = "MPEG4 Encoded Stream",
140 .fourcc = V4L2_PIX_FMT_MPEG4,
Javier Martin186b2502012-07-26 05:53:35 -0300141 },
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300142 {
143 .name = "JPEG Encoded Images",
144 .fourcc = V4L2_PIX_FMT_JPEG,
145 },
Javier Martin186b2502012-07-26 05:53:35 -0300146};
147
Philipp Zabelb96904e2013-05-23 10:42:58 -0300148#define CODA_CODEC(mode, src_fourcc, dst_fourcc, max_w, max_h) \
149 { mode, src_fourcc, dst_fourcc, max_w, max_h }
150
151/*
152 * Arrays of codecs supported by each given version of Coda:
153 * i.MX27 -> codadx6
154 * i.MX5x -> coda7
155 * i.MX6 -> coda960
156 * Use V4L2_PIX_FMT_YUV420 as placeholder for all supported YUV 4:2:0 variants
157 */
Philipp Zabel814c3762014-07-18 07:22:45 -0300158static const struct coda_codec codadx6_codecs[] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300159 CODA_CODEC(CODADX6_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 720, 576),
160 CODA_CODEC(CODADX6_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 720, 576),
Philipp Zabeldf1e74c2012-07-02 06:07:10 -0300161};
162
Philipp Zabel814c3762014-07-18 07:22:45 -0300163static const struct coda_codec coda7_codecs[] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300164 CODA_CODEC(CODA7_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1280, 720),
165 CODA_CODEC(CODA7_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1280, 720),
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300166 CODA_CODEC(CODA7_MODE_ENCODE_MJPG, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_JPEG, 8192, 8192),
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300167 CODA_CODEC(CODA7_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1088),
168 CODA_CODEC(CODA7_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300169 CODA_CODEC(CODA7_MODE_DECODE_MJPG, V4L2_PIX_FMT_JPEG, V4L2_PIX_FMT_YUV420, 8192, 8192),
Philipp Zabelb96904e2013-05-23 10:42:58 -0300170};
171
Philipp Zabel814c3762014-07-18 07:22:45 -0300172static const struct coda_codec coda9_codecs[] = {
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300173 CODA_CODEC(CODA9_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1920, 1088),
174 CODA_CODEC(CODA9_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1920, 1088),
175 CODA_CODEC(CODA9_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1088),
176 CODA_CODEC(CODA9_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabel89548442014-07-11 06:36:17 -0300177};
178
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300179struct coda_video_device {
180 const char *name;
181 enum coda_inst_type type;
182 const struct coda_context_ops *ops;
183 u32 src_formats[CODA_MAX_FORMATS];
184 u32 dst_formats[CODA_MAX_FORMATS];
185};
186
187static const struct coda_video_device coda_bit_encoder = {
188 .name = "coda-encoder",
189 .type = CODA_INST_ENCODER,
190 .ops = &coda_bit_encode_ops,
191 .src_formats = {
192 V4L2_PIX_FMT_YUV420,
193 V4L2_PIX_FMT_YVU420,
194 V4L2_PIX_FMT_NV12,
195 },
196 .dst_formats = {
197 V4L2_PIX_FMT_H264,
198 V4L2_PIX_FMT_MPEG4,
199 },
200};
201
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300202static const struct coda_video_device coda_bit_jpeg_encoder = {
203 .name = "coda-jpeg-encoder",
204 .type = CODA_INST_ENCODER,
205 .ops = &coda_bit_encode_ops,
206 .src_formats = {
207 V4L2_PIX_FMT_YUV420,
208 V4L2_PIX_FMT_YVU420,
209 V4L2_PIX_FMT_NV12,
210 V4L2_PIX_FMT_YUV422P,
211 },
212 .dst_formats = {
213 V4L2_PIX_FMT_JPEG,
214 },
215};
216
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300217static const struct coda_video_device coda_bit_decoder = {
218 .name = "coda-decoder",
219 .type = CODA_INST_DECODER,
220 .ops = &coda_bit_decode_ops,
221 .src_formats = {
222 V4L2_PIX_FMT_H264,
223 V4L2_PIX_FMT_MPEG4,
224 },
225 .dst_formats = {
226 V4L2_PIX_FMT_YUV420,
227 V4L2_PIX_FMT_YVU420,
228 V4L2_PIX_FMT_NV12,
229 },
230};
231
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300232static const struct coda_video_device coda_bit_jpeg_decoder = {
233 .name = "coda-jpeg-decoder",
234 .type = CODA_INST_DECODER,
235 .ops = &coda_bit_decode_ops,
236 .src_formats = {
237 V4L2_PIX_FMT_JPEG,
238 },
239 .dst_formats = {
240 V4L2_PIX_FMT_YUV420,
241 V4L2_PIX_FMT_YVU420,
242 V4L2_PIX_FMT_NV12,
243 V4L2_PIX_FMT_YUV422P,
244 },
245};
246
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300247static const struct coda_video_device *codadx6_video_devices[] = {
248 &coda_bit_encoder,
249};
250
251static const struct coda_video_device *coda7_video_devices[] = {
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300252 &coda_bit_jpeg_encoder,
253 &coda_bit_jpeg_decoder,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300254 &coda_bit_encoder,
255 &coda_bit_decoder,
256};
257
258static const struct coda_video_device *coda9_video_devices[] = {
259 &coda_bit_encoder,
260 &coda_bit_decoder,
261};
262
Philipp Zabelb96904e2013-05-23 10:42:58 -0300263static bool coda_format_is_yuv(u32 fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300264{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300265 switch (fourcc) {
266 case V4L2_PIX_FMT_YUV420:
267 case V4L2_PIX_FMT_YVU420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300268 case V4L2_PIX_FMT_NV12:
Philipp Zabel4de69312014-10-02 14:08:26 -0300269 case V4L2_PIX_FMT_YUV422P:
Philipp Zabelb96904e2013-05-23 10:42:58 -0300270 return true;
271 default:
272 return false;
273 }
274}
Javier Martin186b2502012-07-26 05:53:35 -0300275
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300276static const char *coda_format_name(u32 fourcc)
277{
278 int i;
279
280 for (i = 0; i < ARRAY_SIZE(coda_formats); i++) {
281 if (coda_formats[i].fourcc == fourcc)
282 return coda_formats[i].name;
283 }
284
285 return NULL;
286}
287
Philipp Zabelb96904e2013-05-23 10:42:58 -0300288/*
289 * Normalize all supported YUV 4:2:0 formats to the value used in the codec
290 * tables.
291 */
292static u32 coda_format_normalize_yuv(u32 fourcc)
293{
294 return coda_format_is_yuv(fourcc) ? V4L2_PIX_FMT_YUV420 : fourcc;
295}
296
Philipp Zabel814c3762014-07-18 07:22:45 -0300297static const struct coda_codec *coda_find_codec(struct coda_dev *dev,
298 int src_fourcc, int dst_fourcc)
Philipp Zabelb96904e2013-05-23 10:42:58 -0300299{
Philipp Zabel814c3762014-07-18 07:22:45 -0300300 const struct coda_codec *codecs = dev->devtype->codecs;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300301 int num_codecs = dev->devtype->num_codecs;
302 int k;
303
304 src_fourcc = coda_format_normalize_yuv(src_fourcc);
305 dst_fourcc = coda_format_normalize_yuv(dst_fourcc);
306 if (src_fourcc == dst_fourcc)
307 return NULL;
308
309 for (k = 0; k < num_codecs; k++) {
310 if (codecs[k].src_fourcc == src_fourcc &&
311 codecs[k].dst_fourcc == dst_fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300312 break;
313 }
314
Philipp Zabelb96904e2013-05-23 10:42:58 -0300315 if (k == num_codecs)
Javier Martin186b2502012-07-26 05:53:35 -0300316 return NULL;
317
Philipp Zabelb96904e2013-05-23 10:42:58 -0300318 return &codecs[k];
Javier Martin186b2502012-07-26 05:53:35 -0300319}
320
Philipp Zabel57625592013-09-30 10:34:51 -0300321static void coda_get_max_dimensions(struct coda_dev *dev,
Philipp Zabel814c3762014-07-18 07:22:45 -0300322 const struct coda_codec *codec,
Philipp Zabel57625592013-09-30 10:34:51 -0300323 int *max_w, int *max_h)
324{
Philipp Zabel814c3762014-07-18 07:22:45 -0300325 const struct coda_codec *codecs = dev->devtype->codecs;
Philipp Zabel57625592013-09-30 10:34:51 -0300326 int num_codecs = dev->devtype->num_codecs;
327 unsigned int w, h;
328 int k;
329
330 if (codec) {
331 w = codec->max_w;
332 h = codec->max_h;
333 } else {
334 for (k = 0, w = 0, h = 0; k < num_codecs; k++) {
335 w = max(w, codecs[k].max_w);
336 h = max(h, codecs[k].max_h);
337 }
338 }
339
340 if (max_w)
341 *max_w = w;
342 if (max_h)
343 *max_h = h;
344}
345
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300346const struct coda_video_device *to_coda_video_device(struct video_device *vdev)
347{
348 struct coda_dev *dev = video_get_drvdata(vdev);
349 unsigned int i = vdev - dev->vfd;
350
351 if (i >= dev->devtype->num_vdevs)
352 return NULL;
353
354 return dev->devtype->vdevs[i];
355}
356
Philipp Zabel79924ca2014-07-23 12:28:45 -0300357const char *coda_product_name(int product)
Philipp Zabel927933f2013-09-30 10:34:48 -0300358{
359 static char buf[9];
360
361 switch (product) {
362 case CODA_DX6:
363 return "CodaDx6";
364 case CODA_7541:
365 return "CODA7541";
Philipp Zabel89548442014-07-11 06:36:17 -0300366 case CODA_960:
367 return "CODA960";
Philipp Zabel927933f2013-09-30 10:34:48 -0300368 default:
369 snprintf(buf, sizeof(buf), "(0x%04x)", product);
370 return buf;
371 }
372}
373
Javier Martin186b2502012-07-26 05:53:35 -0300374/*
375 * V4L2 ioctl() operations.
376 */
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300377static int coda_querycap(struct file *file, void *priv,
378 struct v4l2_capability *cap)
Javier Martin186b2502012-07-26 05:53:35 -0300379{
Philipp Zabel927933f2013-09-30 10:34:48 -0300380 struct coda_ctx *ctx = fh_to_ctx(priv);
381
Javier Martin186b2502012-07-26 05:53:35 -0300382 strlcpy(cap->driver, CODA_NAME, sizeof(cap->driver));
Philipp Zabel927933f2013-09-30 10:34:48 -0300383 strlcpy(cap->card, coda_product_name(ctx->dev->devtype->product),
384 sizeof(cap->card));
Philipp Zabeldad0e1c2013-05-21 04:18:22 -0300385 strlcpy(cap->bus_info, "platform:" CODA_NAME, sizeof(cap->bus_info));
Philipp Zabel3898e7a2014-07-18 07:22:37 -0300386 cap->device_caps = V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
Javier Martin186b2502012-07-26 05:53:35 -0300387 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
388
389 return 0;
390}
391
Philipp Zabel22e244b2014-07-18 07:22:43 -0300392static int coda_enum_fmt(struct file *file, void *priv,
393 struct v4l2_fmtdesc *f)
Javier Martin186b2502012-07-26 05:53:35 -0300394{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300395 struct video_device *vdev = video_devdata(file);
396 const struct coda_video_device *cvd = to_coda_video_device(vdev);
397 const u32 *formats;
398 const char *name;
Philipp Zabel22e244b2014-07-18 07:22:43 -0300399
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300400 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
401 formats = cvd->src_formats;
402 else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
403 formats = cvd->dst_formats;
Philipp Zabel22e244b2014-07-18 07:22:43 -0300404 else
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300405 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300406
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300407 if (f->index >= CODA_MAX_FORMATS || formats[f->index] == 0)
408 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300409
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300410 name = coda_format_name(formats[f->index]);
411 strlcpy(f->description, name, sizeof(f->description));
412 f->pixelformat = formats[f->index];
413 if (!coda_format_is_yuv(formats[f->index]))
414 f->flags |= V4L2_FMT_FLAG_COMPRESSED;
Javier Martin186b2502012-07-26 05:53:35 -0300415
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300416 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300417}
418
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300419static int coda_g_fmt(struct file *file, void *priv,
420 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300421{
Javier Martin186b2502012-07-26 05:53:35 -0300422 struct coda_q_data *q_data;
423 struct coda_ctx *ctx = fh_to_ctx(priv);
424
Javier Martin186b2502012-07-26 05:53:35 -0300425 q_data = get_q_data(ctx, f->type);
Philipp Zabelb9736292014-07-11 06:36:18 -0300426 if (!q_data)
427 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300428
429 f->fmt.pix.field = V4L2_FIELD_NONE;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300430 f->fmt.pix.pixelformat = q_data->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300431 f->fmt.pix.width = q_data->width;
432 f->fmt.pix.height = q_data->height;
Philipp Zabel2fd6a372014-07-11 06:36:36 -0300433 f->fmt.pix.bytesperline = q_data->bytesperline;
Javier Martin186b2502012-07-26 05:53:35 -0300434
435 f->fmt.pix.sizeimage = q_data->sizeimage;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300436 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_JPEG)
437 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
438 else
439 f->fmt.pix.colorspace = ctx->colorspace;
Javier Martin186b2502012-07-26 05:53:35 -0300440
441 return 0;
442}
443
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300444static int coda_try_pixelformat(struct coda_ctx *ctx, struct v4l2_format *f)
445{
446 struct coda_q_data *q_data;
447 const u32 *formats;
448 int i;
449
450 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
451 formats = ctx->cvd->src_formats;
452 else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
453 formats = ctx->cvd->dst_formats;
454 else
455 return -EINVAL;
456
457 for (i = 0; i < CODA_MAX_FORMATS; i++) {
458 if (formats[i] == f->fmt.pix.pixelformat) {
459 f->fmt.pix.pixelformat = formats[i];
460 return 0;
461 }
462 }
463
464 /* Fall back to currently set pixelformat */
465 q_data = get_q_data(ctx, f->type);
466 f->fmt.pix.pixelformat = q_data->fourcc;
467
468 return 0;
469}
470
Philipp Zabel814c3762014-07-18 07:22:45 -0300471static int coda_try_fmt(struct coda_ctx *ctx, const struct coda_codec *codec,
Philipp Zabel57625592013-09-30 10:34:51 -0300472 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300473{
Philipp Zabel57625592013-09-30 10:34:51 -0300474 struct coda_dev *dev = ctx->dev;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300475 unsigned int max_w, max_h;
Javier Martin186b2502012-07-26 05:53:35 -0300476 enum v4l2_field field;
477
478 field = f->fmt.pix.field;
479 if (field == V4L2_FIELD_ANY)
480 field = V4L2_FIELD_NONE;
481 else if (V4L2_FIELD_NONE != field)
482 return -EINVAL;
483
484 /* V4L2 specification suggests the driver corrects the format struct
485 * if any of the dimensions is unsupported */
486 f->fmt.pix.field = field;
487
Philipp Zabel57625592013-09-30 10:34:51 -0300488 coda_get_max_dimensions(dev, codec, &max_w, &max_h);
489 v4l_bound_align_image(&f->fmt.pix.width, MIN_W, max_w, W_ALIGN,
490 &f->fmt.pix.height, MIN_H, max_h, H_ALIGN,
491 S_ALIGN);
Philipp Zabelb96904e2013-05-23 10:42:58 -0300492
Philipp Zabel57625592013-09-30 10:34:51 -0300493 switch (f->fmt.pix.pixelformat) {
494 case V4L2_PIX_FMT_YUV420:
495 case V4L2_PIX_FMT_YVU420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300496 case V4L2_PIX_FMT_NV12:
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300497 /*
498 * Frame stride must be at least multiple of 8,
499 * but multiple of 16 for h.264 or JPEG 4:2:x
500 */
Philipp Zabel451dfe52014-07-11 06:36:39 -0300501 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
Philipp Zabel47cf0c62013-05-23 10:42:54 -0300502 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
Philipp Zabel451d43a2012-07-26 09:18:27 -0300503 f->fmt.pix.height * 3 / 2;
Philipp Zabel57625592013-09-30 10:34:51 -0300504 break;
Philipp Zabel4de69312014-10-02 14:08:26 -0300505 case V4L2_PIX_FMT_YUV422P:
506 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
507 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
508 f->fmt.pix.height * 2;
509 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300510 case V4L2_PIX_FMT_JPEG:
511 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
512 /* fallthrough */
Philipp Zabel57625592013-09-30 10:34:51 -0300513 case V4L2_PIX_FMT_H264:
514 case V4L2_PIX_FMT_MPEG4:
Javier Martin186b2502012-07-26 05:53:35 -0300515 f->fmt.pix.bytesperline = 0;
516 f->fmt.pix.sizeimage = CODA_MAX_FRAME_SIZE;
Philipp Zabel57625592013-09-30 10:34:51 -0300517 break;
518 default:
519 BUG();
Javier Martin186b2502012-07-26 05:53:35 -0300520 }
521
522 return 0;
523}
524
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300525static int coda_try_fmt_vid_cap(struct file *file, void *priv,
526 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300527{
Javier Martin186b2502012-07-26 05:53:35 -0300528 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300529 const struct coda_q_data *q_data_src;
530 const struct coda_codec *codec;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300531 struct vb2_queue *src_vq;
532 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300533
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300534 ret = coda_try_pixelformat(ctx, f);
535 if (ret < 0)
536 return ret;
537
538 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
539
Philipp Zabel918c66f2013-06-27 06:59:01 -0300540 /*
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300541 * If the source format is already fixed, only allow the same output
542 * resolution
Philipp Zabel918c66f2013-06-27 06:59:01 -0300543 */
Philipp Zabel14604e32014-07-11 06:36:22 -0300544 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300545 if (vb2_is_streaming(src_vq)) {
Philipp Zabel91b5841e2014-07-18 07:22:41 -0300546 f->fmt.pix.width = q_data_src->width;
547 f->fmt.pix.height = q_data_src->height;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300548 }
Javier Martin186b2502012-07-26 05:53:35 -0300549
550 f->fmt.pix.colorspace = ctx->colorspace;
551
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300552 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
553 codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
554 f->fmt.pix.pixelformat);
555 if (!codec)
556 return -EINVAL;
557
Philipp Zabel57625592013-09-30 10:34:51 -0300558 ret = coda_try_fmt(ctx, codec, f);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300559 if (ret < 0)
560 return ret;
561
562 /* The h.264 decoder only returns complete 16x16 macroblocks */
563 if (codec && codec->src_fourcc == V4L2_PIX_FMT_H264) {
Philipp Zabel1b0ed7b2014-07-11 06:36:37 -0300564 f->fmt.pix.width = f->fmt.pix.width;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300565 f->fmt.pix.height = round_up(f->fmt.pix.height, 16);
Philipp Zabel1b0ed7b2014-07-11 06:36:37 -0300566 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300567 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
568 f->fmt.pix.height * 3 / 2;
569 }
570
571 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300572}
573
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300574static int coda_try_fmt_vid_out(struct file *file, void *priv,
575 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300576{
577 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300578 struct coda_dev *dev = ctx->dev;
579 const struct coda_q_data *q_data_dst;
580 const struct coda_codec *codec;
581 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300582
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300583 ret = coda_try_pixelformat(ctx, f);
584 if (ret < 0)
585 return ret;
Javier Martin186b2502012-07-26 05:53:35 -0300586
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300587 if (!f->fmt.pix.colorspace) {
588 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_JPEG)
589 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
590 else
591 f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
592 }
Javier Martin186b2502012-07-26 05:53:35 -0300593
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300594 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
595 codec = coda_find_codec(dev, f->fmt.pix.pixelformat, q_data_dst->fourcc);
596
Philipp Zabel57625592013-09-30 10:34:51 -0300597 return coda_try_fmt(ctx, codec, f);
Javier Martin186b2502012-07-26 05:53:35 -0300598}
599
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300600static int coda_s_fmt(struct coda_ctx *ctx, struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300601{
602 struct coda_q_data *q_data;
603 struct vb2_queue *vq;
Javier Martin186b2502012-07-26 05:53:35 -0300604
Philipp Zabel14604e32014-07-11 06:36:22 -0300605 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
Javier Martin186b2502012-07-26 05:53:35 -0300606 if (!vq)
607 return -EINVAL;
608
609 q_data = get_q_data(ctx, f->type);
610 if (!q_data)
611 return -EINVAL;
612
613 if (vb2_is_busy(vq)) {
614 v4l2_err(&ctx->dev->v4l2_dev, "%s queue busy\n", __func__);
615 return -EBUSY;
616 }
617
Philipp Zabelb96904e2013-05-23 10:42:58 -0300618 q_data->fourcc = f->fmt.pix.pixelformat;
Javier Martin186b2502012-07-26 05:53:35 -0300619 q_data->width = f->fmt.pix.width;
620 q_data->height = f->fmt.pix.height;
Philipp Zabel2fd6a372014-07-11 06:36:36 -0300621 q_data->bytesperline = f->fmt.pix.bytesperline;
Philipp Zabel451d43a2012-07-26 09:18:27 -0300622 q_data->sizeimage = f->fmt.pix.sizeimage;
Philipp Zabel52c41672014-07-11 06:36:19 -0300623 q_data->rect.left = 0;
624 q_data->rect.top = 0;
625 q_data->rect.width = f->fmt.pix.width;
626 q_data->rect.height = f->fmt.pix.height;
Javier Martin186b2502012-07-26 05:53:35 -0300627
628 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
629 "Setting format for type %d, wxh: %dx%d, fmt: %d\n",
Philipp Zabelb96904e2013-05-23 10:42:58 -0300630 f->type, q_data->width, q_data->height, q_data->fourcc);
Javier Martin186b2502012-07-26 05:53:35 -0300631
632 return 0;
633}
634
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300635static int coda_s_fmt_vid_cap(struct file *file, void *priv,
636 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300637{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300638 struct coda_ctx *ctx = fh_to_ctx(priv);
Javier Martin186b2502012-07-26 05:53:35 -0300639 int ret;
640
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300641 ret = coda_try_fmt_vid_cap(file, priv, f);
Javier Martin186b2502012-07-26 05:53:35 -0300642 if (ret)
643 return ret;
644
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300645 return coda_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300646}
647
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300648static int coda_s_fmt_vid_out(struct file *file, void *priv,
649 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300650{
651 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabelf95a6ce2014-08-05 14:00:19 -0300652 struct v4l2_format f_cap;
Javier Martin186b2502012-07-26 05:53:35 -0300653 int ret;
654
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300655 ret = coda_try_fmt_vid_out(file, priv, f);
Javier Martin186b2502012-07-26 05:53:35 -0300656 if (ret)
657 return ret;
658
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300659 ret = coda_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300660 if (ret)
Philipp Zabel2dc546d2014-08-05 14:00:18 -0300661 return ret;
662
663 ctx->colorspace = f->fmt.pix.colorspace;
Javier Martin186b2502012-07-26 05:53:35 -0300664
Philipp Zabelf95a6ce2014-08-05 14:00:19 -0300665 f_cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
666 coda_g_fmt(file, priv, &f_cap);
667 f_cap.fmt.pix.width = f->fmt.pix.width;
668 f_cap.fmt.pix.height = f->fmt.pix.height;
669
670 ret = coda_try_fmt_vid_cap(file, priv, &f_cap);
671 if (ret)
672 return ret;
673
674 return coda_s_fmt(ctx, &f_cap);
Javier Martin186b2502012-07-26 05:53:35 -0300675}
676
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300677static int coda_qbuf(struct file *file, void *priv,
678 struct v4l2_buffer *buf)
Javier Martin186b2502012-07-26 05:53:35 -0300679{
680 struct coda_ctx *ctx = fh_to_ctx(priv);
681
Philipp Zabel14604e32014-07-11 06:36:22 -0300682 return v4l2_m2m_qbuf(file, ctx->fh.m2m_ctx, buf);
Javier Martin186b2502012-07-26 05:53:35 -0300683}
684
Philipp Zabel918c66f2013-06-27 06:59:01 -0300685static bool coda_buf_is_end_of_stream(struct coda_ctx *ctx,
686 struct v4l2_buffer *buf)
687{
688 struct vb2_queue *src_vq;
689
Philipp Zabel14604e32014-07-11 06:36:22 -0300690 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300691
692 return ((ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG) &&
693 (buf->sequence == (ctx->qsequence - 1)));
694}
695
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300696static int coda_dqbuf(struct file *file, void *priv,
697 struct v4l2_buffer *buf)
Javier Martin186b2502012-07-26 05:53:35 -0300698{
699 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300700 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300701
Philipp Zabel14604e32014-07-11 06:36:22 -0300702 ret = v4l2_m2m_dqbuf(file, ctx->fh.m2m_ctx, buf);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300703
704 /* If this is the last capture buffer, emit an end-of-stream event */
705 if (buf->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
706 coda_buf_is_end_of_stream(ctx, buf)) {
707 const struct v4l2_event eos_event = {
708 .type = V4L2_EVENT_EOS
709 };
710
711 v4l2_event_queue_fh(&ctx->fh, &eos_event);
712 }
713
714 return ret;
Javier Martin186b2502012-07-26 05:53:35 -0300715}
716
Philipp Zabel52c41672014-07-11 06:36:19 -0300717static int coda_g_selection(struct file *file, void *fh,
718 struct v4l2_selection *s)
719{
720 struct coda_ctx *ctx = fh_to_ctx(fh);
721 struct coda_q_data *q_data;
722 struct v4l2_rect r, *rsel;
723
724 q_data = get_q_data(ctx, s->type);
725 if (!q_data)
726 return -EINVAL;
727
728 r.left = 0;
729 r.top = 0;
730 r.width = q_data->width;
731 r.height = q_data->height;
732 rsel = &q_data->rect;
733
734 switch (s->target) {
735 case V4L2_SEL_TGT_CROP_DEFAULT:
736 case V4L2_SEL_TGT_CROP_BOUNDS:
737 rsel = &r;
738 /* fallthrough */
739 case V4L2_SEL_TGT_CROP:
740 if (s->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
741 return -EINVAL;
742 break;
743 case V4L2_SEL_TGT_COMPOSE_BOUNDS:
744 case V4L2_SEL_TGT_COMPOSE_PADDED:
745 rsel = &r;
746 /* fallthrough */
747 case V4L2_SEL_TGT_COMPOSE:
748 case V4L2_SEL_TGT_COMPOSE_DEFAULT:
749 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
750 return -EINVAL;
751 break;
752 default:
753 return -EINVAL;
754 }
755
756 s->r = *rsel;
757
758 return 0;
759}
760
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300761static int coda_try_decoder_cmd(struct file *file, void *fh,
762 struct v4l2_decoder_cmd *dc)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300763{
Philipp Zabel918c66f2013-06-27 06:59:01 -0300764 if (dc->cmd != V4L2_DEC_CMD_STOP)
765 return -EINVAL;
766
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300767 if (dc->flags & V4L2_DEC_CMD_STOP_TO_BLACK)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300768 return -EINVAL;
769
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300770 if (!(dc->flags & V4L2_DEC_CMD_STOP_IMMEDIATELY) && (dc->stop.pts != 0))
Philipp Zabel918c66f2013-06-27 06:59:01 -0300771 return -EINVAL;
772
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300773 return 0;
774}
775
776static int coda_decoder_cmd(struct file *file, void *fh,
777 struct v4l2_decoder_cmd *dc)
778{
779 struct coda_ctx *ctx = fh_to_ctx(fh);
780 int ret;
781
782 ret = coda_try_decoder_cmd(file, fh, dc);
783 if (ret < 0)
784 return ret;
785
786 /* Ignore decoder stop command silently in encoder context */
Philipp Zabel918c66f2013-06-27 06:59:01 -0300787 if (ctx->inst_type != CODA_INST_DECODER)
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300788 return 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300789
Philipp Zabel347bb7f2014-07-23 12:28:42 -0300790 /* Set the stream-end flag on this context */
791 coda_bit_stream_end_flag(ctx);
Philipp Zabel84e23652014-07-11 06:36:34 -0300792 ctx->hold = false;
Michael Olbrichf3497da2014-07-11 06:36:30 -0300793 v4l2_m2m_try_schedule(ctx->fh.m2m_ctx);
Philipp Zabel89548442014-07-11 06:36:17 -0300794
Philipp Zabel918c66f2013-06-27 06:59:01 -0300795 return 0;
796}
797
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300798static int coda_subscribe_event(struct v4l2_fh *fh,
799 const struct v4l2_event_subscription *sub)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300800{
801 switch (sub->type) {
802 case V4L2_EVENT_EOS:
803 return v4l2_event_subscribe(fh, sub, 0, NULL);
804 default:
805 return v4l2_ctrl_subscribe_event(fh, sub);
806 }
Javier Martin186b2502012-07-26 05:53:35 -0300807}
808
809static const struct v4l2_ioctl_ops coda_ioctl_ops = {
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300810 .vidioc_querycap = coda_querycap,
Javier Martin186b2502012-07-26 05:53:35 -0300811
Philipp Zabel22e244b2014-07-18 07:22:43 -0300812 .vidioc_enum_fmt_vid_cap = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300813 .vidioc_g_fmt_vid_cap = coda_g_fmt,
814 .vidioc_try_fmt_vid_cap = coda_try_fmt_vid_cap,
815 .vidioc_s_fmt_vid_cap = coda_s_fmt_vid_cap,
Javier Martin186b2502012-07-26 05:53:35 -0300816
Philipp Zabel22e244b2014-07-18 07:22:43 -0300817 .vidioc_enum_fmt_vid_out = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300818 .vidioc_g_fmt_vid_out = coda_g_fmt,
819 .vidioc_try_fmt_vid_out = coda_try_fmt_vid_out,
820 .vidioc_s_fmt_vid_out = coda_s_fmt_vid_out,
Javier Martin186b2502012-07-26 05:53:35 -0300821
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300822 .vidioc_reqbufs = v4l2_m2m_ioctl_reqbufs,
823 .vidioc_querybuf = v4l2_m2m_ioctl_querybuf,
Javier Martin186b2502012-07-26 05:53:35 -0300824
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300825 .vidioc_qbuf = coda_qbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300826 .vidioc_expbuf = v4l2_m2m_ioctl_expbuf,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300827 .vidioc_dqbuf = coda_dqbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300828 .vidioc_create_bufs = v4l2_m2m_ioctl_create_bufs,
Javier Martin186b2502012-07-26 05:53:35 -0300829
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300830 .vidioc_streamon = v4l2_m2m_ioctl_streamon,
831 .vidioc_streamoff = v4l2_m2m_ioctl_streamoff,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300832
Philipp Zabel52c41672014-07-11 06:36:19 -0300833 .vidioc_g_selection = coda_g_selection,
834
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300835 .vidioc_try_decoder_cmd = coda_try_decoder_cmd,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300836 .vidioc_decoder_cmd = coda_decoder_cmd,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300837
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300838 .vidioc_subscribe_event = coda_subscribe_event,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300839 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Javier Martin186b2502012-07-26 05:53:35 -0300840};
841
Philipp Zabel79924ca2014-07-23 12:28:45 -0300842void coda_set_gdi_regs(struct coda_ctx *ctx)
Philipp Zabel89548442014-07-11 06:36:17 -0300843{
844 struct gdi_tiled_map *tiled_map = &ctx->tiled_map;
845 struct coda_dev *dev = ctx->dev;
846 int i;
847
848 for (i = 0; i < 16; i++)
849 coda_write(dev, tiled_map->xy2ca_map[i],
850 CODA9_GDI_XY2_CAS_0 + 4 * i);
851 for (i = 0; i < 4; i++)
852 coda_write(dev, tiled_map->xy2ba_map[i],
853 CODA9_GDI_XY2_BA_0 + 4 * i);
854 for (i = 0; i < 16; i++)
855 coda_write(dev, tiled_map->xy2ra_map[i],
856 CODA9_GDI_XY2_RAS_0 + 4 * i);
857 coda_write(dev, tiled_map->xy2rbc_config, CODA9_GDI_XY2_RBC_CONFIG);
858 for (i = 0; i < 32; i++)
859 coda_write(dev, tiled_map->rbc2axi_map[i],
860 CODA9_GDI_RBC2_AXI_0 + 4 * i);
861}
862
Javier Martin186b2502012-07-26 05:53:35 -0300863/*
864 * Mem-to-mem operations.
865 */
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300866
867static void coda_device_run(void *m2m_priv)
868{
869 struct coda_ctx *ctx = m2m_priv;
870 struct coda_dev *dev = ctx->dev;
Philipp Zabel32b6f202014-07-11 06:36:20 -0300871
872 queue_work(dev->workqueue, &ctx->pic_run_work);
873}
874
Philipp Zabel32b6f202014-07-11 06:36:20 -0300875static void coda_pic_run_work(struct work_struct *work)
876{
877 struct coda_ctx *ctx = container_of(work, struct coda_ctx, pic_run_work);
878 struct coda_dev *dev = ctx->dev;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300879 int ret;
880
881 mutex_lock(&ctx->buffer_mutex);
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300882 mutex_lock(&dev->coda_mutex);
883
Philipp Zabela1192a12014-07-23 12:28:40 -0300884 ret = ctx->ops->prepare_run(ctx);
885 if (ret < 0 && ctx->inst_type == CODA_INST_DECODER) {
886 mutex_unlock(&dev->coda_mutex);
887 mutex_unlock(&ctx->buffer_mutex);
888 /* job_finish scheduled by prepare_decode */
889 return;
Philipp Zabel10436672012-07-02 09:03:55 -0300890 }
891
Philipp Zabelf23797b2014-08-06 08:02:23 -0300892 if (!wait_for_completion_timeout(&ctx->completion,
893 msecs_to_jiffies(1000))) {
Philipp Zabel32b6f202014-07-11 06:36:20 -0300894 dev_err(&dev->plat_dev->dev, "CODA PIC_RUN timeout\n");
Philipp Zabel84e23652014-07-11 06:36:34 -0300895
896 ctx->hold = true;
Philipp Zabel8f452842014-07-11 06:36:35 -0300897
898 coda_hw_reset(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300899 } else if (!ctx->aborting) {
Philipp Zabela1192a12014-07-23 12:28:40 -0300900 ctx->ops->finish_run(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300901 }
902
903 if (ctx->aborting || (!ctx->streamon_cap && !ctx->streamon_out))
904 queue_work(dev->workqueue, &ctx->seq_end_work);
905
906 mutex_unlock(&dev->coda_mutex);
907 mutex_unlock(&ctx->buffer_mutex);
908
Philipp Zabel14604e32014-07-11 06:36:22 -0300909 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -0300910}
911
912static int coda_job_ready(void *m2m_priv)
913{
914 struct coda_ctx *ctx = m2m_priv;
915
916 /*
917 * For both 'P' and 'key' frame cases 1 picture
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300918 * and 1 frame are needed. In the decoder case,
919 * the compressed frame can be in the bitstream.
Javier Martin186b2502012-07-26 05:53:35 -0300920 */
Philipp Zabel14604e32014-07-11 06:36:22 -0300921 if (!v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx) &&
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300922 ctx->inst_type != CODA_INST_DECODER) {
Javier Martin186b2502012-07-26 05:53:35 -0300923 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
924 "not ready: not enough video buffers.\n");
925 return 0;
926 }
927
Philipp Zabel14604e32014-07-11 06:36:22 -0300928 if (!v4l2_m2m_num_dst_bufs_ready(ctx->fh.m2m_ctx)) {
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300929 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
930 "not ready: not enough video capture buffers.\n");
931 return 0;
932 }
933
Philipp Zabel84e23652014-07-11 06:36:34 -0300934 if (ctx->hold ||
Philipp Zabel918c66f2013-06-27 06:59:01 -0300935 ((ctx->inst_type == CODA_INST_DECODER) &&
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300936 !v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx) &&
Philipp Zabel918c66f2013-06-27 06:59:01 -0300937 (coda_get_bitstream_payload(ctx) < 512) &&
938 !(ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG))) {
939 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
940 "%d: not ready: not enough bitstream data.\n",
941 ctx->idx);
942 return 0;
943 }
944
Philipp Zabel3e748262013-05-23 10:43:01 -0300945 if (ctx->aborting) {
946 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
947 "not ready: aborting\n");
948 return 0;
949 }
950
Javier Martin186b2502012-07-26 05:53:35 -0300951 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
952 "job ready\n");
953 return 1;
954}
955
956static void coda_job_abort(void *priv)
957{
958 struct coda_ctx *ctx = priv;
Javier Martin186b2502012-07-26 05:53:35 -0300959
960 ctx->aborting = 1;
961
962 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
963 "Aborting task\n");
Javier Martin186b2502012-07-26 05:53:35 -0300964}
965
966static void coda_lock(void *m2m_priv)
967{
968 struct coda_ctx *ctx = m2m_priv;
969 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -0300970
Javier Martin186b2502012-07-26 05:53:35 -0300971 mutex_lock(&pcdev->dev_mutex);
972}
973
974static void coda_unlock(void *m2m_priv)
975{
976 struct coda_ctx *ctx = m2m_priv;
977 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -0300978
Javier Martin186b2502012-07-26 05:53:35 -0300979 mutex_unlock(&pcdev->dev_mutex);
980}
981
Philipp Zabel814c3762014-07-18 07:22:45 -0300982static const struct v4l2_m2m_ops coda_m2m_ops = {
Javier Martin186b2502012-07-26 05:53:35 -0300983 .device_run = coda_device_run,
984 .job_ready = coda_job_ready,
985 .job_abort = coda_job_abort,
986 .lock = coda_lock,
987 .unlock = coda_unlock,
988};
989
Philipp Zabel89548442014-07-11 06:36:17 -0300990static void coda_set_tiled_map_type(struct coda_ctx *ctx, int tiled_map_type)
991{
992 struct gdi_tiled_map *tiled_map = &ctx->tiled_map;
993 int luma_map, chro_map, i;
994
995 memset(tiled_map, 0, sizeof(*tiled_map));
996
997 luma_map = 64;
998 chro_map = 64;
999 tiled_map->map_type = tiled_map_type;
1000 for (i = 0; i < 16; i++)
1001 tiled_map->xy2ca_map[i] = luma_map << 8 | chro_map;
1002 for (i = 0; i < 4; i++)
1003 tiled_map->xy2ba_map[i] = luma_map << 8 | chro_map;
1004 for (i = 0; i < 16; i++)
1005 tiled_map->xy2ra_map[i] = luma_map << 8 | chro_map;
1006
1007 if (tiled_map_type == GDI_LINEAR_FRAME_MAP) {
1008 tiled_map->xy2rbc_config = 0;
1009 } else {
1010 dev_err(&ctx->dev->plat_dev->dev, "invalid map type: %d\n",
1011 tiled_map_type);
1012 return;
1013 }
1014}
1015
Javier Martin186b2502012-07-26 05:53:35 -03001016static void set_default_params(struct coda_ctx *ctx)
1017{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001018 int max_w, max_h;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001019
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001020 ctx->codec = coda_find_codec(ctx->dev, ctx->cvd->src_formats[0],
1021 ctx->cvd->dst_formats[0]);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001022 max_w = ctx->codec->max_w;
1023 max_h = ctx->codec->max_h;
Javier Martin186b2502012-07-26 05:53:35 -03001024
Philipp Zabel121cacf2014-07-18 07:22:42 -03001025 ctx->params.codec_mode = ctx->codec->mode;
Javier Martin186b2502012-07-26 05:53:35 -03001026 ctx->colorspace = V4L2_COLORSPACE_REC709;
1027 ctx->params.framerate = 30;
Javier Martin186b2502012-07-26 05:53:35 -03001028
1029 /* Default formats for output and input queues */
Philipp Zabelb96904e2013-05-23 10:42:58 -03001030 ctx->q_data[V4L2_M2M_SRC].fourcc = ctx->codec->src_fourcc;
1031 ctx->q_data[V4L2_M2M_DST].fourcc = ctx->codec->dst_fourcc;
1032 ctx->q_data[V4L2_M2M_SRC].width = max_w;
1033 ctx->q_data[V4L2_M2M_SRC].height = max_h;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001034 ctx->q_data[V4L2_M2M_DST].width = max_w;
1035 ctx->q_data[V4L2_M2M_DST].height = max_h;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001036 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_YUV420) {
1037 ctx->q_data[V4L2_M2M_SRC].bytesperline = max_w;
1038 ctx->q_data[V4L2_M2M_SRC].sizeimage = (max_w * max_h * 3) / 2;
1039 ctx->q_data[V4L2_M2M_DST].bytesperline = 0;
1040 ctx->q_data[V4L2_M2M_DST].sizeimage = CODA_MAX_FRAME_SIZE;
1041 } else {
1042 ctx->q_data[V4L2_M2M_SRC].bytesperline = 0;
1043 ctx->q_data[V4L2_M2M_SRC].sizeimage = CODA_MAX_FRAME_SIZE;
1044 ctx->q_data[V4L2_M2M_DST].bytesperline = max_w;
1045 ctx->q_data[V4L2_M2M_DST].sizeimage = (max_w * max_h * 3) / 2;
1046 }
Philipp Zabel52c41672014-07-11 06:36:19 -03001047 ctx->q_data[V4L2_M2M_SRC].rect.width = max_w;
1048 ctx->q_data[V4L2_M2M_SRC].rect.height = max_h;
1049 ctx->q_data[V4L2_M2M_DST].rect.width = max_w;
1050 ctx->q_data[V4L2_M2M_DST].rect.height = max_h;
Philipp Zabel89548442014-07-11 06:36:17 -03001051
1052 if (ctx->dev->devtype->product == CODA_960)
1053 coda_set_tiled_map_type(ctx, GDI_LINEAR_FRAME_MAP);
Javier Martin186b2502012-07-26 05:53:35 -03001054}
1055
1056/*
1057 * Queue operations
1058 */
1059static int coda_queue_setup(struct vb2_queue *vq,
1060 const struct v4l2_format *fmt,
1061 unsigned int *nbuffers, unsigned int *nplanes,
1062 unsigned int sizes[], void *alloc_ctxs[])
1063{
1064 struct coda_ctx *ctx = vb2_get_drv_priv(vq);
Philipp Zabele34db062012-08-29 08:22:00 -03001065 struct coda_q_data *q_data;
Javier Martin186b2502012-07-26 05:53:35 -03001066 unsigned int size;
1067
Philipp Zabele34db062012-08-29 08:22:00 -03001068 q_data = get_q_data(ctx, vq->type);
1069 size = q_data->sizeimage;
Javier Martin186b2502012-07-26 05:53:35 -03001070
1071 *nplanes = 1;
1072 sizes[0] = size;
1073
1074 alloc_ctxs[0] = ctx->dev->alloc_ctx;
1075
1076 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1077 "get %d buffer(s) of size %d each.\n", *nbuffers, size);
1078
1079 return 0;
1080}
1081
1082static int coda_buf_prepare(struct vb2_buffer *vb)
1083{
1084 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
1085 struct coda_q_data *q_data;
1086
1087 q_data = get_q_data(ctx, vb->vb2_queue->type);
1088
1089 if (vb2_plane_size(vb, 0) < q_data->sizeimage) {
1090 v4l2_warn(&ctx->dev->v4l2_dev,
1091 "%s data will not fit into plane (%lu < %lu)\n",
1092 __func__, vb2_plane_size(vb, 0),
1093 (long)q_data->sizeimage);
1094 return -EINVAL;
1095 }
1096
Javier Martin186b2502012-07-26 05:53:35 -03001097 return 0;
1098}
1099
1100static void coda_buf_queue(struct vb2_buffer *vb)
1101{
1102 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001103 struct coda_q_data *q_data;
1104
1105 q_data = get_q_data(ctx, vb->vb2_queue->type);
1106
1107 /*
1108 * In the decoder case, immediately try to copy the buffer into the
1109 * bitstream ringbuffer and mark it as ready to be dequeued.
1110 */
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001111 if (ctx->inst_type == CODA_INST_DECODER &&
Philipp Zabel918c66f2013-06-27 06:59:01 -03001112 vb->vb2_queue->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1113 /*
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -03001114 * For backwards compatibility, queuing an empty buffer marks
Philipp Zabel918c66f2013-06-27 06:59:01 -03001115 * the stream end
1116 */
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001117 if (vb2_get_plane_payload(vb, 0) == 0)
1118 coda_bit_stream_end_flag(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001119 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel14604e32014-07-11 06:36:22 -03001120 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Michael Olbricheabed932014-07-18 07:22:40 -03001121 if (vb2_is_streaming(vb->vb2_queue))
1122 coda_fill_bitstream(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001123 mutex_unlock(&ctx->bitstream_mutex);
1124 } else {
Philipp Zabel14604e32014-07-11 06:36:22 -03001125 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001126 }
Javier Martin186b2502012-07-26 05:53:35 -03001127}
1128
Philipp Zabel79924ca2014-07-23 12:28:45 -03001129int coda_alloc_aux_buf(struct coda_dev *dev, struct coda_aux_buf *buf,
1130 size_t size, const char *name, struct dentry *parent)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001131{
1132 buf->vaddr = dma_alloc_coherent(&dev->plat_dev->dev, size, &buf->paddr,
1133 GFP_KERNEL);
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001134 if (!buf->vaddr) {
1135 v4l2_err(&dev->v4l2_dev,
1136 "Failed to allocate %s buffer of size %u\n",
1137 name, size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001138 return -ENOMEM;
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001139 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001140
1141 buf->size = size;
1142
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001143 if (name && parent) {
1144 buf->blob.data = buf->vaddr;
1145 buf->blob.size = size;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001146 buf->dentry = debugfs_create_blob(name, 0644, parent,
1147 &buf->blob);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001148 if (!buf->dentry)
1149 dev_warn(&dev->plat_dev->dev,
1150 "failed to create debugfs entry %s\n", name);
1151 }
1152
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001153 return 0;
1154}
1155
Philipp Zabel79924ca2014-07-23 12:28:45 -03001156void coda_free_aux_buf(struct coda_dev *dev,
1157 struct coda_aux_buf *buf)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001158{
1159 if (buf->vaddr) {
1160 dma_free_coherent(&dev->plat_dev->dev, buf->size,
1161 buf->vaddr, buf->paddr);
1162 buf->vaddr = NULL;
1163 buf->size = 0;
1164 }
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001165 debugfs_remove(buf->dentry);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001166}
1167
Javier Martin186b2502012-07-26 05:53:35 -03001168static int coda_start_streaming(struct vb2_queue *q, unsigned int count)
1169{
1170 struct coda_ctx *ctx = vb2_get_drv_priv(q);
1171 struct v4l2_device *v4l2_dev = &ctx->dev->v4l2_dev;
Javier Martin186b2502012-07-26 05:53:35 -03001172 struct coda_q_data *q_data_src, *q_data_dst;
Philipp Zabelb9063522014-08-05 14:00:10 -03001173 struct vb2_buffer *buf;
Philipp Zabeld35167a2013-05-23 10:42:59 -03001174 int ret = 0;
Javier Martin186b2502012-07-26 05:53:35 -03001175
Philipp Zabelb96904e2013-05-23 10:42:58 -03001176 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001177 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001178 if (q_data_src->fourcc == V4L2_PIX_FMT_H264 ||
1179 (q_data_src->fourcc == V4L2_PIX_FMT_JPEG &&
1180 ctx->dev->devtype->product == CODA_7541)) {
Michael Olbricheabed932014-07-18 07:22:40 -03001181 /* copy the buffers that where queued before streamon */
1182 mutex_lock(&ctx->bitstream_mutex);
1183 coda_fill_bitstream(ctx);
1184 mutex_unlock(&ctx->bitstream_mutex);
1185
Philipp Zabelb9063522014-08-05 14:00:10 -03001186 if (coda_get_bitstream_payload(ctx) < 512) {
1187 ret = -EINVAL;
1188 goto err;
1189 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001190 } else {
Philipp Zabelb9063522014-08-05 14:00:10 -03001191 if (count < 1) {
1192 ret = -EINVAL;
1193 goto err;
1194 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001195 }
1196
1197 ctx->streamon_out = 1;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001198 } else {
Philipp Zabelb9063522014-08-05 14:00:10 -03001199 if (count < 1) {
1200 ret = -EINVAL;
1201 goto err;
1202 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001203
1204 ctx->streamon_cap = 1;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001205 }
Javier Martin186b2502012-07-26 05:53:35 -03001206
Philipp Zabelb96904e2013-05-23 10:42:58 -03001207 /* Don't start the coda unless both queues are on */
1208 if (!(ctx->streamon_out & ctx->streamon_cap))
1209 return 0;
Javier Martin186b2502012-07-26 05:53:35 -03001210
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001211 /* Allow BIT decoder device_run with no new buffers queued */
Philipp Zabeleb107512013-09-30 10:34:45 -03001212 if (ctx->inst_type == CODA_INST_DECODER)
Philipp Zabel14604e32014-07-11 06:36:22 -03001213 v4l2_m2m_set_src_buffered(ctx->fh.m2m_ctx, true);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001214
Philipp Zabelb96904e2013-05-23 10:42:58 -03001215 ctx->gopcounter = ctx->params.gop_size - 1;
Javier Martin186b2502012-07-26 05:53:35 -03001216 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
Javier Martin186b2502012-07-26 05:53:35 -03001217
Philipp Zabelb96904e2013-05-23 10:42:58 -03001218 ctx->codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
1219 q_data_dst->fourcc);
1220 if (!ctx->codec) {
Javier Martin186b2502012-07-26 05:53:35 -03001221 v4l2_err(v4l2_dev, "couldn't tell instance type.\n");
Philipp Zabelb9063522014-08-05 14:00:10 -03001222 ret = -EINVAL;
1223 goto err;
Javier Martin186b2502012-07-26 05:53:35 -03001224 }
1225
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001226 if (q_data_dst->fourcc == V4L2_PIX_FMT_JPEG)
1227 ctx->params.gop_size = 1;
1228 ctx->gopcounter = ctx->params.gop_size - 1;
1229
Philipp Zabela1192a12014-07-23 12:28:40 -03001230 ret = ctx->ops->start_streaming(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001231 if (ctx->inst_type == CODA_INST_DECODER) {
Philipp Zabel89548442014-07-11 06:36:17 -03001232 if (ret == -EAGAIN)
Philipp Zabel918c66f2013-06-27 06:59:01 -03001233 return 0;
Philipp Zabel89548442014-07-11 06:36:17 -03001234 else if (ret < 0)
Philipp Zabelb9063522014-08-05 14:00:10 -03001235 goto err;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001236 }
1237
Philipp Zabel89548442014-07-11 06:36:17 -03001238 ctx->initialized = 1;
1239 return ret;
Philipp Zabelb9063522014-08-05 14:00:10 -03001240
1241err:
1242 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1243 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
1244 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_DEQUEUED);
1245 } else {
1246 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
1247 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_DEQUEUED);
1248 }
1249 return ret;
Philipp Zabel89548442014-07-11 06:36:17 -03001250}
1251
Hans Verkuile37559b2014-04-17 02:47:21 -03001252static void coda_stop_streaming(struct vb2_queue *q)
Javier Martin186b2502012-07-26 05:53:35 -03001253{
1254 struct coda_ctx *ctx = vb2_get_drv_priv(q);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03001255 struct coda_dev *dev = ctx->dev;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001256 struct vb2_buffer *buf;
Javier Martin186b2502012-07-26 05:53:35 -03001257
1258 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001259 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001260 "%s: output\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001261 ctx->streamon_out = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001262
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001263 coda_bit_stream_end_flag(ctx);
Philipp Zabel4a31b522014-08-05 14:00:11 -03001264
Philipp Zabel918c66f2013-06-27 06:59:01 -03001265 ctx->isequence = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001266
1267 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
1268 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001269 } else {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001270 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001271 "%s: capture\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001272 ctx->streamon_cap = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001273
1274 ctx->osequence = 0;
Philipp Zabelcb2c0282014-07-11 06:36:33 -03001275 ctx->sequence_offset = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001276
1277 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
1278 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001279 }
1280
Philipp Zabel918c66f2013-06-27 06:59:01 -03001281 if (!ctx->streamon_out && !ctx->streamon_cap) {
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001282 struct coda_buffer_meta *meta;
Philipp Zabel846ced92014-07-11 06:36:31 -03001283
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001284 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001285 while (!list_empty(&ctx->buffer_meta_list)) {
1286 meta = list_first_entry(&ctx->buffer_meta_list,
1287 struct coda_buffer_meta, list);
1288 list_del(&meta->list);
1289 kfree(meta);
Philipp Zabel846ced92014-07-11 06:36:31 -03001290 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001291 mutex_unlock(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001292 kfifo_init(&ctx->bitstream_fifo,
1293 ctx->bitstream.vaddr, ctx->bitstream.size);
1294 ctx->runcounter = 0;
Philipp Zabelf157cf42014-09-29 09:53:42 -03001295 ctx->aborting = 0;
Philipp Zabel62bed142012-07-25 10:40:39 -03001296 }
Javier Martin186b2502012-07-26 05:53:35 -03001297}
1298
Philipp Zabel121cacf2014-07-18 07:22:42 -03001299static const struct vb2_ops coda_qops = {
Javier Martin186b2502012-07-26 05:53:35 -03001300 .queue_setup = coda_queue_setup,
1301 .buf_prepare = coda_buf_prepare,
1302 .buf_queue = coda_buf_queue,
Javier Martin186b2502012-07-26 05:53:35 -03001303 .start_streaming = coda_start_streaming,
1304 .stop_streaming = coda_stop_streaming,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001305 .wait_prepare = vb2_ops_wait_prepare,
1306 .wait_finish = vb2_ops_wait_finish,
Javier Martin186b2502012-07-26 05:53:35 -03001307};
1308
1309static int coda_s_ctrl(struct v4l2_ctrl *ctrl)
1310{
1311 struct coda_ctx *ctx =
1312 container_of(ctrl->handler, struct coda_ctx, ctrls);
1313
1314 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1315 "s_ctrl: id = %d, val = %d\n", ctrl->id, ctrl->val);
1316
1317 switch (ctrl->id) {
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001318 case V4L2_CID_HFLIP:
1319 if (ctrl->val)
1320 ctx->params.rot_mode |= CODA_MIR_HOR;
1321 else
1322 ctx->params.rot_mode &= ~CODA_MIR_HOR;
1323 break;
1324 case V4L2_CID_VFLIP:
1325 if (ctrl->val)
1326 ctx->params.rot_mode |= CODA_MIR_VER;
1327 else
1328 ctx->params.rot_mode &= ~CODA_MIR_VER;
1329 break;
Javier Martin186b2502012-07-26 05:53:35 -03001330 case V4L2_CID_MPEG_VIDEO_BITRATE:
1331 ctx->params.bitrate = ctrl->val / 1000;
1332 break;
1333 case V4L2_CID_MPEG_VIDEO_GOP_SIZE:
1334 ctx->params.gop_size = ctrl->val;
1335 break;
1336 case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP:
1337 ctx->params.h264_intra_qp = ctrl->val;
1338 break;
1339 case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP:
1340 ctx->params.h264_inter_qp = ctrl->val;
1341 break;
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001342 case V4L2_CID_MPEG_VIDEO_H264_MIN_QP:
1343 ctx->params.h264_min_qp = ctrl->val;
1344 break;
1345 case V4L2_CID_MPEG_VIDEO_H264_MAX_QP:
1346 ctx->params.h264_max_qp = ctrl->val;
1347 break;
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001348 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA:
1349 ctx->params.h264_deblk_alpha = ctrl->val;
1350 break;
1351 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA:
1352 ctx->params.h264_deblk_beta = ctrl->val;
1353 break;
1354 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
1355 ctx->params.h264_deblk_enabled = (ctrl->val ==
1356 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1357 break;
Javier Martin186b2502012-07-26 05:53:35 -03001358 case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP:
1359 ctx->params.mpeg4_intra_qp = ctrl->val;
1360 break;
1361 case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP:
1362 ctx->params.mpeg4_inter_qp = ctrl->val;
1363 break;
1364 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
1365 ctx->params.slice_mode = ctrl->val;
1366 break;
1367 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB:
1368 ctx->params.slice_max_mb = ctrl->val;
1369 break;
Philipp Zabelc566c782012-08-08 11:59:38 -03001370 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES:
1371 ctx->params.slice_max_bits = ctrl->val * 8;
1372 break;
Javier Martin186b2502012-07-26 05:53:35 -03001373 case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
1374 break;
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001375 case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB:
1376 ctx->params.intra_refresh = ctrl->val;
1377 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001378 case V4L2_CID_JPEG_COMPRESSION_QUALITY:
1379 coda_set_jpeg_compression_quality(ctx, ctrl->val);
1380 break;
1381 case V4L2_CID_JPEG_RESTART_INTERVAL:
1382 ctx->params.jpeg_restart_interval = ctrl->val;
1383 break;
Javier Martin186b2502012-07-26 05:53:35 -03001384 default:
1385 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1386 "Invalid control, id=%d, val=%d\n",
1387 ctrl->id, ctrl->val);
1388 return -EINVAL;
1389 }
1390
1391 return 0;
1392}
1393
Philipp Zabel814c3762014-07-18 07:22:45 -03001394static const struct v4l2_ctrl_ops coda_ctrl_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001395 .s_ctrl = coda_s_ctrl,
1396};
1397
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001398static void coda_encode_ctrls(struct coda_ctx *ctx)
Javier Martin186b2502012-07-26 05:53:35 -03001399{
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001400 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Javier Martin186b2502012-07-26 05:53:35 -03001401 V4L2_CID_MPEG_VIDEO_BITRATE, 0, 32767000, 1, 0);
1402 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1403 V4L2_CID_MPEG_VIDEO_GOP_SIZE, 1, 60, 1, 16);
1404 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001405 V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP, 0, 51, 1, 25);
Javier Martin186b2502012-07-26 05:53:35 -03001406 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001407 V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP, 0, 51, 1, 25);
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001408 if (ctx->dev->devtype->product != CODA_960) {
1409 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1410 V4L2_CID_MPEG_VIDEO_H264_MIN_QP, 0, 51, 1, 12);
1411 }
1412 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1413 V4L2_CID_MPEG_VIDEO_H264_MAX_QP, 0, 51, 1, 51);
Javier Martin186b2502012-07-26 05:53:35 -03001414 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001415 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA, 0, 15, 1, 0);
1416 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1417 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA, 0, 15, 1, 0);
1418 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1419 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE,
1420 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED, 0x0,
1421 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1422 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Javier Martin186b2502012-07-26 05:53:35 -03001423 V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP, 1, 31, 1, 2);
1424 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1425 V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP, 1, 31, 1, 2);
1426 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1427 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE,
Philipp Zabelc566c782012-08-08 11:59:38 -03001428 V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES, 0x0,
1429 V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE);
Javier Martin186b2502012-07-26 05:53:35 -03001430 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1431 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB, 1, 0x3fffffff, 1, 1);
Philipp Zabelc566c782012-08-08 11:59:38 -03001432 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001433 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES, 1, 0x3fffffff, 1,
1434 500);
Javier Martin186b2502012-07-26 05:53:35 -03001435 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1436 V4L2_CID_MPEG_VIDEO_HEADER_MODE,
1437 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME,
1438 (1 << V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE),
1439 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME);
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001440 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001441 V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB, 0,
1442 1920 * 1088 / 256, 1, 0);
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001443}
1444
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001445static void coda_jpeg_encode_ctrls(struct coda_ctx *ctx)
1446{
1447 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1448 V4L2_CID_JPEG_COMPRESSION_QUALITY, 5, 100, 1, 50);
1449 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1450 V4L2_CID_JPEG_RESTART_INTERVAL, 0, 100, 1, 0);
1451}
1452
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001453static int coda_ctrls_setup(struct coda_ctx *ctx)
1454{
1455 v4l2_ctrl_handler_init(&ctx->ctrls, 2);
1456
1457 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1458 V4L2_CID_HFLIP, 0, 1, 1, 0);
1459 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1460 V4L2_CID_VFLIP, 0, 1, 1, 0);
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001461 if (ctx->inst_type == CODA_INST_ENCODER) {
1462 if (ctx->cvd->dst_formats[0] == V4L2_PIX_FMT_JPEG)
1463 coda_jpeg_encode_ctrls(ctx);
1464 else
1465 coda_encode_ctrls(ctx);
1466 }
Javier Martin186b2502012-07-26 05:53:35 -03001467
1468 if (ctx->ctrls.error) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001469 v4l2_err(&ctx->dev->v4l2_dev,
1470 "control initialization error (%d)",
Javier Martin186b2502012-07-26 05:53:35 -03001471 ctx->ctrls.error);
1472 return -EINVAL;
1473 }
1474
1475 return v4l2_ctrl_handler_setup(&ctx->ctrls);
1476}
1477
Philipp Zabel121cacf2014-07-18 07:22:42 -03001478static int coda_queue_init(struct coda_ctx *ctx, struct vb2_queue *vq)
Javier Martin186b2502012-07-26 05:53:35 -03001479{
Philipp Zabel121cacf2014-07-18 07:22:42 -03001480 vq->drv_priv = ctx;
1481 vq->ops = &coda_qops;
1482 vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
1483 vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
1484 vq->lock = &ctx->dev->dev_mutex;
1485
1486 return vb2_queue_init(vq);
1487}
1488
Philipp Zabel79924ca2014-07-23 12:28:45 -03001489int coda_encoder_queue_init(void *priv, struct vb2_queue *src_vq,
1490 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001491{
Javier Martin186b2502012-07-26 05:53:35 -03001492 int ret;
1493
Javier Martin186b2502012-07-26 05:53:35 -03001494 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001495 src_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001496 src_vq->mem_ops = &vb2_dma_contig_memops;
1497
Philipp Zabel121cacf2014-07-18 07:22:42 -03001498 ret = coda_queue_init(priv, src_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001499 if (ret)
1500 return ret;
1501
Javier Martin186b2502012-07-26 05:53:35 -03001502 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001503 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001504 dst_vq->mem_ops = &vb2_dma_contig_memops;
1505
Philipp Zabel121cacf2014-07-18 07:22:42 -03001506 return coda_queue_init(priv, dst_vq);
1507}
1508
Philipp Zabel79924ca2014-07-23 12:28:45 -03001509int coda_decoder_queue_init(void *priv, struct vb2_queue *src_vq,
1510 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001511{
1512 int ret;
1513
1514 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
1515 src_vq->io_modes = VB2_DMABUF | VB2_MMAP;
1516 src_vq->mem_ops = &vb2_dma_contig_memops;
1517
1518 ret = coda_queue_init(priv, src_vq);
1519 if (ret)
1520 return ret;
1521
1522 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1523 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
1524 dst_vq->mem_ops = &vb2_dma_contig_memops;
1525
1526 return coda_queue_init(priv, dst_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001527}
1528
Philipp Zabele11f3e62012-07-25 09:16:58 -03001529static int coda_next_free_instance(struct coda_dev *dev)
1530{
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001531 int idx = ffz(dev->instance_mask);
1532
1533 if ((idx < 0) ||
1534 (dev->devtype->product == CODA_DX6 && idx > CODADX6_MAX_INSTANCES))
1535 return -EBUSY;
1536
1537 return idx;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001538}
1539
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001540/*
1541 * File operations
1542 */
1543
1544static int coda_open(struct file *file)
Javier Martin186b2502012-07-26 05:53:35 -03001545{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001546 struct video_device *vdev = video_devdata(file);
1547 struct coda_dev *dev = video_get_drvdata(vdev);
Javier Martin186b2502012-07-26 05:53:35 -03001548 struct coda_ctx *ctx = NULL;
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001549 char *name;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001550 int ret;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001551 int idx;
Javier Martin186b2502012-07-26 05:53:35 -03001552
Philipp Zabelf23797b2014-08-06 08:02:23 -03001553 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Javier Martin186b2502012-07-26 05:53:35 -03001554 if (!ctx)
1555 return -ENOMEM;
1556
Fabio Estevamf82bc202013-08-21 11:14:16 -03001557 idx = coda_next_free_instance(dev);
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001558 if (idx < 0) {
1559 ret = idx;
Fabio Estevamf82bc202013-08-21 11:14:16 -03001560 goto err_coda_max;
1561 }
1562 set_bit(idx, &dev->instance_mask);
1563
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001564 name = kasprintf(GFP_KERNEL, "context%d", idx);
1565 ctx->debugfs_entry = debugfs_create_dir(name, dev->debugfs_root);
1566 kfree(name);
1567
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001568 ctx->cvd = to_coda_video_device(vdev);
1569 ctx->inst_type = ctx->cvd->type;
1570 ctx->ops = ctx->cvd->ops;
Philipp Zabel32b6f202014-07-11 06:36:20 -03001571 init_completion(&ctx->completion);
1572 INIT_WORK(&ctx->pic_run_work, coda_pic_run_work);
Philipp Zabela1192a12014-07-23 12:28:40 -03001573 INIT_WORK(&ctx->seq_end_work, ctx->ops->seq_end_work);
Javier Martin186b2502012-07-26 05:53:35 -03001574 v4l2_fh_init(&ctx->fh, video_devdata(file));
1575 file->private_data = &ctx->fh;
1576 v4l2_fh_add(&ctx->fh);
1577 ctx->dev = dev;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001578 ctx->idx = idx;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001579 switch (dev->devtype->product) {
Philipp Zabel89548442014-07-11 06:36:17 -03001580 case CODA_960:
Philipp Zabel2bf299c2014-09-29 09:53:46 -03001581 ctx->frame_mem_ctrl = 1 << 12;
1582 /* fallthrough */
1583 case CODA_7541:
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001584 ctx->reg_idx = 0;
1585 break;
1586 default:
1587 ctx->reg_idx = idx;
1588 }
Fabio Estevamf82bc202013-08-21 11:14:16 -03001589
Philipp Zabel1e172732014-07-11 06:36:23 -03001590 /* Power up and upload firmware if necessary */
1591 ret = pm_runtime_get_sync(&dev->plat_dev->dev);
1592 if (ret < 0) {
1593 v4l2_err(&dev->v4l2_dev, "failed to power up: %d\n", ret);
1594 goto err_pm_get;
1595 }
1596
Fabio Estevam79830db2013-08-21 11:14:17 -03001597 ret = clk_prepare_enable(dev->clk_per);
1598 if (ret)
1599 goto err_clk_per;
1600
1601 ret = clk_prepare_enable(dev->clk_ahb);
1602 if (ret)
1603 goto err_clk_ahb;
1604
Javier Martin186b2502012-07-26 05:53:35 -03001605 set_default_params(ctx);
Philipp Zabela1192a12014-07-23 12:28:40 -03001606 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx,
1607 ctx->ops->queue_init);
Philipp Zabel14604e32014-07-11 06:36:22 -03001608 if (IS_ERR(ctx->fh.m2m_ctx)) {
1609 ret = PTR_ERR(ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -03001610
1611 v4l2_err(&dev->v4l2_dev, "%s return error (%d)\n",
1612 __func__, ret);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001613 goto err_ctx_init;
Javier Martin186b2502012-07-26 05:53:35 -03001614 }
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001615
Javier Martin186b2502012-07-26 05:53:35 -03001616 ret = coda_ctrls_setup(ctx);
1617 if (ret) {
1618 v4l2_err(&dev->v4l2_dev, "failed to setup coda controls\n");
Fabio Estevamf82bc202013-08-21 11:14:16 -03001619 goto err_ctrls_setup;
Javier Martin186b2502012-07-26 05:53:35 -03001620 }
1621
1622 ctx->fh.ctrl_handler = &ctx->ctrls;
1623
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001624 ret = coda_alloc_context_buf(ctx, &ctx->parabuf,
1625 CODA_PARA_BUF_SIZE, "parabuf");
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001626 if (ret < 0) {
Javier Martin186b2502012-07-26 05:53:35 -03001627 v4l2_err(&dev->v4l2_dev, "failed to allocate parabuf");
Fabio Estevamf82bc202013-08-21 11:14:16 -03001628 goto err_dma_alloc;
Javier Martin186b2502012-07-26 05:53:35 -03001629 }
1630
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001631 ctx->bitstream.size = CODA_MAX_FRAME_SIZE;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001632 ctx->bitstream.vaddr = dma_alloc_writecombine(
1633 &dev->plat_dev->dev, ctx->bitstream.size,
1634 &ctx->bitstream.paddr, GFP_KERNEL);
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001635 if (!ctx->bitstream.vaddr) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001636 v4l2_err(&dev->v4l2_dev,
1637 "failed to allocate bitstream ringbuffer");
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001638 ret = -ENOMEM;
Fabio Estevamf82bc202013-08-21 11:14:16 -03001639 goto err_dma_writecombine;
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001640 }
1641 kfifo_init(&ctx->bitstream_fifo,
1642 ctx->bitstream.vaddr, ctx->bitstream.size);
1643 mutex_init(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001644 mutex_init(&ctx->buffer_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001645 INIT_LIST_HEAD(&ctx->buffer_meta_list);
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001646
Javier Martin186b2502012-07-26 05:53:35 -03001647 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001648 list_add(&ctx->list, &dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03001649 coda_unlock(ctx);
1650
Javier Martin186b2502012-07-26 05:53:35 -03001651 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Created instance %d (%p)\n",
1652 ctx->idx, ctx);
1653
1654 return 0;
1655
Fabio Estevamf82bc202013-08-21 11:14:16 -03001656err_dma_writecombine:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001657 if (ctx->dev->devtype->product == CODA_DX6)
1658 coda_free_aux_buf(dev, &ctx->workbuf);
1659 coda_free_aux_buf(dev, &ctx->parabuf);
1660err_dma_alloc:
1661 v4l2_ctrl_handler_free(&ctx->ctrls);
1662err_ctrls_setup:
Philipp Zabel14604e32014-07-11 06:36:22 -03001663 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001664err_ctx_init:
1665 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevam79830db2013-08-21 11:14:17 -03001666err_clk_ahb:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001667 clk_disable_unprepare(dev->clk_per);
Fabio Estevam79830db2013-08-21 11:14:17 -03001668err_clk_per:
Philipp Zabel1e172732014-07-11 06:36:23 -03001669 pm_runtime_put_sync(&dev->plat_dev->dev);
1670err_pm_get:
Javier Martin186b2502012-07-26 05:53:35 -03001671 v4l2_fh_del(&ctx->fh);
1672 v4l2_fh_exit(&ctx->fh);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001673 clear_bit(ctx->idx, &dev->instance_mask);
1674err_coda_max:
Javier Martin186b2502012-07-26 05:53:35 -03001675 kfree(ctx);
1676 return ret;
1677}
1678
1679static int coda_release(struct file *file)
1680{
1681 struct coda_dev *dev = video_drvdata(file);
1682 struct coda_ctx *ctx = fh_to_ctx(file->private_data);
1683
1684 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Releasing instance %p\n",
1685 ctx);
1686
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001687 debugfs_remove_recursive(ctx->debugfs_entry);
1688
Philipp Zabel918c66f2013-06-27 06:59:01 -03001689 /* If this instance is running, call .job_abort and wait for it to end */
Philipp Zabel14604e32014-07-11 06:36:22 -03001690 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001691
1692 /* In case the instance was not running, we still need to call SEQ_END */
Philipp Zabel32b6f202014-07-11 06:36:20 -03001693 if (ctx->initialized) {
1694 queue_work(dev->workqueue, &ctx->seq_end_work);
1695 flush_work(&ctx->seq_end_work);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001696 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001697
Javier Martin186b2502012-07-26 05:53:35 -03001698 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001699 list_del(&ctx->list);
Javier Martin186b2502012-07-26 05:53:35 -03001700 coda_unlock(ctx);
1701
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001702 if (ctx->bitstream.vaddr) {
1703 dma_free_writecombine(&dev->plat_dev->dev, ctx->bitstream.size,
1704 ctx->bitstream.vaddr, ctx->bitstream.paddr);
1705 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001706 if (ctx->dev->devtype->product == CODA_DX6)
1707 coda_free_aux_buf(dev, &ctx->workbuf);
1708
1709 coda_free_aux_buf(dev, &ctx->parabuf);
Javier Martin186b2502012-07-26 05:53:35 -03001710 v4l2_ctrl_handler_free(&ctx->ctrls);
Javier Martin186b2502012-07-26 05:53:35 -03001711 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001712 clk_disable_unprepare(dev->clk_per);
Philipp Zabel1e172732014-07-11 06:36:23 -03001713 pm_runtime_put_sync(&dev->plat_dev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001714 v4l2_fh_del(&ctx->fh);
1715 v4l2_fh_exit(&ctx->fh);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001716 clear_bit(ctx->idx, &dev->instance_mask);
Philipp Zabel58b76772014-07-23 12:28:43 -03001717 if (ctx->ops->release)
1718 ctx->ops->release(ctx);
Javier Martin186b2502012-07-26 05:53:35 -03001719 kfree(ctx);
1720
1721 return 0;
1722}
1723
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001724static const struct v4l2_file_operations coda_fops = {
Javier Martin186b2502012-07-26 05:53:35 -03001725 .owner = THIS_MODULE,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001726 .open = coda_open,
Javier Martin186b2502012-07-26 05:53:35 -03001727 .release = coda_release,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001728 .poll = v4l2_m2m_fop_poll,
Javier Martin186b2502012-07-26 05:53:35 -03001729 .unlocked_ioctl = video_ioctl2,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001730 .mmap = v4l2_m2m_fop_mmap,
Javier Martin186b2502012-07-26 05:53:35 -03001731};
1732
Philipp Zabel87048bb2012-07-02 07:03:43 -03001733static int coda_hw_init(struct coda_dev *dev)
Javier Martin186b2502012-07-26 05:53:35 -03001734{
Javier Martin186b2502012-07-26 05:53:35 -03001735 u32 data;
1736 u16 *p;
Fabio Estevam79830db2013-08-21 11:14:17 -03001737 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001738
Fabio Estevam79830db2013-08-21 11:14:17 -03001739 ret = clk_prepare_enable(dev->clk_per);
1740 if (ret)
Philipp Zabel1e172732014-07-11 06:36:23 -03001741 goto err_clk_per;
Fabio Estevam79830db2013-08-21 11:14:17 -03001742
1743 ret = clk_prepare_enable(dev->clk_ahb);
1744 if (ret)
1745 goto err_clk_ahb;
Javier Martin186b2502012-07-26 05:53:35 -03001746
Philipp Zabel8f452842014-07-11 06:36:35 -03001747 if (dev->rstc)
1748 reset_control_reset(dev->rstc);
1749
Javier Martin186b2502012-07-26 05:53:35 -03001750 /*
1751 * Copy the first CODA_ISRAM_SIZE in the internal SRAM.
Philipp Zabel87048bb2012-07-02 07:03:43 -03001752 * The 16-bit chars in the code buffer are in memory access
1753 * order, re-sort them to CODA order for register download.
Javier Martin186b2502012-07-26 05:53:35 -03001754 * Data in this SRAM survives a reboot.
1755 */
Philipp Zabel87048bb2012-07-02 07:03:43 -03001756 p = (u16 *)dev->codebuf.vaddr;
1757 if (dev->devtype->product == CODA_DX6) {
1758 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1759 data = CODA_DOWN_ADDRESS_SET(i) |
1760 CODA_DOWN_DATA_SET(p[i ^ 1]);
1761 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1762 }
1763 } else {
1764 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1765 data = CODA_DOWN_ADDRESS_SET(i) |
1766 CODA_DOWN_DATA_SET(p[round_down(i, 4) +
1767 3 - (i % 4)]);
1768 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1769 }
Javier Martin186b2502012-07-26 05:53:35 -03001770 }
Javier Martin186b2502012-07-26 05:53:35 -03001771
Philipp Zabel9acf7692013-05-23 10:42:56 -03001772 /* Clear registers */
1773 for (i = 0; i < 64; i++)
1774 coda_write(dev, 0, CODA_REG_BIT_CODE_BUF_ADDR + i * 4);
1775
Javier Martin186b2502012-07-26 05:53:35 -03001776 /* Tell the BIT where to find everything it needs */
Philipp Zabel89548442014-07-11 06:36:17 -03001777 if (dev->devtype->product == CODA_960 ||
1778 dev->devtype->product == CODA_7541) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001779 coda_write(dev, dev->tempbuf.paddr,
1780 CODA_REG_BIT_TEMP_BUF_ADDR);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001781 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001782 } else {
1783 coda_write(dev, dev->workbuf.paddr,
1784 CODA_REG_BIT_WORK_BUF_ADDR);
1785 }
Javier Martin186b2502012-07-26 05:53:35 -03001786 coda_write(dev, dev->codebuf.paddr,
1787 CODA_REG_BIT_CODE_BUF_ADDR);
1788 coda_write(dev, 0, CODA_REG_BIT_CODE_RUN);
1789
1790 /* Set default values */
1791 switch (dev->devtype->product) {
1792 case CODA_DX6:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001793 coda_write(dev, CODADX6_STREAM_BUF_PIC_FLUSH,
1794 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001795 break;
1796 default:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001797 coda_write(dev, CODA7_STREAM_BUF_PIC_FLUSH,
1798 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001799 }
Philipp Zabel89548442014-07-11 06:36:17 -03001800 if (dev->devtype->product == CODA_960)
1801 coda_write(dev, 1 << 12, CODA_REG_BIT_FRAME_MEM_CTRL);
1802 else
1803 coda_write(dev, 0, CODA_REG_BIT_FRAME_MEM_CTRL);
Philipp Zabel10436672012-07-02 09:03:55 -03001804
1805 if (dev->devtype->product != CODA_DX6)
1806 coda_write(dev, 0, CODA7_REG_BIT_AXI_SRAM_USE);
1807
Javier Martin186b2502012-07-26 05:53:35 -03001808 coda_write(dev, CODA_INT_INTERRUPT_ENABLE,
1809 CODA_REG_BIT_INT_ENABLE);
1810
1811 /* Reset VPU and start processor */
1812 data = coda_read(dev, CODA_REG_BIT_CODE_RESET);
1813 data |= CODA_REG_RESET_ENABLE;
1814 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1815 udelay(10);
1816 data &= ~CODA_REG_RESET_ENABLE;
1817 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1818 coda_write(dev, CODA_REG_RUN_ENABLE, CODA_REG_BIT_CODE_RUN);
1819
Philipp Zabelfe7554e2014-07-11 06:36:24 -03001820 clk_disable_unprepare(dev->clk_ahb);
1821 clk_disable_unprepare(dev->clk_per);
1822
1823 return 0;
1824
1825err_clk_ahb:
1826 clk_disable_unprepare(dev->clk_per);
1827err_clk_per:
1828 return ret;
1829}
1830
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001831static int coda_register_device(struct coda_dev *dev, int i)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001832{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001833 struct video_device *vfd = &dev->vfd[i];
1834
1835 if (i > ARRAY_SIZE(dev->vfd))
1836 return -EINVAL;
1837
1838 snprintf(vfd->name, sizeof(vfd->name), dev->devtype->vdevs[i]->name);
1839 vfd->fops = &coda_fops;
1840 vfd->ioctl_ops = &coda_ioctl_ops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001841 vfd->release = video_device_release_empty,
1842 vfd->lock = &dev->dev_mutex;
1843 vfd->v4l2_dev = &dev->v4l2_dev;
1844 vfd->vfl_dir = VFL_DIR_M2M;
1845 video_set_drvdata(vfd, dev);
1846
Philipp Zabela188a662014-08-05 14:00:20 -03001847 /* Not applicable, use the selection API instead */
1848 v4l2_disable_ioctl(vfd, VIDIOC_CROPCAP);
1849 v4l2_disable_ioctl(vfd, VIDIOC_G_CROP);
1850 v4l2_disable_ioctl(vfd, VIDIOC_S_CROP);
1851
Philipp Zabel121cacf2014-07-18 07:22:42 -03001852 return video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1853}
1854
Javier Martin186b2502012-07-26 05:53:35 -03001855static void coda_fw_callback(const struct firmware *fw, void *context)
1856{
1857 struct coda_dev *dev = context;
1858 struct platform_device *pdev = dev->plat_dev;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001859 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001860
1861 if (!fw) {
1862 v4l2_err(&dev->v4l2_dev, "firmware request failed\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001863 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001864 }
1865
1866 /* allocate auxiliary per-device code buffer for the BIT processor */
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001867 ret = coda_alloc_aux_buf(dev, &dev->codebuf, fw->size, "codebuf",
1868 dev->debugfs_root);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001869 if (ret < 0) {
Javier Martin186b2502012-07-26 05:53:35 -03001870 dev_err(&pdev->dev, "failed to allocate code buffer\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001871 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001872 }
1873
Philipp Zabel87048bb2012-07-02 07:03:43 -03001874 /* Copy the whole firmware image to the code buffer */
1875 memcpy(dev->codebuf.vaddr, fw->data, fw->size);
1876 release_firmware(fw);
1877
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001878 ret = coda_hw_init(dev);
1879 if (ret < 0) {
1880 v4l2_err(&dev->v4l2_dev, "HW initialization failed\n");
1881 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001882 }
1883
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001884 ret = coda_check_firmware(dev);
1885 if (ret < 0)
1886 goto put_pm;
1887
Javier Martin186b2502012-07-26 05:53:35 -03001888 dev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
1889 if (IS_ERR(dev->alloc_ctx)) {
1890 v4l2_err(&dev->v4l2_dev, "Failed to alloc vb2 context\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001891 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001892 }
1893
1894 dev->m2m_dev = v4l2_m2m_init(&coda_m2m_ops);
1895 if (IS_ERR(dev->m2m_dev)) {
1896 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
1897 goto rel_ctx;
1898 }
1899
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001900 for (i = 0; i < dev->devtype->num_vdevs; i++) {
1901 ret = coda_register_device(dev, i);
1902 if (ret) {
1903 v4l2_err(&dev->v4l2_dev,
1904 "Failed to register %s video device: %d\n",
1905 dev->devtype->vdevs[i]->name, ret);
1906 goto rel_vfd;
1907 }
Philipp Zabel121cacf2014-07-18 07:22:42 -03001908 }
1909
1910 v4l2_info(&dev->v4l2_dev, "codec registered as /dev/video[%d-%d]\n",
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001911 dev->vfd[0].num, dev->vfd[i - 1].num);
Javier Martin186b2502012-07-26 05:53:35 -03001912
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001913 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001914 return;
1915
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001916rel_vfd:
1917 while (--i >= 0)
1918 video_unregister_device(&dev->vfd[i]);
Javier Martin186b2502012-07-26 05:53:35 -03001919 v4l2_m2m_release(dev->m2m_dev);
1920rel_ctx:
1921 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001922put_pm:
1923 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001924}
1925
1926static int coda_firmware_request(struct coda_dev *dev)
1927{
1928 char *fw = dev->devtype->firmware;
1929
1930 dev_dbg(&dev->plat_dev->dev, "requesting firmware '%s' for %s\n", fw,
1931 coda_product_name(dev->devtype->product));
1932
1933 return request_firmware_nowait(THIS_MODULE, true,
1934 fw, &dev->plat_dev->dev, GFP_KERNEL, dev, coda_fw_callback);
1935}
1936
1937enum coda_platform {
1938 CODA_IMX27,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03001939 CODA_IMX53,
Philipp Zabel89548442014-07-11 06:36:17 -03001940 CODA_IMX6Q,
1941 CODA_IMX6DL,
Javier Martin186b2502012-07-26 05:53:35 -03001942};
1943
Emil Goodec06d8752012-08-14 17:44:42 -03001944static const struct coda_devtype coda_devdata[] = {
Javier Martin186b2502012-07-26 05:53:35 -03001945 [CODA_IMX27] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001946 .firmware = "v4l-codadx6-imx27.bin",
1947 .product = CODA_DX6,
1948 .codecs = codadx6_codecs,
1949 .num_codecs = ARRAY_SIZE(codadx6_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001950 .vdevs = codadx6_video_devices,
1951 .num_vdevs = ARRAY_SIZE(codadx6_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001952 .workbuf_size = 288 * 1024 + FMO_SLICE_SAVE_BUF_SIZE * 8 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03001953 .iram_size = 0xb000,
Javier Martin186b2502012-07-26 05:53:35 -03001954 },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03001955 [CODA_IMX53] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001956 .firmware = "v4l-coda7541-imx53.bin",
1957 .product = CODA_7541,
1958 .codecs = coda7_codecs,
1959 .num_codecs = ARRAY_SIZE(coda7_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001960 .vdevs = coda7_video_devices,
1961 .num_vdevs = ARRAY_SIZE(coda7_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001962 .workbuf_size = 128 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03001963 .tempbuf_size = 304 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03001964 .iram_size = 0x14000,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03001965 },
Philipp Zabel89548442014-07-11 06:36:17 -03001966 [CODA_IMX6Q] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001967 .firmware = "v4l-coda960-imx6q.bin",
1968 .product = CODA_960,
1969 .codecs = coda9_codecs,
1970 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001971 .vdevs = coda9_video_devices,
1972 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001973 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03001974 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03001975 .iram_size = 0x21000,
Philipp Zabel89548442014-07-11 06:36:17 -03001976 },
1977 [CODA_IMX6DL] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001978 .firmware = "v4l-coda960-imx6dl.bin",
1979 .product = CODA_960,
1980 .codecs = coda9_codecs,
1981 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001982 .vdevs = coda9_video_devices,
1983 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001984 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03001985 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03001986 .iram_size = 0x20000,
Philipp Zabel89548442014-07-11 06:36:17 -03001987 },
Javier Martin186b2502012-07-26 05:53:35 -03001988};
1989
1990static struct platform_device_id coda_platform_ids[] = {
1991 { .name = "coda-imx27", .driver_data = CODA_IMX27 },
Fabio Estevam4e44cd02012-10-10 00:07:38 -03001992 { .name = "coda-imx53", .driver_data = CODA_IMX53 },
Javier Martin186b2502012-07-26 05:53:35 -03001993 { /* sentinel */ }
1994};
1995MODULE_DEVICE_TABLE(platform, coda_platform_ids);
1996
1997#ifdef CONFIG_OF
1998static const struct of_device_id coda_dt_ids[] = {
Alexander Shiyan7b0dd9e2013-06-15 08:09:57 -03001999 { .compatible = "fsl,imx27-vpu", .data = &coda_devdata[CODA_IMX27] },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002000 { .compatible = "fsl,imx53-vpu", .data = &coda_devdata[CODA_IMX53] },
Philipp Zabel89548442014-07-11 06:36:17 -03002001 { .compatible = "fsl,imx6q-vpu", .data = &coda_devdata[CODA_IMX6Q] },
2002 { .compatible = "fsl,imx6dl-vpu", .data = &coda_devdata[CODA_IMX6DL] },
Javier Martin186b2502012-07-26 05:53:35 -03002003 { /* sentinel */ }
2004};
2005MODULE_DEVICE_TABLE(of, coda_dt_ids);
2006#endif
2007
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002008static int coda_probe(struct platform_device *pdev)
Javier Martin186b2502012-07-26 05:53:35 -03002009{
2010 const struct of_device_id *of_id =
2011 of_match_device(of_match_ptr(coda_dt_ids), &pdev->dev);
2012 const struct platform_device_id *pdev_id;
Philipp Zabel657eee72013-04-29 16:17:14 -07002013 struct coda_platform_data *pdata = pdev->dev.platform_data;
2014 struct device_node *np = pdev->dev.of_node;
2015 struct gen_pool *pool;
Javier Martin186b2502012-07-26 05:53:35 -03002016 struct coda_dev *dev;
2017 struct resource *res;
2018 int ret, irq;
2019
Philipp Zabelf23797b2014-08-06 08:02:23 -03002020 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
Philipp Zabel6da999d2014-09-29 09:53:43 -03002021 if (!dev)
Javier Martin186b2502012-07-26 05:53:35 -03002022 return -ENOMEM;
Javier Martin186b2502012-07-26 05:53:35 -03002023
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002024 pdev_id = of_id ? of_id->data : platform_get_device_id(pdev);
2025
2026 if (of_id)
2027 dev->devtype = of_id->data;
2028 else if (pdev_id)
2029 dev->devtype = &coda_devdata[pdev_id->driver_data];
2030 else
2031 return -EINVAL;
2032
Javier Martin186b2502012-07-26 05:53:35 -03002033 spin_lock_init(&dev->irqlock);
Philipp Zabele11f3e62012-07-25 09:16:58 -03002034 INIT_LIST_HEAD(&dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03002035
2036 dev->plat_dev = pdev;
2037 dev->clk_per = devm_clk_get(&pdev->dev, "per");
2038 if (IS_ERR(dev->clk_per)) {
2039 dev_err(&pdev->dev, "Could not get per clock\n");
2040 return PTR_ERR(dev->clk_per);
2041 }
2042
2043 dev->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
2044 if (IS_ERR(dev->clk_ahb)) {
2045 dev_err(&pdev->dev, "Could not get ahb clock\n");
2046 return PTR_ERR(dev->clk_ahb);
2047 }
2048
2049 /* Get memory for physical registers */
2050 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Philipp Zabel611cbbf2013-05-21 04:19:27 -03002051 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
2052 if (IS_ERR(dev->regs_base))
2053 return PTR_ERR(dev->regs_base);
Javier Martin186b2502012-07-26 05:53:35 -03002054
2055 /* IRQ */
Philipp Zabel540b72e2014-08-05 14:00:09 -03002056 irq = platform_get_irq_byname(pdev, "bit");
2057 if (irq < 0)
2058 irq = platform_get_irq(pdev, 0);
Javier Martin186b2502012-07-26 05:53:35 -03002059 if (irq < 0) {
2060 dev_err(&pdev->dev, "failed to get irq resource\n");
Fabio Estevam7d377432014-06-04 15:46:23 -03002061 return irq;
Javier Martin186b2502012-07-26 05:53:35 -03002062 }
2063
Fabio Estevam08c8d142014-06-04 15:46:24 -03002064 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, coda_irq_handler,
2065 IRQF_ONESHOT, dev_name(&pdev->dev), dev);
2066 if (ret < 0) {
2067 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
2068 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002069 }
2070
Philipp Zabelee27aa92014-07-24 16:50:03 -03002071 dev->rstc = devm_reset_control_get_optional(&pdev->dev, NULL);
Philipp Zabel8f452842014-07-11 06:36:35 -03002072 if (IS_ERR(dev->rstc)) {
2073 ret = PTR_ERR(dev->rstc);
Philipp Zabelee27aa92014-07-24 16:50:03 -03002074 if (ret == -ENOENT || ret == -ENOSYS) {
Philipp Zabel8f452842014-07-11 06:36:35 -03002075 dev->rstc = NULL;
2076 } else {
Philipp Zabelf23797b2014-08-06 08:02:23 -03002077 dev_err(&pdev->dev, "failed get reset control: %d\n",
2078 ret);
Philipp Zabel8f452842014-07-11 06:36:35 -03002079 return ret;
2080 }
2081 }
2082
Philipp Zabel657eee72013-04-29 16:17:14 -07002083 /* Get IRAM pool from device tree or platform data */
2084 pool = of_get_named_gen_pool(np, "iram", 0);
2085 if (!pool && pdata)
2086 pool = dev_get_gen_pool(pdata->iram_dev);
2087 if (!pool) {
2088 dev_err(&pdev->dev, "iram pool not available\n");
2089 return -ENOMEM;
2090 }
2091 dev->iram_pool = pool;
2092
Javier Martin186b2502012-07-26 05:53:35 -03002093 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
2094 if (ret)
2095 return ret;
2096
2097 mutex_init(&dev->dev_mutex);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002098 mutex_init(&dev->coda_mutex);
Javier Martin186b2502012-07-26 05:53:35 -03002099
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002100 dev->debugfs_root = debugfs_create_dir("coda", NULL);
2101 if (!dev->debugfs_root)
2102 dev_warn(&pdev->dev, "failed to create debugfs root\n");
2103
Javier Martin186b2502012-07-26 05:53:35 -03002104 /* allocate auxiliary per-device buffers for the BIT processor */
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002105 if (dev->devtype->product == CODA_DX6) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002106 ret = coda_alloc_aux_buf(dev, &dev->workbuf,
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002107 dev->devtype->workbuf_size, "workbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002108 dev->debugfs_root);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002109 if (ret < 0) {
2110 dev_err(&pdev->dev, "failed to allocate work buffer\n");
2111 v4l2_device_unregister(&dev->v4l2_dev);
2112 return ret;
2113 }
Javier Martin186b2502012-07-26 05:53:35 -03002114 }
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002115
2116 if (dev->devtype->tempbuf_size) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002117 ret = coda_alloc_aux_buf(dev, &dev->tempbuf,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002118 dev->devtype->tempbuf_size, "tempbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002119 dev->debugfs_root);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002120 if (ret < 0) {
2121 dev_err(&pdev->dev, "failed to allocate temp buffer\n");
2122 v4l2_device_unregister(&dev->v4l2_dev);
2123 return ret;
2124 }
Javier Martin186b2502012-07-26 05:53:35 -03002125 }
2126
Philipp Zabel401e9722014-07-11 06:36:43 -03002127 dev->iram.size = dev->devtype->iram_size;
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002128 dev->iram.vaddr = gen_pool_dma_alloc(dev->iram_pool, dev->iram.size,
2129 &dev->iram.paddr);
2130 if (!dev->iram.vaddr) {
Philipp Zabel8be31c82014-08-05 14:00:13 -03002131 dev_warn(&pdev->dev, "unable to alloc iram\n");
2132 } else {
2133 dev->iram.blob.data = dev->iram.vaddr;
2134 dev->iram.blob.size = dev->iram.size;
2135 dev->iram.dentry = debugfs_create_blob("iram", 0644,
2136 dev->debugfs_root,
2137 &dev->iram.blob);
Philipp Zabel10436672012-07-02 09:03:55 -03002138 }
2139
Philipp Zabel32b6f202014-07-11 06:36:20 -03002140 dev->workqueue = alloc_workqueue("coda", WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
2141 if (!dev->workqueue) {
2142 dev_err(&pdev->dev, "unable to alloc workqueue\n");
2143 return -ENOMEM;
2144 }
2145
Javier Martin186b2502012-07-26 05:53:35 -03002146 platform_set_drvdata(pdev, dev);
2147
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002148 /*
2149 * Start activated so we can directly call coda_hw_init in
2150 * coda_fw_callback regardless of whether CONFIG_PM_RUNTIME is
2151 * enabled or whether the device is associated with a PM domain.
2152 */
2153 pm_runtime_get_noresume(&pdev->dev);
2154 pm_runtime_set_active(&pdev->dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002155 pm_runtime_enable(&pdev->dev);
2156
Javier Martin186b2502012-07-26 05:53:35 -03002157 return coda_firmware_request(dev);
2158}
2159
2160static int coda_remove(struct platform_device *pdev)
2161{
2162 struct coda_dev *dev = platform_get_drvdata(pdev);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002163 int i;
Javier Martin186b2502012-07-26 05:53:35 -03002164
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002165 for (i = 0; i < ARRAY_SIZE(dev->vfd); i++) {
2166 if (video_get_drvdata(&dev->vfd[i]))
2167 video_unregister_device(&dev->vfd[i]);
2168 }
Javier Martin186b2502012-07-26 05:53:35 -03002169 if (dev->m2m_dev)
2170 v4l2_m2m_release(dev->m2m_dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002171 pm_runtime_disable(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03002172 if (dev->alloc_ctx)
2173 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
2174 v4l2_device_unregister(&dev->v4l2_dev);
Philipp Zabel32b6f202014-07-11 06:36:20 -03002175 destroy_workqueue(dev->workqueue);
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002176 if (dev->iram.vaddr)
2177 gen_pool_free(dev->iram_pool, (unsigned long)dev->iram.vaddr,
2178 dev->iram.size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002179 coda_free_aux_buf(dev, &dev->codebuf);
2180 coda_free_aux_buf(dev, &dev->tempbuf);
2181 coda_free_aux_buf(dev, &dev->workbuf);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002182 debugfs_remove_recursive(dev->debugfs_root);
Javier Martin186b2502012-07-26 05:53:35 -03002183 return 0;
2184}
2185
Philipp Zabel1e172732014-07-11 06:36:23 -03002186#ifdef CONFIG_PM_RUNTIME
2187static int coda_runtime_resume(struct device *dev)
2188{
2189 struct coda_dev *cdev = dev_get_drvdata(dev);
2190 int ret = 0;
2191
Philipp Zabel65919e62014-07-18 07:22:36 -03002192 if (dev->pm_domain && cdev->codebuf.vaddr) {
Philipp Zabel1e172732014-07-11 06:36:23 -03002193 ret = coda_hw_init(cdev);
2194 if (ret)
2195 v4l2_err(&cdev->v4l2_dev, "HW initialization failed\n");
2196 }
2197
2198 return ret;
2199}
2200#endif
2201
2202static const struct dev_pm_ops coda_pm_ops = {
2203 SET_RUNTIME_PM_OPS(NULL, coda_runtime_resume, NULL)
2204};
2205
Javier Martin186b2502012-07-26 05:53:35 -03002206static struct platform_driver coda_driver = {
2207 .probe = coda_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002208 .remove = coda_remove,
Javier Martin186b2502012-07-26 05:53:35 -03002209 .driver = {
2210 .name = CODA_NAME,
2211 .owner = THIS_MODULE,
2212 .of_match_table = of_match_ptr(coda_dt_ids),
Philipp Zabel1e172732014-07-11 06:36:23 -03002213 .pm = &coda_pm_ops,
Javier Martin186b2502012-07-26 05:53:35 -03002214 },
2215 .id_table = coda_platform_ids,
2216};
2217
2218module_platform_driver(coda_driver);
2219
2220MODULE_LICENSE("GPL");
2221MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
2222MODULE_DESCRIPTION("Coda multi-standard codec V4L2 driver");