blob: 35a42c56dd603bedb0a4f1eb22e8636b45f726a7 [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_PARA_BUF_SIZE (10 * 1024)
50#define CODA_ISRAM_SIZE (2048 * 2)
51
Javier Martin186b2502012-07-26 05:53:35 -030052#define MIN_W 176
53#define MIN_H 144
Javier Martin186b2502012-07-26 05:53:35 -030054
55#define S_ALIGN 1 /* multiple of 2 */
56#define W_ALIGN 1 /* multiple of 2 */
57#define H_ALIGN 1 /* multiple of 2 */
58
59#define fh_to_ctx(__fh) container_of(__fh, struct coda_ctx, fh)
60
Philipp Zabel79924ca2014-07-23 12:28:45 -030061int coda_debug;
Philipp Zabelc4eb1bfc2013-05-21 04:24:16 -030062module_param(coda_debug, int, 0644);
Philipp Zabeld60b18b2014-08-05 14:00:15 -030063MODULE_PARM_DESC(coda_debug, "Debug level (0-2)");
Javier Martin186b2502012-07-26 05:53:35 -030064
Javier Martin186b2502012-07-26 05:53:35 -030065struct coda_fmt {
66 char *name;
67 u32 fourcc;
Philipp Zabelb96904e2013-05-23 10:42:58 -030068};
69
Philipp Zabela2b3e462014-07-23 12:28:39 -030070void coda_write(struct coda_dev *dev, u32 data, u32 reg)
Javier Martin186b2502012-07-26 05:53:35 -030071{
Philipp Zabeld60b18b2014-08-05 14:00:15 -030072 v4l2_dbg(2, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -030073 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
74 writel(data, dev->regs_base + reg);
75}
76
Philipp Zabela2b3e462014-07-23 12:28:39 -030077unsigned int coda_read(struct coda_dev *dev, u32 reg)
Javier Martin186b2502012-07-26 05:53:35 -030078{
79 u32 data;
Philipp Zabelf23797b2014-08-06 08:02:23 -030080
Javier Martin186b2502012-07-26 05:53:35 -030081 data = readl(dev->regs_base + reg);
Philipp Zabeld60b18b2014-08-05 14:00:15 -030082 v4l2_dbg(2, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -030083 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
84 return data;
85}
86
Philipp Zabel856d7d92014-09-29 09:53:44 -030087void coda_write_base(struct coda_ctx *ctx, struct coda_q_data *q_data,
88 struct vb2_buffer *buf, unsigned int reg_y)
89{
90 u32 base_y = vb2_dma_contig_plane_dma_addr(buf, 0);
91 u32 base_cb, base_cr;
92
93 switch (q_data->fourcc) {
94 case V4L2_PIX_FMT_YVU420:
95 /* Switch Cb and Cr for YVU420 format */
96 base_cr = base_y + q_data->bytesperline * q_data->height;
97 base_cb = base_cr + q_data->bytesperline * q_data->height / 4;
98 break;
99 case V4L2_PIX_FMT_YUV420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300100 case V4L2_PIX_FMT_NV12:
Philipp Zabel856d7d92014-09-29 09:53:44 -0300101 default:
102 base_cb = base_y + q_data->bytesperline * q_data->height;
103 base_cr = base_cb + q_data->bytesperline * q_data->height / 4;
104 break;
Philipp Zabel4de69312014-10-02 14:08:26 -0300105 case V4L2_PIX_FMT_YUV422P:
106 base_cb = base_y + q_data->bytesperline * q_data->height;
107 base_cr = base_cb + q_data->bytesperline * q_data->height / 2;
Philipp Zabel856d7d92014-09-29 09:53:44 -0300108 }
109
110 coda_write(ctx->dev, base_y, reg_y);
111 coda_write(ctx->dev, base_cb, reg_y + 4);
112 coda_write(ctx->dev, base_cr, reg_y + 8);
113}
114
Javier Martin186b2502012-07-26 05:53:35 -0300115/*
Philipp Zabelb96904e2013-05-23 10:42:58 -0300116 * Array of all formats supported by any version of Coda:
Javier Martin186b2502012-07-26 05:53:35 -0300117 */
Philipp Zabel814c3762014-07-18 07:22:45 -0300118static const struct coda_fmt coda_formats[] = {
Javier Martin186b2502012-07-26 05:53:35 -0300119 {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300120 .name = "YUV 4:2:0 Planar, YCbCr",
Javier Martin186b2502012-07-26 05:53:35 -0300121 .fourcc = V4L2_PIX_FMT_YUV420,
Philipp Zabelb96904e2013-05-23 10:42:58 -0300122 },
123 {
124 .name = "YUV 4:2:0 Planar, YCrCb",
125 .fourcc = V4L2_PIX_FMT_YVU420,
Javier Martin186b2502012-07-26 05:53:35 -0300126 },
127 {
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300128 .name = "YUV 4:2:0 Partial interleaved Y/CbCr",
129 .fourcc = V4L2_PIX_FMT_NV12,
130 },
131 {
Philipp Zabel4de69312014-10-02 14:08:26 -0300132 .name = "YUV 4:2:2 Planar, YCbCr",
133 .fourcc = V4L2_PIX_FMT_YUV422P,
134 },
135 {
Javier Martin186b2502012-07-26 05:53:35 -0300136 .name = "H264 Encoded Stream",
137 .fourcc = V4L2_PIX_FMT_H264,
Javier Martin186b2502012-07-26 05:53:35 -0300138 },
139 {
140 .name = "MPEG4 Encoded Stream",
141 .fourcc = V4L2_PIX_FMT_MPEG4,
Javier Martin186b2502012-07-26 05:53:35 -0300142 },
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300143 {
144 .name = "JPEG Encoded Images",
145 .fourcc = V4L2_PIX_FMT_JPEG,
146 },
Javier Martin186b2502012-07-26 05:53:35 -0300147};
148
Philipp Zabelb96904e2013-05-23 10:42:58 -0300149#define CODA_CODEC(mode, src_fourcc, dst_fourcc, max_w, max_h) \
150 { mode, src_fourcc, dst_fourcc, max_w, max_h }
151
152/*
153 * Arrays of codecs supported by each given version of Coda:
154 * i.MX27 -> codadx6
155 * i.MX5x -> coda7
156 * i.MX6 -> coda960
157 * Use V4L2_PIX_FMT_YUV420 as placeholder for all supported YUV 4:2:0 variants
158 */
Philipp Zabel814c3762014-07-18 07:22:45 -0300159static const struct coda_codec codadx6_codecs[] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300160 CODA_CODEC(CODADX6_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 720, 576),
161 CODA_CODEC(CODADX6_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 720, 576),
Philipp Zabeldf1e74c2012-07-02 06:07:10 -0300162};
163
Philipp Zabel814c3762014-07-18 07:22:45 -0300164static const struct coda_codec coda7_codecs[] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300165 CODA_CODEC(CODA7_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1280, 720),
166 CODA_CODEC(CODA7_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1280, 720),
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300167 CODA_CODEC(CODA7_MODE_ENCODE_MJPG, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_JPEG, 8192, 8192),
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300168 CODA_CODEC(CODA7_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1088),
169 CODA_CODEC(CODA7_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300170 CODA_CODEC(CODA7_MODE_DECODE_MJPG, V4L2_PIX_FMT_JPEG, V4L2_PIX_FMT_YUV420, 8192, 8192),
Philipp Zabelb96904e2013-05-23 10:42:58 -0300171};
172
Philipp Zabel814c3762014-07-18 07:22:45 -0300173static const struct coda_codec coda9_codecs[] = {
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300174 CODA_CODEC(CODA9_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1920, 1088),
175 CODA_CODEC(CODA9_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1920, 1088),
176 CODA_CODEC(CODA9_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1088),
177 CODA_CODEC(CODA9_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabel89548442014-07-11 06:36:17 -0300178};
179
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300180struct coda_video_device {
181 const char *name;
182 enum coda_inst_type type;
183 const struct coda_context_ops *ops;
184 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 Zabel2e9e4f12013-09-30 10:34:50 -0300698static int coda_qbuf(struct file *file, void *priv,
699 struct v4l2_buffer *buf)
Javier Martin186b2502012-07-26 05:53:35 -0300700{
701 struct coda_ctx *ctx = fh_to_ctx(priv);
702
Philipp Zabel14604e32014-07-11 06:36:22 -0300703 return v4l2_m2m_qbuf(file, ctx->fh.m2m_ctx, buf);
Javier Martin186b2502012-07-26 05:53:35 -0300704}
705
Philipp Zabel918c66f2013-06-27 06:59:01 -0300706static bool coda_buf_is_end_of_stream(struct coda_ctx *ctx,
707 struct v4l2_buffer *buf)
708{
709 struct vb2_queue *src_vq;
710
Philipp Zabel14604e32014-07-11 06:36:22 -0300711 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300712
713 return ((ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG) &&
714 (buf->sequence == (ctx->qsequence - 1)));
715}
716
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300717static int coda_dqbuf(struct file *file, void *priv,
718 struct v4l2_buffer *buf)
Javier Martin186b2502012-07-26 05:53:35 -0300719{
720 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300721 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300722
Philipp Zabel14604e32014-07-11 06:36:22 -0300723 ret = v4l2_m2m_dqbuf(file, ctx->fh.m2m_ctx, buf);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300724
725 /* If this is the last capture buffer, emit an end-of-stream event */
726 if (buf->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
727 coda_buf_is_end_of_stream(ctx, buf)) {
728 const struct v4l2_event eos_event = {
729 .type = V4L2_EVENT_EOS
730 };
731
732 v4l2_event_queue_fh(&ctx->fh, &eos_event);
733 }
734
735 return ret;
Javier Martin186b2502012-07-26 05:53:35 -0300736}
737
Philipp Zabel52c41672014-07-11 06:36:19 -0300738static int coda_g_selection(struct file *file, void *fh,
739 struct v4l2_selection *s)
740{
741 struct coda_ctx *ctx = fh_to_ctx(fh);
742 struct coda_q_data *q_data;
743 struct v4l2_rect r, *rsel;
744
745 q_data = get_q_data(ctx, s->type);
746 if (!q_data)
747 return -EINVAL;
748
749 r.left = 0;
750 r.top = 0;
751 r.width = q_data->width;
752 r.height = q_data->height;
753 rsel = &q_data->rect;
754
755 switch (s->target) {
756 case V4L2_SEL_TGT_CROP_DEFAULT:
757 case V4L2_SEL_TGT_CROP_BOUNDS:
758 rsel = &r;
759 /* fallthrough */
760 case V4L2_SEL_TGT_CROP:
761 if (s->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
762 return -EINVAL;
763 break;
764 case V4L2_SEL_TGT_COMPOSE_BOUNDS:
765 case V4L2_SEL_TGT_COMPOSE_PADDED:
766 rsel = &r;
767 /* fallthrough */
768 case V4L2_SEL_TGT_COMPOSE:
769 case V4L2_SEL_TGT_COMPOSE_DEFAULT:
770 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
771 return -EINVAL;
772 break;
773 default:
774 return -EINVAL;
775 }
776
777 s->r = *rsel;
778
779 return 0;
780}
781
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300782static int coda_try_decoder_cmd(struct file *file, void *fh,
783 struct v4l2_decoder_cmd *dc)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300784{
Philipp Zabel918c66f2013-06-27 06:59:01 -0300785 if (dc->cmd != V4L2_DEC_CMD_STOP)
786 return -EINVAL;
787
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300788 if (dc->flags & V4L2_DEC_CMD_STOP_TO_BLACK)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300789 return -EINVAL;
790
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300791 if (!(dc->flags & V4L2_DEC_CMD_STOP_IMMEDIATELY) && (dc->stop.pts != 0))
Philipp Zabel918c66f2013-06-27 06:59:01 -0300792 return -EINVAL;
793
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300794 return 0;
795}
796
797static int coda_decoder_cmd(struct file *file, void *fh,
798 struct v4l2_decoder_cmd *dc)
799{
800 struct coda_ctx *ctx = fh_to_ctx(fh);
801 int ret;
802
803 ret = coda_try_decoder_cmd(file, fh, dc);
804 if (ret < 0)
805 return ret;
806
807 /* Ignore decoder stop command silently in encoder context */
Philipp Zabel918c66f2013-06-27 06:59:01 -0300808 if (ctx->inst_type != CODA_INST_DECODER)
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300809 return 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300810
Philipp Zabel347bb7f2014-07-23 12:28:42 -0300811 /* Set the stream-end flag on this context */
812 coda_bit_stream_end_flag(ctx);
Philipp Zabel84e23652014-07-11 06:36:34 -0300813 ctx->hold = false;
Michael Olbrichf3497da2014-07-11 06:36:30 -0300814 v4l2_m2m_try_schedule(ctx->fh.m2m_ctx);
Philipp Zabel89548442014-07-11 06:36:17 -0300815
Philipp Zabel918c66f2013-06-27 06:59:01 -0300816 return 0;
817}
818
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300819static int coda_subscribe_event(struct v4l2_fh *fh,
820 const struct v4l2_event_subscription *sub)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300821{
822 switch (sub->type) {
823 case V4L2_EVENT_EOS:
824 return v4l2_event_subscribe(fh, sub, 0, NULL);
825 default:
826 return v4l2_ctrl_subscribe_event(fh, sub);
827 }
Javier Martin186b2502012-07-26 05:53:35 -0300828}
829
830static const struct v4l2_ioctl_ops coda_ioctl_ops = {
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300831 .vidioc_querycap = coda_querycap,
Javier Martin186b2502012-07-26 05:53:35 -0300832
Philipp Zabel22e244b2014-07-18 07:22:43 -0300833 .vidioc_enum_fmt_vid_cap = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300834 .vidioc_g_fmt_vid_cap = coda_g_fmt,
835 .vidioc_try_fmt_vid_cap = coda_try_fmt_vid_cap,
836 .vidioc_s_fmt_vid_cap = coda_s_fmt_vid_cap,
Javier Martin186b2502012-07-26 05:53:35 -0300837
Philipp Zabel22e244b2014-07-18 07:22:43 -0300838 .vidioc_enum_fmt_vid_out = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300839 .vidioc_g_fmt_vid_out = coda_g_fmt,
840 .vidioc_try_fmt_vid_out = coda_try_fmt_vid_out,
841 .vidioc_s_fmt_vid_out = coda_s_fmt_vid_out,
Javier Martin186b2502012-07-26 05:53:35 -0300842
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300843 .vidioc_reqbufs = v4l2_m2m_ioctl_reqbufs,
844 .vidioc_querybuf = v4l2_m2m_ioctl_querybuf,
Javier Martin186b2502012-07-26 05:53:35 -0300845
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300846 .vidioc_qbuf = coda_qbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300847 .vidioc_expbuf = v4l2_m2m_ioctl_expbuf,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300848 .vidioc_dqbuf = coda_dqbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300849 .vidioc_create_bufs = v4l2_m2m_ioctl_create_bufs,
Javier Martin186b2502012-07-26 05:53:35 -0300850
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300851 .vidioc_streamon = v4l2_m2m_ioctl_streamon,
852 .vidioc_streamoff = v4l2_m2m_ioctl_streamoff,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300853
Philipp Zabel52c41672014-07-11 06:36:19 -0300854 .vidioc_g_selection = coda_g_selection,
855
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300856 .vidioc_try_decoder_cmd = coda_try_decoder_cmd,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300857 .vidioc_decoder_cmd = coda_decoder_cmd,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300858
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300859 .vidioc_subscribe_event = coda_subscribe_event,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300860 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Javier Martin186b2502012-07-26 05:53:35 -0300861};
862
Philipp Zabel79924ca2014-07-23 12:28:45 -0300863void coda_set_gdi_regs(struct coda_ctx *ctx)
Philipp Zabel89548442014-07-11 06:36:17 -0300864{
865 struct gdi_tiled_map *tiled_map = &ctx->tiled_map;
866 struct coda_dev *dev = ctx->dev;
867 int i;
868
869 for (i = 0; i < 16; i++)
870 coda_write(dev, tiled_map->xy2ca_map[i],
871 CODA9_GDI_XY2_CAS_0 + 4 * i);
872 for (i = 0; i < 4; i++)
873 coda_write(dev, tiled_map->xy2ba_map[i],
874 CODA9_GDI_XY2_BA_0 + 4 * i);
875 for (i = 0; i < 16; i++)
876 coda_write(dev, tiled_map->xy2ra_map[i],
877 CODA9_GDI_XY2_RAS_0 + 4 * i);
878 coda_write(dev, tiled_map->xy2rbc_config, CODA9_GDI_XY2_RBC_CONFIG);
879 for (i = 0; i < 32; i++)
880 coda_write(dev, tiled_map->rbc2axi_map[i],
881 CODA9_GDI_RBC2_AXI_0 + 4 * i);
882}
883
Javier Martin186b2502012-07-26 05:53:35 -0300884/*
885 * Mem-to-mem operations.
886 */
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300887
888static void coda_device_run(void *m2m_priv)
889{
890 struct coda_ctx *ctx = m2m_priv;
891 struct coda_dev *dev = ctx->dev;
Philipp Zabel32b6f202014-07-11 06:36:20 -0300892
893 queue_work(dev->workqueue, &ctx->pic_run_work);
894}
895
Philipp Zabel32b6f202014-07-11 06:36:20 -0300896static void coda_pic_run_work(struct work_struct *work)
897{
898 struct coda_ctx *ctx = container_of(work, struct coda_ctx, pic_run_work);
899 struct coda_dev *dev = ctx->dev;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300900 int ret;
901
902 mutex_lock(&ctx->buffer_mutex);
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300903 mutex_lock(&dev->coda_mutex);
904
Philipp Zabela1192a12014-07-23 12:28:40 -0300905 ret = ctx->ops->prepare_run(ctx);
906 if (ret < 0 && ctx->inst_type == CODA_INST_DECODER) {
907 mutex_unlock(&dev->coda_mutex);
908 mutex_unlock(&ctx->buffer_mutex);
909 /* job_finish scheduled by prepare_decode */
910 return;
Philipp Zabel10436672012-07-02 09:03:55 -0300911 }
912
Philipp Zabelf23797b2014-08-06 08:02:23 -0300913 if (!wait_for_completion_timeout(&ctx->completion,
914 msecs_to_jiffies(1000))) {
Philipp Zabel32b6f202014-07-11 06:36:20 -0300915 dev_err(&dev->plat_dev->dev, "CODA PIC_RUN timeout\n");
Philipp Zabel84e23652014-07-11 06:36:34 -0300916
917 ctx->hold = true;
Philipp Zabel8f452842014-07-11 06:36:35 -0300918
919 coda_hw_reset(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300920 } else if (!ctx->aborting) {
Philipp Zabela1192a12014-07-23 12:28:40 -0300921 ctx->ops->finish_run(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300922 }
923
Philipp Zabel747d7642015-01-23 13:51:31 -0300924 if ((ctx->aborting || (!ctx->streamon_cap && !ctx->streamon_out)) &&
925 ctx->ops->seq_end_work)
Philipp Zabel32b6f202014-07-11 06:36:20 -0300926 queue_work(dev->workqueue, &ctx->seq_end_work);
927
928 mutex_unlock(&dev->coda_mutex);
929 mutex_unlock(&ctx->buffer_mutex);
930
Philipp Zabel14604e32014-07-11 06:36:22 -0300931 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -0300932}
933
934static int coda_job_ready(void *m2m_priv)
935{
936 struct coda_ctx *ctx = m2m_priv;
937
938 /*
939 * For both 'P' and 'key' frame cases 1 picture
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300940 * and 1 frame are needed. In the decoder case,
941 * the compressed frame can be in the bitstream.
Javier Martin186b2502012-07-26 05:53:35 -0300942 */
Philipp Zabel14604e32014-07-11 06:36:22 -0300943 if (!v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx) &&
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300944 ctx->inst_type != CODA_INST_DECODER) {
Javier Martin186b2502012-07-26 05:53:35 -0300945 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
946 "not ready: not enough video buffers.\n");
947 return 0;
948 }
949
Philipp Zabel14604e32014-07-11 06:36:22 -0300950 if (!v4l2_m2m_num_dst_bufs_ready(ctx->fh.m2m_ctx)) {
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300951 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
952 "not ready: not enough video capture buffers.\n");
953 return 0;
954 }
955
Philipp Zabelf77fd8a2015-01-23 13:51:20 -0300956 if (ctx->inst_type == CODA_INST_DECODER) {
957 struct list_head *meta;
958 bool stream_end;
959 int num_metas;
960 int src_bufs;
961
962 if (ctx->hold && !v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx)) {
963 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
964 "%d: not ready: on hold for more buffers.\n",
965 ctx->idx);
966 return 0;
967 }
968
969 stream_end = ctx->bit_stream_param &
970 CODA_BIT_STREAM_END_FLAG;
971
972 num_metas = 0;
973 list_for_each(meta, &ctx->buffer_meta_list)
974 num_metas++;
975
976 src_bufs = v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx);
977
978 if (!stream_end && (num_metas + src_bufs) < 2) {
979 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
980 "%d: not ready: need 2 buffers available (%d, %d)\n",
981 ctx->idx, num_metas, src_bufs);
982 return 0;
983 }
984
985
986 if (!v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx) &&
987 !stream_end && (coda_get_bitstream_payload(ctx) < 512)) {
988 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
989 "%d: not ready: not enough bitstream data (%d).\n",
990 ctx->idx, coda_get_bitstream_payload(ctx));
991 return 0;
992 }
Philipp Zabel918c66f2013-06-27 06:59:01 -0300993 }
994
Philipp Zabel3e748262013-05-23 10:43:01 -0300995 if (ctx->aborting) {
996 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
997 "not ready: aborting\n");
998 return 0;
999 }
1000
Javier Martin186b2502012-07-26 05:53:35 -03001001 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1002 "job ready\n");
1003 return 1;
1004}
1005
1006static void coda_job_abort(void *priv)
1007{
1008 struct coda_ctx *ctx = priv;
Javier Martin186b2502012-07-26 05:53:35 -03001009
1010 ctx->aborting = 1;
1011
1012 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1013 "Aborting task\n");
Javier Martin186b2502012-07-26 05:53:35 -03001014}
1015
1016static void coda_lock(void *m2m_priv)
1017{
1018 struct coda_ctx *ctx = m2m_priv;
1019 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001020
Javier Martin186b2502012-07-26 05:53:35 -03001021 mutex_lock(&pcdev->dev_mutex);
1022}
1023
1024static void coda_unlock(void *m2m_priv)
1025{
1026 struct coda_ctx *ctx = m2m_priv;
1027 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001028
Javier Martin186b2502012-07-26 05:53:35 -03001029 mutex_unlock(&pcdev->dev_mutex);
1030}
1031
Philipp Zabel814c3762014-07-18 07:22:45 -03001032static const struct v4l2_m2m_ops coda_m2m_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001033 .device_run = coda_device_run,
1034 .job_ready = coda_job_ready,
1035 .job_abort = coda_job_abort,
1036 .lock = coda_lock,
1037 .unlock = coda_unlock,
1038};
1039
Philipp Zabel89548442014-07-11 06:36:17 -03001040static void coda_set_tiled_map_type(struct coda_ctx *ctx, int tiled_map_type)
1041{
1042 struct gdi_tiled_map *tiled_map = &ctx->tiled_map;
1043 int luma_map, chro_map, i;
1044
1045 memset(tiled_map, 0, sizeof(*tiled_map));
1046
1047 luma_map = 64;
1048 chro_map = 64;
1049 tiled_map->map_type = tiled_map_type;
1050 for (i = 0; i < 16; i++)
1051 tiled_map->xy2ca_map[i] = luma_map << 8 | chro_map;
1052 for (i = 0; i < 4; i++)
1053 tiled_map->xy2ba_map[i] = luma_map << 8 | chro_map;
1054 for (i = 0; i < 16; i++)
1055 tiled_map->xy2ra_map[i] = luma_map << 8 | chro_map;
1056
1057 if (tiled_map_type == GDI_LINEAR_FRAME_MAP) {
1058 tiled_map->xy2rbc_config = 0;
1059 } else {
1060 dev_err(&ctx->dev->plat_dev->dev, "invalid map type: %d\n",
1061 tiled_map_type);
1062 return;
1063 }
1064}
1065
Javier Martin186b2502012-07-26 05:53:35 -03001066static void set_default_params(struct coda_ctx *ctx)
1067{
Philipp Zabel8e428d52015-01-23 13:51:29 -03001068 unsigned int max_w, max_h, usize, csize;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001069
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001070 ctx->codec = coda_find_codec(ctx->dev, ctx->cvd->src_formats[0],
1071 ctx->cvd->dst_formats[0]);
Philipp Zabeld4c6a412014-10-02 14:08:35 -03001072 max_w = min(ctx->codec->max_w, 1920U);
1073 max_h = min(ctx->codec->max_h, 1088U);
Philipp Zabel8e428d52015-01-23 13:51:29 -03001074 usize = max_w * max_h * 3 / 2;
1075 csize = coda_estimate_sizeimage(ctx, usize, max_w, max_h);
Javier Martin186b2502012-07-26 05:53:35 -03001076
Philipp Zabel121cacf2014-07-18 07:22:42 -03001077 ctx->params.codec_mode = ctx->codec->mode;
Javier Martin186b2502012-07-26 05:53:35 -03001078 ctx->colorspace = V4L2_COLORSPACE_REC709;
1079 ctx->params.framerate = 30;
Javier Martin186b2502012-07-26 05:53:35 -03001080
1081 /* Default formats for output and input queues */
Philipp Zabelb96904e2013-05-23 10:42:58 -03001082 ctx->q_data[V4L2_M2M_SRC].fourcc = ctx->codec->src_fourcc;
1083 ctx->q_data[V4L2_M2M_DST].fourcc = ctx->codec->dst_fourcc;
1084 ctx->q_data[V4L2_M2M_SRC].width = max_w;
1085 ctx->q_data[V4L2_M2M_SRC].height = max_h;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001086 ctx->q_data[V4L2_M2M_DST].width = max_w;
1087 ctx->q_data[V4L2_M2M_DST].height = max_h;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001088 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_YUV420) {
1089 ctx->q_data[V4L2_M2M_SRC].bytesperline = max_w;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001090 ctx->q_data[V4L2_M2M_SRC].sizeimage = usize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001091 ctx->q_data[V4L2_M2M_DST].bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001092 ctx->q_data[V4L2_M2M_DST].sizeimage = csize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001093 } else {
1094 ctx->q_data[V4L2_M2M_SRC].bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001095 ctx->q_data[V4L2_M2M_SRC].sizeimage = csize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001096 ctx->q_data[V4L2_M2M_DST].bytesperline = max_w;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001097 ctx->q_data[V4L2_M2M_DST].sizeimage = usize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001098 }
Philipp Zabel52c41672014-07-11 06:36:19 -03001099 ctx->q_data[V4L2_M2M_SRC].rect.width = max_w;
1100 ctx->q_data[V4L2_M2M_SRC].rect.height = max_h;
1101 ctx->q_data[V4L2_M2M_DST].rect.width = max_w;
1102 ctx->q_data[V4L2_M2M_DST].rect.height = max_h;
Philipp Zabel89548442014-07-11 06:36:17 -03001103
1104 if (ctx->dev->devtype->product == CODA_960)
1105 coda_set_tiled_map_type(ctx, GDI_LINEAR_FRAME_MAP);
Javier Martin186b2502012-07-26 05:53:35 -03001106}
1107
1108/*
1109 * Queue operations
1110 */
1111static int coda_queue_setup(struct vb2_queue *vq,
1112 const struct v4l2_format *fmt,
1113 unsigned int *nbuffers, unsigned int *nplanes,
1114 unsigned int sizes[], void *alloc_ctxs[])
1115{
1116 struct coda_ctx *ctx = vb2_get_drv_priv(vq);
Philipp Zabele34db062012-08-29 08:22:00 -03001117 struct coda_q_data *q_data;
Javier Martin186b2502012-07-26 05:53:35 -03001118 unsigned int size;
1119
Philipp Zabele34db062012-08-29 08:22:00 -03001120 q_data = get_q_data(ctx, vq->type);
1121 size = q_data->sizeimage;
Javier Martin186b2502012-07-26 05:53:35 -03001122
1123 *nplanes = 1;
1124 sizes[0] = size;
1125
Philipp Zabelbb04aa62015-01-23 13:51:30 -03001126 /* Set to vb2-dma-contig allocator context, ignored by vb2-vmalloc */
Javier Martin186b2502012-07-26 05:53:35 -03001127 alloc_ctxs[0] = ctx->dev->alloc_ctx;
1128
1129 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1130 "get %d buffer(s) of size %d each.\n", *nbuffers, size);
1131
1132 return 0;
1133}
1134
1135static int coda_buf_prepare(struct vb2_buffer *vb)
1136{
1137 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
1138 struct coda_q_data *q_data;
1139
1140 q_data = get_q_data(ctx, vb->vb2_queue->type);
1141
1142 if (vb2_plane_size(vb, 0) < q_data->sizeimage) {
1143 v4l2_warn(&ctx->dev->v4l2_dev,
1144 "%s data will not fit into plane (%lu < %lu)\n",
1145 __func__, vb2_plane_size(vb, 0),
1146 (long)q_data->sizeimage);
1147 return -EINVAL;
1148 }
1149
Javier Martin186b2502012-07-26 05:53:35 -03001150 return 0;
1151}
1152
1153static void coda_buf_queue(struct vb2_buffer *vb)
1154{
1155 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001156 struct coda_q_data *q_data;
1157
1158 q_data = get_q_data(ctx, vb->vb2_queue->type);
1159
1160 /*
1161 * In the decoder case, immediately try to copy the buffer into the
1162 * bitstream ringbuffer and mark it as ready to be dequeued.
1163 */
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001164 if (ctx->inst_type == CODA_INST_DECODER &&
Philipp Zabel918c66f2013-06-27 06:59:01 -03001165 vb->vb2_queue->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1166 /*
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -03001167 * For backwards compatibility, queuing an empty buffer marks
Philipp Zabel918c66f2013-06-27 06:59:01 -03001168 * the stream end
1169 */
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001170 if (vb2_get_plane_payload(vb, 0) == 0)
1171 coda_bit_stream_end_flag(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001172 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel14604e32014-07-11 06:36:22 -03001173 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Michael Olbricheabed932014-07-18 07:22:40 -03001174 if (vb2_is_streaming(vb->vb2_queue))
1175 coda_fill_bitstream(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001176 mutex_unlock(&ctx->bitstream_mutex);
1177 } else {
Philipp Zabel14604e32014-07-11 06:36:22 -03001178 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001179 }
Javier Martin186b2502012-07-26 05:53:35 -03001180}
1181
Philipp Zabel79924ca2014-07-23 12:28:45 -03001182int coda_alloc_aux_buf(struct coda_dev *dev, struct coda_aux_buf *buf,
1183 size_t size, const char *name, struct dentry *parent)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001184{
1185 buf->vaddr = dma_alloc_coherent(&dev->plat_dev->dev, size, &buf->paddr,
1186 GFP_KERNEL);
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001187 if (!buf->vaddr) {
1188 v4l2_err(&dev->v4l2_dev,
1189 "Failed to allocate %s buffer of size %u\n",
1190 name, size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001191 return -ENOMEM;
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001192 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001193
1194 buf->size = size;
1195
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001196 if (name && parent) {
1197 buf->blob.data = buf->vaddr;
1198 buf->blob.size = size;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001199 buf->dentry = debugfs_create_blob(name, 0644, parent,
1200 &buf->blob);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001201 if (!buf->dentry)
1202 dev_warn(&dev->plat_dev->dev,
1203 "failed to create debugfs entry %s\n", name);
1204 }
1205
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001206 return 0;
1207}
1208
Philipp Zabel79924ca2014-07-23 12:28:45 -03001209void coda_free_aux_buf(struct coda_dev *dev,
1210 struct coda_aux_buf *buf)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001211{
1212 if (buf->vaddr) {
1213 dma_free_coherent(&dev->plat_dev->dev, buf->size,
1214 buf->vaddr, buf->paddr);
1215 buf->vaddr = NULL;
1216 buf->size = 0;
1217 }
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001218 debugfs_remove(buf->dentry);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001219}
1220
Javier Martin186b2502012-07-26 05:53:35 -03001221static int coda_start_streaming(struct vb2_queue *q, unsigned int count)
1222{
1223 struct coda_ctx *ctx = vb2_get_drv_priv(q);
1224 struct v4l2_device *v4l2_dev = &ctx->dev->v4l2_dev;
Javier Martin186b2502012-07-26 05:53:35 -03001225 struct coda_q_data *q_data_src, *q_data_dst;
Philipp Zabelb9063522014-08-05 14:00:10 -03001226 struct vb2_buffer *buf;
Philipp Zabeld35167a2013-05-23 10:42:59 -03001227 int ret = 0;
Javier Martin186b2502012-07-26 05:53:35 -03001228
Philipp Zabelb96904e2013-05-23 10:42:58 -03001229 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001230 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001231 if (q_data_src->fourcc == V4L2_PIX_FMT_H264 ||
1232 (q_data_src->fourcc == V4L2_PIX_FMT_JPEG &&
1233 ctx->dev->devtype->product == CODA_7541)) {
Michael Olbricheabed932014-07-18 07:22:40 -03001234 /* copy the buffers that where queued before streamon */
1235 mutex_lock(&ctx->bitstream_mutex);
1236 coda_fill_bitstream(ctx);
1237 mutex_unlock(&ctx->bitstream_mutex);
1238
Philipp Zabelb9063522014-08-05 14:00:10 -03001239 if (coda_get_bitstream_payload(ctx) < 512) {
1240 ret = -EINVAL;
1241 goto err;
1242 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001243 } else {
Philipp Zabelb9063522014-08-05 14:00:10 -03001244 if (count < 1) {
1245 ret = -EINVAL;
1246 goto err;
1247 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001248 }
1249
1250 ctx->streamon_out = 1;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001251 } else {
Philipp Zabelb9063522014-08-05 14:00:10 -03001252 if (count < 1) {
1253 ret = -EINVAL;
1254 goto err;
1255 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001256
1257 ctx->streamon_cap = 1;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001258 }
Javier Martin186b2502012-07-26 05:53:35 -03001259
Philipp Zabelb96904e2013-05-23 10:42:58 -03001260 /* Don't start the coda unless both queues are on */
1261 if (!(ctx->streamon_out & ctx->streamon_cap))
1262 return 0;
Javier Martin186b2502012-07-26 05:53:35 -03001263
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001264 /* Allow BIT decoder device_run with no new buffers queued */
Philipp Zabeleb107512013-09-30 10:34:45 -03001265 if (ctx->inst_type == CODA_INST_DECODER)
Philipp Zabel14604e32014-07-11 06:36:22 -03001266 v4l2_m2m_set_src_buffered(ctx->fh.m2m_ctx, true);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001267
Philipp Zabelb96904e2013-05-23 10:42:58 -03001268 ctx->gopcounter = ctx->params.gop_size - 1;
Javier Martin186b2502012-07-26 05:53:35 -03001269 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
Javier Martin186b2502012-07-26 05:53:35 -03001270
Philipp Zabelb96904e2013-05-23 10:42:58 -03001271 ctx->codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
1272 q_data_dst->fourcc);
1273 if (!ctx->codec) {
Javier Martin186b2502012-07-26 05:53:35 -03001274 v4l2_err(v4l2_dev, "couldn't tell instance type.\n");
Philipp Zabelb9063522014-08-05 14:00:10 -03001275 ret = -EINVAL;
1276 goto err;
Javier Martin186b2502012-07-26 05:53:35 -03001277 }
1278
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001279 if (q_data_dst->fourcc == V4L2_PIX_FMT_JPEG)
1280 ctx->params.gop_size = 1;
1281 ctx->gopcounter = ctx->params.gop_size - 1;
1282
Philipp Zabela1192a12014-07-23 12:28:40 -03001283 ret = ctx->ops->start_streaming(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001284 if (ctx->inst_type == CODA_INST_DECODER) {
Philipp Zabel89548442014-07-11 06:36:17 -03001285 if (ret == -EAGAIN)
Philipp Zabel918c66f2013-06-27 06:59:01 -03001286 return 0;
Philipp Zabel89548442014-07-11 06:36:17 -03001287 else if (ret < 0)
Philipp Zabelb9063522014-08-05 14:00:10 -03001288 goto err;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001289 }
1290
Philipp Zabel89548442014-07-11 06:36:17 -03001291 ctx->initialized = 1;
1292 return ret;
Philipp Zabelb9063522014-08-05 14:00:10 -03001293
1294err:
1295 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1296 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b582014-10-21 13:25:52 -03001297 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001298 } else {
1299 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b582014-10-21 13:25:52 -03001300 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001301 }
1302 return ret;
Philipp Zabel89548442014-07-11 06:36:17 -03001303}
1304
Hans Verkuile37559b2014-04-17 02:47:21 -03001305static void coda_stop_streaming(struct vb2_queue *q)
Javier Martin186b2502012-07-26 05:53:35 -03001306{
1307 struct coda_ctx *ctx = vb2_get_drv_priv(q);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03001308 struct coda_dev *dev = ctx->dev;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001309 struct vb2_buffer *buf;
Javier Martin186b2502012-07-26 05:53:35 -03001310
1311 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001312 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001313 "%s: output\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001314 ctx->streamon_out = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001315
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001316 coda_bit_stream_end_flag(ctx);
Philipp Zabel4a31b522014-08-05 14:00:11 -03001317
Philipp Zabel6dd5ef52015-01-23 13:51:26 -03001318 ctx->qsequence = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001319
1320 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
1321 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001322 } else {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001323 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001324 "%s: capture\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001325 ctx->streamon_cap = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001326
1327 ctx->osequence = 0;
Philipp Zabelcb2c0282014-07-11 06:36:33 -03001328 ctx->sequence_offset = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001329
1330 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
1331 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001332 }
1333
Philipp Zabel918c66f2013-06-27 06:59:01 -03001334 if (!ctx->streamon_out && !ctx->streamon_cap) {
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001335 struct coda_buffer_meta *meta;
Philipp Zabel846ced92014-07-11 06:36:31 -03001336
Philipp Zabelf4706d62015-01-23 13:51:27 -03001337 if (ctx->ops->seq_end_work) {
1338 queue_work(dev->workqueue, &ctx->seq_end_work);
1339 flush_work(&ctx->seq_end_work);
1340 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001341 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001342 while (!list_empty(&ctx->buffer_meta_list)) {
1343 meta = list_first_entry(&ctx->buffer_meta_list,
1344 struct coda_buffer_meta, list);
1345 list_del(&meta->list);
1346 kfree(meta);
Philipp Zabel846ced92014-07-11 06:36:31 -03001347 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001348 mutex_unlock(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001349 kfifo_init(&ctx->bitstream_fifo,
1350 ctx->bitstream.vaddr, ctx->bitstream.size);
Philipp Zabelf4706d62015-01-23 13:51:27 -03001351 ctx->initialized = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001352 ctx->runcounter = 0;
Philipp Zabelf157cf42014-09-29 09:53:42 -03001353 ctx->aborting = 0;
Philipp Zabel62bed142012-07-25 10:40:39 -03001354 }
Javier Martin186b2502012-07-26 05:53:35 -03001355}
1356
Philipp Zabel121cacf2014-07-18 07:22:42 -03001357static const struct vb2_ops coda_qops = {
Javier Martin186b2502012-07-26 05:53:35 -03001358 .queue_setup = coda_queue_setup,
1359 .buf_prepare = coda_buf_prepare,
1360 .buf_queue = coda_buf_queue,
Javier Martin186b2502012-07-26 05:53:35 -03001361 .start_streaming = coda_start_streaming,
1362 .stop_streaming = coda_stop_streaming,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001363 .wait_prepare = vb2_ops_wait_prepare,
1364 .wait_finish = vb2_ops_wait_finish,
Javier Martin186b2502012-07-26 05:53:35 -03001365};
1366
1367static int coda_s_ctrl(struct v4l2_ctrl *ctrl)
1368{
1369 struct coda_ctx *ctx =
1370 container_of(ctrl->handler, struct coda_ctx, ctrls);
1371
1372 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1373 "s_ctrl: id = %d, val = %d\n", ctrl->id, ctrl->val);
1374
1375 switch (ctrl->id) {
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001376 case V4L2_CID_HFLIP:
1377 if (ctrl->val)
1378 ctx->params.rot_mode |= CODA_MIR_HOR;
1379 else
1380 ctx->params.rot_mode &= ~CODA_MIR_HOR;
1381 break;
1382 case V4L2_CID_VFLIP:
1383 if (ctrl->val)
1384 ctx->params.rot_mode |= CODA_MIR_VER;
1385 else
1386 ctx->params.rot_mode &= ~CODA_MIR_VER;
1387 break;
Javier Martin186b2502012-07-26 05:53:35 -03001388 case V4L2_CID_MPEG_VIDEO_BITRATE:
1389 ctx->params.bitrate = ctrl->val / 1000;
1390 break;
1391 case V4L2_CID_MPEG_VIDEO_GOP_SIZE:
1392 ctx->params.gop_size = ctrl->val;
1393 break;
1394 case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP:
1395 ctx->params.h264_intra_qp = ctrl->val;
1396 break;
1397 case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP:
1398 ctx->params.h264_inter_qp = ctrl->val;
1399 break;
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001400 case V4L2_CID_MPEG_VIDEO_H264_MIN_QP:
1401 ctx->params.h264_min_qp = ctrl->val;
1402 break;
1403 case V4L2_CID_MPEG_VIDEO_H264_MAX_QP:
1404 ctx->params.h264_max_qp = ctrl->val;
1405 break;
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001406 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA:
1407 ctx->params.h264_deblk_alpha = ctrl->val;
1408 break;
1409 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA:
1410 ctx->params.h264_deblk_beta = ctrl->val;
1411 break;
1412 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
1413 ctx->params.h264_deblk_enabled = (ctrl->val ==
1414 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1415 break;
Javier Martin186b2502012-07-26 05:53:35 -03001416 case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP:
1417 ctx->params.mpeg4_intra_qp = ctrl->val;
1418 break;
1419 case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP:
1420 ctx->params.mpeg4_inter_qp = ctrl->val;
1421 break;
1422 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
1423 ctx->params.slice_mode = ctrl->val;
1424 break;
1425 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB:
1426 ctx->params.slice_max_mb = ctrl->val;
1427 break;
Philipp Zabelc566c782012-08-08 11:59:38 -03001428 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES:
1429 ctx->params.slice_max_bits = ctrl->val * 8;
1430 break;
Javier Martin186b2502012-07-26 05:53:35 -03001431 case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
1432 break;
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001433 case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB:
1434 ctx->params.intra_refresh = ctrl->val;
1435 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001436 case V4L2_CID_JPEG_COMPRESSION_QUALITY:
1437 coda_set_jpeg_compression_quality(ctx, ctrl->val);
1438 break;
1439 case V4L2_CID_JPEG_RESTART_INTERVAL:
1440 ctx->params.jpeg_restart_interval = ctrl->val;
1441 break;
Javier Martin186b2502012-07-26 05:53:35 -03001442 default:
1443 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1444 "Invalid control, id=%d, val=%d\n",
1445 ctrl->id, ctrl->val);
1446 return -EINVAL;
1447 }
1448
1449 return 0;
1450}
1451
Philipp Zabel814c3762014-07-18 07:22:45 -03001452static const struct v4l2_ctrl_ops coda_ctrl_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001453 .s_ctrl = coda_s_ctrl,
1454};
1455
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001456static void coda_encode_ctrls(struct coda_ctx *ctx)
Javier Martin186b2502012-07-26 05:53:35 -03001457{
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001458 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Javier Martin186b2502012-07-26 05:53:35 -03001459 V4L2_CID_MPEG_VIDEO_BITRATE, 0, 32767000, 1, 0);
1460 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1461 V4L2_CID_MPEG_VIDEO_GOP_SIZE, 1, 60, 1, 16);
1462 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001463 V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP, 0, 51, 1, 25);
Javier Martin186b2502012-07-26 05:53:35 -03001464 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001465 V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP, 0, 51, 1, 25);
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001466 if (ctx->dev->devtype->product != CODA_960) {
1467 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1468 V4L2_CID_MPEG_VIDEO_H264_MIN_QP, 0, 51, 1, 12);
1469 }
1470 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1471 V4L2_CID_MPEG_VIDEO_H264_MAX_QP, 0, 51, 1, 51);
Javier Martin186b2502012-07-26 05:53:35 -03001472 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001473 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA, 0, 15, 1, 0);
1474 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1475 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA, 0, 15, 1, 0);
1476 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1477 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE,
1478 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED, 0x0,
1479 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1480 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Javier Martin186b2502012-07-26 05:53:35 -03001481 V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP, 1, 31, 1, 2);
1482 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1483 V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP, 1, 31, 1, 2);
1484 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1485 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE,
Philipp Zabelc566c782012-08-08 11:59:38 -03001486 V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES, 0x0,
1487 V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE);
Javier Martin186b2502012-07-26 05:53:35 -03001488 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1489 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB, 1, 0x3fffffff, 1, 1);
Philipp Zabelc566c782012-08-08 11:59:38 -03001490 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001491 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES, 1, 0x3fffffff, 1,
1492 500);
Javier Martin186b2502012-07-26 05:53:35 -03001493 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1494 V4L2_CID_MPEG_VIDEO_HEADER_MODE,
1495 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME,
1496 (1 << V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE),
1497 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME);
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001498 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001499 V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB, 0,
1500 1920 * 1088 / 256, 1, 0);
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001501}
1502
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001503static void coda_jpeg_encode_ctrls(struct coda_ctx *ctx)
1504{
1505 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1506 V4L2_CID_JPEG_COMPRESSION_QUALITY, 5, 100, 1, 50);
1507 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1508 V4L2_CID_JPEG_RESTART_INTERVAL, 0, 100, 1, 0);
1509}
1510
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001511static int coda_ctrls_setup(struct coda_ctx *ctx)
1512{
1513 v4l2_ctrl_handler_init(&ctx->ctrls, 2);
1514
1515 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1516 V4L2_CID_HFLIP, 0, 1, 1, 0);
1517 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1518 V4L2_CID_VFLIP, 0, 1, 1, 0);
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001519 if (ctx->inst_type == CODA_INST_ENCODER) {
1520 if (ctx->cvd->dst_formats[0] == V4L2_PIX_FMT_JPEG)
1521 coda_jpeg_encode_ctrls(ctx);
1522 else
1523 coda_encode_ctrls(ctx);
1524 }
Javier Martin186b2502012-07-26 05:53:35 -03001525
1526 if (ctx->ctrls.error) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001527 v4l2_err(&ctx->dev->v4l2_dev,
1528 "control initialization error (%d)",
Javier Martin186b2502012-07-26 05:53:35 -03001529 ctx->ctrls.error);
1530 return -EINVAL;
1531 }
1532
1533 return v4l2_ctrl_handler_setup(&ctx->ctrls);
1534}
1535
Philipp Zabel121cacf2014-07-18 07:22:42 -03001536static int coda_queue_init(struct coda_ctx *ctx, struct vb2_queue *vq)
Javier Martin186b2502012-07-26 05:53:35 -03001537{
Philipp Zabel121cacf2014-07-18 07:22:42 -03001538 vq->drv_priv = ctx;
1539 vq->ops = &coda_qops;
1540 vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
1541 vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
1542 vq->lock = &ctx->dev->dev_mutex;
1543
1544 return vb2_queue_init(vq);
1545}
1546
Philipp Zabel79924ca2014-07-23 12:28:45 -03001547int coda_encoder_queue_init(void *priv, struct vb2_queue *src_vq,
1548 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001549{
Javier Martin186b2502012-07-26 05:53:35 -03001550 int ret;
1551
Javier Martin186b2502012-07-26 05:53:35 -03001552 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001553 src_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001554 src_vq->mem_ops = &vb2_dma_contig_memops;
1555
Philipp Zabel121cacf2014-07-18 07:22:42 -03001556 ret = coda_queue_init(priv, src_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001557 if (ret)
1558 return ret;
1559
Javier Martin186b2502012-07-26 05:53:35 -03001560 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001561 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001562 dst_vq->mem_ops = &vb2_dma_contig_memops;
1563
Philipp Zabel121cacf2014-07-18 07:22:42 -03001564 return coda_queue_init(priv, dst_vq);
1565}
1566
Philipp Zabel79924ca2014-07-23 12:28:45 -03001567int coda_decoder_queue_init(void *priv, struct vb2_queue *src_vq,
1568 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001569{
1570 int ret;
1571
1572 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabelbb04aa62015-01-23 13:51:30 -03001573 src_vq->io_modes = VB2_DMABUF | VB2_MMAP | VB2_USERPTR;
1574 src_vq->mem_ops = &vb2_vmalloc_memops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001575
1576 ret = coda_queue_init(priv, src_vq);
1577 if (ret)
1578 return ret;
1579
1580 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1581 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
1582 dst_vq->mem_ops = &vb2_dma_contig_memops;
1583
1584 return coda_queue_init(priv, dst_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001585}
1586
Philipp Zabele11f3e62012-07-25 09:16:58 -03001587static int coda_next_free_instance(struct coda_dev *dev)
1588{
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001589 int idx = ffz(dev->instance_mask);
1590
1591 if ((idx < 0) ||
1592 (dev->devtype->product == CODA_DX6 && idx > CODADX6_MAX_INSTANCES))
1593 return -EBUSY;
1594
1595 return idx;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001596}
1597
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001598/*
1599 * File operations
1600 */
1601
1602static int coda_open(struct file *file)
Javier Martin186b2502012-07-26 05:53:35 -03001603{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001604 struct video_device *vdev = video_devdata(file);
1605 struct coda_dev *dev = video_get_drvdata(vdev);
Javier Martin186b2502012-07-26 05:53:35 -03001606 struct coda_ctx *ctx = NULL;
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001607 char *name;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001608 int ret;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001609 int idx;
Javier Martin186b2502012-07-26 05:53:35 -03001610
Philipp Zabelf23797b2014-08-06 08:02:23 -03001611 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Javier Martin186b2502012-07-26 05:53:35 -03001612 if (!ctx)
1613 return -ENOMEM;
1614
Fabio Estevamf82bc202013-08-21 11:14:16 -03001615 idx = coda_next_free_instance(dev);
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001616 if (idx < 0) {
1617 ret = idx;
Fabio Estevamf82bc202013-08-21 11:14:16 -03001618 goto err_coda_max;
1619 }
1620 set_bit(idx, &dev->instance_mask);
1621
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001622 name = kasprintf(GFP_KERNEL, "context%d", idx);
1623 ctx->debugfs_entry = debugfs_create_dir(name, dev->debugfs_root);
1624 kfree(name);
1625
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001626 ctx->cvd = to_coda_video_device(vdev);
1627 ctx->inst_type = ctx->cvd->type;
1628 ctx->ops = ctx->cvd->ops;
Philipp Zabel32b6f202014-07-11 06:36:20 -03001629 init_completion(&ctx->completion);
1630 INIT_WORK(&ctx->pic_run_work, coda_pic_run_work);
Philipp Zabel747d7642015-01-23 13:51:31 -03001631 if (ctx->ops->seq_end_work)
1632 INIT_WORK(&ctx->seq_end_work, ctx->ops->seq_end_work);
Javier Martin186b2502012-07-26 05:53:35 -03001633 v4l2_fh_init(&ctx->fh, video_devdata(file));
1634 file->private_data = &ctx->fh;
1635 v4l2_fh_add(&ctx->fh);
1636 ctx->dev = dev;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001637 ctx->idx = idx;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001638 switch (dev->devtype->product) {
Philipp Zabel89548442014-07-11 06:36:17 -03001639 case CODA_960:
Philipp Zabel2bf299c2014-09-29 09:53:46 -03001640 ctx->frame_mem_ctrl = 1 << 12;
1641 /* fallthrough */
1642 case CODA_7541:
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001643 ctx->reg_idx = 0;
1644 break;
1645 default:
1646 ctx->reg_idx = idx;
1647 }
Fabio Estevamf82bc202013-08-21 11:14:16 -03001648
Philipp Zabel1e172732014-07-11 06:36:23 -03001649 /* Power up and upload firmware if necessary */
1650 ret = pm_runtime_get_sync(&dev->plat_dev->dev);
1651 if (ret < 0) {
1652 v4l2_err(&dev->v4l2_dev, "failed to power up: %d\n", ret);
1653 goto err_pm_get;
1654 }
1655
Fabio Estevam79830db2013-08-21 11:14:17 -03001656 ret = clk_prepare_enable(dev->clk_per);
1657 if (ret)
1658 goto err_clk_per;
1659
1660 ret = clk_prepare_enable(dev->clk_ahb);
1661 if (ret)
1662 goto err_clk_ahb;
1663
Javier Martin186b2502012-07-26 05:53:35 -03001664 set_default_params(ctx);
Philipp Zabela1192a12014-07-23 12:28:40 -03001665 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx,
1666 ctx->ops->queue_init);
Philipp Zabel14604e32014-07-11 06:36:22 -03001667 if (IS_ERR(ctx->fh.m2m_ctx)) {
1668 ret = PTR_ERR(ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -03001669
1670 v4l2_err(&dev->v4l2_dev, "%s return error (%d)\n",
1671 __func__, ret);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001672 goto err_ctx_init;
Javier Martin186b2502012-07-26 05:53:35 -03001673 }
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001674
Javier Martin186b2502012-07-26 05:53:35 -03001675 ret = coda_ctrls_setup(ctx);
1676 if (ret) {
1677 v4l2_err(&dev->v4l2_dev, "failed to setup coda controls\n");
Fabio Estevamf82bc202013-08-21 11:14:16 -03001678 goto err_ctrls_setup;
Javier Martin186b2502012-07-26 05:53:35 -03001679 }
1680
1681 ctx->fh.ctrl_handler = &ctx->ctrls;
1682
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001683 ret = coda_alloc_context_buf(ctx, &ctx->parabuf,
1684 CODA_PARA_BUF_SIZE, "parabuf");
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001685 if (ret < 0) {
Javier Martin186b2502012-07-26 05:53:35 -03001686 v4l2_err(&dev->v4l2_dev, "failed to allocate parabuf");
Fabio Estevamf82bc202013-08-21 11:14:16 -03001687 goto err_dma_alloc;
Javier Martin186b2502012-07-26 05:53:35 -03001688 }
1689
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001690 ctx->bitstream.size = CODA_MAX_FRAME_SIZE;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001691 ctx->bitstream.vaddr = dma_alloc_writecombine(
1692 &dev->plat_dev->dev, ctx->bitstream.size,
1693 &ctx->bitstream.paddr, GFP_KERNEL);
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001694 if (!ctx->bitstream.vaddr) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001695 v4l2_err(&dev->v4l2_dev,
1696 "failed to allocate bitstream ringbuffer");
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001697 ret = -ENOMEM;
Fabio Estevamf82bc202013-08-21 11:14:16 -03001698 goto err_dma_writecombine;
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001699 }
1700 kfifo_init(&ctx->bitstream_fifo,
1701 ctx->bitstream.vaddr, ctx->bitstream.size);
1702 mutex_init(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001703 mutex_init(&ctx->buffer_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001704 INIT_LIST_HEAD(&ctx->buffer_meta_list);
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001705
Javier Martin186b2502012-07-26 05:53:35 -03001706 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001707 list_add(&ctx->list, &dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03001708 coda_unlock(ctx);
1709
Javier Martin186b2502012-07-26 05:53:35 -03001710 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Created instance %d (%p)\n",
1711 ctx->idx, ctx);
1712
1713 return 0;
1714
Fabio Estevamf82bc202013-08-21 11:14:16 -03001715err_dma_writecombine:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001716 if (ctx->dev->devtype->product == CODA_DX6)
1717 coda_free_aux_buf(dev, &ctx->workbuf);
1718 coda_free_aux_buf(dev, &ctx->parabuf);
1719err_dma_alloc:
1720 v4l2_ctrl_handler_free(&ctx->ctrls);
1721err_ctrls_setup:
Philipp Zabel14604e32014-07-11 06:36:22 -03001722 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001723err_ctx_init:
1724 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevam79830db2013-08-21 11:14:17 -03001725err_clk_ahb:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001726 clk_disable_unprepare(dev->clk_per);
Fabio Estevam79830db2013-08-21 11:14:17 -03001727err_clk_per:
Philipp Zabel1e172732014-07-11 06:36:23 -03001728 pm_runtime_put_sync(&dev->plat_dev->dev);
1729err_pm_get:
Javier Martin186b2502012-07-26 05:53:35 -03001730 v4l2_fh_del(&ctx->fh);
1731 v4l2_fh_exit(&ctx->fh);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001732 clear_bit(ctx->idx, &dev->instance_mask);
1733err_coda_max:
Javier Martin186b2502012-07-26 05:53:35 -03001734 kfree(ctx);
1735 return ret;
1736}
1737
1738static int coda_release(struct file *file)
1739{
1740 struct coda_dev *dev = video_drvdata(file);
1741 struct coda_ctx *ctx = fh_to_ctx(file->private_data);
1742
1743 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Releasing instance %p\n",
1744 ctx);
1745
Philipp Zabeld4bb75f2014-10-08 13:09:11 -03001746 if (ctx->inst_type == CODA_INST_DECODER)
1747 coda_bit_stream_end_flag(ctx);
1748
Philipp Zabel918c66f2013-06-27 06:59:01 -03001749 /* If this instance is running, call .job_abort and wait for it to end */
Philipp Zabel14604e32014-07-11 06:36:22 -03001750 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001751
1752 /* In case the instance was not running, we still need to call SEQ_END */
Philipp Zabel747d7642015-01-23 13:51:31 -03001753 if (ctx->initialized && ctx->ops->seq_end_work) {
Philipp Zabel32b6f202014-07-11 06:36:20 -03001754 queue_work(dev->workqueue, &ctx->seq_end_work);
1755 flush_work(&ctx->seq_end_work);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001756 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001757
Javier Martin186b2502012-07-26 05:53:35 -03001758 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001759 list_del(&ctx->list);
Javier Martin186b2502012-07-26 05:53:35 -03001760 coda_unlock(ctx);
1761
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001762 if (ctx->bitstream.vaddr) {
1763 dma_free_writecombine(&dev->plat_dev->dev, ctx->bitstream.size,
1764 ctx->bitstream.vaddr, ctx->bitstream.paddr);
1765 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001766 if (ctx->dev->devtype->product == CODA_DX6)
1767 coda_free_aux_buf(dev, &ctx->workbuf);
1768
1769 coda_free_aux_buf(dev, &ctx->parabuf);
Javier Martin186b2502012-07-26 05:53:35 -03001770 v4l2_ctrl_handler_free(&ctx->ctrls);
Javier Martin186b2502012-07-26 05:53:35 -03001771 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001772 clk_disable_unprepare(dev->clk_per);
Philipp Zabel1e172732014-07-11 06:36:23 -03001773 pm_runtime_put_sync(&dev->plat_dev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001774 v4l2_fh_del(&ctx->fh);
1775 v4l2_fh_exit(&ctx->fh);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001776 clear_bit(ctx->idx, &dev->instance_mask);
Philipp Zabel58b76772014-07-23 12:28:43 -03001777 if (ctx->ops->release)
1778 ctx->ops->release(ctx);
Philipp Zabele1519e82015-01-23 13:51:17 -03001779 debugfs_remove_recursive(ctx->debugfs_entry);
Javier Martin186b2502012-07-26 05:53:35 -03001780 kfree(ctx);
1781
1782 return 0;
1783}
1784
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001785static const struct v4l2_file_operations coda_fops = {
Javier Martin186b2502012-07-26 05:53:35 -03001786 .owner = THIS_MODULE,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001787 .open = coda_open,
Javier Martin186b2502012-07-26 05:53:35 -03001788 .release = coda_release,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001789 .poll = v4l2_m2m_fop_poll,
Javier Martin186b2502012-07-26 05:53:35 -03001790 .unlocked_ioctl = video_ioctl2,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001791 .mmap = v4l2_m2m_fop_mmap,
Javier Martin186b2502012-07-26 05:53:35 -03001792};
1793
Philipp Zabel87048bb2012-07-02 07:03:43 -03001794static int coda_hw_init(struct coda_dev *dev)
Javier Martin186b2502012-07-26 05:53:35 -03001795{
Javier Martin186b2502012-07-26 05:53:35 -03001796 u32 data;
1797 u16 *p;
Fabio Estevam79830db2013-08-21 11:14:17 -03001798 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001799
Fabio Estevam79830db2013-08-21 11:14:17 -03001800 ret = clk_prepare_enable(dev->clk_per);
1801 if (ret)
Philipp Zabel1e172732014-07-11 06:36:23 -03001802 goto err_clk_per;
Fabio Estevam79830db2013-08-21 11:14:17 -03001803
1804 ret = clk_prepare_enable(dev->clk_ahb);
1805 if (ret)
1806 goto err_clk_ahb;
Javier Martin186b2502012-07-26 05:53:35 -03001807
Philipp Zabel8f452842014-07-11 06:36:35 -03001808 if (dev->rstc)
1809 reset_control_reset(dev->rstc);
1810
Javier Martin186b2502012-07-26 05:53:35 -03001811 /*
1812 * Copy the first CODA_ISRAM_SIZE in the internal SRAM.
Philipp Zabel87048bb2012-07-02 07:03:43 -03001813 * The 16-bit chars in the code buffer are in memory access
1814 * order, re-sort them to CODA order for register download.
Javier Martin186b2502012-07-26 05:53:35 -03001815 * Data in this SRAM survives a reboot.
1816 */
Philipp Zabel87048bb2012-07-02 07:03:43 -03001817 p = (u16 *)dev->codebuf.vaddr;
1818 if (dev->devtype->product == CODA_DX6) {
1819 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1820 data = CODA_DOWN_ADDRESS_SET(i) |
1821 CODA_DOWN_DATA_SET(p[i ^ 1]);
1822 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1823 }
1824 } else {
1825 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1826 data = CODA_DOWN_ADDRESS_SET(i) |
1827 CODA_DOWN_DATA_SET(p[round_down(i, 4) +
1828 3 - (i % 4)]);
1829 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1830 }
Javier Martin186b2502012-07-26 05:53:35 -03001831 }
Javier Martin186b2502012-07-26 05:53:35 -03001832
Philipp Zabel9acf7692013-05-23 10:42:56 -03001833 /* Clear registers */
1834 for (i = 0; i < 64; i++)
1835 coda_write(dev, 0, CODA_REG_BIT_CODE_BUF_ADDR + i * 4);
1836
Javier Martin186b2502012-07-26 05:53:35 -03001837 /* Tell the BIT where to find everything it needs */
Philipp Zabel89548442014-07-11 06:36:17 -03001838 if (dev->devtype->product == CODA_960 ||
1839 dev->devtype->product == CODA_7541) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001840 coda_write(dev, dev->tempbuf.paddr,
1841 CODA_REG_BIT_TEMP_BUF_ADDR);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001842 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001843 } else {
1844 coda_write(dev, dev->workbuf.paddr,
1845 CODA_REG_BIT_WORK_BUF_ADDR);
1846 }
Javier Martin186b2502012-07-26 05:53:35 -03001847 coda_write(dev, dev->codebuf.paddr,
1848 CODA_REG_BIT_CODE_BUF_ADDR);
1849 coda_write(dev, 0, CODA_REG_BIT_CODE_RUN);
1850
1851 /* Set default values */
1852 switch (dev->devtype->product) {
1853 case CODA_DX6:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001854 coda_write(dev, CODADX6_STREAM_BUF_PIC_FLUSH,
1855 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001856 break;
1857 default:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001858 coda_write(dev, CODA7_STREAM_BUF_PIC_FLUSH,
1859 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001860 }
Philipp Zabel89548442014-07-11 06:36:17 -03001861 if (dev->devtype->product == CODA_960)
1862 coda_write(dev, 1 << 12, CODA_REG_BIT_FRAME_MEM_CTRL);
1863 else
1864 coda_write(dev, 0, CODA_REG_BIT_FRAME_MEM_CTRL);
Philipp Zabel10436672012-07-02 09:03:55 -03001865
1866 if (dev->devtype->product != CODA_DX6)
1867 coda_write(dev, 0, CODA7_REG_BIT_AXI_SRAM_USE);
1868
Javier Martin186b2502012-07-26 05:53:35 -03001869 coda_write(dev, CODA_INT_INTERRUPT_ENABLE,
1870 CODA_REG_BIT_INT_ENABLE);
1871
1872 /* Reset VPU and start processor */
1873 data = coda_read(dev, CODA_REG_BIT_CODE_RESET);
1874 data |= CODA_REG_RESET_ENABLE;
1875 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1876 udelay(10);
1877 data &= ~CODA_REG_RESET_ENABLE;
1878 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1879 coda_write(dev, CODA_REG_RUN_ENABLE, CODA_REG_BIT_CODE_RUN);
1880
Philipp Zabelfe7554e2014-07-11 06:36:24 -03001881 clk_disable_unprepare(dev->clk_ahb);
1882 clk_disable_unprepare(dev->clk_per);
1883
1884 return 0;
1885
1886err_clk_ahb:
1887 clk_disable_unprepare(dev->clk_per);
1888err_clk_per:
1889 return ret;
1890}
1891
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001892static int coda_register_device(struct coda_dev *dev, int i)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001893{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001894 struct video_device *vfd = &dev->vfd[i];
1895
Dan Carpenter88ca3af2015-01-08 07:07:08 -03001896 if (i >= dev->devtype->num_vdevs)
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001897 return -EINVAL;
1898
Dan Carpenter88ca3af2015-01-08 07:07:08 -03001899 snprintf(vfd->name, sizeof(vfd->name), "%s",
1900 dev->devtype->vdevs[i]->name);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001901 vfd->fops = &coda_fops;
1902 vfd->ioctl_ops = &coda_ioctl_ops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001903 vfd->release = video_device_release_empty,
1904 vfd->lock = &dev->dev_mutex;
1905 vfd->v4l2_dev = &dev->v4l2_dev;
1906 vfd->vfl_dir = VFL_DIR_M2M;
1907 video_set_drvdata(vfd, dev);
1908
Philipp Zabela188a662014-08-05 14:00:20 -03001909 /* Not applicable, use the selection API instead */
1910 v4l2_disable_ioctl(vfd, VIDIOC_CROPCAP);
1911 v4l2_disable_ioctl(vfd, VIDIOC_G_CROP);
1912 v4l2_disable_ioctl(vfd, VIDIOC_S_CROP);
1913
Philipp Zabel121cacf2014-07-18 07:22:42 -03001914 return video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1915}
1916
Javier Martin186b2502012-07-26 05:53:35 -03001917static void coda_fw_callback(const struct firmware *fw, void *context)
1918{
1919 struct coda_dev *dev = context;
1920 struct platform_device *pdev = dev->plat_dev;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001921 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001922
1923 if (!fw) {
1924 v4l2_err(&dev->v4l2_dev, "firmware request failed\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001925 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001926 }
1927
1928 /* allocate auxiliary per-device code buffer for the BIT processor */
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001929 ret = coda_alloc_aux_buf(dev, &dev->codebuf, fw->size, "codebuf",
1930 dev->debugfs_root);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001931 if (ret < 0) {
Javier Martin186b2502012-07-26 05:53:35 -03001932 dev_err(&pdev->dev, "failed to allocate code buffer\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001933 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001934 }
1935
Philipp Zabel87048bb2012-07-02 07:03:43 -03001936 /* Copy the whole firmware image to the code buffer */
1937 memcpy(dev->codebuf.vaddr, fw->data, fw->size);
1938 release_firmware(fw);
1939
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001940 ret = coda_hw_init(dev);
1941 if (ret < 0) {
1942 v4l2_err(&dev->v4l2_dev, "HW initialization failed\n");
1943 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001944 }
1945
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001946 ret = coda_check_firmware(dev);
1947 if (ret < 0)
1948 goto put_pm;
1949
Javier Martin186b2502012-07-26 05:53:35 -03001950 dev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
1951 if (IS_ERR(dev->alloc_ctx)) {
1952 v4l2_err(&dev->v4l2_dev, "Failed to alloc vb2 context\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001953 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001954 }
1955
1956 dev->m2m_dev = v4l2_m2m_init(&coda_m2m_ops);
1957 if (IS_ERR(dev->m2m_dev)) {
1958 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
1959 goto rel_ctx;
1960 }
1961
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001962 for (i = 0; i < dev->devtype->num_vdevs; i++) {
1963 ret = coda_register_device(dev, i);
1964 if (ret) {
1965 v4l2_err(&dev->v4l2_dev,
1966 "Failed to register %s video device: %d\n",
1967 dev->devtype->vdevs[i]->name, ret);
1968 goto rel_vfd;
1969 }
Philipp Zabel121cacf2014-07-18 07:22:42 -03001970 }
1971
1972 v4l2_info(&dev->v4l2_dev, "codec registered as /dev/video[%d-%d]\n",
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001973 dev->vfd[0].num, dev->vfd[i - 1].num);
Javier Martin186b2502012-07-26 05:53:35 -03001974
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001975 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001976 return;
1977
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001978rel_vfd:
1979 while (--i >= 0)
1980 video_unregister_device(&dev->vfd[i]);
Javier Martin186b2502012-07-26 05:53:35 -03001981 v4l2_m2m_release(dev->m2m_dev);
1982rel_ctx:
1983 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001984put_pm:
1985 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001986}
1987
1988static int coda_firmware_request(struct coda_dev *dev)
1989{
1990 char *fw = dev->devtype->firmware;
1991
1992 dev_dbg(&dev->plat_dev->dev, "requesting firmware '%s' for %s\n", fw,
1993 coda_product_name(dev->devtype->product));
1994
1995 return request_firmware_nowait(THIS_MODULE, true,
1996 fw, &dev->plat_dev->dev, GFP_KERNEL, dev, coda_fw_callback);
1997}
1998
1999enum coda_platform {
2000 CODA_IMX27,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002001 CODA_IMX53,
Philipp Zabel89548442014-07-11 06:36:17 -03002002 CODA_IMX6Q,
2003 CODA_IMX6DL,
Javier Martin186b2502012-07-26 05:53:35 -03002004};
2005
Emil Goodec06d8752012-08-14 17:44:42 -03002006static const struct coda_devtype coda_devdata[] = {
Javier Martin186b2502012-07-26 05:53:35 -03002007 [CODA_IMX27] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002008 .firmware = "v4l-codadx6-imx27.bin",
2009 .product = CODA_DX6,
2010 .codecs = codadx6_codecs,
2011 .num_codecs = ARRAY_SIZE(codadx6_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002012 .vdevs = codadx6_video_devices,
2013 .num_vdevs = ARRAY_SIZE(codadx6_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002014 .workbuf_size = 288 * 1024 + FMO_SLICE_SAVE_BUF_SIZE * 8 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002015 .iram_size = 0xb000,
Javier Martin186b2502012-07-26 05:53:35 -03002016 },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002017 [CODA_IMX53] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002018 .firmware = "v4l-coda7541-imx53.bin",
2019 .product = CODA_7541,
2020 .codecs = coda7_codecs,
2021 .num_codecs = ARRAY_SIZE(coda7_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002022 .vdevs = coda7_video_devices,
2023 .num_vdevs = ARRAY_SIZE(coda7_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002024 .workbuf_size = 128 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002025 .tempbuf_size = 304 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002026 .iram_size = 0x14000,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002027 },
Philipp Zabel89548442014-07-11 06:36:17 -03002028 [CODA_IMX6Q] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002029 .firmware = "v4l-coda960-imx6q.bin",
2030 .product = CODA_960,
2031 .codecs = coda9_codecs,
2032 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002033 .vdevs = coda9_video_devices,
2034 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002035 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002036 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002037 .iram_size = 0x21000,
Philipp Zabel89548442014-07-11 06:36:17 -03002038 },
2039 [CODA_IMX6DL] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002040 .firmware = "v4l-coda960-imx6dl.bin",
2041 .product = CODA_960,
2042 .codecs = coda9_codecs,
2043 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002044 .vdevs = coda9_video_devices,
2045 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002046 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002047 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002048 .iram_size = 0x20000,
Philipp Zabel89548442014-07-11 06:36:17 -03002049 },
Javier Martin186b2502012-07-26 05:53:35 -03002050};
2051
2052static struct platform_device_id coda_platform_ids[] = {
2053 { .name = "coda-imx27", .driver_data = CODA_IMX27 },
2054 { /* sentinel */ }
2055};
2056MODULE_DEVICE_TABLE(platform, coda_platform_ids);
2057
2058#ifdef CONFIG_OF
2059static const struct of_device_id coda_dt_ids[] = {
Alexander Shiyan7b0dd9e2013-06-15 08:09:57 -03002060 { .compatible = "fsl,imx27-vpu", .data = &coda_devdata[CODA_IMX27] },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002061 { .compatible = "fsl,imx53-vpu", .data = &coda_devdata[CODA_IMX53] },
Philipp Zabel89548442014-07-11 06:36:17 -03002062 { .compatible = "fsl,imx6q-vpu", .data = &coda_devdata[CODA_IMX6Q] },
2063 { .compatible = "fsl,imx6dl-vpu", .data = &coda_devdata[CODA_IMX6DL] },
Javier Martin186b2502012-07-26 05:53:35 -03002064 { /* sentinel */ }
2065};
2066MODULE_DEVICE_TABLE(of, coda_dt_ids);
2067#endif
2068
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002069static int coda_probe(struct platform_device *pdev)
Javier Martin186b2502012-07-26 05:53:35 -03002070{
2071 const struct of_device_id *of_id =
2072 of_match_device(of_match_ptr(coda_dt_ids), &pdev->dev);
2073 const struct platform_device_id *pdev_id;
Philipp Zabel657eee72013-04-29 16:17:14 -07002074 struct coda_platform_data *pdata = pdev->dev.platform_data;
2075 struct device_node *np = pdev->dev.of_node;
2076 struct gen_pool *pool;
Javier Martin186b2502012-07-26 05:53:35 -03002077 struct coda_dev *dev;
2078 struct resource *res;
2079 int ret, irq;
2080
Philipp Zabelf23797b2014-08-06 08:02:23 -03002081 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
Philipp Zabel6da999d2014-09-29 09:53:43 -03002082 if (!dev)
Javier Martin186b2502012-07-26 05:53:35 -03002083 return -ENOMEM;
Javier Martin186b2502012-07-26 05:53:35 -03002084
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002085 pdev_id = of_id ? of_id->data : platform_get_device_id(pdev);
2086
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002087 if (of_id) {
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002088 dev->devtype = of_id->data;
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002089 } else if (pdev_id) {
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002090 dev->devtype = &coda_devdata[pdev_id->driver_data];
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002091 } else {
2092 ret = -EINVAL;
2093 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002094 }
2095
2096 spin_lock_init(&dev->irqlock);
Philipp Zabele11f3e62012-07-25 09:16:58 -03002097 INIT_LIST_HEAD(&dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03002098
2099 dev->plat_dev = pdev;
2100 dev->clk_per = devm_clk_get(&pdev->dev, "per");
2101 if (IS_ERR(dev->clk_per)) {
2102 dev_err(&pdev->dev, "Could not get per clock\n");
2103 return PTR_ERR(dev->clk_per);
2104 }
2105
2106 dev->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
2107 if (IS_ERR(dev->clk_ahb)) {
2108 dev_err(&pdev->dev, "Could not get ahb clock\n");
2109 return PTR_ERR(dev->clk_ahb);
2110 }
2111
2112 /* Get memory for physical registers */
2113 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Philipp Zabel611cbbf2013-05-21 04:19:27 -03002114 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
2115 if (IS_ERR(dev->regs_base))
2116 return PTR_ERR(dev->regs_base);
Javier Martin186b2502012-07-26 05:53:35 -03002117
2118 /* IRQ */
Philipp Zabel540b72e2014-08-05 14:00:09 -03002119 irq = platform_get_irq_byname(pdev, "bit");
2120 if (irq < 0)
2121 irq = platform_get_irq(pdev, 0);
Javier Martin186b2502012-07-26 05:53:35 -03002122 if (irq < 0) {
2123 dev_err(&pdev->dev, "failed to get irq resource\n");
Fabio Estevam7d377432014-06-04 15:46:23 -03002124 return irq;
Javier Martin186b2502012-07-26 05:53:35 -03002125 }
2126
Fabio Estevam08c8d142014-06-04 15:46:24 -03002127 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, coda_irq_handler,
2128 IRQF_ONESHOT, dev_name(&pdev->dev), dev);
2129 if (ret < 0) {
2130 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
2131 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002132 }
2133
Philipp Zabelee27aa92014-07-24 16:50:03 -03002134 dev->rstc = devm_reset_control_get_optional(&pdev->dev, NULL);
Philipp Zabel8f452842014-07-11 06:36:35 -03002135 if (IS_ERR(dev->rstc)) {
2136 ret = PTR_ERR(dev->rstc);
Philipp Zabelee27aa92014-07-24 16:50:03 -03002137 if (ret == -ENOENT || ret == -ENOSYS) {
Philipp Zabel8f452842014-07-11 06:36:35 -03002138 dev->rstc = NULL;
2139 } else {
Philipp Zabelf23797b2014-08-06 08:02:23 -03002140 dev_err(&pdev->dev, "failed get reset control: %d\n",
2141 ret);
Philipp Zabel8f452842014-07-11 06:36:35 -03002142 return ret;
2143 }
2144 }
2145
Philipp Zabel657eee72013-04-29 16:17:14 -07002146 /* Get IRAM pool from device tree or platform data */
2147 pool = of_get_named_gen_pool(np, "iram", 0);
2148 if (!pool && pdata)
2149 pool = dev_get_gen_pool(pdata->iram_dev);
2150 if (!pool) {
2151 dev_err(&pdev->dev, "iram pool not available\n");
2152 return -ENOMEM;
2153 }
2154 dev->iram_pool = pool;
2155
Javier Martin186b2502012-07-26 05:53:35 -03002156 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
2157 if (ret)
2158 return ret;
2159
2160 mutex_init(&dev->dev_mutex);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002161 mutex_init(&dev->coda_mutex);
Javier Martin186b2502012-07-26 05:53:35 -03002162
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002163 dev->debugfs_root = debugfs_create_dir("coda", NULL);
2164 if (!dev->debugfs_root)
2165 dev_warn(&pdev->dev, "failed to create debugfs root\n");
2166
Javier Martin186b2502012-07-26 05:53:35 -03002167 /* allocate auxiliary per-device buffers for the BIT processor */
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002168 if (dev->devtype->product == CODA_DX6) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002169 ret = coda_alloc_aux_buf(dev, &dev->workbuf,
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002170 dev->devtype->workbuf_size, "workbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002171 dev->debugfs_root);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002172 if (ret < 0) {
2173 dev_err(&pdev->dev, "failed to allocate work buffer\n");
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002174 goto err_v4l2_register;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002175 }
Javier Martin186b2502012-07-26 05:53:35 -03002176 }
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002177
2178 if (dev->devtype->tempbuf_size) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002179 ret = coda_alloc_aux_buf(dev, &dev->tempbuf,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002180 dev->devtype->tempbuf_size, "tempbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002181 dev->debugfs_root);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002182 if (ret < 0) {
2183 dev_err(&pdev->dev, "failed to allocate temp buffer\n");
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002184 goto err_v4l2_register;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002185 }
Javier Martin186b2502012-07-26 05:53:35 -03002186 }
2187
Philipp Zabel401e9722014-07-11 06:36:43 -03002188 dev->iram.size = dev->devtype->iram_size;
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002189 dev->iram.vaddr = gen_pool_dma_alloc(dev->iram_pool, dev->iram.size,
2190 &dev->iram.paddr);
2191 if (!dev->iram.vaddr) {
Philipp Zabel8be31c82014-08-05 14:00:13 -03002192 dev_warn(&pdev->dev, "unable to alloc iram\n");
2193 } else {
Philipp Zabel811a6932015-01-23 13:51:23 -03002194 memset(dev->iram.vaddr, 0, dev->iram.size);
Philipp Zabel8be31c82014-08-05 14:00:13 -03002195 dev->iram.blob.data = dev->iram.vaddr;
2196 dev->iram.blob.size = dev->iram.size;
2197 dev->iram.dentry = debugfs_create_blob("iram", 0644,
2198 dev->debugfs_root,
2199 &dev->iram.blob);
Philipp Zabel10436672012-07-02 09:03:55 -03002200 }
2201
Philipp Zabel32b6f202014-07-11 06:36:20 -03002202 dev->workqueue = alloc_workqueue("coda", WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
2203 if (!dev->workqueue) {
2204 dev_err(&pdev->dev, "unable to alloc workqueue\n");
Fabio Estevam74d08d52014-10-04 16:40:51 -03002205 ret = -ENOMEM;
2206 goto err_v4l2_register;
Philipp Zabel32b6f202014-07-11 06:36:20 -03002207 }
2208
Javier Martin186b2502012-07-26 05:53:35 -03002209 platform_set_drvdata(pdev, dev);
2210
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002211 /*
2212 * Start activated so we can directly call coda_hw_init in
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002213 * coda_fw_callback regardless of whether CONFIG_PM is
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002214 * enabled or whether the device is associated with a PM domain.
2215 */
2216 pm_runtime_get_noresume(&pdev->dev);
2217 pm_runtime_set_active(&pdev->dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002218 pm_runtime_enable(&pdev->dev);
2219
Javier Martin186b2502012-07-26 05:53:35 -03002220 return coda_firmware_request(dev);
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002221
2222err_v4l2_register:
2223 v4l2_device_unregister(&dev->v4l2_dev);
2224 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002225}
2226
2227static int coda_remove(struct platform_device *pdev)
2228{
2229 struct coda_dev *dev = platform_get_drvdata(pdev);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002230 int i;
Javier Martin186b2502012-07-26 05:53:35 -03002231
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002232 for (i = 0; i < ARRAY_SIZE(dev->vfd); i++) {
2233 if (video_get_drvdata(&dev->vfd[i]))
2234 video_unregister_device(&dev->vfd[i]);
2235 }
Javier Martin186b2502012-07-26 05:53:35 -03002236 if (dev->m2m_dev)
2237 v4l2_m2m_release(dev->m2m_dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002238 pm_runtime_disable(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03002239 if (dev->alloc_ctx)
2240 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
2241 v4l2_device_unregister(&dev->v4l2_dev);
Philipp Zabel32b6f202014-07-11 06:36:20 -03002242 destroy_workqueue(dev->workqueue);
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002243 if (dev->iram.vaddr)
2244 gen_pool_free(dev->iram_pool, (unsigned long)dev->iram.vaddr,
2245 dev->iram.size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002246 coda_free_aux_buf(dev, &dev->codebuf);
2247 coda_free_aux_buf(dev, &dev->tempbuf);
2248 coda_free_aux_buf(dev, &dev->workbuf);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002249 debugfs_remove_recursive(dev->debugfs_root);
Javier Martin186b2502012-07-26 05:53:35 -03002250 return 0;
2251}
2252
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002253#ifdef CONFIG_PM
Philipp Zabel1e172732014-07-11 06:36:23 -03002254static int coda_runtime_resume(struct device *dev)
2255{
2256 struct coda_dev *cdev = dev_get_drvdata(dev);
2257 int ret = 0;
2258
Philipp Zabel65919e62014-07-18 07:22:36 -03002259 if (dev->pm_domain && cdev->codebuf.vaddr) {
Philipp Zabel1e172732014-07-11 06:36:23 -03002260 ret = coda_hw_init(cdev);
2261 if (ret)
2262 v4l2_err(&cdev->v4l2_dev, "HW initialization failed\n");
2263 }
2264
2265 return ret;
2266}
2267#endif
2268
2269static const struct dev_pm_ops coda_pm_ops = {
2270 SET_RUNTIME_PM_OPS(NULL, coda_runtime_resume, NULL)
2271};
2272
Javier Martin186b2502012-07-26 05:53:35 -03002273static struct platform_driver coda_driver = {
2274 .probe = coda_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002275 .remove = coda_remove,
Javier Martin186b2502012-07-26 05:53:35 -03002276 .driver = {
2277 .name = CODA_NAME,
Javier Martin186b2502012-07-26 05:53:35 -03002278 .of_match_table = of_match_ptr(coda_dt_ids),
Philipp Zabel1e172732014-07-11 06:36:23 -03002279 .pm = &coda_pm_ops,
Javier Martin186b2502012-07-26 05:53:35 -03002280 },
2281 .id_table = coda_platform_ids,
2282};
2283
2284module_platform_driver(coda_driver);
2285
2286MODULE_LICENSE("GPL");
2287MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
2288MODULE_DESCRIPTION("Coda multi-standard codec V4L2 driver");