blob: 9b46088c8c7b223cc4d8ffd4f42bf33f32d5ca86 [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>
Philipp Zabelbb04aa62015-01-23 13:51:30 -030040#include <media/videobuf2-vmalloc.h>
Javier Martin186b2502012-07-26 05:53:35 -030041
Philipp Zabela2b3e462014-07-23 12:28:39 -030042#include "coda.h"
Javier Martin186b2502012-07-26 05:53:35 -030043
44#define CODA_NAME "coda"
45
Philipp Zabel0cddc7e2013-09-30 10:34:44 -030046#define CODADX6_MAX_INSTANCES 4
Philipp Zabel2c11d1b2014-10-02 14:08:28 -030047#define CODA_MAX_FORMATS 4
Javier Martin186b2502012-07-26 05:53:35 -030048
Javier Martin186b2502012-07-26 05:53:35 -030049#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;
Philipp Zabela22496c2015-01-23 13:51:33 -0300183 bool direct;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300184 u32 src_formats[CODA_MAX_FORMATS];
185 u32 dst_formats[CODA_MAX_FORMATS];
186};
187
188static const struct coda_video_device coda_bit_encoder = {
189 .name = "coda-encoder",
190 .type = CODA_INST_ENCODER,
191 .ops = &coda_bit_encode_ops,
192 .src_formats = {
193 V4L2_PIX_FMT_YUV420,
194 V4L2_PIX_FMT_YVU420,
195 V4L2_PIX_FMT_NV12,
196 },
197 .dst_formats = {
198 V4L2_PIX_FMT_H264,
199 V4L2_PIX_FMT_MPEG4,
200 },
201};
202
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300203static const struct coda_video_device coda_bit_jpeg_encoder = {
204 .name = "coda-jpeg-encoder",
205 .type = CODA_INST_ENCODER,
206 .ops = &coda_bit_encode_ops,
207 .src_formats = {
208 V4L2_PIX_FMT_YUV420,
209 V4L2_PIX_FMT_YVU420,
210 V4L2_PIX_FMT_NV12,
211 V4L2_PIX_FMT_YUV422P,
212 },
213 .dst_formats = {
214 V4L2_PIX_FMT_JPEG,
215 },
216};
217
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300218static const struct coda_video_device coda_bit_decoder = {
219 .name = "coda-decoder",
220 .type = CODA_INST_DECODER,
221 .ops = &coda_bit_decode_ops,
222 .src_formats = {
223 V4L2_PIX_FMT_H264,
224 V4L2_PIX_FMT_MPEG4,
225 },
226 .dst_formats = {
227 V4L2_PIX_FMT_YUV420,
228 V4L2_PIX_FMT_YVU420,
229 V4L2_PIX_FMT_NV12,
230 },
231};
232
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300233static const struct coda_video_device coda_bit_jpeg_decoder = {
234 .name = "coda-jpeg-decoder",
235 .type = CODA_INST_DECODER,
236 .ops = &coda_bit_decode_ops,
237 .src_formats = {
238 V4L2_PIX_FMT_JPEG,
239 },
240 .dst_formats = {
241 V4L2_PIX_FMT_YUV420,
242 V4L2_PIX_FMT_YVU420,
243 V4L2_PIX_FMT_NV12,
244 V4L2_PIX_FMT_YUV422P,
245 },
246};
247
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300248static const struct coda_video_device *codadx6_video_devices[] = {
249 &coda_bit_encoder,
250};
251
252static const struct coda_video_device *coda7_video_devices[] = {
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300253 &coda_bit_jpeg_encoder,
254 &coda_bit_jpeg_decoder,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300255 &coda_bit_encoder,
256 &coda_bit_decoder,
257};
258
259static const struct coda_video_device *coda9_video_devices[] = {
260 &coda_bit_encoder,
261 &coda_bit_decoder,
262};
263
Philipp Zabelb96904e2013-05-23 10:42:58 -0300264static bool coda_format_is_yuv(u32 fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300265{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300266 switch (fourcc) {
267 case V4L2_PIX_FMT_YUV420:
268 case V4L2_PIX_FMT_YVU420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300269 case V4L2_PIX_FMT_NV12:
Philipp Zabel4de69312014-10-02 14:08:26 -0300270 case V4L2_PIX_FMT_YUV422P:
Philipp Zabelb96904e2013-05-23 10:42:58 -0300271 return true;
272 default:
273 return false;
274 }
275}
Javier Martin186b2502012-07-26 05:53:35 -0300276
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300277static const char *coda_format_name(u32 fourcc)
278{
279 int i;
280
281 for (i = 0; i < ARRAY_SIZE(coda_formats); i++) {
282 if (coda_formats[i].fourcc == fourcc)
283 return coda_formats[i].name;
284 }
285
286 return NULL;
287}
288
Philipp Zabelb96904e2013-05-23 10:42:58 -0300289/*
290 * Normalize all supported YUV 4:2:0 formats to the value used in the codec
291 * tables.
292 */
293static u32 coda_format_normalize_yuv(u32 fourcc)
294{
295 return coda_format_is_yuv(fourcc) ? V4L2_PIX_FMT_YUV420 : fourcc;
296}
297
Philipp Zabel814c3762014-07-18 07:22:45 -0300298static const struct coda_codec *coda_find_codec(struct coda_dev *dev,
299 int src_fourcc, int dst_fourcc)
Philipp Zabelb96904e2013-05-23 10:42:58 -0300300{
Philipp Zabel814c3762014-07-18 07:22:45 -0300301 const struct coda_codec *codecs = dev->devtype->codecs;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300302 int num_codecs = dev->devtype->num_codecs;
303 int k;
304
305 src_fourcc = coda_format_normalize_yuv(src_fourcc);
306 dst_fourcc = coda_format_normalize_yuv(dst_fourcc);
307 if (src_fourcc == dst_fourcc)
308 return NULL;
309
310 for (k = 0; k < num_codecs; k++) {
311 if (codecs[k].src_fourcc == src_fourcc &&
312 codecs[k].dst_fourcc == dst_fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300313 break;
314 }
315
Philipp Zabelb96904e2013-05-23 10:42:58 -0300316 if (k == num_codecs)
Javier Martin186b2502012-07-26 05:53:35 -0300317 return NULL;
318
Philipp Zabelb96904e2013-05-23 10:42:58 -0300319 return &codecs[k];
Javier Martin186b2502012-07-26 05:53:35 -0300320}
321
Philipp Zabel57625592013-09-30 10:34:51 -0300322static void coda_get_max_dimensions(struct coda_dev *dev,
Philipp Zabel814c3762014-07-18 07:22:45 -0300323 const struct coda_codec *codec,
Philipp Zabel57625592013-09-30 10:34:51 -0300324 int *max_w, int *max_h)
325{
Philipp Zabel814c3762014-07-18 07:22:45 -0300326 const struct coda_codec *codecs = dev->devtype->codecs;
Philipp Zabel57625592013-09-30 10:34:51 -0300327 int num_codecs = dev->devtype->num_codecs;
328 unsigned int w, h;
329 int k;
330
331 if (codec) {
332 w = codec->max_w;
333 h = codec->max_h;
334 } else {
335 for (k = 0, w = 0, h = 0; k < num_codecs; k++) {
336 w = max(w, codecs[k].max_w);
337 h = max(h, codecs[k].max_h);
338 }
339 }
340
341 if (max_w)
342 *max_w = w;
343 if (max_h)
344 *max_h = h;
345}
346
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300347const struct coda_video_device *to_coda_video_device(struct video_device *vdev)
348{
349 struct coda_dev *dev = video_get_drvdata(vdev);
350 unsigned int i = vdev - dev->vfd;
351
352 if (i >= dev->devtype->num_vdevs)
353 return NULL;
354
355 return dev->devtype->vdevs[i];
356}
357
Philipp Zabel79924ca2014-07-23 12:28:45 -0300358const char *coda_product_name(int product)
Philipp Zabel927933f2013-09-30 10:34:48 -0300359{
360 static char buf[9];
361
362 switch (product) {
363 case CODA_DX6:
364 return "CodaDx6";
365 case CODA_7541:
366 return "CODA7541";
Philipp Zabel89548442014-07-11 06:36:17 -0300367 case CODA_960:
368 return "CODA960";
Philipp Zabel927933f2013-09-30 10:34:48 -0300369 default:
370 snprintf(buf, sizeof(buf), "(0x%04x)", product);
371 return buf;
372 }
373}
374
Javier Martin186b2502012-07-26 05:53:35 -0300375/*
376 * V4L2 ioctl() operations.
377 */
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300378static int coda_querycap(struct file *file, void *priv,
379 struct v4l2_capability *cap)
Javier Martin186b2502012-07-26 05:53:35 -0300380{
Philipp Zabel927933f2013-09-30 10:34:48 -0300381 struct coda_ctx *ctx = fh_to_ctx(priv);
382
Javier Martin186b2502012-07-26 05:53:35 -0300383 strlcpy(cap->driver, CODA_NAME, sizeof(cap->driver));
Philipp Zabel927933f2013-09-30 10:34:48 -0300384 strlcpy(cap->card, coda_product_name(ctx->dev->devtype->product),
385 sizeof(cap->card));
Philipp Zabeldad0e1c2013-05-21 04:18:22 -0300386 strlcpy(cap->bus_info, "platform:" CODA_NAME, sizeof(cap->bus_info));
Philipp Zabel3898e7a2014-07-18 07:22:37 -0300387 cap->device_caps = V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
Javier Martin186b2502012-07-26 05:53:35 -0300388 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
389
390 return 0;
391}
392
Philipp Zabel22e244b2014-07-18 07:22:43 -0300393static int coda_enum_fmt(struct file *file, void *priv,
394 struct v4l2_fmtdesc *f)
Javier Martin186b2502012-07-26 05:53:35 -0300395{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300396 struct video_device *vdev = video_devdata(file);
397 const struct coda_video_device *cvd = to_coda_video_device(vdev);
398 const u32 *formats;
399 const char *name;
Philipp Zabel22e244b2014-07-18 07:22:43 -0300400
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300401 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
402 formats = cvd->src_formats;
403 else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
404 formats = cvd->dst_formats;
Philipp Zabel22e244b2014-07-18 07:22:43 -0300405 else
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300406 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300407
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300408 if (f->index >= CODA_MAX_FORMATS || formats[f->index] == 0)
409 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300410
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300411 name = coda_format_name(formats[f->index]);
412 strlcpy(f->description, name, sizeof(f->description));
413 f->pixelformat = formats[f->index];
414 if (!coda_format_is_yuv(formats[f->index]))
415 f->flags |= V4L2_FMT_FLAG_COMPRESSED;
Javier Martin186b2502012-07-26 05:53:35 -0300416
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300417 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300418}
419
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300420static int coda_g_fmt(struct file *file, void *priv,
421 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300422{
Javier Martin186b2502012-07-26 05:53:35 -0300423 struct coda_q_data *q_data;
424 struct coda_ctx *ctx = fh_to_ctx(priv);
425
Javier Martin186b2502012-07-26 05:53:35 -0300426 q_data = get_q_data(ctx, f->type);
Philipp Zabelb9736292014-07-11 06:36:18 -0300427 if (!q_data)
428 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300429
430 f->fmt.pix.field = V4L2_FIELD_NONE;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300431 f->fmt.pix.pixelformat = q_data->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300432 f->fmt.pix.width = q_data->width;
433 f->fmt.pix.height = q_data->height;
Philipp Zabel2fd6a372014-07-11 06:36:36 -0300434 f->fmt.pix.bytesperline = q_data->bytesperline;
Javier Martin186b2502012-07-26 05:53:35 -0300435
436 f->fmt.pix.sizeimage = q_data->sizeimage;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300437 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_JPEG)
438 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
439 else
440 f->fmt.pix.colorspace = ctx->colorspace;
Javier Martin186b2502012-07-26 05:53:35 -0300441
442 return 0;
443}
444
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300445static int coda_try_pixelformat(struct coda_ctx *ctx, struct v4l2_format *f)
446{
447 struct coda_q_data *q_data;
448 const u32 *formats;
449 int i;
450
451 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
452 formats = ctx->cvd->src_formats;
453 else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
454 formats = ctx->cvd->dst_formats;
455 else
456 return -EINVAL;
457
458 for (i = 0; i < CODA_MAX_FORMATS; i++) {
459 if (formats[i] == f->fmt.pix.pixelformat) {
460 f->fmt.pix.pixelformat = formats[i];
461 return 0;
462 }
463 }
464
465 /* Fall back to currently set pixelformat */
466 q_data = get_q_data(ctx, f->type);
467 f->fmt.pix.pixelformat = q_data->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300468
469 return 0;
470}
471
Philipp Zabel8e428d52015-01-23 13:51:29 -0300472static unsigned int coda_estimate_sizeimage(struct coda_ctx *ctx, u32 sizeimage,
473 u32 width, u32 height)
474{
475 /*
476 * This is a rough estimate for sensible compressed buffer
477 * sizes (between 1 and 16 bits per pixel). This could be
478 * improved by better format specific worst case estimates.
479 */
480 return round_up(clamp(sizeimage, width * height / 8,
481 width * height * 2), PAGE_SIZE);
482}
483
Philipp Zabel814c3762014-07-18 07:22:45 -0300484static int coda_try_fmt(struct coda_ctx *ctx, const struct coda_codec *codec,
Philipp Zabel57625592013-09-30 10:34:51 -0300485 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300486{
Philipp Zabel57625592013-09-30 10:34:51 -0300487 struct coda_dev *dev = ctx->dev;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300488 unsigned int max_w, max_h;
Javier Martin186b2502012-07-26 05:53:35 -0300489 enum v4l2_field field;
490
491 field = f->fmt.pix.field;
492 if (field == V4L2_FIELD_ANY)
493 field = V4L2_FIELD_NONE;
494 else if (V4L2_FIELD_NONE != field)
495 return -EINVAL;
496
497 /* V4L2 specification suggests the driver corrects the format struct
498 * if any of the dimensions is unsupported */
499 f->fmt.pix.field = field;
500
Philipp Zabel57625592013-09-30 10:34:51 -0300501 coda_get_max_dimensions(dev, codec, &max_w, &max_h);
502 v4l_bound_align_image(&f->fmt.pix.width, MIN_W, max_w, W_ALIGN,
503 &f->fmt.pix.height, MIN_H, max_h, H_ALIGN,
504 S_ALIGN);
Philipp Zabelb96904e2013-05-23 10:42:58 -0300505
Philipp Zabel57625592013-09-30 10:34:51 -0300506 switch (f->fmt.pix.pixelformat) {
507 case V4L2_PIX_FMT_YUV420:
508 case V4L2_PIX_FMT_YVU420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300509 case V4L2_PIX_FMT_NV12:
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300510 /*
511 * Frame stride must be at least multiple of 8,
512 * but multiple of 16 for h.264 or JPEG 4:2:x
513 */
Philipp Zabel451dfe52014-07-11 06:36:39 -0300514 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
Philipp Zabel47cf0c62013-05-23 10:42:54 -0300515 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
Philipp Zabel451d43a2012-07-26 09:18:27 -0300516 f->fmt.pix.height * 3 / 2;
Philipp Zabel57625592013-09-30 10:34:51 -0300517 break;
Philipp Zabel4de69312014-10-02 14:08:26 -0300518 case V4L2_PIX_FMT_YUV422P:
519 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
520 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
521 f->fmt.pix.height * 2;
522 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300523 case V4L2_PIX_FMT_JPEG:
524 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
525 /* fallthrough */
Philipp Zabel57625592013-09-30 10:34:51 -0300526 case V4L2_PIX_FMT_H264:
527 case V4L2_PIX_FMT_MPEG4:
Javier Martin186b2502012-07-26 05:53:35 -0300528 f->fmt.pix.bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -0300529 f->fmt.pix.sizeimage = coda_estimate_sizeimage(ctx,
530 f->fmt.pix.sizeimage,
531 f->fmt.pix.width,
532 f->fmt.pix.height);
Philipp Zabel57625592013-09-30 10:34:51 -0300533 break;
534 default:
535 BUG();
Javier Martin186b2502012-07-26 05:53:35 -0300536 }
537
538 return 0;
539}
540
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300541static int coda_try_fmt_vid_cap(struct file *file, void *priv,
542 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300543{
Javier Martin186b2502012-07-26 05:53:35 -0300544 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300545 const struct coda_q_data *q_data_src;
546 const struct coda_codec *codec;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300547 struct vb2_queue *src_vq;
548 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300549
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300550 ret = coda_try_pixelformat(ctx, f);
551 if (ret < 0)
552 return ret;
553
554 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
555
Philipp Zabel918c66f2013-06-27 06:59:01 -0300556 /*
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300557 * If the source format is already fixed, only allow the same output
558 * resolution
Philipp Zabel918c66f2013-06-27 06:59:01 -0300559 */
Philipp Zabel14604e32014-07-11 06:36:22 -0300560 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300561 if (vb2_is_streaming(src_vq)) {
Philipp Zabel91b5841e2014-07-18 07:22:41 -0300562 f->fmt.pix.width = q_data_src->width;
563 f->fmt.pix.height = q_data_src->height;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300564 }
Javier Martin186b2502012-07-26 05:53:35 -0300565
566 f->fmt.pix.colorspace = ctx->colorspace;
567
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300568 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
569 codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
570 f->fmt.pix.pixelformat);
571 if (!codec)
572 return -EINVAL;
573
Philipp Zabel57625592013-09-30 10:34:51 -0300574 ret = coda_try_fmt(ctx, codec, f);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300575 if (ret < 0)
576 return ret;
577
578 /* The h.264 decoder only returns complete 16x16 macroblocks */
579 if (codec && codec->src_fourcc == V4L2_PIX_FMT_H264) {
Philipp Zabel1b0ed7b2014-07-11 06:36:37 -0300580 f->fmt.pix.width = f->fmt.pix.width;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300581 f->fmt.pix.height = round_up(f->fmt.pix.height, 16);
Philipp Zabel1b0ed7b2014-07-11 06:36:37 -0300582 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300583 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
584 f->fmt.pix.height * 3 / 2;
585 }
586
587 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300588}
589
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300590static int coda_try_fmt_vid_out(struct file *file, void *priv,
591 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300592{
593 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300594 struct coda_dev *dev = ctx->dev;
595 const struct coda_q_data *q_data_dst;
596 const struct coda_codec *codec;
597 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300598
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300599 ret = coda_try_pixelformat(ctx, f);
600 if (ret < 0)
601 return ret;
Javier Martin186b2502012-07-26 05:53:35 -0300602
Philipp Zabel5f9826e2015-01-23 13:51:21 -0300603 switch (f->fmt.pix.colorspace) {
604 case V4L2_COLORSPACE_REC709:
605 case V4L2_COLORSPACE_JPEG:
606 break;
607 default:
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300608 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_JPEG)
609 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
610 else
611 f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
Javier Martin186b2502012-07-26 05:53:35 -0300612 }
613
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300614 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
615 codec = coda_find_codec(dev, f->fmt.pix.pixelformat, q_data_dst->fourcc);
Javier Martin186b2502012-07-26 05:53:35 -0300616
617 return coda_try_fmt(ctx, codec, f);
618}
619
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300620static int coda_s_fmt(struct coda_ctx *ctx, struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300621{
622 struct coda_q_data *q_data;
623 struct vb2_queue *vq;
Javier Martin186b2502012-07-26 05:53:35 -0300624
Philipp Zabel14604e32014-07-11 06:36:22 -0300625 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
Javier Martin186b2502012-07-26 05:53:35 -0300626 if (!vq)
627 return -EINVAL;
628
629 q_data = get_q_data(ctx, f->type);
630 if (!q_data)
631 return -EINVAL;
632
633 if (vb2_is_busy(vq)) {
634 v4l2_err(&ctx->dev->v4l2_dev, "%s queue busy\n", __func__);
635 return -EBUSY;
636 }
637
Philipp Zabelb96904e2013-05-23 10:42:58 -0300638 q_data->fourcc = f->fmt.pix.pixelformat;
Javier Martin186b2502012-07-26 05:53:35 -0300639 q_data->width = f->fmt.pix.width;
640 q_data->height = f->fmt.pix.height;
Philipp Zabel2fd6a372014-07-11 06:36:36 -0300641 q_data->bytesperline = f->fmt.pix.bytesperline;
Philipp Zabel451d43a2012-07-26 09:18:27 -0300642 q_data->sizeimage = f->fmt.pix.sizeimage;
Philipp Zabel52c41672014-07-11 06:36:19 -0300643 q_data->rect.left = 0;
644 q_data->rect.top = 0;
645 q_data->rect.width = f->fmt.pix.width;
646 q_data->rect.height = f->fmt.pix.height;
Javier Martin186b2502012-07-26 05:53:35 -0300647
648 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
649 "Setting format for type %d, wxh: %dx%d, fmt: %d\n",
Philipp Zabelb96904e2013-05-23 10:42:58 -0300650 f->type, q_data->width, q_data->height, q_data->fourcc);
Javier Martin186b2502012-07-26 05:53:35 -0300651
652 return 0;
653}
654
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300655static int coda_s_fmt_vid_cap(struct file *file, void *priv,
656 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300657{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300658 struct coda_ctx *ctx = fh_to_ctx(priv);
Javier Martin186b2502012-07-26 05:53:35 -0300659 int ret;
660
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300661 ret = coda_try_fmt_vid_cap(file, priv, f);
Javier Martin186b2502012-07-26 05:53:35 -0300662 if (ret)
663 return ret;
664
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300665 return coda_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300666}
667
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300668static int coda_s_fmt_vid_out(struct file *file, void *priv,
669 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300670{
671 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabelf95a6ce2014-08-05 14:00:19 -0300672 struct v4l2_format f_cap;
Javier Martin186b2502012-07-26 05:53:35 -0300673 int ret;
674
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300675 ret = coda_try_fmt_vid_out(file, priv, f);
Javier Martin186b2502012-07-26 05:53:35 -0300676 if (ret)
677 return ret;
678
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300679 ret = coda_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300680 if (ret)
Philipp Zabel2dc546d2014-08-05 14:00:18 -0300681 return ret;
682
683 ctx->colorspace = f->fmt.pix.colorspace;
Javier Martin186b2502012-07-26 05:53:35 -0300684
Philipp Zabel1c2f6a92015-01-23 13:51:22 -0300685 memset(&f_cap, 0, sizeof(f_cap));
Philipp Zabelf95a6ce2014-08-05 14:00:19 -0300686 f_cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
687 coda_g_fmt(file, priv, &f_cap);
688 f_cap.fmt.pix.width = f->fmt.pix.width;
689 f_cap.fmt.pix.height = f->fmt.pix.height;
690
691 ret = coda_try_fmt_vid_cap(file, priv, &f_cap);
692 if (ret)
693 return ret;
694
695 return coda_s_fmt(ctx, &f_cap);
Javier Martin186b2502012-07-26 05:53:35 -0300696}
697
Philipp Zabel73751da2015-03-24 14:30:51 -0300698static int coda_reqbufs(struct file *file, void *priv,
699 struct v4l2_requestbuffers *rb)
700{
701 struct coda_ctx *ctx = fh_to_ctx(priv);
702 int ret;
703
704 ret = v4l2_m2m_reqbufs(file, ctx->fh.m2m_ctx, rb);
705 if (ret)
706 return ret;
707
708 /*
709 * Allow to allocate instance specific per-context buffers, such as
710 * bitstream ringbuffer, slice buffer, work buffer, etc. if needed.
711 */
712 if (rb->type == V4L2_BUF_TYPE_VIDEO_OUTPUT && ctx->ops->reqbufs)
713 return ctx->ops->reqbufs(ctx, rb);
714
715 return 0;
716}
717
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300718static int coda_qbuf(struct file *file, void *priv,
719 struct v4l2_buffer *buf)
Javier Martin186b2502012-07-26 05:53:35 -0300720{
721 struct coda_ctx *ctx = fh_to_ctx(priv);
722
Philipp Zabel14604e32014-07-11 06:36:22 -0300723 return v4l2_m2m_qbuf(file, ctx->fh.m2m_ctx, buf);
Javier Martin186b2502012-07-26 05:53:35 -0300724}
725
Philipp Zabel918c66f2013-06-27 06:59:01 -0300726static bool coda_buf_is_end_of_stream(struct coda_ctx *ctx,
727 struct v4l2_buffer *buf)
728{
729 struct vb2_queue *src_vq;
730
Philipp Zabel14604e32014-07-11 06:36:22 -0300731 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300732
733 return ((ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG) &&
734 (buf->sequence == (ctx->qsequence - 1)));
735}
736
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300737static int coda_dqbuf(struct file *file, void *priv,
738 struct v4l2_buffer *buf)
Javier Martin186b2502012-07-26 05:53:35 -0300739{
740 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300741 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300742
Philipp Zabel14604e32014-07-11 06:36:22 -0300743 ret = v4l2_m2m_dqbuf(file, ctx->fh.m2m_ctx, buf);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300744
745 /* If this is the last capture buffer, emit an end-of-stream event */
746 if (buf->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
747 coda_buf_is_end_of_stream(ctx, buf)) {
748 const struct v4l2_event eos_event = {
749 .type = V4L2_EVENT_EOS
750 };
751
752 v4l2_event_queue_fh(&ctx->fh, &eos_event);
753 }
754
755 return ret;
Javier Martin186b2502012-07-26 05:53:35 -0300756}
757
Philipp Zabel52c41672014-07-11 06:36:19 -0300758static int coda_g_selection(struct file *file, void *fh,
759 struct v4l2_selection *s)
760{
761 struct coda_ctx *ctx = fh_to_ctx(fh);
762 struct coda_q_data *q_data;
763 struct v4l2_rect r, *rsel;
764
765 q_data = get_q_data(ctx, s->type);
766 if (!q_data)
767 return -EINVAL;
768
769 r.left = 0;
770 r.top = 0;
771 r.width = q_data->width;
772 r.height = q_data->height;
773 rsel = &q_data->rect;
774
775 switch (s->target) {
776 case V4L2_SEL_TGT_CROP_DEFAULT:
777 case V4L2_SEL_TGT_CROP_BOUNDS:
778 rsel = &r;
779 /* fallthrough */
780 case V4L2_SEL_TGT_CROP:
781 if (s->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
782 return -EINVAL;
783 break;
784 case V4L2_SEL_TGT_COMPOSE_BOUNDS:
785 case V4L2_SEL_TGT_COMPOSE_PADDED:
786 rsel = &r;
787 /* fallthrough */
788 case V4L2_SEL_TGT_COMPOSE:
789 case V4L2_SEL_TGT_COMPOSE_DEFAULT:
790 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
791 return -EINVAL;
792 break;
793 default:
794 return -EINVAL;
795 }
796
797 s->r = *rsel;
798
799 return 0;
800}
801
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300802static int coda_try_decoder_cmd(struct file *file, void *fh,
803 struct v4l2_decoder_cmd *dc)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300804{
Philipp Zabel918c66f2013-06-27 06:59:01 -0300805 if (dc->cmd != V4L2_DEC_CMD_STOP)
806 return -EINVAL;
807
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300808 if (dc->flags & V4L2_DEC_CMD_STOP_TO_BLACK)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300809 return -EINVAL;
810
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300811 if (!(dc->flags & V4L2_DEC_CMD_STOP_IMMEDIATELY) && (dc->stop.pts != 0))
Philipp Zabel918c66f2013-06-27 06:59:01 -0300812 return -EINVAL;
813
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300814 return 0;
815}
816
817static int coda_decoder_cmd(struct file *file, void *fh,
818 struct v4l2_decoder_cmd *dc)
819{
820 struct coda_ctx *ctx = fh_to_ctx(fh);
821 int ret;
822
823 ret = coda_try_decoder_cmd(file, fh, dc);
824 if (ret < 0)
825 return ret;
826
827 /* Ignore decoder stop command silently in encoder context */
Philipp Zabel918c66f2013-06-27 06:59:01 -0300828 if (ctx->inst_type != CODA_INST_DECODER)
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300829 return 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300830
Philipp Zabel347bb7f2014-07-23 12:28:42 -0300831 /* Set the stream-end flag on this context */
832 coda_bit_stream_end_flag(ctx);
Philipp Zabel84e23652014-07-11 06:36:34 -0300833 ctx->hold = false;
Michael Olbrichf3497da2014-07-11 06:36:30 -0300834 v4l2_m2m_try_schedule(ctx->fh.m2m_ctx);
Philipp Zabel89548442014-07-11 06:36:17 -0300835
Philipp Zabel918c66f2013-06-27 06:59:01 -0300836 return 0;
837}
838
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300839static int coda_subscribe_event(struct v4l2_fh *fh,
840 const struct v4l2_event_subscription *sub)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300841{
842 switch (sub->type) {
843 case V4L2_EVENT_EOS:
844 return v4l2_event_subscribe(fh, sub, 0, NULL);
845 default:
846 return v4l2_ctrl_subscribe_event(fh, sub);
847 }
Javier Martin186b2502012-07-26 05:53:35 -0300848}
849
850static const struct v4l2_ioctl_ops coda_ioctl_ops = {
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300851 .vidioc_querycap = coda_querycap,
Javier Martin186b2502012-07-26 05:53:35 -0300852
Philipp Zabel22e244b2014-07-18 07:22:43 -0300853 .vidioc_enum_fmt_vid_cap = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300854 .vidioc_g_fmt_vid_cap = coda_g_fmt,
855 .vidioc_try_fmt_vid_cap = coda_try_fmt_vid_cap,
856 .vidioc_s_fmt_vid_cap = coda_s_fmt_vid_cap,
Javier Martin186b2502012-07-26 05:53:35 -0300857
Philipp Zabel22e244b2014-07-18 07:22:43 -0300858 .vidioc_enum_fmt_vid_out = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300859 .vidioc_g_fmt_vid_out = coda_g_fmt,
860 .vidioc_try_fmt_vid_out = coda_try_fmt_vid_out,
861 .vidioc_s_fmt_vid_out = coda_s_fmt_vid_out,
Javier Martin186b2502012-07-26 05:53:35 -0300862
Philipp Zabel73751da2015-03-24 14:30:51 -0300863 .vidioc_reqbufs = coda_reqbufs,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300864 .vidioc_querybuf = v4l2_m2m_ioctl_querybuf,
Javier Martin186b2502012-07-26 05:53:35 -0300865
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300866 .vidioc_qbuf = coda_qbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300867 .vidioc_expbuf = v4l2_m2m_ioctl_expbuf,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300868 .vidioc_dqbuf = coda_dqbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300869 .vidioc_create_bufs = v4l2_m2m_ioctl_create_bufs,
Javier Martin186b2502012-07-26 05:53:35 -0300870
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300871 .vidioc_streamon = v4l2_m2m_ioctl_streamon,
872 .vidioc_streamoff = v4l2_m2m_ioctl_streamoff,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300873
Philipp Zabel52c41672014-07-11 06:36:19 -0300874 .vidioc_g_selection = coda_g_selection,
875
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300876 .vidioc_try_decoder_cmd = coda_try_decoder_cmd,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300877 .vidioc_decoder_cmd = coda_decoder_cmd,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300878
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300879 .vidioc_subscribe_event = coda_subscribe_event,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300880 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Javier Martin186b2502012-07-26 05:53:35 -0300881};
882
Philipp Zabel79924ca2014-07-23 12:28:45 -0300883void coda_set_gdi_regs(struct coda_ctx *ctx)
Philipp Zabel89548442014-07-11 06:36:17 -0300884{
885 struct gdi_tiled_map *tiled_map = &ctx->tiled_map;
886 struct coda_dev *dev = ctx->dev;
887 int i;
888
889 for (i = 0; i < 16; i++)
890 coda_write(dev, tiled_map->xy2ca_map[i],
891 CODA9_GDI_XY2_CAS_0 + 4 * i);
892 for (i = 0; i < 4; i++)
893 coda_write(dev, tiled_map->xy2ba_map[i],
894 CODA9_GDI_XY2_BA_0 + 4 * i);
895 for (i = 0; i < 16; i++)
896 coda_write(dev, tiled_map->xy2ra_map[i],
897 CODA9_GDI_XY2_RAS_0 + 4 * i);
898 coda_write(dev, tiled_map->xy2rbc_config, CODA9_GDI_XY2_RBC_CONFIG);
899 for (i = 0; i < 32; i++)
900 coda_write(dev, tiled_map->rbc2axi_map[i],
901 CODA9_GDI_RBC2_AXI_0 + 4 * i);
902}
903
Javier Martin186b2502012-07-26 05:53:35 -0300904/*
905 * Mem-to-mem operations.
906 */
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300907
908static void coda_device_run(void *m2m_priv)
909{
910 struct coda_ctx *ctx = m2m_priv;
911 struct coda_dev *dev = ctx->dev;
Philipp Zabel32b6f202014-07-11 06:36:20 -0300912
913 queue_work(dev->workqueue, &ctx->pic_run_work);
914}
915
Philipp Zabel32b6f202014-07-11 06:36:20 -0300916static void coda_pic_run_work(struct work_struct *work)
917{
918 struct coda_ctx *ctx = container_of(work, struct coda_ctx, pic_run_work);
919 struct coda_dev *dev = ctx->dev;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300920 int ret;
921
922 mutex_lock(&ctx->buffer_mutex);
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300923 mutex_lock(&dev->coda_mutex);
924
Philipp Zabela1192a12014-07-23 12:28:40 -0300925 ret = ctx->ops->prepare_run(ctx);
926 if (ret < 0 && ctx->inst_type == CODA_INST_DECODER) {
927 mutex_unlock(&dev->coda_mutex);
928 mutex_unlock(&ctx->buffer_mutex);
929 /* job_finish scheduled by prepare_decode */
930 return;
Philipp Zabel10436672012-07-02 09:03:55 -0300931 }
932
Philipp Zabelf23797b2014-08-06 08:02:23 -0300933 if (!wait_for_completion_timeout(&ctx->completion,
934 msecs_to_jiffies(1000))) {
Philipp Zabel32b6f202014-07-11 06:36:20 -0300935 dev_err(&dev->plat_dev->dev, "CODA PIC_RUN timeout\n");
Philipp Zabel84e23652014-07-11 06:36:34 -0300936
937 ctx->hold = true;
Philipp Zabel8f452842014-07-11 06:36:35 -0300938
939 coda_hw_reset(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300940 } else if (!ctx->aborting) {
Philipp Zabela1192a12014-07-23 12:28:40 -0300941 ctx->ops->finish_run(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300942 }
943
Philipp Zabel747d7642015-01-23 13:51:31 -0300944 if ((ctx->aborting || (!ctx->streamon_cap && !ctx->streamon_out)) &&
945 ctx->ops->seq_end_work)
Philipp Zabel32b6f202014-07-11 06:36:20 -0300946 queue_work(dev->workqueue, &ctx->seq_end_work);
947
948 mutex_unlock(&dev->coda_mutex);
949 mutex_unlock(&ctx->buffer_mutex);
950
Philipp Zabel14604e32014-07-11 06:36:22 -0300951 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -0300952}
953
954static int coda_job_ready(void *m2m_priv)
955{
956 struct coda_ctx *ctx = m2m_priv;
957
958 /*
959 * For both 'P' and 'key' frame cases 1 picture
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300960 * and 1 frame are needed. In the decoder case,
961 * the compressed frame can be in the bitstream.
Javier Martin186b2502012-07-26 05:53:35 -0300962 */
Philipp Zabel14604e32014-07-11 06:36:22 -0300963 if (!v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx) &&
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300964 ctx->inst_type != CODA_INST_DECODER) {
Javier Martin186b2502012-07-26 05:53:35 -0300965 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
966 "not ready: not enough video buffers.\n");
967 return 0;
968 }
969
Philipp Zabel14604e32014-07-11 06:36:22 -0300970 if (!v4l2_m2m_num_dst_bufs_ready(ctx->fh.m2m_ctx)) {
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300971 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
972 "not ready: not enough video capture buffers.\n");
973 return 0;
974 }
975
Philipp Zabela22496c2015-01-23 13:51:33 -0300976 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit) {
Philipp Zabelf77fd8a2015-01-23 13:51:20 -0300977 struct list_head *meta;
978 bool stream_end;
979 int num_metas;
980 int src_bufs;
981
982 if (ctx->hold && !v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx)) {
983 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
984 "%d: not ready: on hold for more buffers.\n",
985 ctx->idx);
986 return 0;
987 }
988
989 stream_end = ctx->bit_stream_param &
990 CODA_BIT_STREAM_END_FLAG;
991
992 num_metas = 0;
993 list_for_each(meta, &ctx->buffer_meta_list)
994 num_metas++;
995
996 src_bufs = v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx);
997
998 if (!stream_end && (num_metas + src_bufs) < 2) {
999 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1000 "%d: not ready: need 2 buffers available (%d, %d)\n",
1001 ctx->idx, num_metas, src_bufs);
1002 return 0;
1003 }
1004
1005
1006 if (!v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx) &&
1007 !stream_end && (coda_get_bitstream_payload(ctx) < 512)) {
1008 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1009 "%d: not ready: not enough bitstream data (%d).\n",
1010 ctx->idx, coda_get_bitstream_payload(ctx));
1011 return 0;
1012 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001013 }
1014
Philipp Zabel3e748262013-05-23 10:43:01 -03001015 if (ctx->aborting) {
1016 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1017 "not ready: aborting\n");
1018 return 0;
1019 }
1020
Javier Martin186b2502012-07-26 05:53:35 -03001021 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1022 "job ready\n");
1023 return 1;
1024}
1025
1026static void coda_job_abort(void *priv)
1027{
1028 struct coda_ctx *ctx = priv;
Javier Martin186b2502012-07-26 05:53:35 -03001029
1030 ctx->aborting = 1;
1031
1032 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1033 "Aborting task\n");
Javier Martin186b2502012-07-26 05:53:35 -03001034}
1035
1036static void coda_lock(void *m2m_priv)
1037{
1038 struct coda_ctx *ctx = m2m_priv;
1039 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001040
Javier Martin186b2502012-07-26 05:53:35 -03001041 mutex_lock(&pcdev->dev_mutex);
1042}
1043
1044static void coda_unlock(void *m2m_priv)
1045{
1046 struct coda_ctx *ctx = m2m_priv;
1047 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001048
Javier Martin186b2502012-07-26 05:53:35 -03001049 mutex_unlock(&pcdev->dev_mutex);
1050}
1051
Philipp Zabel814c3762014-07-18 07:22:45 -03001052static const struct v4l2_m2m_ops coda_m2m_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001053 .device_run = coda_device_run,
1054 .job_ready = coda_job_ready,
1055 .job_abort = coda_job_abort,
1056 .lock = coda_lock,
1057 .unlock = coda_unlock,
1058};
1059
Philipp Zabel89548442014-07-11 06:36:17 -03001060static void coda_set_tiled_map_type(struct coda_ctx *ctx, int tiled_map_type)
1061{
1062 struct gdi_tiled_map *tiled_map = &ctx->tiled_map;
1063 int luma_map, chro_map, i;
1064
1065 memset(tiled_map, 0, sizeof(*tiled_map));
1066
1067 luma_map = 64;
1068 chro_map = 64;
1069 tiled_map->map_type = tiled_map_type;
1070 for (i = 0; i < 16; i++)
1071 tiled_map->xy2ca_map[i] = luma_map << 8 | chro_map;
1072 for (i = 0; i < 4; i++)
1073 tiled_map->xy2ba_map[i] = luma_map << 8 | chro_map;
1074 for (i = 0; i < 16; i++)
1075 tiled_map->xy2ra_map[i] = luma_map << 8 | chro_map;
1076
1077 if (tiled_map_type == GDI_LINEAR_FRAME_MAP) {
1078 tiled_map->xy2rbc_config = 0;
1079 } else {
1080 dev_err(&ctx->dev->plat_dev->dev, "invalid map type: %d\n",
1081 tiled_map_type);
1082 return;
1083 }
1084}
1085
Javier Martin186b2502012-07-26 05:53:35 -03001086static void set_default_params(struct coda_ctx *ctx)
1087{
Philipp Zabel8e428d52015-01-23 13:51:29 -03001088 unsigned int max_w, max_h, usize, csize;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001089
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001090 ctx->codec = coda_find_codec(ctx->dev, ctx->cvd->src_formats[0],
1091 ctx->cvd->dst_formats[0]);
Philipp Zabeld4c6a412014-10-02 14:08:35 -03001092 max_w = min(ctx->codec->max_w, 1920U);
1093 max_h = min(ctx->codec->max_h, 1088U);
Philipp Zabel8e428d52015-01-23 13:51:29 -03001094 usize = max_w * max_h * 3 / 2;
1095 csize = coda_estimate_sizeimage(ctx, usize, max_w, max_h);
Javier Martin186b2502012-07-26 05:53:35 -03001096
Philipp Zabel121cacf2014-07-18 07:22:42 -03001097 ctx->params.codec_mode = ctx->codec->mode;
Javier Martin186b2502012-07-26 05:53:35 -03001098 ctx->colorspace = V4L2_COLORSPACE_REC709;
1099 ctx->params.framerate = 30;
Javier Martin186b2502012-07-26 05:53:35 -03001100
1101 /* Default formats for output and input queues */
Philipp Zabelb96904e2013-05-23 10:42:58 -03001102 ctx->q_data[V4L2_M2M_SRC].fourcc = ctx->codec->src_fourcc;
1103 ctx->q_data[V4L2_M2M_DST].fourcc = ctx->codec->dst_fourcc;
1104 ctx->q_data[V4L2_M2M_SRC].width = max_w;
1105 ctx->q_data[V4L2_M2M_SRC].height = max_h;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001106 ctx->q_data[V4L2_M2M_DST].width = max_w;
1107 ctx->q_data[V4L2_M2M_DST].height = max_h;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001108 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_YUV420) {
1109 ctx->q_data[V4L2_M2M_SRC].bytesperline = max_w;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001110 ctx->q_data[V4L2_M2M_SRC].sizeimage = usize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001111 ctx->q_data[V4L2_M2M_DST].bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001112 ctx->q_data[V4L2_M2M_DST].sizeimage = csize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001113 } else {
1114 ctx->q_data[V4L2_M2M_SRC].bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001115 ctx->q_data[V4L2_M2M_SRC].sizeimage = csize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001116 ctx->q_data[V4L2_M2M_DST].bytesperline = max_w;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001117 ctx->q_data[V4L2_M2M_DST].sizeimage = usize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001118 }
Philipp Zabel52c41672014-07-11 06:36:19 -03001119 ctx->q_data[V4L2_M2M_SRC].rect.width = max_w;
1120 ctx->q_data[V4L2_M2M_SRC].rect.height = max_h;
1121 ctx->q_data[V4L2_M2M_DST].rect.width = max_w;
1122 ctx->q_data[V4L2_M2M_DST].rect.height = max_h;
Philipp Zabel89548442014-07-11 06:36:17 -03001123
1124 if (ctx->dev->devtype->product == CODA_960)
1125 coda_set_tiled_map_type(ctx, GDI_LINEAR_FRAME_MAP);
Javier Martin186b2502012-07-26 05:53:35 -03001126}
1127
1128/*
1129 * Queue operations
1130 */
1131static int coda_queue_setup(struct vb2_queue *vq,
1132 const struct v4l2_format *fmt,
1133 unsigned int *nbuffers, unsigned int *nplanes,
1134 unsigned int sizes[], void *alloc_ctxs[])
1135{
1136 struct coda_ctx *ctx = vb2_get_drv_priv(vq);
Philipp Zabele34db062012-08-29 08:22:00 -03001137 struct coda_q_data *q_data;
Javier Martin186b2502012-07-26 05:53:35 -03001138 unsigned int size;
1139
Philipp Zabele34db062012-08-29 08:22:00 -03001140 q_data = get_q_data(ctx, vq->type);
1141 size = q_data->sizeimage;
Javier Martin186b2502012-07-26 05:53:35 -03001142
1143 *nplanes = 1;
1144 sizes[0] = size;
1145
Philipp Zabelbb04aa62015-01-23 13:51:30 -03001146 /* Set to vb2-dma-contig allocator context, ignored by vb2-vmalloc */
Javier Martin186b2502012-07-26 05:53:35 -03001147 alloc_ctxs[0] = ctx->dev->alloc_ctx;
1148
1149 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1150 "get %d buffer(s) of size %d each.\n", *nbuffers, size);
1151
1152 return 0;
1153}
1154
1155static int coda_buf_prepare(struct vb2_buffer *vb)
1156{
1157 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
1158 struct coda_q_data *q_data;
1159
1160 q_data = get_q_data(ctx, vb->vb2_queue->type);
1161
1162 if (vb2_plane_size(vb, 0) < q_data->sizeimage) {
1163 v4l2_warn(&ctx->dev->v4l2_dev,
1164 "%s data will not fit into plane (%lu < %lu)\n",
1165 __func__, vb2_plane_size(vb, 0),
1166 (long)q_data->sizeimage);
1167 return -EINVAL;
1168 }
1169
Javier Martin186b2502012-07-26 05:53:35 -03001170 return 0;
1171}
1172
1173static void coda_buf_queue(struct vb2_buffer *vb)
1174{
1175 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
Philipp Zabelcb06b702015-01-23 13:51:35 -03001176 struct vb2_queue *vq = vb->vb2_queue;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001177 struct coda_q_data *q_data;
1178
1179 q_data = get_q_data(ctx, vb->vb2_queue->type);
1180
1181 /*
1182 * In the decoder case, immediately try to copy the buffer into the
1183 * bitstream ringbuffer and mark it as ready to be dequeued.
1184 */
Philipp Zabelcb06b702015-01-23 13:51:35 -03001185 if (ctx->bitstream.size && vq->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001186 /*
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -03001187 * For backwards compatibility, queuing an empty buffer marks
Philipp Zabel918c66f2013-06-27 06:59:01 -03001188 * the stream end
1189 */
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001190 if (vb2_get_plane_payload(vb, 0) == 0)
1191 coda_bit_stream_end_flag(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001192 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel14604e32014-07-11 06:36:22 -03001193 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Michael Olbricheabed932014-07-18 07:22:40 -03001194 if (vb2_is_streaming(vb->vb2_queue))
1195 coda_fill_bitstream(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001196 mutex_unlock(&ctx->bitstream_mutex);
1197 } else {
Philipp Zabel14604e32014-07-11 06:36:22 -03001198 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001199 }
Javier Martin186b2502012-07-26 05:53:35 -03001200}
1201
Philipp Zabel79924ca2014-07-23 12:28:45 -03001202int coda_alloc_aux_buf(struct coda_dev *dev, struct coda_aux_buf *buf,
1203 size_t size, const char *name, struct dentry *parent)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001204{
1205 buf->vaddr = dma_alloc_coherent(&dev->plat_dev->dev, size, &buf->paddr,
1206 GFP_KERNEL);
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001207 if (!buf->vaddr) {
1208 v4l2_err(&dev->v4l2_dev,
1209 "Failed to allocate %s buffer of size %u\n",
1210 name, size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001211 return -ENOMEM;
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001212 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001213
1214 buf->size = size;
1215
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001216 if (name && parent) {
1217 buf->blob.data = buf->vaddr;
1218 buf->blob.size = size;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001219 buf->dentry = debugfs_create_blob(name, 0644, parent,
1220 &buf->blob);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001221 if (!buf->dentry)
1222 dev_warn(&dev->plat_dev->dev,
1223 "failed to create debugfs entry %s\n", name);
1224 }
1225
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001226 return 0;
1227}
1228
Philipp Zabel79924ca2014-07-23 12:28:45 -03001229void coda_free_aux_buf(struct coda_dev *dev,
1230 struct coda_aux_buf *buf)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001231{
1232 if (buf->vaddr) {
1233 dma_free_coherent(&dev->plat_dev->dev, buf->size,
1234 buf->vaddr, buf->paddr);
1235 buf->vaddr = NULL;
1236 buf->size = 0;
Peter Seidererd446ec82015-03-24 14:30:48 -03001237 debugfs_remove(buf->dentry);
1238 buf->dentry = NULL;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001239 }
1240}
1241
Javier Martin186b2502012-07-26 05:53:35 -03001242static int coda_start_streaming(struct vb2_queue *q, unsigned int count)
1243{
1244 struct coda_ctx *ctx = vb2_get_drv_priv(q);
1245 struct v4l2_device *v4l2_dev = &ctx->dev->v4l2_dev;
Javier Martin186b2502012-07-26 05:53:35 -03001246 struct coda_q_data *q_data_src, *q_data_dst;
Philipp Zabelb9063522014-08-05 14:00:10 -03001247 struct vb2_buffer *buf;
Philipp Zabeld35167a2013-05-23 10:42:59 -03001248 int ret = 0;
Javier Martin186b2502012-07-26 05:53:35 -03001249
Philipp Zabelb96904e2013-05-23 10:42:58 -03001250 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001251 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001252 if (q_data_src->fourcc == V4L2_PIX_FMT_H264 ||
1253 (q_data_src->fourcc == V4L2_PIX_FMT_JPEG &&
1254 ctx->dev->devtype->product == CODA_7541)) {
Michael Olbricheabed932014-07-18 07:22:40 -03001255 /* copy the buffers that where queued before streamon */
1256 mutex_lock(&ctx->bitstream_mutex);
1257 coda_fill_bitstream(ctx);
1258 mutex_unlock(&ctx->bitstream_mutex);
1259
Philipp Zabelb9063522014-08-05 14:00:10 -03001260 if (coda_get_bitstream_payload(ctx) < 512) {
1261 ret = -EINVAL;
1262 goto err;
1263 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001264 } else {
Philipp Zabelb9063522014-08-05 14:00:10 -03001265 if (count < 1) {
1266 ret = -EINVAL;
1267 goto err;
1268 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001269 }
1270
1271 ctx->streamon_out = 1;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001272 } else {
Philipp Zabelb9063522014-08-05 14:00:10 -03001273 if (count < 1) {
1274 ret = -EINVAL;
1275 goto err;
1276 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001277
1278 ctx->streamon_cap = 1;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001279 }
Javier Martin186b2502012-07-26 05:53:35 -03001280
Philipp Zabelb96904e2013-05-23 10:42:58 -03001281 /* Don't start the coda unless both queues are on */
1282 if (!(ctx->streamon_out & ctx->streamon_cap))
1283 return 0;
Javier Martin186b2502012-07-26 05:53:35 -03001284
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001285 /* Allow BIT decoder device_run with no new buffers queued */
Philipp Zabela22496c2015-01-23 13:51:33 -03001286 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit)
Philipp Zabel14604e32014-07-11 06:36:22 -03001287 v4l2_m2m_set_src_buffered(ctx->fh.m2m_ctx, true);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001288
Philipp Zabelb96904e2013-05-23 10:42:58 -03001289 ctx->gopcounter = ctx->params.gop_size - 1;
Javier Martin186b2502012-07-26 05:53:35 -03001290 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
Javier Martin186b2502012-07-26 05:53:35 -03001291
Philipp Zabelb96904e2013-05-23 10:42:58 -03001292 ctx->codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
1293 q_data_dst->fourcc);
1294 if (!ctx->codec) {
Javier Martin186b2502012-07-26 05:53:35 -03001295 v4l2_err(v4l2_dev, "couldn't tell instance type.\n");
Philipp Zabelb9063522014-08-05 14:00:10 -03001296 ret = -EINVAL;
1297 goto err;
Javier Martin186b2502012-07-26 05:53:35 -03001298 }
1299
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001300 if (q_data_dst->fourcc == V4L2_PIX_FMT_JPEG)
1301 ctx->params.gop_size = 1;
1302 ctx->gopcounter = ctx->params.gop_size - 1;
1303
Philipp Zabela1192a12014-07-23 12:28:40 -03001304 ret = ctx->ops->start_streaming(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001305 if (ctx->inst_type == CODA_INST_DECODER) {
Philipp Zabel89548442014-07-11 06:36:17 -03001306 if (ret == -EAGAIN)
Philipp Zabel918c66f2013-06-27 06:59:01 -03001307 return 0;
Philipp Zabel89548442014-07-11 06:36:17 -03001308 else if (ret < 0)
Philipp Zabelb9063522014-08-05 14:00:10 -03001309 goto err;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001310 }
1311
Philipp Zabel89548442014-07-11 06:36:17 -03001312 ctx->initialized = 1;
1313 return ret;
Philipp Zabelb9063522014-08-05 14:00:10 -03001314
1315err:
1316 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1317 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b58c52014-10-21 13:25:52 -03001318 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001319 } else {
1320 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b58c52014-10-21 13:25:52 -03001321 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001322 }
1323 return ret;
Philipp Zabel89548442014-07-11 06:36:17 -03001324}
1325
Hans Verkuile37559b2014-04-17 02:47:21 -03001326static void coda_stop_streaming(struct vb2_queue *q)
Javier Martin186b2502012-07-26 05:53:35 -03001327{
1328 struct coda_ctx *ctx = vb2_get_drv_priv(q);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03001329 struct coda_dev *dev = ctx->dev;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001330 struct vb2_buffer *buf;
Javier Martin186b2502012-07-26 05:53:35 -03001331
1332 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001333 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001334 "%s: output\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001335 ctx->streamon_out = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001336
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001337 coda_bit_stream_end_flag(ctx);
Philipp Zabel4a31b522014-08-05 14:00:11 -03001338
Philipp Zabel6dd5ef52015-01-23 13:51:26 -03001339 ctx->qsequence = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001340
1341 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
1342 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001343 } else {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001344 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001345 "%s: capture\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001346 ctx->streamon_cap = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001347
1348 ctx->osequence = 0;
Philipp Zabelcb2c0282014-07-11 06:36:33 -03001349 ctx->sequence_offset = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001350
1351 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
1352 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001353 }
1354
Philipp Zabel918c66f2013-06-27 06:59:01 -03001355 if (!ctx->streamon_out && !ctx->streamon_cap) {
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001356 struct coda_buffer_meta *meta;
Philipp Zabel846ced92014-07-11 06:36:31 -03001357
Philipp Zabelf4706d62015-01-23 13:51:27 -03001358 if (ctx->ops->seq_end_work) {
1359 queue_work(dev->workqueue, &ctx->seq_end_work);
1360 flush_work(&ctx->seq_end_work);
1361 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001362 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001363 while (!list_empty(&ctx->buffer_meta_list)) {
1364 meta = list_first_entry(&ctx->buffer_meta_list,
1365 struct coda_buffer_meta, list);
1366 list_del(&meta->list);
1367 kfree(meta);
Philipp Zabel846ced92014-07-11 06:36:31 -03001368 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001369 mutex_unlock(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001370 kfifo_init(&ctx->bitstream_fifo,
1371 ctx->bitstream.vaddr, ctx->bitstream.size);
Philipp Zabelf4706d62015-01-23 13:51:27 -03001372 ctx->initialized = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001373 ctx->runcounter = 0;
Philipp Zabelf157cf42014-09-29 09:53:42 -03001374 ctx->aborting = 0;
Philipp Zabel62bed142012-07-25 10:40:39 -03001375 }
Javier Martin186b2502012-07-26 05:53:35 -03001376}
1377
Philipp Zabel121cacf2014-07-18 07:22:42 -03001378static const struct vb2_ops coda_qops = {
Javier Martin186b2502012-07-26 05:53:35 -03001379 .queue_setup = coda_queue_setup,
1380 .buf_prepare = coda_buf_prepare,
1381 .buf_queue = coda_buf_queue,
Javier Martin186b2502012-07-26 05:53:35 -03001382 .start_streaming = coda_start_streaming,
1383 .stop_streaming = coda_stop_streaming,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001384 .wait_prepare = vb2_ops_wait_prepare,
1385 .wait_finish = vb2_ops_wait_finish,
Javier Martin186b2502012-07-26 05:53:35 -03001386};
1387
1388static int coda_s_ctrl(struct v4l2_ctrl *ctrl)
1389{
1390 struct coda_ctx *ctx =
1391 container_of(ctrl->handler, struct coda_ctx, ctrls);
1392
1393 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1394 "s_ctrl: id = %d, val = %d\n", ctrl->id, ctrl->val);
1395
1396 switch (ctrl->id) {
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001397 case V4L2_CID_HFLIP:
1398 if (ctrl->val)
1399 ctx->params.rot_mode |= CODA_MIR_HOR;
1400 else
1401 ctx->params.rot_mode &= ~CODA_MIR_HOR;
1402 break;
1403 case V4L2_CID_VFLIP:
1404 if (ctrl->val)
1405 ctx->params.rot_mode |= CODA_MIR_VER;
1406 else
1407 ctx->params.rot_mode &= ~CODA_MIR_VER;
1408 break;
Javier Martin186b2502012-07-26 05:53:35 -03001409 case V4L2_CID_MPEG_VIDEO_BITRATE:
1410 ctx->params.bitrate = ctrl->val / 1000;
1411 break;
1412 case V4L2_CID_MPEG_VIDEO_GOP_SIZE:
1413 ctx->params.gop_size = ctrl->val;
1414 break;
1415 case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP:
1416 ctx->params.h264_intra_qp = ctrl->val;
1417 break;
1418 case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP:
1419 ctx->params.h264_inter_qp = ctrl->val;
1420 break;
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001421 case V4L2_CID_MPEG_VIDEO_H264_MIN_QP:
1422 ctx->params.h264_min_qp = ctrl->val;
1423 break;
1424 case V4L2_CID_MPEG_VIDEO_H264_MAX_QP:
1425 ctx->params.h264_max_qp = ctrl->val;
1426 break;
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001427 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA:
1428 ctx->params.h264_deblk_alpha = ctrl->val;
1429 break;
1430 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA:
1431 ctx->params.h264_deblk_beta = ctrl->val;
1432 break;
1433 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
1434 ctx->params.h264_deblk_enabled = (ctrl->val ==
1435 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1436 break;
Javier Martin186b2502012-07-26 05:53:35 -03001437 case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP:
1438 ctx->params.mpeg4_intra_qp = ctrl->val;
1439 break;
1440 case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP:
1441 ctx->params.mpeg4_inter_qp = ctrl->val;
1442 break;
1443 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
1444 ctx->params.slice_mode = ctrl->val;
1445 break;
1446 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB:
1447 ctx->params.slice_max_mb = ctrl->val;
1448 break;
Philipp Zabelc566c782012-08-08 11:59:38 -03001449 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES:
1450 ctx->params.slice_max_bits = ctrl->val * 8;
1451 break;
Javier Martin186b2502012-07-26 05:53:35 -03001452 case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
1453 break;
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001454 case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB:
1455 ctx->params.intra_refresh = ctrl->val;
1456 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001457 case V4L2_CID_JPEG_COMPRESSION_QUALITY:
1458 coda_set_jpeg_compression_quality(ctx, ctrl->val);
1459 break;
1460 case V4L2_CID_JPEG_RESTART_INTERVAL:
1461 ctx->params.jpeg_restart_interval = ctrl->val;
1462 break;
Javier Martin186b2502012-07-26 05:53:35 -03001463 default:
1464 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1465 "Invalid control, id=%d, val=%d\n",
1466 ctrl->id, ctrl->val);
1467 return -EINVAL;
1468 }
1469
1470 return 0;
1471}
1472
Philipp Zabel814c3762014-07-18 07:22:45 -03001473static const struct v4l2_ctrl_ops coda_ctrl_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001474 .s_ctrl = coda_s_ctrl,
1475};
1476
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001477static void coda_encode_ctrls(struct coda_ctx *ctx)
Javier Martin186b2502012-07-26 05:53:35 -03001478{
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001479 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel92b042e2015-03-18 08:15:36 -03001480 V4L2_CID_MPEG_VIDEO_BITRATE, 0, 32767000, 1000, 0);
Javier Martin186b2502012-07-26 05:53:35 -03001481 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1482 V4L2_CID_MPEG_VIDEO_GOP_SIZE, 1, 60, 1, 16);
1483 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001484 V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP, 0, 51, 1, 25);
Javier Martin186b2502012-07-26 05:53:35 -03001485 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001486 V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP, 0, 51, 1, 25);
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001487 if (ctx->dev->devtype->product != CODA_960) {
1488 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1489 V4L2_CID_MPEG_VIDEO_H264_MIN_QP, 0, 51, 1, 12);
1490 }
1491 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1492 V4L2_CID_MPEG_VIDEO_H264_MAX_QP, 0, 51, 1, 51);
Javier Martin186b2502012-07-26 05:53:35 -03001493 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001494 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA, 0, 15, 1, 0);
1495 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1496 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA, 0, 15, 1, 0);
1497 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1498 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE,
1499 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED, 0x0,
1500 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1501 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Javier Martin186b2502012-07-26 05:53:35 -03001502 V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP, 1, 31, 1, 2);
1503 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1504 V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP, 1, 31, 1, 2);
1505 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1506 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE,
Philipp Zabelc566c782012-08-08 11:59:38 -03001507 V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES, 0x0,
1508 V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE);
Javier Martin186b2502012-07-26 05:53:35 -03001509 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1510 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB, 1, 0x3fffffff, 1, 1);
Philipp Zabelc566c782012-08-08 11:59:38 -03001511 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001512 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES, 1, 0x3fffffff, 1,
1513 500);
Javier Martin186b2502012-07-26 05:53:35 -03001514 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1515 V4L2_CID_MPEG_VIDEO_HEADER_MODE,
1516 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME,
1517 (1 << V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE),
1518 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME);
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001519 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001520 V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB, 0,
1521 1920 * 1088 / 256, 1, 0);
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001522}
1523
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001524static void coda_jpeg_encode_ctrls(struct coda_ctx *ctx)
1525{
1526 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1527 V4L2_CID_JPEG_COMPRESSION_QUALITY, 5, 100, 1, 50);
1528 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1529 V4L2_CID_JPEG_RESTART_INTERVAL, 0, 100, 1, 0);
1530}
1531
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001532static int coda_ctrls_setup(struct coda_ctx *ctx)
1533{
1534 v4l2_ctrl_handler_init(&ctx->ctrls, 2);
1535
1536 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1537 V4L2_CID_HFLIP, 0, 1, 1, 0);
1538 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1539 V4L2_CID_VFLIP, 0, 1, 1, 0);
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001540 if (ctx->inst_type == CODA_INST_ENCODER) {
1541 if (ctx->cvd->dst_formats[0] == V4L2_PIX_FMT_JPEG)
1542 coda_jpeg_encode_ctrls(ctx);
1543 else
1544 coda_encode_ctrls(ctx);
1545 }
Javier Martin186b2502012-07-26 05:53:35 -03001546
1547 if (ctx->ctrls.error) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001548 v4l2_err(&ctx->dev->v4l2_dev,
1549 "control initialization error (%d)",
Javier Martin186b2502012-07-26 05:53:35 -03001550 ctx->ctrls.error);
1551 return -EINVAL;
1552 }
1553
1554 return v4l2_ctrl_handler_setup(&ctx->ctrls);
1555}
1556
Philipp Zabel121cacf2014-07-18 07:22:42 -03001557static int coda_queue_init(struct coda_ctx *ctx, struct vb2_queue *vq)
Javier Martin186b2502012-07-26 05:53:35 -03001558{
Philipp Zabel121cacf2014-07-18 07:22:42 -03001559 vq->drv_priv = ctx;
1560 vq->ops = &coda_qops;
1561 vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
1562 vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
1563 vq->lock = &ctx->dev->dev_mutex;
Kamil Debskie4af23d2015-02-23 09:26:18 -03001564 /* One way to indicate end-of-stream for coda is to set the
1565 * bytesused == 0. However by default videobuf2 handles bytesused
1566 * equal to 0 as a special case and changes its value to the size
1567 * of the buffer. Set the allow_zero_bytesused flag, so
1568 * that videobuf2 will keep the value of bytesused intact.
1569 */
1570 vq->allow_zero_bytesused = 1;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001571
1572 return vb2_queue_init(vq);
1573}
1574
Philipp Zabel79924ca2014-07-23 12:28:45 -03001575int coda_encoder_queue_init(void *priv, struct vb2_queue *src_vq,
1576 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001577{
Javier Martin186b2502012-07-26 05:53:35 -03001578 int ret;
1579
Javier Martin186b2502012-07-26 05:53:35 -03001580 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001581 src_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001582 src_vq->mem_ops = &vb2_dma_contig_memops;
1583
Philipp Zabel121cacf2014-07-18 07:22:42 -03001584 ret = coda_queue_init(priv, src_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001585 if (ret)
1586 return ret;
1587
Javier Martin186b2502012-07-26 05:53:35 -03001588 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001589 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001590 dst_vq->mem_ops = &vb2_dma_contig_memops;
1591
Philipp Zabel121cacf2014-07-18 07:22:42 -03001592 return coda_queue_init(priv, dst_vq);
1593}
1594
Philipp Zabel79924ca2014-07-23 12:28:45 -03001595int coda_decoder_queue_init(void *priv, struct vb2_queue *src_vq,
1596 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001597{
1598 int ret;
1599
1600 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabelbb04aa62015-01-23 13:51:30 -03001601 src_vq->io_modes = VB2_DMABUF | VB2_MMAP | VB2_USERPTR;
1602 src_vq->mem_ops = &vb2_vmalloc_memops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001603
1604 ret = coda_queue_init(priv, src_vq);
1605 if (ret)
1606 return ret;
1607
1608 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1609 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
1610 dst_vq->mem_ops = &vb2_dma_contig_memops;
1611
1612 return coda_queue_init(priv, dst_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001613}
1614
Philipp Zabele11f3e62012-07-25 09:16:58 -03001615static int coda_next_free_instance(struct coda_dev *dev)
1616{
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001617 int idx = ffz(dev->instance_mask);
1618
1619 if ((idx < 0) ||
1620 (dev->devtype->product == CODA_DX6 && idx > CODADX6_MAX_INSTANCES))
1621 return -EBUSY;
1622
1623 return idx;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001624}
1625
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001626/*
1627 * File operations
1628 */
1629
1630static int coda_open(struct file *file)
Javier Martin186b2502012-07-26 05:53:35 -03001631{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001632 struct video_device *vdev = video_devdata(file);
1633 struct coda_dev *dev = video_get_drvdata(vdev);
Javier Martin186b2502012-07-26 05:53:35 -03001634 struct coda_ctx *ctx = NULL;
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001635 char *name;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001636 int ret;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001637 int idx;
Javier Martin186b2502012-07-26 05:53:35 -03001638
Philipp Zabelf23797b2014-08-06 08:02:23 -03001639 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Javier Martin186b2502012-07-26 05:53:35 -03001640 if (!ctx)
1641 return -ENOMEM;
1642
Fabio Estevamf82bc202013-08-21 11:14:16 -03001643 idx = coda_next_free_instance(dev);
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001644 if (idx < 0) {
1645 ret = idx;
Fabio Estevamf82bc202013-08-21 11:14:16 -03001646 goto err_coda_max;
1647 }
1648 set_bit(idx, &dev->instance_mask);
1649
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001650 name = kasprintf(GFP_KERNEL, "context%d", idx);
Peter Seiderera7f933a2015-03-24 14:30:47 -03001651 if (!name) {
1652 ret = -ENOMEM;
1653 goto err_coda_name_init;
1654 }
1655
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001656 ctx->debugfs_entry = debugfs_create_dir(name, dev->debugfs_root);
1657 kfree(name);
1658
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001659 ctx->cvd = to_coda_video_device(vdev);
1660 ctx->inst_type = ctx->cvd->type;
1661 ctx->ops = ctx->cvd->ops;
Philipp Zabela22496c2015-01-23 13:51:33 -03001662 ctx->use_bit = !ctx->cvd->direct;
Philipp Zabel32b6f202014-07-11 06:36:20 -03001663 init_completion(&ctx->completion);
1664 INIT_WORK(&ctx->pic_run_work, coda_pic_run_work);
Philipp Zabel747d7642015-01-23 13:51:31 -03001665 if (ctx->ops->seq_end_work)
1666 INIT_WORK(&ctx->seq_end_work, ctx->ops->seq_end_work);
Javier Martin186b2502012-07-26 05:53:35 -03001667 v4l2_fh_init(&ctx->fh, video_devdata(file));
1668 file->private_data = &ctx->fh;
1669 v4l2_fh_add(&ctx->fh);
1670 ctx->dev = dev;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001671 ctx->idx = idx;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001672 switch (dev->devtype->product) {
Philipp Zabel89548442014-07-11 06:36:17 -03001673 case CODA_960:
Philipp Zabel2bf299c2014-09-29 09:53:46 -03001674 ctx->frame_mem_ctrl = 1 << 12;
1675 /* fallthrough */
1676 case CODA_7541:
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001677 ctx->reg_idx = 0;
1678 break;
1679 default:
1680 ctx->reg_idx = idx;
1681 }
Fabio Estevamf82bc202013-08-21 11:14:16 -03001682
Philipp Zabel1e172732014-07-11 06:36:23 -03001683 /* Power up and upload firmware if necessary */
1684 ret = pm_runtime_get_sync(&dev->plat_dev->dev);
1685 if (ret < 0) {
1686 v4l2_err(&dev->v4l2_dev, "failed to power up: %d\n", ret);
1687 goto err_pm_get;
1688 }
1689
Fabio Estevam79830db2013-08-21 11:14:17 -03001690 ret = clk_prepare_enable(dev->clk_per);
1691 if (ret)
1692 goto err_clk_per;
1693
1694 ret = clk_prepare_enable(dev->clk_ahb);
1695 if (ret)
1696 goto err_clk_ahb;
1697
Javier Martin186b2502012-07-26 05:53:35 -03001698 set_default_params(ctx);
Philipp Zabela1192a12014-07-23 12:28:40 -03001699 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx,
1700 ctx->ops->queue_init);
Philipp Zabel14604e32014-07-11 06:36:22 -03001701 if (IS_ERR(ctx->fh.m2m_ctx)) {
1702 ret = PTR_ERR(ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -03001703
1704 v4l2_err(&dev->v4l2_dev, "%s return error (%d)\n",
1705 __func__, ret);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001706 goto err_ctx_init;
Javier Martin186b2502012-07-26 05:53:35 -03001707 }
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001708
Javier Martin186b2502012-07-26 05:53:35 -03001709 ret = coda_ctrls_setup(ctx);
1710 if (ret) {
1711 v4l2_err(&dev->v4l2_dev, "failed to setup coda controls\n");
Fabio Estevamf82bc202013-08-21 11:14:16 -03001712 goto err_ctrls_setup;
Javier Martin186b2502012-07-26 05:53:35 -03001713 }
1714
1715 ctx->fh.ctrl_handler = &ctx->ctrls;
1716
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001717 mutex_init(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001718 mutex_init(&ctx->buffer_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001719 INIT_LIST_HEAD(&ctx->buffer_meta_list);
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001720
Javier Martin186b2502012-07-26 05:53:35 -03001721 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001722 list_add(&ctx->list, &dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03001723 coda_unlock(ctx);
1724
Javier Martin186b2502012-07-26 05:53:35 -03001725 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Created instance %d (%p)\n",
1726 ctx->idx, ctx);
1727
1728 return 0;
1729
Fabio Estevamf82bc202013-08-21 11:14:16 -03001730err_ctrls_setup:
Philipp Zabel14604e32014-07-11 06:36:22 -03001731 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001732err_ctx_init:
1733 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevam79830db2013-08-21 11:14:17 -03001734err_clk_ahb:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001735 clk_disable_unprepare(dev->clk_per);
Fabio Estevam79830db2013-08-21 11:14:17 -03001736err_clk_per:
Philipp Zabel1e172732014-07-11 06:36:23 -03001737 pm_runtime_put_sync(&dev->plat_dev->dev);
1738err_pm_get:
Javier Martin186b2502012-07-26 05:53:35 -03001739 v4l2_fh_del(&ctx->fh);
1740 v4l2_fh_exit(&ctx->fh);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001741 clear_bit(ctx->idx, &dev->instance_mask);
Peter Seiderera7f933a2015-03-24 14:30:47 -03001742err_coda_name_init:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001743err_coda_max:
Javier Martin186b2502012-07-26 05:53:35 -03001744 kfree(ctx);
1745 return ret;
1746}
1747
1748static int coda_release(struct file *file)
1749{
1750 struct coda_dev *dev = video_drvdata(file);
1751 struct coda_ctx *ctx = fh_to_ctx(file->private_data);
1752
1753 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Releasing instance %p\n",
1754 ctx);
1755
Philipp Zabela22496c2015-01-23 13:51:33 -03001756 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit)
Philipp Zabeld4bb75f2014-10-08 13:09:11 -03001757 coda_bit_stream_end_flag(ctx);
1758
Philipp Zabel918c66f2013-06-27 06:59:01 -03001759 /* If this instance is running, call .job_abort and wait for it to end */
Philipp Zabel14604e32014-07-11 06:36:22 -03001760 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001761
1762 /* In case the instance was not running, we still need to call SEQ_END */
Philipp Zabel747d7642015-01-23 13:51:31 -03001763 if (ctx->initialized && ctx->ops->seq_end_work) {
Philipp Zabel32b6f202014-07-11 06:36:20 -03001764 queue_work(dev->workqueue, &ctx->seq_end_work);
1765 flush_work(&ctx->seq_end_work);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001766 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001767
Javier Martin186b2502012-07-26 05:53:35 -03001768 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001769 list_del(&ctx->list);
Javier Martin186b2502012-07-26 05:53:35 -03001770 coda_unlock(ctx);
1771
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001772 if (ctx->dev->devtype->product == CODA_DX6)
1773 coda_free_aux_buf(dev, &ctx->workbuf);
1774
Javier Martin186b2502012-07-26 05:53:35 -03001775 v4l2_ctrl_handler_free(&ctx->ctrls);
Javier Martin186b2502012-07-26 05:53:35 -03001776 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001777 clk_disable_unprepare(dev->clk_per);
Philipp Zabel1e172732014-07-11 06:36:23 -03001778 pm_runtime_put_sync(&dev->plat_dev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001779 v4l2_fh_del(&ctx->fh);
1780 v4l2_fh_exit(&ctx->fh);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001781 clear_bit(ctx->idx, &dev->instance_mask);
Philipp Zabel58b76772014-07-23 12:28:43 -03001782 if (ctx->ops->release)
1783 ctx->ops->release(ctx);
Philipp Zabele1519e82015-01-23 13:51:17 -03001784 debugfs_remove_recursive(ctx->debugfs_entry);
Javier Martin186b2502012-07-26 05:53:35 -03001785 kfree(ctx);
1786
1787 return 0;
1788}
1789
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001790static const struct v4l2_file_operations coda_fops = {
Javier Martin186b2502012-07-26 05:53:35 -03001791 .owner = THIS_MODULE,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001792 .open = coda_open,
Javier Martin186b2502012-07-26 05:53:35 -03001793 .release = coda_release,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001794 .poll = v4l2_m2m_fop_poll,
Javier Martin186b2502012-07-26 05:53:35 -03001795 .unlocked_ioctl = video_ioctl2,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001796 .mmap = v4l2_m2m_fop_mmap,
Javier Martin186b2502012-07-26 05:53:35 -03001797};
1798
Philipp Zabel87048bb2012-07-02 07:03:43 -03001799static int coda_hw_init(struct coda_dev *dev)
Javier Martin186b2502012-07-26 05:53:35 -03001800{
Javier Martin186b2502012-07-26 05:53:35 -03001801 u32 data;
1802 u16 *p;
Fabio Estevam79830db2013-08-21 11:14:17 -03001803 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001804
Fabio Estevam79830db2013-08-21 11:14:17 -03001805 ret = clk_prepare_enable(dev->clk_per);
1806 if (ret)
Philipp Zabel1e172732014-07-11 06:36:23 -03001807 goto err_clk_per;
Fabio Estevam79830db2013-08-21 11:14:17 -03001808
1809 ret = clk_prepare_enable(dev->clk_ahb);
1810 if (ret)
1811 goto err_clk_ahb;
Javier Martin186b2502012-07-26 05:53:35 -03001812
Philipp Zabel8f452842014-07-11 06:36:35 -03001813 if (dev->rstc)
1814 reset_control_reset(dev->rstc);
1815
Javier Martin186b2502012-07-26 05:53:35 -03001816 /*
1817 * Copy the first CODA_ISRAM_SIZE in the internal SRAM.
Philipp Zabel87048bb2012-07-02 07:03:43 -03001818 * The 16-bit chars in the code buffer are in memory access
1819 * order, re-sort them to CODA order for register download.
Javier Martin186b2502012-07-26 05:53:35 -03001820 * Data in this SRAM survives a reboot.
1821 */
Philipp Zabel87048bb2012-07-02 07:03:43 -03001822 p = (u16 *)dev->codebuf.vaddr;
1823 if (dev->devtype->product == CODA_DX6) {
1824 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1825 data = CODA_DOWN_ADDRESS_SET(i) |
1826 CODA_DOWN_DATA_SET(p[i ^ 1]);
1827 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1828 }
1829 } else {
1830 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1831 data = CODA_DOWN_ADDRESS_SET(i) |
1832 CODA_DOWN_DATA_SET(p[round_down(i, 4) +
1833 3 - (i % 4)]);
1834 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1835 }
Javier Martin186b2502012-07-26 05:53:35 -03001836 }
Javier Martin186b2502012-07-26 05:53:35 -03001837
Philipp Zabel9acf7692013-05-23 10:42:56 -03001838 /* Clear registers */
1839 for (i = 0; i < 64; i++)
1840 coda_write(dev, 0, CODA_REG_BIT_CODE_BUF_ADDR + i * 4);
1841
Javier Martin186b2502012-07-26 05:53:35 -03001842 /* Tell the BIT where to find everything it needs */
Philipp Zabel89548442014-07-11 06:36:17 -03001843 if (dev->devtype->product == CODA_960 ||
1844 dev->devtype->product == CODA_7541) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001845 coda_write(dev, dev->tempbuf.paddr,
1846 CODA_REG_BIT_TEMP_BUF_ADDR);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001847 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001848 } else {
1849 coda_write(dev, dev->workbuf.paddr,
1850 CODA_REG_BIT_WORK_BUF_ADDR);
1851 }
Javier Martin186b2502012-07-26 05:53:35 -03001852 coda_write(dev, dev->codebuf.paddr,
1853 CODA_REG_BIT_CODE_BUF_ADDR);
1854 coda_write(dev, 0, CODA_REG_BIT_CODE_RUN);
1855
1856 /* Set default values */
1857 switch (dev->devtype->product) {
1858 case CODA_DX6:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001859 coda_write(dev, CODADX6_STREAM_BUF_PIC_FLUSH,
1860 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001861 break;
1862 default:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001863 coda_write(dev, CODA7_STREAM_BUF_PIC_FLUSH,
1864 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001865 }
Philipp Zabel89548442014-07-11 06:36:17 -03001866 if (dev->devtype->product == CODA_960)
1867 coda_write(dev, 1 << 12, CODA_REG_BIT_FRAME_MEM_CTRL);
1868 else
1869 coda_write(dev, 0, CODA_REG_BIT_FRAME_MEM_CTRL);
Philipp Zabel10436672012-07-02 09:03:55 -03001870
1871 if (dev->devtype->product != CODA_DX6)
1872 coda_write(dev, 0, CODA7_REG_BIT_AXI_SRAM_USE);
1873
Javier Martin186b2502012-07-26 05:53:35 -03001874 coda_write(dev, CODA_INT_INTERRUPT_ENABLE,
1875 CODA_REG_BIT_INT_ENABLE);
1876
1877 /* Reset VPU and start processor */
1878 data = coda_read(dev, CODA_REG_BIT_CODE_RESET);
1879 data |= CODA_REG_RESET_ENABLE;
1880 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1881 udelay(10);
1882 data &= ~CODA_REG_RESET_ENABLE;
1883 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1884 coda_write(dev, CODA_REG_RUN_ENABLE, CODA_REG_BIT_CODE_RUN);
1885
Philipp Zabelfe7554e2014-07-11 06:36:24 -03001886 clk_disable_unprepare(dev->clk_ahb);
1887 clk_disable_unprepare(dev->clk_per);
1888
1889 return 0;
1890
1891err_clk_ahb:
1892 clk_disable_unprepare(dev->clk_per);
1893err_clk_per:
1894 return ret;
1895}
1896
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001897static int coda_register_device(struct coda_dev *dev, int i)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001898{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001899 struct video_device *vfd = &dev->vfd[i];
1900
Dan Carpenter88ca3af2015-01-08 07:07:08 -03001901 if (i >= dev->devtype->num_vdevs)
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001902 return -EINVAL;
1903
Philipp Zabelbf249da2015-03-24 14:30:50 -03001904 strlcpy(vfd->name, dev->devtype->vdevs[i]->name, sizeof(vfd->name));
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001905 vfd->fops = &coda_fops;
1906 vfd->ioctl_ops = &coda_ioctl_ops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001907 vfd->release = video_device_release_empty,
1908 vfd->lock = &dev->dev_mutex;
1909 vfd->v4l2_dev = &dev->v4l2_dev;
1910 vfd->vfl_dir = VFL_DIR_M2M;
1911 video_set_drvdata(vfd, dev);
1912
Philipp Zabela188a662014-08-05 14:00:20 -03001913 /* Not applicable, use the selection API instead */
1914 v4l2_disable_ioctl(vfd, VIDIOC_CROPCAP);
1915 v4l2_disable_ioctl(vfd, VIDIOC_G_CROP);
1916 v4l2_disable_ioctl(vfd, VIDIOC_S_CROP);
1917
Philipp Zabel121cacf2014-07-18 07:22:42 -03001918 return video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1919}
1920
Javier Martin186b2502012-07-26 05:53:35 -03001921static void coda_fw_callback(const struct firmware *fw, void *context)
1922{
1923 struct coda_dev *dev = context;
1924 struct platform_device *pdev = dev->plat_dev;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001925 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001926
1927 if (!fw) {
1928 v4l2_err(&dev->v4l2_dev, "firmware request failed\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001929 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001930 }
1931
1932 /* allocate auxiliary per-device code buffer for the BIT processor */
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001933 ret = coda_alloc_aux_buf(dev, &dev->codebuf, fw->size, "codebuf",
1934 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03001935 if (ret < 0)
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001936 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001937
Philipp Zabel87048bb2012-07-02 07:03:43 -03001938 /* Copy the whole firmware image to the code buffer */
1939 memcpy(dev->codebuf.vaddr, fw->data, fw->size);
1940 release_firmware(fw);
1941
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001942 ret = coda_hw_init(dev);
1943 if (ret < 0) {
1944 v4l2_err(&dev->v4l2_dev, "HW initialization failed\n");
1945 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001946 }
1947
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001948 ret = coda_check_firmware(dev);
1949 if (ret < 0)
1950 goto put_pm;
1951
Javier Martin186b2502012-07-26 05:53:35 -03001952 dev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
1953 if (IS_ERR(dev->alloc_ctx)) {
1954 v4l2_err(&dev->v4l2_dev, "Failed to alloc vb2 context\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001955 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001956 }
1957
1958 dev->m2m_dev = v4l2_m2m_init(&coda_m2m_ops);
1959 if (IS_ERR(dev->m2m_dev)) {
1960 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
1961 goto rel_ctx;
1962 }
1963
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001964 for (i = 0; i < dev->devtype->num_vdevs; i++) {
1965 ret = coda_register_device(dev, i);
1966 if (ret) {
1967 v4l2_err(&dev->v4l2_dev,
1968 "Failed to register %s video device: %d\n",
1969 dev->devtype->vdevs[i]->name, ret);
1970 goto rel_vfd;
1971 }
Philipp Zabel121cacf2014-07-18 07:22:42 -03001972 }
1973
1974 v4l2_info(&dev->v4l2_dev, "codec registered as /dev/video[%d-%d]\n",
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001975 dev->vfd[0].num, dev->vfd[i - 1].num);
Javier Martin186b2502012-07-26 05:53:35 -03001976
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001977 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001978 return;
1979
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001980rel_vfd:
1981 while (--i >= 0)
1982 video_unregister_device(&dev->vfd[i]);
Javier Martin186b2502012-07-26 05:53:35 -03001983 v4l2_m2m_release(dev->m2m_dev);
1984rel_ctx:
1985 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001986put_pm:
1987 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001988}
1989
1990static int coda_firmware_request(struct coda_dev *dev)
1991{
1992 char *fw = dev->devtype->firmware;
1993
1994 dev_dbg(&dev->plat_dev->dev, "requesting firmware '%s' for %s\n", fw,
1995 coda_product_name(dev->devtype->product));
1996
1997 return request_firmware_nowait(THIS_MODULE, true,
1998 fw, &dev->plat_dev->dev, GFP_KERNEL, dev, coda_fw_callback);
1999}
2000
2001enum coda_platform {
2002 CODA_IMX27,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002003 CODA_IMX53,
Philipp Zabel89548442014-07-11 06:36:17 -03002004 CODA_IMX6Q,
2005 CODA_IMX6DL,
Javier Martin186b2502012-07-26 05:53:35 -03002006};
2007
Emil Goodec06d8752012-08-14 17:44:42 -03002008static const struct coda_devtype coda_devdata[] = {
Javier Martin186b2502012-07-26 05:53:35 -03002009 [CODA_IMX27] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002010 .firmware = "v4l-codadx6-imx27.bin",
2011 .product = CODA_DX6,
2012 .codecs = codadx6_codecs,
2013 .num_codecs = ARRAY_SIZE(codadx6_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002014 .vdevs = codadx6_video_devices,
2015 .num_vdevs = ARRAY_SIZE(codadx6_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002016 .workbuf_size = 288 * 1024 + FMO_SLICE_SAVE_BUF_SIZE * 8 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002017 .iram_size = 0xb000,
Javier Martin186b2502012-07-26 05:53:35 -03002018 },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002019 [CODA_IMX53] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002020 .firmware = "v4l-coda7541-imx53.bin",
2021 .product = CODA_7541,
2022 .codecs = coda7_codecs,
2023 .num_codecs = ARRAY_SIZE(coda7_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002024 .vdevs = coda7_video_devices,
2025 .num_vdevs = ARRAY_SIZE(coda7_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002026 .workbuf_size = 128 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002027 .tempbuf_size = 304 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002028 .iram_size = 0x14000,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002029 },
Philipp Zabel89548442014-07-11 06:36:17 -03002030 [CODA_IMX6Q] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002031 .firmware = "v4l-coda960-imx6q.bin",
2032 .product = CODA_960,
2033 .codecs = coda9_codecs,
2034 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002035 .vdevs = coda9_video_devices,
2036 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002037 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002038 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002039 .iram_size = 0x21000,
Philipp Zabel89548442014-07-11 06:36:17 -03002040 },
2041 [CODA_IMX6DL] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002042 .firmware = "v4l-coda960-imx6dl.bin",
2043 .product = CODA_960,
2044 .codecs = coda9_codecs,
2045 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002046 .vdevs = coda9_video_devices,
2047 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002048 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002049 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002050 .iram_size = 0x20000,
Philipp Zabel89548442014-07-11 06:36:17 -03002051 },
Javier Martin186b2502012-07-26 05:53:35 -03002052};
2053
2054static struct platform_device_id coda_platform_ids[] = {
2055 { .name = "coda-imx27", .driver_data = CODA_IMX27 },
2056 { /* sentinel */ }
2057};
2058MODULE_DEVICE_TABLE(platform, coda_platform_ids);
2059
2060#ifdef CONFIG_OF
2061static const struct of_device_id coda_dt_ids[] = {
Alexander Shiyan7b0dd9e2013-06-15 08:09:57 -03002062 { .compatible = "fsl,imx27-vpu", .data = &coda_devdata[CODA_IMX27] },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002063 { .compatible = "fsl,imx53-vpu", .data = &coda_devdata[CODA_IMX53] },
Philipp Zabel89548442014-07-11 06:36:17 -03002064 { .compatible = "fsl,imx6q-vpu", .data = &coda_devdata[CODA_IMX6Q] },
2065 { .compatible = "fsl,imx6dl-vpu", .data = &coda_devdata[CODA_IMX6DL] },
Javier Martin186b2502012-07-26 05:53:35 -03002066 { /* sentinel */ }
2067};
2068MODULE_DEVICE_TABLE(of, coda_dt_ids);
2069#endif
2070
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002071static int coda_probe(struct platform_device *pdev)
Javier Martin186b2502012-07-26 05:53:35 -03002072{
2073 const struct of_device_id *of_id =
2074 of_match_device(of_match_ptr(coda_dt_ids), &pdev->dev);
2075 const struct platform_device_id *pdev_id;
Philipp Zabel657eee72013-04-29 16:17:14 -07002076 struct coda_platform_data *pdata = pdev->dev.platform_data;
2077 struct device_node *np = pdev->dev.of_node;
2078 struct gen_pool *pool;
Javier Martin186b2502012-07-26 05:53:35 -03002079 struct coda_dev *dev;
2080 struct resource *res;
2081 int ret, irq;
2082
Philipp Zabelf23797b2014-08-06 08:02:23 -03002083 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
Philipp Zabel6da999d2014-09-29 09:53:43 -03002084 if (!dev)
Javier Martin186b2502012-07-26 05:53:35 -03002085 return -ENOMEM;
Javier Martin186b2502012-07-26 05:53:35 -03002086
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002087 pdev_id = of_id ? of_id->data : platform_get_device_id(pdev);
2088
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002089 if (of_id) {
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002090 dev->devtype = of_id->data;
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002091 } else if (pdev_id) {
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002092 dev->devtype = &coda_devdata[pdev_id->driver_data];
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002093 } else {
2094 ret = -EINVAL;
2095 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002096 }
2097
2098 spin_lock_init(&dev->irqlock);
Philipp Zabele11f3e62012-07-25 09:16:58 -03002099 INIT_LIST_HEAD(&dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03002100
2101 dev->plat_dev = pdev;
2102 dev->clk_per = devm_clk_get(&pdev->dev, "per");
2103 if (IS_ERR(dev->clk_per)) {
2104 dev_err(&pdev->dev, "Could not get per clock\n");
2105 return PTR_ERR(dev->clk_per);
2106 }
2107
2108 dev->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
2109 if (IS_ERR(dev->clk_ahb)) {
2110 dev_err(&pdev->dev, "Could not get ahb clock\n");
2111 return PTR_ERR(dev->clk_ahb);
2112 }
2113
2114 /* Get memory for physical registers */
2115 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Philipp Zabel611cbbf2013-05-21 04:19:27 -03002116 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
2117 if (IS_ERR(dev->regs_base))
2118 return PTR_ERR(dev->regs_base);
Javier Martin186b2502012-07-26 05:53:35 -03002119
2120 /* IRQ */
Philipp Zabel540b72e2014-08-05 14:00:09 -03002121 irq = platform_get_irq_byname(pdev, "bit");
2122 if (irq < 0)
2123 irq = platform_get_irq(pdev, 0);
Javier Martin186b2502012-07-26 05:53:35 -03002124 if (irq < 0) {
2125 dev_err(&pdev->dev, "failed to get irq resource\n");
Fabio Estevam7d377432014-06-04 15:46:23 -03002126 return irq;
Javier Martin186b2502012-07-26 05:53:35 -03002127 }
2128
Fabio Estevam08c8d142014-06-04 15:46:24 -03002129 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, coda_irq_handler,
2130 IRQF_ONESHOT, dev_name(&pdev->dev), dev);
2131 if (ret < 0) {
2132 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
2133 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002134 }
2135
Philipp Zabelee27aa92014-07-24 16:50:03 -03002136 dev->rstc = devm_reset_control_get_optional(&pdev->dev, NULL);
Philipp Zabel8f452842014-07-11 06:36:35 -03002137 if (IS_ERR(dev->rstc)) {
2138 ret = PTR_ERR(dev->rstc);
Philipp Zabelee27aa92014-07-24 16:50:03 -03002139 if (ret == -ENOENT || ret == -ENOSYS) {
Philipp Zabel8f452842014-07-11 06:36:35 -03002140 dev->rstc = NULL;
2141 } else {
Philipp Zabelf23797b2014-08-06 08:02:23 -03002142 dev_err(&pdev->dev, "failed get reset control: %d\n",
2143 ret);
Philipp Zabel8f452842014-07-11 06:36:35 -03002144 return ret;
2145 }
2146 }
2147
Philipp Zabel657eee72013-04-29 16:17:14 -07002148 /* Get IRAM pool from device tree or platform data */
2149 pool = of_get_named_gen_pool(np, "iram", 0);
2150 if (!pool && pdata)
2151 pool = dev_get_gen_pool(pdata->iram_dev);
2152 if (!pool) {
2153 dev_err(&pdev->dev, "iram pool not available\n");
2154 return -ENOMEM;
2155 }
2156 dev->iram_pool = pool;
2157
Javier Martin186b2502012-07-26 05:53:35 -03002158 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
2159 if (ret)
2160 return ret;
2161
2162 mutex_init(&dev->dev_mutex);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002163 mutex_init(&dev->coda_mutex);
Javier Martin186b2502012-07-26 05:53:35 -03002164
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002165 dev->debugfs_root = debugfs_create_dir("coda", NULL);
2166 if (!dev->debugfs_root)
2167 dev_warn(&pdev->dev, "failed to create debugfs root\n");
2168
Javier Martin186b2502012-07-26 05:53:35 -03002169 /* allocate auxiliary per-device buffers for the BIT processor */
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002170 if (dev->devtype->product == CODA_DX6) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002171 ret = coda_alloc_aux_buf(dev, &dev->workbuf,
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002172 dev->devtype->workbuf_size, "workbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002173 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002174 if (ret < 0)
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002175 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002176 }
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002177
2178 if (dev->devtype->tempbuf_size) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002179 ret = coda_alloc_aux_buf(dev, &dev->tempbuf,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002180 dev->devtype->tempbuf_size, "tempbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002181 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002182 if (ret < 0)
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002183 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002184 }
2185
Philipp Zabel401e9722014-07-11 06:36:43 -03002186 dev->iram.size = dev->devtype->iram_size;
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002187 dev->iram.vaddr = gen_pool_dma_alloc(dev->iram_pool, dev->iram.size,
2188 &dev->iram.paddr);
2189 if (!dev->iram.vaddr) {
Philipp Zabel8be31c82014-08-05 14:00:13 -03002190 dev_warn(&pdev->dev, "unable to alloc iram\n");
2191 } else {
Philipp Zabel811a6932015-01-23 13:51:23 -03002192 memset(dev->iram.vaddr, 0, dev->iram.size);
Philipp Zabel8be31c82014-08-05 14:00:13 -03002193 dev->iram.blob.data = dev->iram.vaddr;
2194 dev->iram.blob.size = dev->iram.size;
2195 dev->iram.dentry = debugfs_create_blob("iram", 0644,
2196 dev->debugfs_root,
2197 &dev->iram.blob);
Philipp Zabel10436672012-07-02 09:03:55 -03002198 }
2199
Philipp Zabel32b6f202014-07-11 06:36:20 -03002200 dev->workqueue = alloc_workqueue("coda", WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
2201 if (!dev->workqueue) {
2202 dev_err(&pdev->dev, "unable to alloc workqueue\n");
Fabio Estevam74d08d52014-10-04 16:40:51 -03002203 ret = -ENOMEM;
2204 goto err_v4l2_register;
Philipp Zabel32b6f202014-07-11 06:36:20 -03002205 }
2206
Javier Martin186b2502012-07-26 05:53:35 -03002207 platform_set_drvdata(pdev, dev);
2208
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002209 /*
2210 * Start activated so we can directly call coda_hw_init in
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002211 * coda_fw_callback regardless of whether CONFIG_PM is
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002212 * enabled or whether the device is associated with a PM domain.
2213 */
2214 pm_runtime_get_noresume(&pdev->dev);
2215 pm_runtime_set_active(&pdev->dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002216 pm_runtime_enable(&pdev->dev);
2217
Javier Martin186b2502012-07-26 05:53:35 -03002218 return coda_firmware_request(dev);
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002219
2220err_v4l2_register:
2221 v4l2_device_unregister(&dev->v4l2_dev);
2222 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002223}
2224
2225static int coda_remove(struct platform_device *pdev)
2226{
2227 struct coda_dev *dev = platform_get_drvdata(pdev);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002228 int i;
Javier Martin186b2502012-07-26 05:53:35 -03002229
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002230 for (i = 0; i < ARRAY_SIZE(dev->vfd); i++) {
2231 if (video_get_drvdata(&dev->vfd[i]))
2232 video_unregister_device(&dev->vfd[i]);
2233 }
Javier Martin186b2502012-07-26 05:53:35 -03002234 if (dev->m2m_dev)
2235 v4l2_m2m_release(dev->m2m_dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002236 pm_runtime_disable(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03002237 if (dev->alloc_ctx)
2238 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
2239 v4l2_device_unregister(&dev->v4l2_dev);
Philipp Zabel32b6f202014-07-11 06:36:20 -03002240 destroy_workqueue(dev->workqueue);
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002241 if (dev->iram.vaddr)
2242 gen_pool_free(dev->iram_pool, (unsigned long)dev->iram.vaddr,
2243 dev->iram.size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002244 coda_free_aux_buf(dev, &dev->codebuf);
2245 coda_free_aux_buf(dev, &dev->tempbuf);
2246 coda_free_aux_buf(dev, &dev->workbuf);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002247 debugfs_remove_recursive(dev->debugfs_root);
Javier Martin186b2502012-07-26 05:53:35 -03002248 return 0;
2249}
2250
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002251#ifdef CONFIG_PM
Philipp Zabel1e172732014-07-11 06:36:23 -03002252static int coda_runtime_resume(struct device *dev)
2253{
2254 struct coda_dev *cdev = dev_get_drvdata(dev);
2255 int ret = 0;
2256
Philipp Zabel65919e62014-07-18 07:22:36 -03002257 if (dev->pm_domain && cdev->codebuf.vaddr) {
Philipp Zabel1e172732014-07-11 06:36:23 -03002258 ret = coda_hw_init(cdev);
2259 if (ret)
2260 v4l2_err(&cdev->v4l2_dev, "HW initialization failed\n");
2261 }
2262
2263 return ret;
2264}
2265#endif
2266
2267static const struct dev_pm_ops coda_pm_ops = {
2268 SET_RUNTIME_PM_OPS(NULL, coda_runtime_resume, NULL)
2269};
2270
Javier Martin186b2502012-07-26 05:53:35 -03002271static struct platform_driver coda_driver = {
2272 .probe = coda_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002273 .remove = coda_remove,
Javier Martin186b2502012-07-26 05:53:35 -03002274 .driver = {
2275 .name = CODA_NAME,
Javier Martin186b2502012-07-26 05:53:35 -03002276 .of_match_table = of_match_ptr(coda_dt_ids),
Philipp Zabel1e172732014-07-11 06:36:23 -03002277 .pm = &coda_pm_ops,
Javier Martin186b2502012-07-26 05:53:35 -03002278 },
2279 .id_table = coda_platform_ids,
2280};
2281
2282module_platform_driver(coda_driver);
2283
2284MODULE_LICENSE("GPL");
2285MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
2286MODULE_DESCRIPTION("Coda multi-standard codec V4L2 driver");