blob: 7dfc86efc055231871f0ce4570c64b0f347f6761 [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 Zabel23b6ee52015-03-24 14:30:55 -03001285 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1286 if ((q_data_src->width != q_data_dst->width &&
1287 round_up(q_data_src->width, 16) != q_data_dst->width) ||
1288 (q_data_src->height != q_data_dst->height &&
1289 round_up(q_data_src->height, 16) != q_data_dst->height)) {
1290 v4l2_err(v4l2_dev, "can't convert %dx%d to %dx%d\n",
1291 q_data_src->width, q_data_src->height,
1292 q_data_dst->width, q_data_dst->height);
1293 ret = -EINVAL;
1294 goto err;
1295 }
1296
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001297 /* Allow BIT decoder device_run with no new buffers queued */
Philipp Zabela22496c2015-01-23 13:51:33 -03001298 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit)
Philipp Zabel14604e32014-07-11 06:36:22 -03001299 v4l2_m2m_set_src_buffered(ctx->fh.m2m_ctx, true);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001300
Philipp Zabelb96904e2013-05-23 10:42:58 -03001301 ctx->gopcounter = ctx->params.gop_size - 1;
Javier Martin186b2502012-07-26 05:53:35 -03001302
Philipp Zabelb96904e2013-05-23 10:42:58 -03001303 ctx->codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
1304 q_data_dst->fourcc);
1305 if (!ctx->codec) {
Javier Martin186b2502012-07-26 05:53:35 -03001306 v4l2_err(v4l2_dev, "couldn't tell instance type.\n");
Philipp Zabelb9063522014-08-05 14:00:10 -03001307 ret = -EINVAL;
1308 goto err;
Javier Martin186b2502012-07-26 05:53:35 -03001309 }
1310
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001311 if (q_data_dst->fourcc == V4L2_PIX_FMT_JPEG)
1312 ctx->params.gop_size = 1;
1313 ctx->gopcounter = ctx->params.gop_size - 1;
1314
Philipp Zabela1192a12014-07-23 12:28:40 -03001315 ret = ctx->ops->start_streaming(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001316 if (ctx->inst_type == CODA_INST_DECODER) {
Philipp Zabel89548442014-07-11 06:36:17 -03001317 if (ret == -EAGAIN)
Philipp Zabel918c66f2013-06-27 06:59:01 -03001318 return 0;
Philipp Zabel89548442014-07-11 06:36:17 -03001319 else if (ret < 0)
Philipp Zabelb9063522014-08-05 14:00:10 -03001320 goto err;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001321 }
1322
Philipp Zabel89548442014-07-11 06:36:17 -03001323 ctx->initialized = 1;
1324 return ret;
Philipp Zabelb9063522014-08-05 14:00:10 -03001325
1326err:
1327 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1328 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b58c52014-10-21 13:25:52 -03001329 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001330 } else {
1331 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b58c52014-10-21 13:25:52 -03001332 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001333 }
1334 return ret;
Philipp Zabel89548442014-07-11 06:36:17 -03001335}
1336
Hans Verkuile37559b2014-04-17 02:47:21 -03001337static void coda_stop_streaming(struct vb2_queue *q)
Javier Martin186b2502012-07-26 05:53:35 -03001338{
1339 struct coda_ctx *ctx = vb2_get_drv_priv(q);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03001340 struct coda_dev *dev = ctx->dev;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001341 struct vb2_buffer *buf;
Javier Martin186b2502012-07-26 05:53:35 -03001342
1343 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
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: output\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001346 ctx->streamon_out = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001347
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001348 coda_bit_stream_end_flag(ctx);
Philipp Zabel4a31b522014-08-05 14:00:11 -03001349
Philipp Zabel6dd5ef52015-01-23 13:51:26 -03001350 ctx->qsequence = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001351
1352 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
1353 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001354 } else {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001355 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001356 "%s: capture\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001357 ctx->streamon_cap = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001358
1359 ctx->osequence = 0;
Philipp Zabelcb2c0282014-07-11 06:36:33 -03001360 ctx->sequence_offset = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001361
1362 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
1363 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001364 }
1365
Philipp Zabel918c66f2013-06-27 06:59:01 -03001366 if (!ctx->streamon_out && !ctx->streamon_cap) {
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001367 struct coda_buffer_meta *meta;
Philipp Zabel846ced92014-07-11 06:36:31 -03001368
Philipp Zabelf4706d62015-01-23 13:51:27 -03001369 if (ctx->ops->seq_end_work) {
1370 queue_work(dev->workqueue, &ctx->seq_end_work);
1371 flush_work(&ctx->seq_end_work);
1372 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001373 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001374 while (!list_empty(&ctx->buffer_meta_list)) {
1375 meta = list_first_entry(&ctx->buffer_meta_list,
1376 struct coda_buffer_meta, list);
1377 list_del(&meta->list);
1378 kfree(meta);
Philipp Zabel846ced92014-07-11 06:36:31 -03001379 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001380 mutex_unlock(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001381 kfifo_init(&ctx->bitstream_fifo,
1382 ctx->bitstream.vaddr, ctx->bitstream.size);
Philipp Zabelf4706d62015-01-23 13:51:27 -03001383 ctx->initialized = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001384 ctx->runcounter = 0;
Philipp Zabelf157cf42014-09-29 09:53:42 -03001385 ctx->aborting = 0;
Philipp Zabel62bed142012-07-25 10:40:39 -03001386 }
Javier Martin186b2502012-07-26 05:53:35 -03001387}
1388
Philipp Zabel121cacf2014-07-18 07:22:42 -03001389static const struct vb2_ops coda_qops = {
Javier Martin186b2502012-07-26 05:53:35 -03001390 .queue_setup = coda_queue_setup,
1391 .buf_prepare = coda_buf_prepare,
1392 .buf_queue = coda_buf_queue,
Javier Martin186b2502012-07-26 05:53:35 -03001393 .start_streaming = coda_start_streaming,
1394 .stop_streaming = coda_stop_streaming,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001395 .wait_prepare = vb2_ops_wait_prepare,
1396 .wait_finish = vb2_ops_wait_finish,
Javier Martin186b2502012-07-26 05:53:35 -03001397};
1398
1399static int coda_s_ctrl(struct v4l2_ctrl *ctrl)
1400{
1401 struct coda_ctx *ctx =
1402 container_of(ctrl->handler, struct coda_ctx, ctrls);
1403
1404 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1405 "s_ctrl: id = %d, val = %d\n", ctrl->id, ctrl->val);
1406
1407 switch (ctrl->id) {
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001408 case V4L2_CID_HFLIP:
1409 if (ctrl->val)
1410 ctx->params.rot_mode |= CODA_MIR_HOR;
1411 else
1412 ctx->params.rot_mode &= ~CODA_MIR_HOR;
1413 break;
1414 case V4L2_CID_VFLIP:
1415 if (ctrl->val)
1416 ctx->params.rot_mode |= CODA_MIR_VER;
1417 else
1418 ctx->params.rot_mode &= ~CODA_MIR_VER;
1419 break;
Javier Martin186b2502012-07-26 05:53:35 -03001420 case V4L2_CID_MPEG_VIDEO_BITRATE:
1421 ctx->params.bitrate = ctrl->val / 1000;
1422 break;
1423 case V4L2_CID_MPEG_VIDEO_GOP_SIZE:
1424 ctx->params.gop_size = ctrl->val;
1425 break;
1426 case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP:
1427 ctx->params.h264_intra_qp = ctrl->val;
1428 break;
1429 case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP:
1430 ctx->params.h264_inter_qp = ctrl->val;
1431 break;
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001432 case V4L2_CID_MPEG_VIDEO_H264_MIN_QP:
1433 ctx->params.h264_min_qp = ctrl->val;
1434 break;
1435 case V4L2_CID_MPEG_VIDEO_H264_MAX_QP:
1436 ctx->params.h264_max_qp = ctrl->val;
1437 break;
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001438 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA:
1439 ctx->params.h264_deblk_alpha = ctrl->val;
1440 break;
1441 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA:
1442 ctx->params.h264_deblk_beta = ctrl->val;
1443 break;
1444 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
1445 ctx->params.h264_deblk_enabled = (ctrl->val ==
1446 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1447 break;
Javier Martin186b2502012-07-26 05:53:35 -03001448 case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP:
1449 ctx->params.mpeg4_intra_qp = ctrl->val;
1450 break;
1451 case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP:
1452 ctx->params.mpeg4_inter_qp = ctrl->val;
1453 break;
1454 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
1455 ctx->params.slice_mode = ctrl->val;
1456 break;
1457 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB:
1458 ctx->params.slice_max_mb = ctrl->val;
1459 break;
Philipp Zabelc566c782012-08-08 11:59:38 -03001460 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES:
1461 ctx->params.slice_max_bits = ctrl->val * 8;
1462 break;
Javier Martin186b2502012-07-26 05:53:35 -03001463 case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
1464 break;
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001465 case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB:
1466 ctx->params.intra_refresh = ctrl->val;
1467 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001468 case V4L2_CID_JPEG_COMPRESSION_QUALITY:
1469 coda_set_jpeg_compression_quality(ctx, ctrl->val);
1470 break;
1471 case V4L2_CID_JPEG_RESTART_INTERVAL:
1472 ctx->params.jpeg_restart_interval = ctrl->val;
1473 break;
Javier Martin186b2502012-07-26 05:53:35 -03001474 default:
1475 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1476 "Invalid control, id=%d, val=%d\n",
1477 ctrl->id, ctrl->val);
1478 return -EINVAL;
1479 }
1480
1481 return 0;
1482}
1483
Philipp Zabel814c3762014-07-18 07:22:45 -03001484static const struct v4l2_ctrl_ops coda_ctrl_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001485 .s_ctrl = coda_s_ctrl,
1486};
1487
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001488static void coda_encode_ctrls(struct coda_ctx *ctx)
Javier Martin186b2502012-07-26 05:53:35 -03001489{
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001490 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel92b042e2015-03-18 08:15:36 -03001491 V4L2_CID_MPEG_VIDEO_BITRATE, 0, 32767000, 1000, 0);
Javier Martin186b2502012-07-26 05:53:35 -03001492 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1493 V4L2_CID_MPEG_VIDEO_GOP_SIZE, 1, 60, 1, 16);
1494 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001495 V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP, 0, 51, 1, 25);
Javier Martin186b2502012-07-26 05:53:35 -03001496 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001497 V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP, 0, 51, 1, 25);
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001498 if (ctx->dev->devtype->product != CODA_960) {
1499 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1500 V4L2_CID_MPEG_VIDEO_H264_MIN_QP, 0, 51, 1, 12);
1501 }
1502 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1503 V4L2_CID_MPEG_VIDEO_H264_MAX_QP, 0, 51, 1, 51);
Javier Martin186b2502012-07-26 05:53:35 -03001504 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001505 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA, 0, 15, 1, 0);
1506 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1507 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA, 0, 15, 1, 0);
1508 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1509 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE,
1510 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED, 0x0,
1511 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1512 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Javier Martin186b2502012-07-26 05:53:35 -03001513 V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP, 1, 31, 1, 2);
1514 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1515 V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP, 1, 31, 1, 2);
1516 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1517 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE,
Philipp Zabelc566c782012-08-08 11:59:38 -03001518 V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES, 0x0,
1519 V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE);
Javier Martin186b2502012-07-26 05:53:35 -03001520 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1521 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB, 1, 0x3fffffff, 1, 1);
Philipp Zabelc566c782012-08-08 11:59:38 -03001522 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001523 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES, 1, 0x3fffffff, 1,
1524 500);
Javier Martin186b2502012-07-26 05:53:35 -03001525 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1526 V4L2_CID_MPEG_VIDEO_HEADER_MODE,
1527 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME,
1528 (1 << V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE),
1529 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME);
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001530 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001531 V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB, 0,
1532 1920 * 1088 / 256, 1, 0);
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001533}
1534
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001535static void coda_jpeg_encode_ctrls(struct coda_ctx *ctx)
1536{
1537 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1538 V4L2_CID_JPEG_COMPRESSION_QUALITY, 5, 100, 1, 50);
1539 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1540 V4L2_CID_JPEG_RESTART_INTERVAL, 0, 100, 1, 0);
1541}
1542
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001543static int coda_ctrls_setup(struct coda_ctx *ctx)
1544{
1545 v4l2_ctrl_handler_init(&ctx->ctrls, 2);
1546
1547 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1548 V4L2_CID_HFLIP, 0, 1, 1, 0);
1549 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1550 V4L2_CID_VFLIP, 0, 1, 1, 0);
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001551 if (ctx->inst_type == CODA_INST_ENCODER) {
1552 if (ctx->cvd->dst_formats[0] == V4L2_PIX_FMT_JPEG)
1553 coda_jpeg_encode_ctrls(ctx);
1554 else
1555 coda_encode_ctrls(ctx);
1556 }
Javier Martin186b2502012-07-26 05:53:35 -03001557
1558 if (ctx->ctrls.error) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001559 v4l2_err(&ctx->dev->v4l2_dev,
1560 "control initialization error (%d)",
Javier Martin186b2502012-07-26 05:53:35 -03001561 ctx->ctrls.error);
1562 return -EINVAL;
1563 }
1564
1565 return v4l2_ctrl_handler_setup(&ctx->ctrls);
1566}
1567
Philipp Zabel121cacf2014-07-18 07:22:42 -03001568static int coda_queue_init(struct coda_ctx *ctx, struct vb2_queue *vq)
Javier Martin186b2502012-07-26 05:53:35 -03001569{
Philipp Zabel121cacf2014-07-18 07:22:42 -03001570 vq->drv_priv = ctx;
1571 vq->ops = &coda_qops;
1572 vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
1573 vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
1574 vq->lock = &ctx->dev->dev_mutex;
Kamil Debskie4af23d2015-02-23 09:26:18 -03001575 /* One way to indicate end-of-stream for coda is to set the
1576 * bytesused == 0. However by default videobuf2 handles bytesused
1577 * equal to 0 as a special case and changes its value to the size
1578 * of the buffer. Set the allow_zero_bytesused flag, so
1579 * that videobuf2 will keep the value of bytesused intact.
1580 */
1581 vq->allow_zero_bytesused = 1;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001582
1583 return vb2_queue_init(vq);
1584}
1585
Philipp Zabel79924ca2014-07-23 12:28:45 -03001586int coda_encoder_queue_init(void *priv, struct vb2_queue *src_vq,
1587 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001588{
Javier Martin186b2502012-07-26 05:53:35 -03001589 int ret;
1590
Javier Martin186b2502012-07-26 05:53:35 -03001591 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001592 src_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001593 src_vq->mem_ops = &vb2_dma_contig_memops;
1594
Philipp Zabel121cacf2014-07-18 07:22:42 -03001595 ret = coda_queue_init(priv, src_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001596 if (ret)
1597 return ret;
1598
Javier Martin186b2502012-07-26 05:53:35 -03001599 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001600 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001601 dst_vq->mem_ops = &vb2_dma_contig_memops;
1602
Philipp Zabel121cacf2014-07-18 07:22:42 -03001603 return coda_queue_init(priv, dst_vq);
1604}
1605
Philipp Zabel79924ca2014-07-23 12:28:45 -03001606int coda_decoder_queue_init(void *priv, struct vb2_queue *src_vq,
1607 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001608{
1609 int ret;
1610
1611 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabelbb04aa62015-01-23 13:51:30 -03001612 src_vq->io_modes = VB2_DMABUF | VB2_MMAP | VB2_USERPTR;
1613 src_vq->mem_ops = &vb2_vmalloc_memops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001614
1615 ret = coda_queue_init(priv, src_vq);
1616 if (ret)
1617 return ret;
1618
1619 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1620 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
1621 dst_vq->mem_ops = &vb2_dma_contig_memops;
1622
1623 return coda_queue_init(priv, dst_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001624}
1625
Philipp Zabele11f3e62012-07-25 09:16:58 -03001626static int coda_next_free_instance(struct coda_dev *dev)
1627{
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001628 int idx = ffz(dev->instance_mask);
1629
1630 if ((idx < 0) ||
1631 (dev->devtype->product == CODA_DX6 && idx > CODADX6_MAX_INSTANCES))
1632 return -EBUSY;
1633
1634 return idx;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001635}
1636
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001637/*
1638 * File operations
1639 */
1640
1641static int coda_open(struct file *file)
Javier Martin186b2502012-07-26 05:53:35 -03001642{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001643 struct video_device *vdev = video_devdata(file);
1644 struct coda_dev *dev = video_get_drvdata(vdev);
Javier Martin186b2502012-07-26 05:53:35 -03001645 struct coda_ctx *ctx = NULL;
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001646 char *name;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001647 int ret;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001648 int idx;
Javier Martin186b2502012-07-26 05:53:35 -03001649
Philipp Zabelf23797b2014-08-06 08:02:23 -03001650 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Javier Martin186b2502012-07-26 05:53:35 -03001651 if (!ctx)
1652 return -ENOMEM;
1653
Fabio Estevamf82bc202013-08-21 11:14:16 -03001654 idx = coda_next_free_instance(dev);
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001655 if (idx < 0) {
1656 ret = idx;
Fabio Estevamf82bc202013-08-21 11:14:16 -03001657 goto err_coda_max;
1658 }
1659 set_bit(idx, &dev->instance_mask);
1660
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001661 name = kasprintf(GFP_KERNEL, "context%d", idx);
Peter Seiderera7f933a2015-03-24 14:30:47 -03001662 if (!name) {
1663 ret = -ENOMEM;
1664 goto err_coda_name_init;
1665 }
1666
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001667 ctx->debugfs_entry = debugfs_create_dir(name, dev->debugfs_root);
1668 kfree(name);
1669
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001670 ctx->cvd = to_coda_video_device(vdev);
1671 ctx->inst_type = ctx->cvd->type;
1672 ctx->ops = ctx->cvd->ops;
Philipp Zabela22496c2015-01-23 13:51:33 -03001673 ctx->use_bit = !ctx->cvd->direct;
Philipp Zabel32b6f202014-07-11 06:36:20 -03001674 init_completion(&ctx->completion);
1675 INIT_WORK(&ctx->pic_run_work, coda_pic_run_work);
Philipp Zabel747d7642015-01-23 13:51:31 -03001676 if (ctx->ops->seq_end_work)
1677 INIT_WORK(&ctx->seq_end_work, ctx->ops->seq_end_work);
Javier Martin186b2502012-07-26 05:53:35 -03001678 v4l2_fh_init(&ctx->fh, video_devdata(file));
1679 file->private_data = &ctx->fh;
1680 v4l2_fh_add(&ctx->fh);
1681 ctx->dev = dev;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001682 ctx->idx = idx;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001683 switch (dev->devtype->product) {
Philipp Zabel89548442014-07-11 06:36:17 -03001684 case CODA_960:
Philipp Zabel2bf299c2014-09-29 09:53:46 -03001685 ctx->frame_mem_ctrl = 1 << 12;
1686 /* fallthrough */
1687 case CODA_7541:
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001688 ctx->reg_idx = 0;
1689 break;
1690 default:
1691 ctx->reg_idx = idx;
1692 }
Fabio Estevamf82bc202013-08-21 11:14:16 -03001693
Philipp Zabel1e172732014-07-11 06:36:23 -03001694 /* Power up and upload firmware if necessary */
1695 ret = pm_runtime_get_sync(&dev->plat_dev->dev);
1696 if (ret < 0) {
1697 v4l2_err(&dev->v4l2_dev, "failed to power up: %d\n", ret);
1698 goto err_pm_get;
1699 }
1700
Fabio Estevam79830db2013-08-21 11:14:17 -03001701 ret = clk_prepare_enable(dev->clk_per);
1702 if (ret)
1703 goto err_clk_per;
1704
1705 ret = clk_prepare_enable(dev->clk_ahb);
1706 if (ret)
1707 goto err_clk_ahb;
1708
Javier Martin186b2502012-07-26 05:53:35 -03001709 set_default_params(ctx);
Philipp Zabela1192a12014-07-23 12:28:40 -03001710 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx,
1711 ctx->ops->queue_init);
Philipp Zabel14604e32014-07-11 06:36:22 -03001712 if (IS_ERR(ctx->fh.m2m_ctx)) {
1713 ret = PTR_ERR(ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -03001714
1715 v4l2_err(&dev->v4l2_dev, "%s return error (%d)\n",
1716 __func__, ret);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001717 goto err_ctx_init;
Javier Martin186b2502012-07-26 05:53:35 -03001718 }
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001719
Javier Martin186b2502012-07-26 05:53:35 -03001720 ret = coda_ctrls_setup(ctx);
1721 if (ret) {
1722 v4l2_err(&dev->v4l2_dev, "failed to setup coda controls\n");
Fabio Estevamf82bc202013-08-21 11:14:16 -03001723 goto err_ctrls_setup;
Javier Martin186b2502012-07-26 05:53:35 -03001724 }
1725
1726 ctx->fh.ctrl_handler = &ctx->ctrls;
1727
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001728 mutex_init(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001729 mutex_init(&ctx->buffer_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001730 INIT_LIST_HEAD(&ctx->buffer_meta_list);
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001731
Javier Martin186b2502012-07-26 05:53:35 -03001732 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001733 list_add(&ctx->list, &dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03001734 coda_unlock(ctx);
1735
Javier Martin186b2502012-07-26 05:53:35 -03001736 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Created instance %d (%p)\n",
1737 ctx->idx, ctx);
1738
1739 return 0;
1740
Fabio Estevamf82bc202013-08-21 11:14:16 -03001741err_ctrls_setup:
Philipp Zabel14604e32014-07-11 06:36:22 -03001742 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001743err_ctx_init:
1744 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevam79830db2013-08-21 11:14:17 -03001745err_clk_ahb:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001746 clk_disable_unprepare(dev->clk_per);
Fabio Estevam79830db2013-08-21 11:14:17 -03001747err_clk_per:
Philipp Zabel1e172732014-07-11 06:36:23 -03001748 pm_runtime_put_sync(&dev->plat_dev->dev);
1749err_pm_get:
Javier Martin186b2502012-07-26 05:53:35 -03001750 v4l2_fh_del(&ctx->fh);
1751 v4l2_fh_exit(&ctx->fh);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001752 clear_bit(ctx->idx, &dev->instance_mask);
Peter Seiderera7f933a2015-03-24 14:30:47 -03001753err_coda_name_init:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001754err_coda_max:
Javier Martin186b2502012-07-26 05:53:35 -03001755 kfree(ctx);
1756 return ret;
1757}
1758
1759static int coda_release(struct file *file)
1760{
1761 struct coda_dev *dev = video_drvdata(file);
1762 struct coda_ctx *ctx = fh_to_ctx(file->private_data);
1763
1764 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Releasing instance %p\n",
1765 ctx);
1766
Philipp Zabela22496c2015-01-23 13:51:33 -03001767 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit)
Philipp Zabeld4bb75f2014-10-08 13:09:11 -03001768 coda_bit_stream_end_flag(ctx);
1769
Philipp Zabel918c66f2013-06-27 06:59:01 -03001770 /* If this instance is running, call .job_abort and wait for it to end */
Philipp Zabel14604e32014-07-11 06:36:22 -03001771 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001772
1773 /* In case the instance was not running, we still need to call SEQ_END */
Philipp Zabel747d7642015-01-23 13:51:31 -03001774 if (ctx->initialized && ctx->ops->seq_end_work) {
Philipp Zabel32b6f202014-07-11 06:36:20 -03001775 queue_work(dev->workqueue, &ctx->seq_end_work);
1776 flush_work(&ctx->seq_end_work);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001777 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001778
Javier Martin186b2502012-07-26 05:53:35 -03001779 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001780 list_del(&ctx->list);
Javier Martin186b2502012-07-26 05:53:35 -03001781 coda_unlock(ctx);
1782
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001783 if (ctx->dev->devtype->product == CODA_DX6)
1784 coda_free_aux_buf(dev, &ctx->workbuf);
1785
Javier Martin186b2502012-07-26 05:53:35 -03001786 v4l2_ctrl_handler_free(&ctx->ctrls);
Javier Martin186b2502012-07-26 05:53:35 -03001787 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001788 clk_disable_unprepare(dev->clk_per);
Philipp Zabel1e172732014-07-11 06:36:23 -03001789 pm_runtime_put_sync(&dev->plat_dev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001790 v4l2_fh_del(&ctx->fh);
1791 v4l2_fh_exit(&ctx->fh);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001792 clear_bit(ctx->idx, &dev->instance_mask);
Philipp Zabel58b76772014-07-23 12:28:43 -03001793 if (ctx->ops->release)
1794 ctx->ops->release(ctx);
Philipp Zabele1519e82015-01-23 13:51:17 -03001795 debugfs_remove_recursive(ctx->debugfs_entry);
Javier Martin186b2502012-07-26 05:53:35 -03001796 kfree(ctx);
1797
1798 return 0;
1799}
1800
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001801static const struct v4l2_file_operations coda_fops = {
Javier Martin186b2502012-07-26 05:53:35 -03001802 .owner = THIS_MODULE,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001803 .open = coda_open,
Javier Martin186b2502012-07-26 05:53:35 -03001804 .release = coda_release,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001805 .poll = v4l2_m2m_fop_poll,
Javier Martin186b2502012-07-26 05:53:35 -03001806 .unlocked_ioctl = video_ioctl2,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001807 .mmap = v4l2_m2m_fop_mmap,
Javier Martin186b2502012-07-26 05:53:35 -03001808};
1809
Philipp Zabel87048bb2012-07-02 07:03:43 -03001810static int coda_hw_init(struct coda_dev *dev)
Javier Martin186b2502012-07-26 05:53:35 -03001811{
Javier Martin186b2502012-07-26 05:53:35 -03001812 u32 data;
1813 u16 *p;
Fabio Estevam79830db2013-08-21 11:14:17 -03001814 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001815
Fabio Estevam79830db2013-08-21 11:14:17 -03001816 ret = clk_prepare_enable(dev->clk_per);
1817 if (ret)
Philipp Zabel1e172732014-07-11 06:36:23 -03001818 goto err_clk_per;
Fabio Estevam79830db2013-08-21 11:14:17 -03001819
1820 ret = clk_prepare_enable(dev->clk_ahb);
1821 if (ret)
1822 goto err_clk_ahb;
Javier Martin186b2502012-07-26 05:53:35 -03001823
Philipp Zabel8f452842014-07-11 06:36:35 -03001824 if (dev->rstc)
1825 reset_control_reset(dev->rstc);
1826
Javier Martin186b2502012-07-26 05:53:35 -03001827 /*
1828 * Copy the first CODA_ISRAM_SIZE in the internal SRAM.
Philipp Zabel87048bb2012-07-02 07:03:43 -03001829 * The 16-bit chars in the code buffer are in memory access
1830 * order, re-sort them to CODA order for register download.
Javier Martin186b2502012-07-26 05:53:35 -03001831 * Data in this SRAM survives a reboot.
1832 */
Philipp Zabel87048bb2012-07-02 07:03:43 -03001833 p = (u16 *)dev->codebuf.vaddr;
1834 if (dev->devtype->product == CODA_DX6) {
1835 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1836 data = CODA_DOWN_ADDRESS_SET(i) |
1837 CODA_DOWN_DATA_SET(p[i ^ 1]);
1838 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1839 }
1840 } else {
1841 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1842 data = CODA_DOWN_ADDRESS_SET(i) |
1843 CODA_DOWN_DATA_SET(p[round_down(i, 4) +
1844 3 - (i % 4)]);
1845 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1846 }
Javier Martin186b2502012-07-26 05:53:35 -03001847 }
Javier Martin186b2502012-07-26 05:53:35 -03001848
Philipp Zabel9acf7692013-05-23 10:42:56 -03001849 /* Clear registers */
1850 for (i = 0; i < 64; i++)
1851 coda_write(dev, 0, CODA_REG_BIT_CODE_BUF_ADDR + i * 4);
1852
Javier Martin186b2502012-07-26 05:53:35 -03001853 /* Tell the BIT where to find everything it needs */
Philipp Zabel89548442014-07-11 06:36:17 -03001854 if (dev->devtype->product == CODA_960 ||
1855 dev->devtype->product == CODA_7541) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001856 coda_write(dev, dev->tempbuf.paddr,
1857 CODA_REG_BIT_TEMP_BUF_ADDR);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001858 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001859 } else {
1860 coda_write(dev, dev->workbuf.paddr,
1861 CODA_REG_BIT_WORK_BUF_ADDR);
1862 }
Javier Martin186b2502012-07-26 05:53:35 -03001863 coda_write(dev, dev->codebuf.paddr,
1864 CODA_REG_BIT_CODE_BUF_ADDR);
1865 coda_write(dev, 0, CODA_REG_BIT_CODE_RUN);
1866
1867 /* Set default values */
1868 switch (dev->devtype->product) {
1869 case CODA_DX6:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001870 coda_write(dev, CODADX6_STREAM_BUF_PIC_FLUSH,
1871 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001872 break;
1873 default:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001874 coda_write(dev, CODA7_STREAM_BUF_PIC_FLUSH,
1875 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001876 }
Philipp Zabel89548442014-07-11 06:36:17 -03001877 if (dev->devtype->product == CODA_960)
1878 coda_write(dev, 1 << 12, CODA_REG_BIT_FRAME_MEM_CTRL);
1879 else
1880 coda_write(dev, 0, CODA_REG_BIT_FRAME_MEM_CTRL);
Philipp Zabel10436672012-07-02 09:03:55 -03001881
1882 if (dev->devtype->product != CODA_DX6)
1883 coda_write(dev, 0, CODA7_REG_BIT_AXI_SRAM_USE);
1884
Javier Martin186b2502012-07-26 05:53:35 -03001885 coda_write(dev, CODA_INT_INTERRUPT_ENABLE,
1886 CODA_REG_BIT_INT_ENABLE);
1887
1888 /* Reset VPU and start processor */
1889 data = coda_read(dev, CODA_REG_BIT_CODE_RESET);
1890 data |= CODA_REG_RESET_ENABLE;
1891 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1892 udelay(10);
1893 data &= ~CODA_REG_RESET_ENABLE;
1894 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1895 coda_write(dev, CODA_REG_RUN_ENABLE, CODA_REG_BIT_CODE_RUN);
1896
Philipp Zabelfe7554e2014-07-11 06:36:24 -03001897 clk_disable_unprepare(dev->clk_ahb);
1898 clk_disable_unprepare(dev->clk_per);
1899
1900 return 0;
1901
1902err_clk_ahb:
1903 clk_disable_unprepare(dev->clk_per);
1904err_clk_per:
1905 return ret;
1906}
1907
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001908static int coda_register_device(struct coda_dev *dev, int i)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001909{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001910 struct video_device *vfd = &dev->vfd[i];
1911
Dan Carpenter88ca3af2015-01-08 07:07:08 -03001912 if (i >= dev->devtype->num_vdevs)
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001913 return -EINVAL;
1914
Philipp Zabelbf249da2015-03-24 14:30:50 -03001915 strlcpy(vfd->name, dev->devtype->vdevs[i]->name, sizeof(vfd->name));
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001916 vfd->fops = &coda_fops;
1917 vfd->ioctl_ops = &coda_ioctl_ops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001918 vfd->release = video_device_release_empty,
1919 vfd->lock = &dev->dev_mutex;
1920 vfd->v4l2_dev = &dev->v4l2_dev;
1921 vfd->vfl_dir = VFL_DIR_M2M;
1922 video_set_drvdata(vfd, dev);
1923
Philipp Zabela188a662014-08-05 14:00:20 -03001924 /* Not applicable, use the selection API instead */
1925 v4l2_disable_ioctl(vfd, VIDIOC_CROPCAP);
1926 v4l2_disable_ioctl(vfd, VIDIOC_G_CROP);
1927 v4l2_disable_ioctl(vfd, VIDIOC_S_CROP);
1928
Philipp Zabel121cacf2014-07-18 07:22:42 -03001929 return video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1930}
1931
Javier Martin186b2502012-07-26 05:53:35 -03001932static void coda_fw_callback(const struct firmware *fw, void *context)
1933{
1934 struct coda_dev *dev = context;
1935 struct platform_device *pdev = dev->plat_dev;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001936 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001937
1938 if (!fw) {
1939 v4l2_err(&dev->v4l2_dev, "firmware request failed\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001940 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001941 }
1942
1943 /* allocate auxiliary per-device code buffer for the BIT processor */
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001944 ret = coda_alloc_aux_buf(dev, &dev->codebuf, fw->size, "codebuf",
1945 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03001946 if (ret < 0)
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001947 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001948
Philipp Zabel87048bb2012-07-02 07:03:43 -03001949 /* Copy the whole firmware image to the code buffer */
1950 memcpy(dev->codebuf.vaddr, fw->data, fw->size);
1951 release_firmware(fw);
1952
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001953 ret = coda_hw_init(dev);
1954 if (ret < 0) {
1955 v4l2_err(&dev->v4l2_dev, "HW initialization failed\n");
1956 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001957 }
1958
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001959 ret = coda_check_firmware(dev);
1960 if (ret < 0)
1961 goto put_pm;
1962
Javier Martin186b2502012-07-26 05:53:35 -03001963 dev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
1964 if (IS_ERR(dev->alloc_ctx)) {
1965 v4l2_err(&dev->v4l2_dev, "Failed to alloc vb2 context\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001966 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001967 }
1968
1969 dev->m2m_dev = v4l2_m2m_init(&coda_m2m_ops);
1970 if (IS_ERR(dev->m2m_dev)) {
1971 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
1972 goto rel_ctx;
1973 }
1974
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001975 for (i = 0; i < dev->devtype->num_vdevs; i++) {
1976 ret = coda_register_device(dev, i);
1977 if (ret) {
1978 v4l2_err(&dev->v4l2_dev,
1979 "Failed to register %s video device: %d\n",
1980 dev->devtype->vdevs[i]->name, ret);
1981 goto rel_vfd;
1982 }
Philipp Zabel121cacf2014-07-18 07:22:42 -03001983 }
1984
1985 v4l2_info(&dev->v4l2_dev, "codec registered as /dev/video[%d-%d]\n",
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001986 dev->vfd[0].num, dev->vfd[i - 1].num);
Javier Martin186b2502012-07-26 05:53:35 -03001987
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001988 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001989 return;
1990
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001991rel_vfd:
1992 while (--i >= 0)
1993 video_unregister_device(&dev->vfd[i]);
Javier Martin186b2502012-07-26 05:53:35 -03001994 v4l2_m2m_release(dev->m2m_dev);
1995rel_ctx:
1996 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001997put_pm:
1998 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001999}
2000
2001static int coda_firmware_request(struct coda_dev *dev)
2002{
2003 char *fw = dev->devtype->firmware;
2004
2005 dev_dbg(&dev->plat_dev->dev, "requesting firmware '%s' for %s\n", fw,
2006 coda_product_name(dev->devtype->product));
2007
2008 return request_firmware_nowait(THIS_MODULE, true,
2009 fw, &dev->plat_dev->dev, GFP_KERNEL, dev, coda_fw_callback);
2010}
2011
2012enum coda_platform {
2013 CODA_IMX27,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002014 CODA_IMX53,
Philipp Zabel89548442014-07-11 06:36:17 -03002015 CODA_IMX6Q,
2016 CODA_IMX6DL,
Javier Martin186b2502012-07-26 05:53:35 -03002017};
2018
Emil Goodec06d8752012-08-14 17:44:42 -03002019static const struct coda_devtype coda_devdata[] = {
Javier Martin186b2502012-07-26 05:53:35 -03002020 [CODA_IMX27] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002021 .firmware = "v4l-codadx6-imx27.bin",
2022 .product = CODA_DX6,
2023 .codecs = codadx6_codecs,
2024 .num_codecs = ARRAY_SIZE(codadx6_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002025 .vdevs = codadx6_video_devices,
2026 .num_vdevs = ARRAY_SIZE(codadx6_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002027 .workbuf_size = 288 * 1024 + FMO_SLICE_SAVE_BUF_SIZE * 8 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002028 .iram_size = 0xb000,
Javier Martin186b2502012-07-26 05:53:35 -03002029 },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002030 [CODA_IMX53] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002031 .firmware = "v4l-coda7541-imx53.bin",
2032 .product = CODA_7541,
2033 .codecs = coda7_codecs,
2034 .num_codecs = ARRAY_SIZE(coda7_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002035 .vdevs = coda7_video_devices,
2036 .num_vdevs = ARRAY_SIZE(coda7_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002037 .workbuf_size = 128 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002038 .tempbuf_size = 304 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002039 .iram_size = 0x14000,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002040 },
Philipp Zabel89548442014-07-11 06:36:17 -03002041 [CODA_IMX6Q] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002042 .firmware = "v4l-coda960-imx6q.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 = 0x21000,
Philipp Zabel89548442014-07-11 06:36:17 -03002051 },
2052 [CODA_IMX6DL] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002053 .firmware = "v4l-coda960-imx6dl.bin",
2054 .product = CODA_960,
2055 .codecs = coda9_codecs,
2056 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002057 .vdevs = coda9_video_devices,
2058 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002059 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002060 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002061 .iram_size = 0x20000,
Philipp Zabel89548442014-07-11 06:36:17 -03002062 },
Javier Martin186b2502012-07-26 05:53:35 -03002063};
2064
2065static struct platform_device_id coda_platform_ids[] = {
2066 { .name = "coda-imx27", .driver_data = CODA_IMX27 },
2067 { /* sentinel */ }
2068};
2069MODULE_DEVICE_TABLE(platform, coda_platform_ids);
2070
2071#ifdef CONFIG_OF
2072static const struct of_device_id coda_dt_ids[] = {
Alexander Shiyan7b0dd9e2013-06-15 08:09:57 -03002073 { .compatible = "fsl,imx27-vpu", .data = &coda_devdata[CODA_IMX27] },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002074 { .compatible = "fsl,imx53-vpu", .data = &coda_devdata[CODA_IMX53] },
Philipp Zabel89548442014-07-11 06:36:17 -03002075 { .compatible = "fsl,imx6q-vpu", .data = &coda_devdata[CODA_IMX6Q] },
2076 { .compatible = "fsl,imx6dl-vpu", .data = &coda_devdata[CODA_IMX6DL] },
Javier Martin186b2502012-07-26 05:53:35 -03002077 { /* sentinel */ }
2078};
2079MODULE_DEVICE_TABLE(of, coda_dt_ids);
2080#endif
2081
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002082static int coda_probe(struct platform_device *pdev)
Javier Martin186b2502012-07-26 05:53:35 -03002083{
2084 const struct of_device_id *of_id =
2085 of_match_device(of_match_ptr(coda_dt_ids), &pdev->dev);
2086 const struct platform_device_id *pdev_id;
Philipp Zabel657eee72013-04-29 16:17:14 -07002087 struct coda_platform_data *pdata = pdev->dev.platform_data;
2088 struct device_node *np = pdev->dev.of_node;
2089 struct gen_pool *pool;
Javier Martin186b2502012-07-26 05:53:35 -03002090 struct coda_dev *dev;
2091 struct resource *res;
2092 int ret, irq;
2093
Philipp Zabelf23797b2014-08-06 08:02:23 -03002094 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
Philipp Zabel6da999d2014-09-29 09:53:43 -03002095 if (!dev)
Javier Martin186b2502012-07-26 05:53:35 -03002096 return -ENOMEM;
Javier Martin186b2502012-07-26 05:53:35 -03002097
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002098 pdev_id = of_id ? of_id->data : platform_get_device_id(pdev);
2099
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002100 if (of_id) {
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002101 dev->devtype = of_id->data;
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002102 } else if (pdev_id) {
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002103 dev->devtype = &coda_devdata[pdev_id->driver_data];
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002104 } else {
2105 ret = -EINVAL;
2106 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002107 }
2108
2109 spin_lock_init(&dev->irqlock);
Philipp Zabele11f3e62012-07-25 09:16:58 -03002110 INIT_LIST_HEAD(&dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03002111
2112 dev->plat_dev = pdev;
2113 dev->clk_per = devm_clk_get(&pdev->dev, "per");
2114 if (IS_ERR(dev->clk_per)) {
2115 dev_err(&pdev->dev, "Could not get per clock\n");
2116 return PTR_ERR(dev->clk_per);
2117 }
2118
2119 dev->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
2120 if (IS_ERR(dev->clk_ahb)) {
2121 dev_err(&pdev->dev, "Could not get ahb clock\n");
2122 return PTR_ERR(dev->clk_ahb);
2123 }
2124
2125 /* Get memory for physical registers */
2126 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Philipp Zabel611cbbf2013-05-21 04:19:27 -03002127 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
2128 if (IS_ERR(dev->regs_base))
2129 return PTR_ERR(dev->regs_base);
Javier Martin186b2502012-07-26 05:53:35 -03002130
2131 /* IRQ */
Philipp Zabel540b72e2014-08-05 14:00:09 -03002132 irq = platform_get_irq_byname(pdev, "bit");
2133 if (irq < 0)
2134 irq = platform_get_irq(pdev, 0);
Javier Martin186b2502012-07-26 05:53:35 -03002135 if (irq < 0) {
2136 dev_err(&pdev->dev, "failed to get irq resource\n");
Fabio Estevam7d377432014-06-04 15:46:23 -03002137 return irq;
Javier Martin186b2502012-07-26 05:53:35 -03002138 }
2139
Fabio Estevam08c8d142014-06-04 15:46:24 -03002140 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, coda_irq_handler,
2141 IRQF_ONESHOT, dev_name(&pdev->dev), dev);
2142 if (ret < 0) {
2143 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
2144 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002145 }
2146
Philipp Zabelee27aa92014-07-24 16:50:03 -03002147 dev->rstc = devm_reset_control_get_optional(&pdev->dev, NULL);
Philipp Zabel8f452842014-07-11 06:36:35 -03002148 if (IS_ERR(dev->rstc)) {
2149 ret = PTR_ERR(dev->rstc);
Philipp Zabelee27aa92014-07-24 16:50:03 -03002150 if (ret == -ENOENT || ret == -ENOSYS) {
Philipp Zabel8f452842014-07-11 06:36:35 -03002151 dev->rstc = NULL;
2152 } else {
Philipp Zabelf23797b2014-08-06 08:02:23 -03002153 dev_err(&pdev->dev, "failed get reset control: %d\n",
2154 ret);
Philipp Zabel8f452842014-07-11 06:36:35 -03002155 return ret;
2156 }
2157 }
2158
Philipp Zabel657eee72013-04-29 16:17:14 -07002159 /* Get IRAM pool from device tree or platform data */
2160 pool = of_get_named_gen_pool(np, "iram", 0);
2161 if (!pool && pdata)
2162 pool = dev_get_gen_pool(pdata->iram_dev);
2163 if (!pool) {
2164 dev_err(&pdev->dev, "iram pool not available\n");
2165 return -ENOMEM;
2166 }
2167 dev->iram_pool = pool;
2168
Javier Martin186b2502012-07-26 05:53:35 -03002169 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
2170 if (ret)
2171 return ret;
2172
2173 mutex_init(&dev->dev_mutex);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002174 mutex_init(&dev->coda_mutex);
Javier Martin186b2502012-07-26 05:53:35 -03002175
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002176 dev->debugfs_root = debugfs_create_dir("coda", NULL);
2177 if (!dev->debugfs_root)
2178 dev_warn(&pdev->dev, "failed to create debugfs root\n");
2179
Javier Martin186b2502012-07-26 05:53:35 -03002180 /* allocate auxiliary per-device buffers for the BIT processor */
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002181 if (dev->devtype->product == CODA_DX6) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002182 ret = coda_alloc_aux_buf(dev, &dev->workbuf,
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002183 dev->devtype->workbuf_size, "workbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002184 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002185 if (ret < 0)
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002186 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002187 }
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002188
2189 if (dev->devtype->tempbuf_size) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002190 ret = coda_alloc_aux_buf(dev, &dev->tempbuf,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002191 dev->devtype->tempbuf_size, "tempbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002192 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002193 if (ret < 0)
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002194 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002195 }
2196
Philipp Zabel401e9722014-07-11 06:36:43 -03002197 dev->iram.size = dev->devtype->iram_size;
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002198 dev->iram.vaddr = gen_pool_dma_alloc(dev->iram_pool, dev->iram.size,
2199 &dev->iram.paddr);
2200 if (!dev->iram.vaddr) {
Philipp Zabel8be31c82014-08-05 14:00:13 -03002201 dev_warn(&pdev->dev, "unable to alloc iram\n");
2202 } else {
Philipp Zabel811a6932015-01-23 13:51:23 -03002203 memset(dev->iram.vaddr, 0, dev->iram.size);
Philipp Zabel8be31c82014-08-05 14:00:13 -03002204 dev->iram.blob.data = dev->iram.vaddr;
2205 dev->iram.blob.size = dev->iram.size;
2206 dev->iram.dentry = debugfs_create_blob("iram", 0644,
2207 dev->debugfs_root,
2208 &dev->iram.blob);
Philipp Zabel10436672012-07-02 09:03:55 -03002209 }
2210
Philipp Zabel32b6f202014-07-11 06:36:20 -03002211 dev->workqueue = alloc_workqueue("coda", WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
2212 if (!dev->workqueue) {
2213 dev_err(&pdev->dev, "unable to alloc workqueue\n");
Fabio Estevam74d08d52014-10-04 16:40:51 -03002214 ret = -ENOMEM;
2215 goto err_v4l2_register;
Philipp Zabel32b6f202014-07-11 06:36:20 -03002216 }
2217
Javier Martin186b2502012-07-26 05:53:35 -03002218 platform_set_drvdata(pdev, dev);
2219
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002220 /*
2221 * Start activated so we can directly call coda_hw_init in
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002222 * coda_fw_callback regardless of whether CONFIG_PM is
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002223 * enabled or whether the device is associated with a PM domain.
2224 */
2225 pm_runtime_get_noresume(&pdev->dev);
2226 pm_runtime_set_active(&pdev->dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002227 pm_runtime_enable(&pdev->dev);
2228
Javier Martin186b2502012-07-26 05:53:35 -03002229 return coda_firmware_request(dev);
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002230
2231err_v4l2_register:
2232 v4l2_device_unregister(&dev->v4l2_dev);
2233 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002234}
2235
2236static int coda_remove(struct platform_device *pdev)
2237{
2238 struct coda_dev *dev = platform_get_drvdata(pdev);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002239 int i;
Javier Martin186b2502012-07-26 05:53:35 -03002240
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002241 for (i = 0; i < ARRAY_SIZE(dev->vfd); i++) {
2242 if (video_get_drvdata(&dev->vfd[i]))
2243 video_unregister_device(&dev->vfd[i]);
2244 }
Javier Martin186b2502012-07-26 05:53:35 -03002245 if (dev->m2m_dev)
2246 v4l2_m2m_release(dev->m2m_dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002247 pm_runtime_disable(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03002248 if (dev->alloc_ctx)
2249 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
2250 v4l2_device_unregister(&dev->v4l2_dev);
Philipp Zabel32b6f202014-07-11 06:36:20 -03002251 destroy_workqueue(dev->workqueue);
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002252 if (dev->iram.vaddr)
2253 gen_pool_free(dev->iram_pool, (unsigned long)dev->iram.vaddr,
2254 dev->iram.size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002255 coda_free_aux_buf(dev, &dev->codebuf);
2256 coda_free_aux_buf(dev, &dev->tempbuf);
2257 coda_free_aux_buf(dev, &dev->workbuf);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002258 debugfs_remove_recursive(dev->debugfs_root);
Javier Martin186b2502012-07-26 05:53:35 -03002259 return 0;
2260}
2261
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002262#ifdef CONFIG_PM
Philipp Zabel1e172732014-07-11 06:36:23 -03002263static int coda_runtime_resume(struct device *dev)
2264{
2265 struct coda_dev *cdev = dev_get_drvdata(dev);
2266 int ret = 0;
2267
Philipp Zabel65919e62014-07-18 07:22:36 -03002268 if (dev->pm_domain && cdev->codebuf.vaddr) {
Philipp Zabel1e172732014-07-11 06:36:23 -03002269 ret = coda_hw_init(cdev);
2270 if (ret)
2271 v4l2_err(&cdev->v4l2_dev, "HW initialization failed\n");
2272 }
2273
2274 return ret;
2275}
2276#endif
2277
2278static const struct dev_pm_ops coda_pm_ops = {
2279 SET_RUNTIME_PM_OPS(NULL, coda_runtime_resume, NULL)
2280};
2281
Javier Martin186b2502012-07-26 05:53:35 -03002282static struct platform_driver coda_driver = {
2283 .probe = coda_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002284 .remove = coda_remove,
Javier Martin186b2502012-07-26 05:53:35 -03002285 .driver = {
2286 .name = CODA_NAME,
Javier Martin186b2502012-07-26 05:53:35 -03002287 .of_match_table = of_match_ptr(coda_dt_ids),
Philipp Zabel1e172732014-07-11 06:36:23 -03002288 .pm = &coda_pm_ops,
Javier Martin186b2502012-07-26 05:53:35 -03002289 },
2290 .id_table = coda_platform_ids,
2291};
2292
2293module_platform_driver(coda_driver);
2294
2295MODULE_LICENSE("GPL");
2296MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
2297MODULE_DESCRIPTION("Coda multi-standard codec V4L2 driver");