blob: c8811b7fa13776ace5c52e7816c9cd511e7b39d9 [file] [log] [blame]
Javier Martin186b2502012-07-26 05:53:35 -03001/*
2 * Coda multi-standard codec IP
3 *
4 * Copyright (C) 2012 Vista Silicon S.L.
5 * Javier Martin, <javier.martin@vista-silicon.com>
6 * Xavier Duret
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/clk.h>
Philipp Zabelf61c0b12014-07-11 06:36:40 -030015#include <linux/debugfs.h>
Javier Martin186b2502012-07-26 05:53:35 -030016#include <linux/delay.h>
17#include <linux/firmware.h>
Philipp Zabel657eee72013-04-29 16:17:14 -070018#include <linux/genalloc.h>
Javier Martin186b2502012-07-26 05:53:35 -030019#include <linux/interrupt.h>
20#include <linux/io.h>
21#include <linux/irq.h>
Philipp Zabel9082a7c2013-06-21 03:55:31 -030022#include <linux/kfifo.h>
Javier Martin186b2502012-07-26 05:53:35 -030023#include <linux/module.h>
24#include <linux/of_device.h>
25#include <linux/platform_device.h>
Philipp Zabel1e172732014-07-11 06:36:23 -030026#include <linux/pm_runtime.h>
Javier Martin186b2502012-07-26 05:53:35 -030027#include <linux/slab.h>
28#include <linux/videodev2.h>
29#include <linux/of.h>
Philipp Zabel657eee72013-04-29 16:17:14 -070030#include <linux/platform_data/coda.h>
Philipp Zabel8f452842014-07-11 06:36:35 -030031#include <linux/reset.h>
Javier Martin186b2502012-07-26 05:53:35 -030032
33#include <media/v4l2-ctrls.h>
34#include <media/v4l2-device.h>
Philipp Zabel918c66f2013-06-27 06:59:01 -030035#include <media/v4l2-event.h>
Javier Martin186b2502012-07-26 05:53:35 -030036#include <media/v4l2-ioctl.h>
37#include <media/v4l2-mem2mem.h>
38#include <media/videobuf2-core.h>
39#include <media/videobuf2-dma-contig.h>
Philipp Zabelbb04aa62015-01-23 13:51:30 -030040#include <media/videobuf2-vmalloc.h>
Javier Martin186b2502012-07-26 05:53:35 -030041
Philipp Zabela2b3e462014-07-23 12:28:39 -030042#include "coda.h"
Javier Martin186b2502012-07-26 05:53:35 -030043
44#define CODA_NAME "coda"
45
Philipp Zabel0cddc7e2013-09-30 10:34:44 -030046#define CODADX6_MAX_INSTANCES 4
Philipp Zabel2c11d1b2014-10-02 14:08:28 -030047#define CODA_MAX_FORMATS 4
Javier Martin186b2502012-07-26 05:53:35 -030048
Javier Martin186b2502012-07-26 05:53:35 -030049#define CODA_ISRAM_SIZE (2048 * 2)
50
Javier Martin186b2502012-07-26 05:53:35 -030051#define MIN_W 176
52#define MIN_H 144
Javier Martin186b2502012-07-26 05:53:35 -030053
54#define S_ALIGN 1 /* multiple of 2 */
55#define W_ALIGN 1 /* multiple of 2 */
56#define H_ALIGN 1 /* multiple of 2 */
57
58#define fh_to_ctx(__fh) container_of(__fh, struct coda_ctx, fh)
59
Philipp Zabel79924ca2014-07-23 12:28:45 -030060int coda_debug;
Philipp Zabelc4eb1bfc2013-05-21 04:24:16 -030061module_param(coda_debug, int, 0644);
Philipp Zabeld60b18b2014-08-05 14:00:15 -030062MODULE_PARM_DESC(coda_debug, "Debug level (0-2)");
Javier Martin186b2502012-07-26 05:53:35 -030063
Javier Martin186b2502012-07-26 05:53:35 -030064struct coda_fmt {
65 char *name;
66 u32 fourcc;
Philipp Zabelb96904e2013-05-23 10:42:58 -030067};
68
Philipp Zabela2b3e462014-07-23 12:28:39 -030069void coda_write(struct coda_dev *dev, u32 data, u32 reg)
Javier Martin186b2502012-07-26 05:53:35 -030070{
Philipp Zabeld60b18b2014-08-05 14:00:15 -030071 v4l2_dbg(2, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -030072 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
73 writel(data, dev->regs_base + reg);
74}
75
Philipp Zabela2b3e462014-07-23 12:28:39 -030076unsigned int coda_read(struct coda_dev *dev, u32 reg)
Javier Martin186b2502012-07-26 05:53:35 -030077{
78 u32 data;
Philipp Zabelf23797b2014-08-06 08:02:23 -030079
Javier Martin186b2502012-07-26 05:53:35 -030080 data = readl(dev->regs_base + reg);
Philipp Zabeld60b18b2014-08-05 14:00:15 -030081 v4l2_dbg(2, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -030082 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
83 return data;
84}
85
Philipp Zabel856d7d92014-09-29 09:53:44 -030086void coda_write_base(struct coda_ctx *ctx, struct coda_q_data *q_data,
87 struct vb2_buffer *buf, unsigned int reg_y)
88{
89 u32 base_y = vb2_dma_contig_plane_dma_addr(buf, 0);
90 u32 base_cb, base_cr;
91
92 switch (q_data->fourcc) {
93 case V4L2_PIX_FMT_YVU420:
94 /* Switch Cb and Cr for YVU420 format */
95 base_cr = base_y + q_data->bytesperline * q_data->height;
96 base_cb = base_cr + q_data->bytesperline * q_data->height / 4;
97 break;
98 case V4L2_PIX_FMT_YUV420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -030099 case V4L2_PIX_FMT_NV12:
Philipp Zabel856d7d92014-09-29 09:53:44 -0300100 default:
101 base_cb = base_y + q_data->bytesperline * q_data->height;
102 base_cr = base_cb + q_data->bytesperline * q_data->height / 4;
103 break;
Philipp Zabel4de69312014-10-02 14:08:26 -0300104 case V4L2_PIX_FMT_YUV422P:
105 base_cb = base_y + q_data->bytesperline * q_data->height;
106 base_cr = base_cb + q_data->bytesperline * q_data->height / 2;
Philipp Zabel856d7d92014-09-29 09:53:44 -0300107 }
108
109 coda_write(ctx->dev, base_y, reg_y);
110 coda_write(ctx->dev, base_cb, reg_y + 4);
111 coda_write(ctx->dev, base_cr, reg_y + 8);
112}
113
Javier Martin186b2502012-07-26 05:53:35 -0300114/*
Philipp Zabelb96904e2013-05-23 10:42:58 -0300115 * Array of all formats supported by any version of Coda:
Javier Martin186b2502012-07-26 05:53:35 -0300116 */
Philipp Zabel814c3762014-07-18 07:22:45 -0300117static const struct coda_fmt coda_formats[] = {
Javier Martin186b2502012-07-26 05:53:35 -0300118 {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300119 .name = "YUV 4:2:0 Planar, YCbCr",
Javier Martin186b2502012-07-26 05:53:35 -0300120 .fourcc = V4L2_PIX_FMT_YUV420,
Philipp Zabelb96904e2013-05-23 10:42:58 -0300121 },
122 {
123 .name = "YUV 4:2:0 Planar, YCrCb",
124 .fourcc = V4L2_PIX_FMT_YVU420,
Javier Martin186b2502012-07-26 05:53:35 -0300125 },
126 {
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300127 .name = "YUV 4:2:0 Partial interleaved Y/CbCr",
128 .fourcc = V4L2_PIX_FMT_NV12,
129 },
130 {
Philipp Zabel4de69312014-10-02 14:08:26 -0300131 .name = "YUV 4:2:2 Planar, YCbCr",
132 .fourcc = V4L2_PIX_FMT_YUV422P,
133 },
134 {
Javier Martin186b2502012-07-26 05:53:35 -0300135 .name = "H264 Encoded Stream",
136 .fourcc = V4L2_PIX_FMT_H264,
Javier Martin186b2502012-07-26 05:53:35 -0300137 },
138 {
139 .name = "MPEG4 Encoded Stream",
140 .fourcc = V4L2_PIX_FMT_MPEG4,
Javier Martin186b2502012-07-26 05:53:35 -0300141 },
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300142 {
143 .name = "JPEG Encoded Images",
144 .fourcc = V4L2_PIX_FMT_JPEG,
145 },
Javier Martin186b2502012-07-26 05:53:35 -0300146};
147
Philipp Zabelb96904e2013-05-23 10:42:58 -0300148#define CODA_CODEC(mode, src_fourcc, dst_fourcc, max_w, max_h) \
149 { mode, src_fourcc, dst_fourcc, max_w, max_h }
150
151/*
152 * Arrays of codecs supported by each given version of Coda:
153 * i.MX27 -> codadx6
154 * i.MX5x -> coda7
155 * i.MX6 -> coda960
156 * Use V4L2_PIX_FMT_YUV420 as placeholder for all supported YUV 4:2:0 variants
157 */
Philipp Zabel814c3762014-07-18 07:22:45 -0300158static const struct coda_codec codadx6_codecs[] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300159 CODA_CODEC(CODADX6_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 720, 576),
160 CODA_CODEC(CODADX6_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 720, 576),
Philipp Zabeldf1e74c2012-07-02 06:07:10 -0300161};
162
Philipp Zabel814c3762014-07-18 07:22:45 -0300163static const struct coda_codec coda7_codecs[] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300164 CODA_CODEC(CODA7_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1280, 720),
165 CODA_CODEC(CODA7_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1280, 720),
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300166 CODA_CODEC(CODA7_MODE_ENCODE_MJPG, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_JPEG, 8192, 8192),
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300167 CODA_CODEC(CODA7_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1088),
168 CODA_CODEC(CODA7_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300169 CODA_CODEC(CODA7_MODE_DECODE_MJPG, V4L2_PIX_FMT_JPEG, V4L2_PIX_FMT_YUV420, 8192, 8192),
Philipp Zabelb96904e2013-05-23 10:42:58 -0300170};
171
Philipp Zabel814c3762014-07-18 07:22:45 -0300172static const struct coda_codec coda9_codecs[] = {
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300173 CODA_CODEC(CODA9_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1920, 1088),
174 CODA_CODEC(CODA9_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1920, 1088),
175 CODA_CODEC(CODA9_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1088),
176 CODA_CODEC(CODA9_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabel89548442014-07-11 06:36:17 -0300177};
178
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300179struct coda_video_device {
180 const char *name;
181 enum coda_inst_type type;
182 const struct coda_context_ops *ops;
Philipp Zabela22496c2015-01-23 13:51:33 -0300183 bool direct;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300184 u32 src_formats[CODA_MAX_FORMATS];
185 u32 dst_formats[CODA_MAX_FORMATS];
186};
187
188static const struct coda_video_device coda_bit_encoder = {
189 .name = "coda-encoder",
190 .type = CODA_INST_ENCODER,
191 .ops = &coda_bit_encode_ops,
192 .src_formats = {
193 V4L2_PIX_FMT_YUV420,
194 V4L2_PIX_FMT_YVU420,
195 V4L2_PIX_FMT_NV12,
196 },
197 .dst_formats = {
198 V4L2_PIX_FMT_H264,
199 V4L2_PIX_FMT_MPEG4,
200 },
201};
202
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300203static const struct coda_video_device coda_bit_jpeg_encoder = {
204 .name = "coda-jpeg-encoder",
205 .type = CODA_INST_ENCODER,
206 .ops = &coda_bit_encode_ops,
207 .src_formats = {
208 V4L2_PIX_FMT_YUV420,
209 V4L2_PIX_FMT_YVU420,
210 V4L2_PIX_FMT_NV12,
211 V4L2_PIX_FMT_YUV422P,
212 },
213 .dst_formats = {
214 V4L2_PIX_FMT_JPEG,
215 },
216};
217
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300218static const struct coda_video_device coda_bit_decoder = {
219 .name = "coda-decoder",
220 .type = CODA_INST_DECODER,
221 .ops = &coda_bit_decode_ops,
222 .src_formats = {
223 V4L2_PIX_FMT_H264,
224 V4L2_PIX_FMT_MPEG4,
225 },
226 .dst_formats = {
227 V4L2_PIX_FMT_YUV420,
228 V4L2_PIX_FMT_YVU420,
229 V4L2_PIX_FMT_NV12,
230 },
231};
232
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300233static const struct coda_video_device coda_bit_jpeg_decoder = {
234 .name = "coda-jpeg-decoder",
235 .type = CODA_INST_DECODER,
236 .ops = &coda_bit_decode_ops,
237 .src_formats = {
238 V4L2_PIX_FMT_JPEG,
239 },
240 .dst_formats = {
241 V4L2_PIX_FMT_YUV420,
242 V4L2_PIX_FMT_YVU420,
243 V4L2_PIX_FMT_NV12,
244 V4L2_PIX_FMT_YUV422P,
245 },
246};
247
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300248static const struct coda_video_device *codadx6_video_devices[] = {
249 &coda_bit_encoder,
250};
251
252static const struct coda_video_device *coda7_video_devices[] = {
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300253 &coda_bit_jpeg_encoder,
254 &coda_bit_jpeg_decoder,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300255 &coda_bit_encoder,
256 &coda_bit_decoder,
257};
258
259static const struct coda_video_device *coda9_video_devices[] = {
260 &coda_bit_encoder,
261 &coda_bit_decoder,
262};
263
Philipp Zabelb96904e2013-05-23 10:42:58 -0300264static bool coda_format_is_yuv(u32 fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300265{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300266 switch (fourcc) {
267 case V4L2_PIX_FMT_YUV420:
268 case V4L2_PIX_FMT_YVU420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300269 case V4L2_PIX_FMT_NV12:
Philipp Zabel4de69312014-10-02 14:08:26 -0300270 case V4L2_PIX_FMT_YUV422P:
Philipp Zabelb96904e2013-05-23 10:42:58 -0300271 return true;
272 default:
273 return false;
274 }
275}
Javier Martin186b2502012-07-26 05:53:35 -0300276
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300277static const char *coda_format_name(u32 fourcc)
278{
279 int i;
280
281 for (i = 0; i < ARRAY_SIZE(coda_formats); i++) {
282 if (coda_formats[i].fourcc == fourcc)
283 return coda_formats[i].name;
284 }
285
286 return NULL;
287}
288
Philipp Zabelb96904e2013-05-23 10:42:58 -0300289/*
290 * Normalize all supported YUV 4:2:0 formats to the value used in the codec
291 * tables.
292 */
293static u32 coda_format_normalize_yuv(u32 fourcc)
294{
295 return coda_format_is_yuv(fourcc) ? V4L2_PIX_FMT_YUV420 : fourcc;
296}
297
Philipp Zabel814c3762014-07-18 07:22:45 -0300298static const struct coda_codec *coda_find_codec(struct coda_dev *dev,
299 int src_fourcc, int dst_fourcc)
Philipp Zabelb96904e2013-05-23 10:42:58 -0300300{
Philipp Zabel814c3762014-07-18 07:22:45 -0300301 const struct coda_codec *codecs = dev->devtype->codecs;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300302 int num_codecs = dev->devtype->num_codecs;
303 int k;
304
305 src_fourcc = coda_format_normalize_yuv(src_fourcc);
306 dst_fourcc = coda_format_normalize_yuv(dst_fourcc);
307 if (src_fourcc == dst_fourcc)
308 return NULL;
309
310 for (k = 0; k < num_codecs; k++) {
311 if (codecs[k].src_fourcc == src_fourcc &&
312 codecs[k].dst_fourcc == dst_fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300313 break;
314 }
315
Philipp Zabelb96904e2013-05-23 10:42:58 -0300316 if (k == num_codecs)
Javier Martin186b2502012-07-26 05:53:35 -0300317 return NULL;
318
Philipp Zabelb96904e2013-05-23 10:42:58 -0300319 return &codecs[k];
Javier Martin186b2502012-07-26 05:53:35 -0300320}
321
Philipp Zabel57625592013-09-30 10:34:51 -0300322static void coda_get_max_dimensions(struct coda_dev *dev,
Philipp Zabel814c3762014-07-18 07:22:45 -0300323 const struct coda_codec *codec,
Philipp Zabel57625592013-09-30 10:34:51 -0300324 int *max_w, int *max_h)
325{
Philipp Zabel814c3762014-07-18 07:22:45 -0300326 const struct coda_codec *codecs = dev->devtype->codecs;
Philipp Zabel57625592013-09-30 10:34:51 -0300327 int num_codecs = dev->devtype->num_codecs;
328 unsigned int w, h;
329 int k;
330
331 if (codec) {
332 w = codec->max_w;
333 h = codec->max_h;
334 } else {
335 for (k = 0, w = 0, h = 0; k < num_codecs; k++) {
336 w = max(w, codecs[k].max_w);
337 h = max(h, codecs[k].max_h);
338 }
339 }
340
341 if (max_w)
342 *max_w = w;
343 if (max_h)
344 *max_h = h;
345}
346
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300347const struct coda_video_device *to_coda_video_device(struct video_device *vdev)
348{
349 struct coda_dev *dev = video_get_drvdata(vdev);
350 unsigned int i = vdev - dev->vfd;
351
352 if (i >= dev->devtype->num_vdevs)
353 return NULL;
354
355 return dev->devtype->vdevs[i];
356}
357
Philipp Zabel79924ca2014-07-23 12:28:45 -0300358const char *coda_product_name(int product)
Philipp Zabel927933f2013-09-30 10:34:48 -0300359{
360 static char buf[9];
361
362 switch (product) {
363 case CODA_DX6:
364 return "CodaDx6";
365 case CODA_7541:
366 return "CODA7541";
Philipp Zabel89548442014-07-11 06:36:17 -0300367 case CODA_960:
368 return "CODA960";
Philipp Zabel927933f2013-09-30 10:34:48 -0300369 default:
370 snprintf(buf, sizeof(buf), "(0x%04x)", product);
371 return buf;
372 }
373}
374
Javier Martin186b2502012-07-26 05:53:35 -0300375/*
376 * V4L2 ioctl() operations.
377 */
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300378static int coda_querycap(struct file *file, void *priv,
379 struct v4l2_capability *cap)
Javier Martin186b2502012-07-26 05:53:35 -0300380{
Philipp Zabel927933f2013-09-30 10:34:48 -0300381 struct coda_ctx *ctx = fh_to_ctx(priv);
382
Javier Martin186b2502012-07-26 05:53:35 -0300383 strlcpy(cap->driver, CODA_NAME, sizeof(cap->driver));
Philipp Zabel927933f2013-09-30 10:34:48 -0300384 strlcpy(cap->card, coda_product_name(ctx->dev->devtype->product),
385 sizeof(cap->card));
Philipp Zabeldad0e1c2013-05-21 04:18:22 -0300386 strlcpy(cap->bus_info, "platform:" CODA_NAME, sizeof(cap->bus_info));
Philipp Zabel3898e7a2014-07-18 07:22:37 -0300387 cap->device_caps = V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
Javier Martin186b2502012-07-26 05:53:35 -0300388 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
389
390 return 0;
391}
392
Philipp Zabel22e244b2014-07-18 07:22:43 -0300393static int coda_enum_fmt(struct file *file, void *priv,
394 struct v4l2_fmtdesc *f)
Javier Martin186b2502012-07-26 05:53:35 -0300395{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300396 struct video_device *vdev = video_devdata(file);
397 const struct coda_video_device *cvd = to_coda_video_device(vdev);
398 const u32 *formats;
399 const char *name;
Philipp Zabel22e244b2014-07-18 07:22:43 -0300400
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300401 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
402 formats = cvd->src_formats;
403 else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
404 formats = cvd->dst_formats;
Philipp Zabel22e244b2014-07-18 07:22:43 -0300405 else
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300406 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300407
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300408 if (f->index >= CODA_MAX_FORMATS || formats[f->index] == 0)
409 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300410
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300411 name = coda_format_name(formats[f->index]);
412 strlcpy(f->description, name, sizeof(f->description));
413 f->pixelformat = formats[f->index];
414 if (!coda_format_is_yuv(formats[f->index]))
415 f->flags |= V4L2_FMT_FLAG_COMPRESSED;
Javier Martin186b2502012-07-26 05:53:35 -0300416
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300417 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300418}
419
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300420static int coda_g_fmt(struct file *file, void *priv,
421 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300422{
Javier Martin186b2502012-07-26 05:53:35 -0300423 struct coda_q_data *q_data;
424 struct coda_ctx *ctx = fh_to_ctx(priv);
425
Javier Martin186b2502012-07-26 05:53:35 -0300426 q_data = get_q_data(ctx, f->type);
Philipp Zabelb9736292014-07-11 06:36:18 -0300427 if (!q_data)
428 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300429
430 f->fmt.pix.field = V4L2_FIELD_NONE;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300431 f->fmt.pix.pixelformat = q_data->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300432 f->fmt.pix.width = q_data->width;
433 f->fmt.pix.height = q_data->height;
Philipp Zabel2fd6a372014-07-11 06:36:36 -0300434 f->fmt.pix.bytesperline = q_data->bytesperline;
Javier Martin186b2502012-07-26 05:53:35 -0300435
436 f->fmt.pix.sizeimage = q_data->sizeimage;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300437 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_JPEG)
438 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
439 else
440 f->fmt.pix.colorspace = ctx->colorspace;
Javier Martin186b2502012-07-26 05:53:35 -0300441
442 return 0;
443}
444
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300445static int coda_try_pixelformat(struct coda_ctx *ctx, struct v4l2_format *f)
446{
447 struct coda_q_data *q_data;
448 const u32 *formats;
449 int i;
450
451 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
452 formats = ctx->cvd->src_formats;
453 else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
454 formats = ctx->cvd->dst_formats;
455 else
456 return -EINVAL;
457
458 for (i = 0; i < CODA_MAX_FORMATS; i++) {
459 if (formats[i] == f->fmt.pix.pixelformat) {
460 f->fmt.pix.pixelformat = formats[i];
461 return 0;
462 }
463 }
464
465 /* Fall back to currently set pixelformat */
466 q_data = get_q_data(ctx, f->type);
467 f->fmt.pix.pixelformat = q_data->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300468
469 return 0;
470}
471
Philipp Zabel8e428d52015-01-23 13:51:29 -0300472static unsigned int coda_estimate_sizeimage(struct coda_ctx *ctx, u32 sizeimage,
473 u32 width, u32 height)
474{
475 /*
476 * This is a rough estimate for sensible compressed buffer
477 * sizes (between 1 and 16 bits per pixel). This could be
478 * improved by better format specific worst case estimates.
479 */
480 return round_up(clamp(sizeimage, width * height / 8,
481 width * height * 2), PAGE_SIZE);
482}
483
Philipp Zabel814c3762014-07-18 07:22:45 -0300484static int coda_try_fmt(struct coda_ctx *ctx, const struct coda_codec *codec,
Philipp Zabel57625592013-09-30 10:34:51 -0300485 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300486{
Philipp Zabel57625592013-09-30 10:34:51 -0300487 struct coda_dev *dev = ctx->dev;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300488 unsigned int max_w, max_h;
Javier Martin186b2502012-07-26 05:53:35 -0300489 enum v4l2_field field;
490
491 field = f->fmt.pix.field;
492 if (field == V4L2_FIELD_ANY)
493 field = V4L2_FIELD_NONE;
494 else if (V4L2_FIELD_NONE != field)
495 return -EINVAL;
496
497 /* V4L2 specification suggests the driver corrects the format struct
498 * if any of the dimensions is unsupported */
499 f->fmt.pix.field = field;
500
Philipp Zabel57625592013-09-30 10:34:51 -0300501 coda_get_max_dimensions(dev, codec, &max_w, &max_h);
502 v4l_bound_align_image(&f->fmt.pix.width, MIN_W, max_w, W_ALIGN,
503 &f->fmt.pix.height, MIN_H, max_h, H_ALIGN,
504 S_ALIGN);
Philipp Zabelb96904e2013-05-23 10:42:58 -0300505
Philipp Zabel57625592013-09-30 10:34:51 -0300506 switch (f->fmt.pix.pixelformat) {
507 case V4L2_PIX_FMT_YUV420:
508 case V4L2_PIX_FMT_YVU420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300509 case V4L2_PIX_FMT_NV12:
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300510 /*
511 * Frame stride must be at least multiple of 8,
512 * but multiple of 16 for h.264 or JPEG 4:2:x
513 */
Philipp Zabel451dfe52014-07-11 06:36:39 -0300514 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
Philipp Zabel47cf0c62013-05-23 10:42:54 -0300515 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
Philipp Zabel451d43a2012-07-26 09:18:27 -0300516 f->fmt.pix.height * 3 / 2;
Philipp Zabel57625592013-09-30 10:34:51 -0300517 break;
Philipp Zabel4de69312014-10-02 14:08:26 -0300518 case V4L2_PIX_FMT_YUV422P:
519 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
520 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
521 f->fmt.pix.height * 2;
522 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300523 case V4L2_PIX_FMT_JPEG:
524 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
525 /* fallthrough */
Philipp Zabel57625592013-09-30 10:34:51 -0300526 case V4L2_PIX_FMT_H264:
527 case V4L2_PIX_FMT_MPEG4:
Javier Martin186b2502012-07-26 05:53:35 -0300528 f->fmt.pix.bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -0300529 f->fmt.pix.sizeimage = coda_estimate_sizeimage(ctx,
530 f->fmt.pix.sizeimage,
531 f->fmt.pix.width,
532 f->fmt.pix.height);
Philipp Zabel57625592013-09-30 10:34:51 -0300533 break;
534 default:
535 BUG();
Javier Martin186b2502012-07-26 05:53:35 -0300536 }
537
538 return 0;
539}
540
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300541static int coda_try_fmt_vid_cap(struct file *file, void *priv,
542 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300543{
Javier Martin186b2502012-07-26 05:53:35 -0300544 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300545 const struct coda_q_data *q_data_src;
546 const struct coda_codec *codec;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300547 struct vb2_queue *src_vq;
548 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300549
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300550 ret = coda_try_pixelformat(ctx, f);
551 if (ret < 0)
552 return ret;
553
554 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
555
Philipp Zabel918c66f2013-06-27 06:59:01 -0300556 /*
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300557 * If the source format is already fixed, only allow the same output
558 * resolution
Philipp Zabel918c66f2013-06-27 06:59:01 -0300559 */
Philipp Zabel14604e32014-07-11 06:36:22 -0300560 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300561 if (vb2_is_streaming(src_vq)) {
Philipp Zabel91b5841e2014-07-18 07:22:41 -0300562 f->fmt.pix.width = q_data_src->width;
563 f->fmt.pix.height = q_data_src->height;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300564 }
Javier Martin186b2502012-07-26 05:53:35 -0300565
566 f->fmt.pix.colorspace = ctx->colorspace;
567
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300568 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
569 codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
570 f->fmt.pix.pixelformat);
571 if (!codec)
572 return -EINVAL;
573
Philipp Zabel57625592013-09-30 10:34:51 -0300574 ret = coda_try_fmt(ctx, codec, f);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300575 if (ret < 0)
576 return ret;
577
578 /* The h.264 decoder only returns complete 16x16 macroblocks */
579 if (codec && codec->src_fourcc == V4L2_PIX_FMT_H264) {
Philipp Zabel1b0ed7b2014-07-11 06:36:37 -0300580 f->fmt.pix.width = f->fmt.pix.width;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300581 f->fmt.pix.height = round_up(f->fmt.pix.height, 16);
Philipp Zabel1b0ed7b2014-07-11 06:36:37 -0300582 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300583 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
584 f->fmt.pix.height * 3 / 2;
585 }
586
587 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300588}
589
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300590static int coda_try_fmt_vid_out(struct file *file, void *priv,
591 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300592{
593 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300594 struct coda_dev *dev = ctx->dev;
595 const struct coda_q_data *q_data_dst;
596 const struct coda_codec *codec;
597 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300598
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300599 ret = coda_try_pixelformat(ctx, f);
600 if (ret < 0)
601 return ret;
Javier Martin186b2502012-07-26 05:53:35 -0300602
Philipp Zabel5f9826e2015-01-23 13:51:21 -0300603 switch (f->fmt.pix.colorspace) {
604 case V4L2_COLORSPACE_REC709:
605 case V4L2_COLORSPACE_JPEG:
606 break;
607 default:
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300608 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_JPEG)
609 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
610 else
611 f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
Javier Martin186b2502012-07-26 05:53:35 -0300612 }
613
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300614 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
615 codec = coda_find_codec(dev, f->fmt.pix.pixelformat, q_data_dst->fourcc);
Javier Martin186b2502012-07-26 05:53:35 -0300616
617 return coda_try_fmt(ctx, codec, f);
618}
619
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300620static int coda_s_fmt(struct coda_ctx *ctx, struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300621{
622 struct coda_q_data *q_data;
623 struct vb2_queue *vq;
Javier Martin186b2502012-07-26 05:53:35 -0300624
Philipp Zabel14604e32014-07-11 06:36:22 -0300625 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
Javier Martin186b2502012-07-26 05:53:35 -0300626 if (!vq)
627 return -EINVAL;
628
629 q_data = get_q_data(ctx, f->type);
630 if (!q_data)
631 return -EINVAL;
632
633 if (vb2_is_busy(vq)) {
634 v4l2_err(&ctx->dev->v4l2_dev, "%s queue busy\n", __func__);
635 return -EBUSY;
636 }
637
Philipp Zabelb96904e2013-05-23 10:42:58 -0300638 q_data->fourcc = f->fmt.pix.pixelformat;
Javier Martin186b2502012-07-26 05:53:35 -0300639 q_data->width = f->fmt.pix.width;
640 q_data->height = f->fmt.pix.height;
Philipp Zabel2fd6a372014-07-11 06:36:36 -0300641 q_data->bytesperline = f->fmt.pix.bytesperline;
Philipp Zabel451d43a2012-07-26 09:18:27 -0300642 q_data->sizeimage = f->fmt.pix.sizeimage;
Philipp Zabel52c41672014-07-11 06:36:19 -0300643 q_data->rect.left = 0;
644 q_data->rect.top = 0;
645 q_data->rect.width = f->fmt.pix.width;
646 q_data->rect.height = f->fmt.pix.height;
Javier Martin186b2502012-07-26 05:53:35 -0300647
648 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
649 "Setting format for type %d, wxh: %dx%d, fmt: %d\n",
Philipp Zabelb96904e2013-05-23 10:42:58 -0300650 f->type, q_data->width, q_data->height, q_data->fourcc);
Javier Martin186b2502012-07-26 05:53:35 -0300651
652 return 0;
653}
654
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300655static int coda_s_fmt_vid_cap(struct file *file, void *priv,
656 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300657{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300658 struct coda_ctx *ctx = fh_to_ctx(priv);
Javier Martin186b2502012-07-26 05:53:35 -0300659 int ret;
660
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300661 ret = coda_try_fmt_vid_cap(file, priv, f);
Javier Martin186b2502012-07-26 05:53:35 -0300662 if (ret)
663 return ret;
664
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300665 return coda_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300666}
667
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300668static int coda_s_fmt_vid_out(struct file *file, void *priv,
669 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300670{
671 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabelf95a6ce2014-08-05 14:00:19 -0300672 struct v4l2_format f_cap;
Javier Martin186b2502012-07-26 05:53:35 -0300673 int ret;
674
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300675 ret = coda_try_fmt_vid_out(file, priv, f);
Javier Martin186b2502012-07-26 05:53:35 -0300676 if (ret)
677 return ret;
678
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300679 ret = coda_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300680 if (ret)
Philipp Zabel2dc546d2014-08-05 14:00:18 -0300681 return ret;
682
683 ctx->colorspace = f->fmt.pix.colorspace;
Javier Martin186b2502012-07-26 05:53:35 -0300684
Philipp Zabel1c2f6a92015-01-23 13:51:22 -0300685 memset(&f_cap, 0, sizeof(f_cap));
Philipp Zabelf95a6ce2014-08-05 14:00:19 -0300686 f_cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
687 coda_g_fmt(file, priv, &f_cap);
688 f_cap.fmt.pix.width = f->fmt.pix.width;
689 f_cap.fmt.pix.height = f->fmt.pix.height;
690
691 ret = coda_try_fmt_vid_cap(file, priv, &f_cap);
692 if (ret)
693 return ret;
694
695 return coda_s_fmt(ctx, &f_cap);
Javier Martin186b2502012-07-26 05:53:35 -0300696}
697
Philipp Zabel73751da2015-03-24 14:30:51 -0300698static int coda_reqbufs(struct file *file, void *priv,
699 struct v4l2_requestbuffers *rb)
700{
701 struct coda_ctx *ctx = fh_to_ctx(priv);
702 int ret;
703
704 ret = v4l2_m2m_reqbufs(file, ctx->fh.m2m_ctx, rb);
705 if (ret)
706 return ret;
707
708 /*
709 * Allow to allocate instance specific per-context buffers, such as
710 * bitstream ringbuffer, slice buffer, work buffer, etc. if needed.
711 */
712 if (rb->type == V4L2_BUF_TYPE_VIDEO_OUTPUT && ctx->ops->reqbufs)
713 return ctx->ops->reqbufs(ctx, rb);
714
715 return 0;
716}
717
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300718static int coda_qbuf(struct file *file, void *priv,
719 struct v4l2_buffer *buf)
Javier Martin186b2502012-07-26 05:53:35 -0300720{
721 struct coda_ctx *ctx = fh_to_ctx(priv);
722
Philipp Zabel14604e32014-07-11 06:36:22 -0300723 return v4l2_m2m_qbuf(file, ctx->fh.m2m_ctx, buf);
Javier Martin186b2502012-07-26 05:53:35 -0300724}
725
Philipp Zabel918c66f2013-06-27 06:59:01 -0300726static bool coda_buf_is_end_of_stream(struct coda_ctx *ctx,
727 struct v4l2_buffer *buf)
728{
729 struct vb2_queue *src_vq;
730
Philipp Zabel14604e32014-07-11 06:36:22 -0300731 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300732
733 return ((ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG) &&
734 (buf->sequence == (ctx->qsequence - 1)));
735}
736
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300737static int coda_dqbuf(struct file *file, void *priv,
738 struct v4l2_buffer *buf)
Javier Martin186b2502012-07-26 05:53:35 -0300739{
740 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300741 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300742
Philipp Zabel14604e32014-07-11 06:36:22 -0300743 ret = v4l2_m2m_dqbuf(file, ctx->fh.m2m_ctx, buf);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300744
745 /* If this is the last capture buffer, emit an end-of-stream event */
746 if (buf->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
747 coda_buf_is_end_of_stream(ctx, buf)) {
748 const struct v4l2_event eos_event = {
749 .type = V4L2_EVENT_EOS
750 };
751
752 v4l2_event_queue_fh(&ctx->fh, &eos_event);
753 }
754
755 return ret;
Javier Martin186b2502012-07-26 05:53:35 -0300756}
757
Philipp Zabel52c41672014-07-11 06:36:19 -0300758static int coda_g_selection(struct file *file, void *fh,
759 struct v4l2_selection *s)
760{
761 struct coda_ctx *ctx = fh_to_ctx(fh);
762 struct coda_q_data *q_data;
763 struct v4l2_rect r, *rsel;
764
765 q_data = get_q_data(ctx, s->type);
766 if (!q_data)
767 return -EINVAL;
768
769 r.left = 0;
770 r.top = 0;
771 r.width = q_data->width;
772 r.height = q_data->height;
773 rsel = &q_data->rect;
774
775 switch (s->target) {
776 case V4L2_SEL_TGT_CROP_DEFAULT:
777 case V4L2_SEL_TGT_CROP_BOUNDS:
778 rsel = &r;
779 /* fallthrough */
780 case V4L2_SEL_TGT_CROP:
781 if (s->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
782 return -EINVAL;
783 break;
784 case V4L2_SEL_TGT_COMPOSE_BOUNDS:
785 case V4L2_SEL_TGT_COMPOSE_PADDED:
786 rsel = &r;
787 /* fallthrough */
788 case V4L2_SEL_TGT_COMPOSE:
789 case V4L2_SEL_TGT_COMPOSE_DEFAULT:
790 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
791 return -EINVAL;
792 break;
793 default:
794 return -EINVAL;
795 }
796
797 s->r = *rsel;
798
799 return 0;
800}
801
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300802static int coda_try_decoder_cmd(struct file *file, void *fh,
803 struct v4l2_decoder_cmd *dc)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300804{
Philipp Zabel918c66f2013-06-27 06:59:01 -0300805 if (dc->cmd != V4L2_DEC_CMD_STOP)
806 return -EINVAL;
807
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300808 if (dc->flags & V4L2_DEC_CMD_STOP_TO_BLACK)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300809 return -EINVAL;
810
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300811 if (!(dc->flags & V4L2_DEC_CMD_STOP_IMMEDIATELY) && (dc->stop.pts != 0))
Philipp Zabel918c66f2013-06-27 06:59:01 -0300812 return -EINVAL;
813
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300814 return 0;
815}
816
817static int coda_decoder_cmd(struct file *file, void *fh,
818 struct v4l2_decoder_cmd *dc)
819{
820 struct coda_ctx *ctx = fh_to_ctx(fh);
821 int ret;
822
823 ret = coda_try_decoder_cmd(file, fh, dc);
824 if (ret < 0)
825 return ret;
826
827 /* Ignore decoder stop command silently in encoder context */
Philipp Zabel918c66f2013-06-27 06:59:01 -0300828 if (ctx->inst_type != CODA_INST_DECODER)
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300829 return 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300830
Philipp Zabel347bb7f2014-07-23 12:28:42 -0300831 /* Set the stream-end flag on this context */
832 coda_bit_stream_end_flag(ctx);
Philipp Zabel84e23652014-07-11 06:36:34 -0300833 ctx->hold = false;
Michael Olbrichf3497da2014-07-11 06:36:30 -0300834 v4l2_m2m_try_schedule(ctx->fh.m2m_ctx);
Philipp Zabel89548442014-07-11 06:36:17 -0300835
Philipp Zabel918c66f2013-06-27 06:59:01 -0300836 return 0;
837}
838
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300839static int coda_subscribe_event(struct v4l2_fh *fh,
840 const struct v4l2_event_subscription *sub)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300841{
842 switch (sub->type) {
843 case V4L2_EVENT_EOS:
844 return v4l2_event_subscribe(fh, sub, 0, NULL);
845 default:
846 return v4l2_ctrl_subscribe_event(fh, sub);
847 }
Javier Martin186b2502012-07-26 05:53:35 -0300848}
849
850static const struct v4l2_ioctl_ops coda_ioctl_ops = {
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300851 .vidioc_querycap = coda_querycap,
Javier Martin186b2502012-07-26 05:53:35 -0300852
Philipp Zabel22e244b2014-07-18 07:22:43 -0300853 .vidioc_enum_fmt_vid_cap = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300854 .vidioc_g_fmt_vid_cap = coda_g_fmt,
855 .vidioc_try_fmt_vid_cap = coda_try_fmt_vid_cap,
856 .vidioc_s_fmt_vid_cap = coda_s_fmt_vid_cap,
Javier Martin186b2502012-07-26 05:53:35 -0300857
Philipp Zabel22e244b2014-07-18 07:22:43 -0300858 .vidioc_enum_fmt_vid_out = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300859 .vidioc_g_fmt_vid_out = coda_g_fmt,
860 .vidioc_try_fmt_vid_out = coda_try_fmt_vid_out,
861 .vidioc_s_fmt_vid_out = coda_s_fmt_vid_out,
Javier Martin186b2502012-07-26 05:53:35 -0300862
Philipp Zabel73751da2015-03-24 14:30:51 -0300863 .vidioc_reqbufs = coda_reqbufs,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300864 .vidioc_querybuf = v4l2_m2m_ioctl_querybuf,
Javier Martin186b2502012-07-26 05:53:35 -0300865
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300866 .vidioc_qbuf = coda_qbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300867 .vidioc_expbuf = v4l2_m2m_ioctl_expbuf,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300868 .vidioc_dqbuf = coda_dqbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300869 .vidioc_create_bufs = v4l2_m2m_ioctl_create_bufs,
Javier Martin186b2502012-07-26 05:53:35 -0300870
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300871 .vidioc_streamon = v4l2_m2m_ioctl_streamon,
872 .vidioc_streamoff = v4l2_m2m_ioctl_streamoff,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300873
Philipp Zabel52c41672014-07-11 06:36:19 -0300874 .vidioc_g_selection = coda_g_selection,
875
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300876 .vidioc_try_decoder_cmd = coda_try_decoder_cmd,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300877 .vidioc_decoder_cmd = coda_decoder_cmd,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300878
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300879 .vidioc_subscribe_event = coda_subscribe_event,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300880 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Javier Martin186b2502012-07-26 05:53:35 -0300881};
882
Philipp Zabel79924ca2014-07-23 12:28:45 -0300883void coda_set_gdi_regs(struct coda_ctx *ctx)
Philipp Zabel89548442014-07-11 06:36:17 -0300884{
885 struct gdi_tiled_map *tiled_map = &ctx->tiled_map;
886 struct coda_dev *dev = ctx->dev;
887 int i;
888
889 for (i = 0; i < 16; i++)
890 coda_write(dev, tiled_map->xy2ca_map[i],
891 CODA9_GDI_XY2_CAS_0 + 4 * i);
892 for (i = 0; i < 4; i++)
893 coda_write(dev, tiled_map->xy2ba_map[i],
894 CODA9_GDI_XY2_BA_0 + 4 * i);
895 for (i = 0; i < 16; i++)
896 coda_write(dev, tiled_map->xy2ra_map[i],
897 CODA9_GDI_XY2_RAS_0 + 4 * i);
898 coda_write(dev, tiled_map->xy2rbc_config, CODA9_GDI_XY2_RBC_CONFIG);
899 for (i = 0; i < 32; i++)
900 coda_write(dev, tiled_map->rbc2axi_map[i],
901 CODA9_GDI_RBC2_AXI_0 + 4 * i);
902}
903
Javier Martin186b2502012-07-26 05:53:35 -0300904/*
905 * Mem-to-mem operations.
906 */
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300907
908static void coda_device_run(void *m2m_priv)
909{
910 struct coda_ctx *ctx = m2m_priv;
911 struct coda_dev *dev = ctx->dev;
Philipp Zabel32b6f202014-07-11 06:36:20 -0300912
913 queue_work(dev->workqueue, &ctx->pic_run_work);
914}
915
Philipp Zabel32b6f202014-07-11 06:36:20 -0300916static void coda_pic_run_work(struct work_struct *work)
917{
918 struct coda_ctx *ctx = container_of(work, struct coda_ctx, pic_run_work);
919 struct coda_dev *dev = ctx->dev;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300920 int ret;
921
922 mutex_lock(&ctx->buffer_mutex);
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300923 mutex_lock(&dev->coda_mutex);
924
Philipp Zabela1192a12014-07-23 12:28:40 -0300925 ret = ctx->ops->prepare_run(ctx);
926 if (ret < 0 && ctx->inst_type == CODA_INST_DECODER) {
927 mutex_unlock(&dev->coda_mutex);
928 mutex_unlock(&ctx->buffer_mutex);
929 /* job_finish scheduled by prepare_decode */
930 return;
Philipp Zabel10436672012-07-02 09:03:55 -0300931 }
932
Philipp Zabelf23797b2014-08-06 08:02:23 -0300933 if (!wait_for_completion_timeout(&ctx->completion,
934 msecs_to_jiffies(1000))) {
Philipp Zabel32b6f202014-07-11 06:36:20 -0300935 dev_err(&dev->plat_dev->dev, "CODA PIC_RUN timeout\n");
Philipp Zabel84e23652014-07-11 06:36:34 -0300936
937 ctx->hold = true;
Philipp Zabel8f452842014-07-11 06:36:35 -0300938
939 coda_hw_reset(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300940 } else if (!ctx->aborting) {
Philipp Zabela1192a12014-07-23 12:28:40 -0300941 ctx->ops->finish_run(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300942 }
943
Philipp Zabel747d7642015-01-23 13:51:31 -0300944 if ((ctx->aborting || (!ctx->streamon_cap && !ctx->streamon_out)) &&
945 ctx->ops->seq_end_work)
Philipp Zabel32b6f202014-07-11 06:36:20 -0300946 queue_work(dev->workqueue, &ctx->seq_end_work);
947
948 mutex_unlock(&dev->coda_mutex);
949 mutex_unlock(&ctx->buffer_mutex);
950
Philipp Zabel14604e32014-07-11 06:36:22 -0300951 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -0300952}
953
954static int coda_job_ready(void *m2m_priv)
955{
956 struct coda_ctx *ctx = m2m_priv;
957
958 /*
959 * For both 'P' and 'key' frame cases 1 picture
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300960 * and 1 frame are needed. In the decoder case,
961 * the compressed frame can be in the bitstream.
Javier Martin186b2502012-07-26 05:53:35 -0300962 */
Philipp Zabel14604e32014-07-11 06:36:22 -0300963 if (!v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx) &&
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300964 ctx->inst_type != CODA_INST_DECODER) {
Javier Martin186b2502012-07-26 05:53:35 -0300965 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
966 "not ready: not enough video buffers.\n");
967 return 0;
968 }
969
Philipp Zabel14604e32014-07-11 06:36:22 -0300970 if (!v4l2_m2m_num_dst_bufs_ready(ctx->fh.m2m_ctx)) {
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300971 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
972 "not ready: not enough video capture buffers.\n");
973 return 0;
974 }
975
Philipp Zabela22496c2015-01-23 13:51:33 -0300976 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit) {
Philipp Zabelf77fd8a2015-01-23 13:51:20 -0300977 struct list_head *meta;
978 bool stream_end;
979 int num_metas;
980 int src_bufs;
981
982 if (ctx->hold && !v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx)) {
983 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
984 "%d: not ready: on hold for more buffers.\n",
985 ctx->idx);
986 return 0;
987 }
988
989 stream_end = ctx->bit_stream_param &
990 CODA_BIT_STREAM_END_FLAG;
991
992 num_metas = 0;
993 list_for_each(meta, &ctx->buffer_meta_list)
994 num_metas++;
995
996 src_bufs = v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx);
997
998 if (!stream_end && (num_metas + src_bufs) < 2) {
999 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1000 "%d: not ready: need 2 buffers available (%d, %d)\n",
1001 ctx->idx, num_metas, src_bufs);
1002 return 0;
1003 }
1004
1005
1006 if (!v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx) &&
1007 !stream_end && (coda_get_bitstream_payload(ctx) < 512)) {
1008 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1009 "%d: not ready: not enough bitstream data (%d).\n",
1010 ctx->idx, coda_get_bitstream_payload(ctx));
1011 return 0;
1012 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001013 }
1014
Philipp Zabel3e748262013-05-23 10:43:01 -03001015 if (ctx->aborting) {
1016 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1017 "not ready: aborting\n");
1018 return 0;
1019 }
1020
Javier Martin186b2502012-07-26 05:53:35 -03001021 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1022 "job ready\n");
1023 return 1;
1024}
1025
1026static void coda_job_abort(void *priv)
1027{
1028 struct coda_ctx *ctx = priv;
Javier Martin186b2502012-07-26 05:53:35 -03001029
1030 ctx->aborting = 1;
1031
1032 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1033 "Aborting task\n");
Javier Martin186b2502012-07-26 05:53:35 -03001034}
1035
1036static void coda_lock(void *m2m_priv)
1037{
1038 struct coda_ctx *ctx = m2m_priv;
1039 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001040
Javier Martin186b2502012-07-26 05:53:35 -03001041 mutex_lock(&pcdev->dev_mutex);
1042}
1043
1044static void coda_unlock(void *m2m_priv)
1045{
1046 struct coda_ctx *ctx = m2m_priv;
1047 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001048
Javier Martin186b2502012-07-26 05:53:35 -03001049 mutex_unlock(&pcdev->dev_mutex);
1050}
1051
Philipp Zabel814c3762014-07-18 07:22:45 -03001052static const struct v4l2_m2m_ops coda_m2m_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001053 .device_run = coda_device_run,
1054 .job_ready = coda_job_ready,
1055 .job_abort = coda_job_abort,
1056 .lock = coda_lock,
1057 .unlock = coda_unlock,
1058};
1059
Philipp Zabel89548442014-07-11 06:36:17 -03001060static void coda_set_tiled_map_type(struct coda_ctx *ctx, int tiled_map_type)
1061{
1062 struct gdi_tiled_map *tiled_map = &ctx->tiled_map;
1063 int luma_map, chro_map, i;
1064
1065 memset(tiled_map, 0, sizeof(*tiled_map));
1066
1067 luma_map = 64;
1068 chro_map = 64;
1069 tiled_map->map_type = tiled_map_type;
1070 for (i = 0; i < 16; i++)
1071 tiled_map->xy2ca_map[i] = luma_map << 8 | chro_map;
1072 for (i = 0; i < 4; i++)
1073 tiled_map->xy2ba_map[i] = luma_map << 8 | chro_map;
1074 for (i = 0; i < 16; i++)
1075 tiled_map->xy2ra_map[i] = luma_map << 8 | chro_map;
1076
1077 if (tiled_map_type == GDI_LINEAR_FRAME_MAP) {
1078 tiled_map->xy2rbc_config = 0;
1079 } else {
1080 dev_err(&ctx->dev->plat_dev->dev, "invalid map type: %d\n",
1081 tiled_map_type);
1082 return;
1083 }
1084}
1085
Javier Martin186b2502012-07-26 05:53:35 -03001086static void set_default_params(struct coda_ctx *ctx)
1087{
Philipp Zabel8e428d52015-01-23 13:51:29 -03001088 unsigned int max_w, max_h, usize, csize;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001089
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001090 ctx->codec = coda_find_codec(ctx->dev, ctx->cvd->src_formats[0],
1091 ctx->cvd->dst_formats[0]);
Philipp Zabeld4c6a412014-10-02 14:08:35 -03001092 max_w = min(ctx->codec->max_w, 1920U);
1093 max_h = min(ctx->codec->max_h, 1088U);
Philipp Zabel8e428d52015-01-23 13:51:29 -03001094 usize = max_w * max_h * 3 / 2;
1095 csize = coda_estimate_sizeimage(ctx, usize, max_w, max_h);
Javier Martin186b2502012-07-26 05:53:35 -03001096
Philipp Zabel121cacf2014-07-18 07:22:42 -03001097 ctx->params.codec_mode = ctx->codec->mode;
Javier Martin186b2502012-07-26 05:53:35 -03001098 ctx->colorspace = V4L2_COLORSPACE_REC709;
1099 ctx->params.framerate = 30;
Javier Martin186b2502012-07-26 05:53:35 -03001100
1101 /* Default formats for output and input queues */
Philipp Zabelb96904e2013-05-23 10:42:58 -03001102 ctx->q_data[V4L2_M2M_SRC].fourcc = ctx->codec->src_fourcc;
1103 ctx->q_data[V4L2_M2M_DST].fourcc = ctx->codec->dst_fourcc;
1104 ctx->q_data[V4L2_M2M_SRC].width = max_w;
1105 ctx->q_data[V4L2_M2M_SRC].height = max_h;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001106 ctx->q_data[V4L2_M2M_DST].width = max_w;
1107 ctx->q_data[V4L2_M2M_DST].height = max_h;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001108 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_YUV420) {
1109 ctx->q_data[V4L2_M2M_SRC].bytesperline = max_w;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001110 ctx->q_data[V4L2_M2M_SRC].sizeimage = usize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001111 ctx->q_data[V4L2_M2M_DST].bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001112 ctx->q_data[V4L2_M2M_DST].sizeimage = csize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001113 } else {
1114 ctx->q_data[V4L2_M2M_SRC].bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001115 ctx->q_data[V4L2_M2M_SRC].sizeimage = csize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001116 ctx->q_data[V4L2_M2M_DST].bytesperline = max_w;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001117 ctx->q_data[V4L2_M2M_DST].sizeimage = usize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001118 }
Philipp Zabel52c41672014-07-11 06:36:19 -03001119 ctx->q_data[V4L2_M2M_SRC].rect.width = max_w;
1120 ctx->q_data[V4L2_M2M_SRC].rect.height = max_h;
1121 ctx->q_data[V4L2_M2M_DST].rect.width = max_w;
1122 ctx->q_data[V4L2_M2M_DST].rect.height = max_h;
Philipp Zabel89548442014-07-11 06:36:17 -03001123
1124 if (ctx->dev->devtype->product == CODA_960)
1125 coda_set_tiled_map_type(ctx, GDI_LINEAR_FRAME_MAP);
Javier Martin186b2502012-07-26 05:53:35 -03001126}
1127
1128/*
1129 * Queue operations
1130 */
1131static int coda_queue_setup(struct vb2_queue *vq,
1132 const struct v4l2_format *fmt,
1133 unsigned int *nbuffers, unsigned int *nplanes,
1134 unsigned int sizes[], void *alloc_ctxs[])
1135{
1136 struct coda_ctx *ctx = vb2_get_drv_priv(vq);
Philipp Zabele34db062012-08-29 08:22:00 -03001137 struct coda_q_data *q_data;
Javier Martin186b2502012-07-26 05:53:35 -03001138 unsigned int size;
1139
Philipp Zabele34db062012-08-29 08:22:00 -03001140 q_data = get_q_data(ctx, vq->type);
1141 size = q_data->sizeimage;
Javier Martin186b2502012-07-26 05:53:35 -03001142
1143 *nplanes = 1;
1144 sizes[0] = size;
1145
Philipp Zabelbb04aa62015-01-23 13:51:30 -03001146 /* Set to vb2-dma-contig allocator context, ignored by vb2-vmalloc */
Javier Martin186b2502012-07-26 05:53:35 -03001147 alloc_ctxs[0] = ctx->dev->alloc_ctx;
1148
1149 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1150 "get %d buffer(s) of size %d each.\n", *nbuffers, size);
1151
1152 return 0;
1153}
1154
1155static int coda_buf_prepare(struct vb2_buffer *vb)
1156{
1157 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
1158 struct coda_q_data *q_data;
1159
1160 q_data = get_q_data(ctx, vb->vb2_queue->type);
1161
1162 if (vb2_plane_size(vb, 0) < q_data->sizeimage) {
1163 v4l2_warn(&ctx->dev->v4l2_dev,
1164 "%s data will not fit into plane (%lu < %lu)\n",
1165 __func__, vb2_plane_size(vb, 0),
1166 (long)q_data->sizeimage);
1167 return -EINVAL;
1168 }
1169
Javier Martin186b2502012-07-26 05:53:35 -03001170 return 0;
1171}
1172
1173static void coda_buf_queue(struct vb2_buffer *vb)
1174{
1175 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
Philipp Zabelcb06b702015-01-23 13:51:35 -03001176 struct vb2_queue *vq = vb->vb2_queue;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001177 struct coda_q_data *q_data;
1178
1179 q_data = get_q_data(ctx, vb->vb2_queue->type);
1180
1181 /*
1182 * In the decoder case, immediately try to copy the buffer into the
1183 * bitstream ringbuffer and mark it as ready to be dequeued.
1184 */
Philipp Zabelcb06b702015-01-23 13:51:35 -03001185 if (ctx->bitstream.size && vq->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001186 /*
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -03001187 * For backwards compatibility, queuing an empty buffer marks
Philipp Zabel918c66f2013-06-27 06:59:01 -03001188 * the stream end
1189 */
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001190 if (vb2_get_plane_payload(vb, 0) == 0)
1191 coda_bit_stream_end_flag(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001192 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel14604e32014-07-11 06:36:22 -03001193 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Michael Olbricheabed932014-07-18 07:22:40 -03001194 if (vb2_is_streaming(vb->vb2_queue))
1195 coda_fill_bitstream(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001196 mutex_unlock(&ctx->bitstream_mutex);
1197 } else {
Philipp Zabel14604e32014-07-11 06:36:22 -03001198 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001199 }
Javier Martin186b2502012-07-26 05:53:35 -03001200}
1201
Philipp Zabel79924ca2014-07-23 12:28:45 -03001202int coda_alloc_aux_buf(struct coda_dev *dev, struct coda_aux_buf *buf,
1203 size_t size, const char *name, struct dentry *parent)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001204{
1205 buf->vaddr = dma_alloc_coherent(&dev->plat_dev->dev, size, &buf->paddr,
1206 GFP_KERNEL);
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001207 if (!buf->vaddr) {
1208 v4l2_err(&dev->v4l2_dev,
1209 "Failed to allocate %s buffer of size %u\n",
1210 name, size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001211 return -ENOMEM;
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001212 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001213
1214 buf->size = size;
1215
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001216 if (name && parent) {
1217 buf->blob.data = buf->vaddr;
1218 buf->blob.size = size;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001219 buf->dentry = debugfs_create_blob(name, 0644, parent,
1220 &buf->blob);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001221 if (!buf->dentry)
1222 dev_warn(&dev->plat_dev->dev,
1223 "failed to create debugfs entry %s\n", name);
1224 }
1225
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001226 return 0;
1227}
1228
Philipp Zabel79924ca2014-07-23 12:28:45 -03001229void coda_free_aux_buf(struct coda_dev *dev,
1230 struct coda_aux_buf *buf)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001231{
1232 if (buf->vaddr) {
1233 dma_free_coherent(&dev->plat_dev->dev, buf->size,
1234 buf->vaddr, buf->paddr);
1235 buf->vaddr = NULL;
1236 buf->size = 0;
Peter Seidererd446ec82015-03-24 14:30:48 -03001237 debugfs_remove(buf->dentry);
1238 buf->dentry = NULL;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001239 }
1240}
1241
Javier Martin186b2502012-07-26 05:53:35 -03001242static int coda_start_streaming(struct vb2_queue *q, unsigned int count)
1243{
1244 struct coda_ctx *ctx = vb2_get_drv_priv(q);
1245 struct v4l2_device *v4l2_dev = &ctx->dev->v4l2_dev;
Javier Martin186b2502012-07-26 05:53:35 -03001246 struct coda_q_data *q_data_src, *q_data_dst;
Philipp Zabelb9063522014-08-05 14:00:10 -03001247 struct vb2_buffer *buf;
Philipp Zabeld35167a2013-05-23 10:42:59 -03001248 int ret = 0;
Javier Martin186b2502012-07-26 05:53:35 -03001249
Philipp Zabelb96904e2013-05-23 10:42:58 -03001250 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001251 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001252 if (q_data_src->fourcc == V4L2_PIX_FMT_H264 ||
1253 (q_data_src->fourcc == V4L2_PIX_FMT_JPEG &&
1254 ctx->dev->devtype->product == CODA_7541)) {
Michael Olbricheabed932014-07-18 07:22:40 -03001255 /* copy the buffers that where queued before streamon */
1256 mutex_lock(&ctx->bitstream_mutex);
1257 coda_fill_bitstream(ctx);
1258 mutex_unlock(&ctx->bitstream_mutex);
1259
Philipp Zabelb9063522014-08-05 14:00:10 -03001260 if (coda_get_bitstream_payload(ctx) < 512) {
1261 ret = -EINVAL;
1262 goto err;
1263 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001264 } else {
Philipp Zabelb9063522014-08-05 14:00:10 -03001265 if (count < 1) {
1266 ret = -EINVAL;
1267 goto err;
1268 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001269 }
1270
1271 ctx->streamon_out = 1;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001272 } else {
Philipp Zabelb9063522014-08-05 14:00:10 -03001273 if (count < 1) {
1274 ret = -EINVAL;
1275 goto err;
1276 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001277
1278 ctx->streamon_cap = 1;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001279 }
Javier Martin186b2502012-07-26 05:53:35 -03001280
Philipp Zabelb96904e2013-05-23 10:42:58 -03001281 /* Don't start the coda unless both queues are on */
1282 if (!(ctx->streamon_out & ctx->streamon_cap))
1283 return 0;
Javier Martin186b2502012-07-26 05:53:35 -03001284
Philipp Zabel23b6ee52015-03-24 14:30:55 -03001285 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1286 if ((q_data_src->width != q_data_dst->width &&
1287 round_up(q_data_src->width, 16) != q_data_dst->width) ||
1288 (q_data_src->height != q_data_dst->height &&
1289 round_up(q_data_src->height, 16) != q_data_dst->height)) {
1290 v4l2_err(v4l2_dev, "can't convert %dx%d to %dx%d\n",
1291 q_data_src->width, q_data_src->height,
1292 q_data_dst->width, q_data_dst->height);
1293 ret = -EINVAL;
1294 goto err;
1295 }
1296
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001297 /* Allow BIT decoder device_run with no new buffers queued */
Philipp Zabela22496c2015-01-23 13:51:33 -03001298 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit)
Philipp Zabel14604e32014-07-11 06:36:22 -03001299 v4l2_m2m_set_src_buffered(ctx->fh.m2m_ctx, true);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001300
Philipp Zabelb96904e2013-05-23 10:42:58 -03001301 ctx->gopcounter = ctx->params.gop_size - 1;
Javier Martin186b2502012-07-26 05:53:35 -03001302
Philipp Zabelb96904e2013-05-23 10:42:58 -03001303 ctx->codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
1304 q_data_dst->fourcc);
1305 if (!ctx->codec) {
Javier Martin186b2502012-07-26 05:53:35 -03001306 v4l2_err(v4l2_dev, "couldn't tell instance type.\n");
Philipp Zabelb9063522014-08-05 14:00:10 -03001307 ret = -EINVAL;
1308 goto err;
Javier Martin186b2502012-07-26 05:53:35 -03001309 }
1310
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001311 if (q_data_dst->fourcc == V4L2_PIX_FMT_JPEG)
1312 ctx->params.gop_size = 1;
1313 ctx->gopcounter = ctx->params.gop_size - 1;
1314
Philipp Zabela1192a12014-07-23 12:28:40 -03001315 ret = ctx->ops->start_streaming(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001316 if (ctx->inst_type == CODA_INST_DECODER) {
Philipp Zabel89548442014-07-11 06:36:17 -03001317 if (ret == -EAGAIN)
Philipp Zabel918c66f2013-06-27 06:59:01 -03001318 return 0;
Philipp Zabel89548442014-07-11 06:36:17 -03001319 else if (ret < 0)
Philipp Zabelb9063522014-08-05 14:00:10 -03001320 goto err;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001321 }
1322
Philipp Zabel89548442014-07-11 06:36:17 -03001323 ctx->initialized = 1;
1324 return ret;
Philipp Zabelb9063522014-08-05 14:00:10 -03001325
1326err:
1327 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1328 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b58c52014-10-21 13:25:52 -03001329 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001330 } else {
1331 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b58c52014-10-21 13:25:52 -03001332 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001333 }
1334 return ret;
Philipp Zabel89548442014-07-11 06:36:17 -03001335}
1336
Hans Verkuile37559b2014-04-17 02:47:21 -03001337static void coda_stop_streaming(struct vb2_queue *q)
Javier Martin186b2502012-07-26 05:53:35 -03001338{
1339 struct coda_ctx *ctx = vb2_get_drv_priv(q);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03001340 struct coda_dev *dev = ctx->dev;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001341 struct vb2_buffer *buf;
Philipp Zabel5c76c2c2015-03-24 14:30:56 -03001342 bool stop;
1343
1344 stop = ctx->streamon_out && ctx->streamon_cap;
Javier Martin186b2502012-07-26 05:53:35 -03001345
1346 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001347 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001348 "%s: output\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001349 ctx->streamon_out = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001350
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001351 coda_bit_stream_end_flag(ctx);
Philipp Zabel4a31b522014-08-05 14:00:11 -03001352
Philipp Zabel6dd5ef52015-01-23 13:51:26 -03001353 ctx->qsequence = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001354
1355 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
1356 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001357 } else {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001358 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001359 "%s: capture\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001360 ctx->streamon_cap = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001361
1362 ctx->osequence = 0;
Philipp Zabelcb2c0282014-07-11 06:36:33 -03001363 ctx->sequence_offset = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001364
1365 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
1366 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001367 }
1368
Philipp Zabel5c76c2c2015-03-24 14:30:56 -03001369 if (stop) {
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001370 struct coda_buffer_meta *meta;
Philipp Zabel846ced92014-07-11 06:36:31 -03001371
Philipp Zabelf4706d62015-01-23 13:51:27 -03001372 if (ctx->ops->seq_end_work) {
1373 queue_work(dev->workqueue, &ctx->seq_end_work);
1374 flush_work(&ctx->seq_end_work);
1375 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001376 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001377 while (!list_empty(&ctx->buffer_meta_list)) {
1378 meta = list_first_entry(&ctx->buffer_meta_list,
1379 struct coda_buffer_meta, list);
1380 list_del(&meta->list);
1381 kfree(meta);
Philipp Zabel846ced92014-07-11 06:36:31 -03001382 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001383 mutex_unlock(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001384 kfifo_init(&ctx->bitstream_fifo,
1385 ctx->bitstream.vaddr, ctx->bitstream.size);
Philipp Zabelf4706d62015-01-23 13:51:27 -03001386 ctx->initialized = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001387 ctx->runcounter = 0;
Philipp Zabelf157cf42014-09-29 09:53:42 -03001388 ctx->aborting = 0;
Philipp Zabel62bed142012-07-25 10:40:39 -03001389 }
Javier Martin186b2502012-07-26 05:53:35 -03001390}
1391
Philipp Zabel121cacf2014-07-18 07:22:42 -03001392static const struct vb2_ops coda_qops = {
Javier Martin186b2502012-07-26 05:53:35 -03001393 .queue_setup = coda_queue_setup,
1394 .buf_prepare = coda_buf_prepare,
1395 .buf_queue = coda_buf_queue,
Javier Martin186b2502012-07-26 05:53:35 -03001396 .start_streaming = coda_start_streaming,
1397 .stop_streaming = coda_stop_streaming,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001398 .wait_prepare = vb2_ops_wait_prepare,
1399 .wait_finish = vb2_ops_wait_finish,
Javier Martin186b2502012-07-26 05:53:35 -03001400};
1401
1402static int coda_s_ctrl(struct v4l2_ctrl *ctrl)
1403{
1404 struct coda_ctx *ctx =
1405 container_of(ctrl->handler, struct coda_ctx, ctrls);
1406
1407 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1408 "s_ctrl: id = %d, val = %d\n", ctrl->id, ctrl->val);
1409
1410 switch (ctrl->id) {
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001411 case V4L2_CID_HFLIP:
1412 if (ctrl->val)
1413 ctx->params.rot_mode |= CODA_MIR_HOR;
1414 else
1415 ctx->params.rot_mode &= ~CODA_MIR_HOR;
1416 break;
1417 case V4L2_CID_VFLIP:
1418 if (ctrl->val)
1419 ctx->params.rot_mode |= CODA_MIR_VER;
1420 else
1421 ctx->params.rot_mode &= ~CODA_MIR_VER;
1422 break;
Javier Martin186b2502012-07-26 05:53:35 -03001423 case V4L2_CID_MPEG_VIDEO_BITRATE:
1424 ctx->params.bitrate = ctrl->val / 1000;
1425 break;
1426 case V4L2_CID_MPEG_VIDEO_GOP_SIZE:
1427 ctx->params.gop_size = ctrl->val;
1428 break;
1429 case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP:
1430 ctx->params.h264_intra_qp = ctrl->val;
1431 break;
1432 case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP:
1433 ctx->params.h264_inter_qp = ctrl->val;
1434 break;
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001435 case V4L2_CID_MPEG_VIDEO_H264_MIN_QP:
1436 ctx->params.h264_min_qp = ctrl->val;
1437 break;
1438 case V4L2_CID_MPEG_VIDEO_H264_MAX_QP:
1439 ctx->params.h264_max_qp = ctrl->val;
1440 break;
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001441 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA:
1442 ctx->params.h264_deblk_alpha = ctrl->val;
1443 break;
1444 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA:
1445 ctx->params.h264_deblk_beta = ctrl->val;
1446 break;
1447 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
1448 ctx->params.h264_deblk_enabled = (ctrl->val ==
1449 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1450 break;
Javier Martin186b2502012-07-26 05:53:35 -03001451 case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP:
1452 ctx->params.mpeg4_intra_qp = ctrl->val;
1453 break;
1454 case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP:
1455 ctx->params.mpeg4_inter_qp = ctrl->val;
1456 break;
1457 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
1458 ctx->params.slice_mode = ctrl->val;
1459 break;
1460 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB:
1461 ctx->params.slice_max_mb = ctrl->val;
1462 break;
Philipp Zabelc566c782012-08-08 11:59:38 -03001463 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES:
1464 ctx->params.slice_max_bits = ctrl->val * 8;
1465 break;
Javier Martin186b2502012-07-26 05:53:35 -03001466 case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
1467 break;
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001468 case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB:
1469 ctx->params.intra_refresh = ctrl->val;
1470 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001471 case V4L2_CID_JPEG_COMPRESSION_QUALITY:
1472 coda_set_jpeg_compression_quality(ctx, ctrl->val);
1473 break;
1474 case V4L2_CID_JPEG_RESTART_INTERVAL:
1475 ctx->params.jpeg_restart_interval = ctrl->val;
1476 break;
Javier Martin186b2502012-07-26 05:53:35 -03001477 default:
1478 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1479 "Invalid control, id=%d, val=%d\n",
1480 ctrl->id, ctrl->val);
1481 return -EINVAL;
1482 }
1483
1484 return 0;
1485}
1486
Philipp Zabel814c3762014-07-18 07:22:45 -03001487static const struct v4l2_ctrl_ops coda_ctrl_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001488 .s_ctrl = coda_s_ctrl,
1489};
1490
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001491static void coda_encode_ctrls(struct coda_ctx *ctx)
Javier Martin186b2502012-07-26 05:53:35 -03001492{
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001493 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel92b042e2015-03-18 08:15:36 -03001494 V4L2_CID_MPEG_VIDEO_BITRATE, 0, 32767000, 1000, 0);
Javier Martin186b2502012-07-26 05:53:35 -03001495 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1496 V4L2_CID_MPEG_VIDEO_GOP_SIZE, 1, 60, 1, 16);
1497 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001498 V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP, 0, 51, 1, 25);
Javier Martin186b2502012-07-26 05:53:35 -03001499 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001500 V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP, 0, 51, 1, 25);
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001501 if (ctx->dev->devtype->product != CODA_960) {
1502 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1503 V4L2_CID_MPEG_VIDEO_H264_MIN_QP, 0, 51, 1, 12);
1504 }
1505 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1506 V4L2_CID_MPEG_VIDEO_H264_MAX_QP, 0, 51, 1, 51);
Javier Martin186b2502012-07-26 05:53:35 -03001507 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001508 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA, 0, 15, 1, 0);
1509 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1510 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA, 0, 15, 1, 0);
1511 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1512 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE,
1513 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED, 0x0,
1514 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1515 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Javier Martin186b2502012-07-26 05:53:35 -03001516 V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP, 1, 31, 1, 2);
1517 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1518 V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP, 1, 31, 1, 2);
1519 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1520 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE,
Philipp Zabelc566c782012-08-08 11:59:38 -03001521 V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES, 0x0,
1522 V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE);
Javier Martin186b2502012-07-26 05:53:35 -03001523 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1524 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB, 1, 0x3fffffff, 1, 1);
Philipp Zabelc566c782012-08-08 11:59:38 -03001525 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001526 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES, 1, 0x3fffffff, 1,
1527 500);
Javier Martin186b2502012-07-26 05:53:35 -03001528 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1529 V4L2_CID_MPEG_VIDEO_HEADER_MODE,
1530 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME,
1531 (1 << V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE),
1532 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME);
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001533 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001534 V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB, 0,
1535 1920 * 1088 / 256, 1, 0);
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001536}
1537
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001538static void coda_jpeg_encode_ctrls(struct coda_ctx *ctx)
1539{
1540 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1541 V4L2_CID_JPEG_COMPRESSION_QUALITY, 5, 100, 1, 50);
1542 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1543 V4L2_CID_JPEG_RESTART_INTERVAL, 0, 100, 1, 0);
1544}
1545
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001546static int coda_ctrls_setup(struct coda_ctx *ctx)
1547{
1548 v4l2_ctrl_handler_init(&ctx->ctrls, 2);
1549
1550 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1551 V4L2_CID_HFLIP, 0, 1, 1, 0);
1552 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1553 V4L2_CID_VFLIP, 0, 1, 1, 0);
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001554 if (ctx->inst_type == CODA_INST_ENCODER) {
1555 if (ctx->cvd->dst_formats[0] == V4L2_PIX_FMT_JPEG)
1556 coda_jpeg_encode_ctrls(ctx);
1557 else
1558 coda_encode_ctrls(ctx);
1559 }
Javier Martin186b2502012-07-26 05:53:35 -03001560
1561 if (ctx->ctrls.error) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001562 v4l2_err(&ctx->dev->v4l2_dev,
1563 "control initialization error (%d)",
Javier Martin186b2502012-07-26 05:53:35 -03001564 ctx->ctrls.error);
1565 return -EINVAL;
1566 }
1567
1568 return v4l2_ctrl_handler_setup(&ctx->ctrls);
1569}
1570
Philipp Zabel121cacf2014-07-18 07:22:42 -03001571static int coda_queue_init(struct coda_ctx *ctx, struct vb2_queue *vq)
Javier Martin186b2502012-07-26 05:53:35 -03001572{
Philipp Zabel121cacf2014-07-18 07:22:42 -03001573 vq->drv_priv = ctx;
1574 vq->ops = &coda_qops;
1575 vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
1576 vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
1577 vq->lock = &ctx->dev->dev_mutex;
Kamil Debskie4af23d2015-02-23 09:26:18 -03001578 /* One way to indicate end-of-stream for coda is to set the
1579 * bytesused == 0. However by default videobuf2 handles bytesused
1580 * equal to 0 as a special case and changes its value to the size
1581 * of the buffer. Set the allow_zero_bytesused flag, so
1582 * that videobuf2 will keep the value of bytesused intact.
1583 */
1584 vq->allow_zero_bytesused = 1;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001585
1586 return vb2_queue_init(vq);
1587}
1588
Philipp Zabel79924ca2014-07-23 12:28:45 -03001589int coda_encoder_queue_init(void *priv, struct vb2_queue *src_vq,
1590 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001591{
Javier Martin186b2502012-07-26 05:53:35 -03001592 int ret;
1593
Javier Martin186b2502012-07-26 05:53:35 -03001594 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001595 src_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001596 src_vq->mem_ops = &vb2_dma_contig_memops;
1597
Philipp Zabel121cacf2014-07-18 07:22:42 -03001598 ret = coda_queue_init(priv, src_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001599 if (ret)
1600 return ret;
1601
Javier Martin186b2502012-07-26 05:53:35 -03001602 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001603 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001604 dst_vq->mem_ops = &vb2_dma_contig_memops;
1605
Philipp Zabel121cacf2014-07-18 07:22:42 -03001606 return coda_queue_init(priv, dst_vq);
1607}
1608
Philipp Zabel79924ca2014-07-23 12:28:45 -03001609int coda_decoder_queue_init(void *priv, struct vb2_queue *src_vq,
1610 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001611{
1612 int ret;
1613
1614 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabelbb04aa62015-01-23 13:51:30 -03001615 src_vq->io_modes = VB2_DMABUF | VB2_MMAP | VB2_USERPTR;
1616 src_vq->mem_ops = &vb2_vmalloc_memops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001617
1618 ret = coda_queue_init(priv, src_vq);
1619 if (ret)
1620 return ret;
1621
1622 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1623 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
1624 dst_vq->mem_ops = &vb2_dma_contig_memops;
1625
1626 return coda_queue_init(priv, dst_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001627}
1628
Philipp Zabele11f3e62012-07-25 09:16:58 -03001629static int coda_next_free_instance(struct coda_dev *dev)
1630{
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001631 int idx = ffz(dev->instance_mask);
1632
1633 if ((idx < 0) ||
1634 (dev->devtype->product == CODA_DX6 && idx > CODADX6_MAX_INSTANCES))
1635 return -EBUSY;
1636
1637 return idx;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001638}
1639
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001640/*
1641 * File operations
1642 */
1643
1644static int coda_open(struct file *file)
Javier Martin186b2502012-07-26 05:53:35 -03001645{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001646 struct video_device *vdev = video_devdata(file);
1647 struct coda_dev *dev = video_get_drvdata(vdev);
Javier Martin186b2502012-07-26 05:53:35 -03001648 struct coda_ctx *ctx = NULL;
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001649 char *name;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001650 int ret;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001651 int idx;
Javier Martin186b2502012-07-26 05:53:35 -03001652
Philipp Zabelf23797b2014-08-06 08:02:23 -03001653 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Javier Martin186b2502012-07-26 05:53:35 -03001654 if (!ctx)
1655 return -ENOMEM;
1656
Fabio Estevamf82bc202013-08-21 11:14:16 -03001657 idx = coda_next_free_instance(dev);
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001658 if (idx < 0) {
1659 ret = idx;
Fabio Estevamf82bc202013-08-21 11:14:16 -03001660 goto err_coda_max;
1661 }
1662 set_bit(idx, &dev->instance_mask);
1663
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001664 name = kasprintf(GFP_KERNEL, "context%d", idx);
Peter Seiderera7f933a2015-03-24 14:30:47 -03001665 if (!name) {
1666 ret = -ENOMEM;
1667 goto err_coda_name_init;
1668 }
1669
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001670 ctx->debugfs_entry = debugfs_create_dir(name, dev->debugfs_root);
1671 kfree(name);
1672
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001673 ctx->cvd = to_coda_video_device(vdev);
1674 ctx->inst_type = ctx->cvd->type;
1675 ctx->ops = ctx->cvd->ops;
Philipp Zabela22496c2015-01-23 13:51:33 -03001676 ctx->use_bit = !ctx->cvd->direct;
Philipp Zabel32b6f202014-07-11 06:36:20 -03001677 init_completion(&ctx->completion);
1678 INIT_WORK(&ctx->pic_run_work, coda_pic_run_work);
Philipp Zabel747d7642015-01-23 13:51:31 -03001679 if (ctx->ops->seq_end_work)
1680 INIT_WORK(&ctx->seq_end_work, ctx->ops->seq_end_work);
Javier Martin186b2502012-07-26 05:53:35 -03001681 v4l2_fh_init(&ctx->fh, video_devdata(file));
1682 file->private_data = &ctx->fh;
1683 v4l2_fh_add(&ctx->fh);
1684 ctx->dev = dev;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001685 ctx->idx = idx;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001686 switch (dev->devtype->product) {
Philipp Zabel89548442014-07-11 06:36:17 -03001687 case CODA_960:
Philipp Zabel2bf299c2014-09-29 09:53:46 -03001688 ctx->frame_mem_ctrl = 1 << 12;
1689 /* fallthrough */
1690 case CODA_7541:
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001691 ctx->reg_idx = 0;
1692 break;
1693 default:
1694 ctx->reg_idx = idx;
1695 }
Fabio Estevamf82bc202013-08-21 11:14:16 -03001696
Philipp Zabel1e172732014-07-11 06:36:23 -03001697 /* Power up and upload firmware if necessary */
1698 ret = pm_runtime_get_sync(&dev->plat_dev->dev);
1699 if (ret < 0) {
1700 v4l2_err(&dev->v4l2_dev, "failed to power up: %d\n", ret);
1701 goto err_pm_get;
1702 }
1703
Fabio Estevam79830db2013-08-21 11:14:17 -03001704 ret = clk_prepare_enable(dev->clk_per);
1705 if (ret)
1706 goto err_clk_per;
1707
1708 ret = clk_prepare_enable(dev->clk_ahb);
1709 if (ret)
1710 goto err_clk_ahb;
1711
Javier Martin186b2502012-07-26 05:53:35 -03001712 set_default_params(ctx);
Philipp Zabela1192a12014-07-23 12:28:40 -03001713 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx,
1714 ctx->ops->queue_init);
Philipp Zabel14604e32014-07-11 06:36:22 -03001715 if (IS_ERR(ctx->fh.m2m_ctx)) {
1716 ret = PTR_ERR(ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -03001717
1718 v4l2_err(&dev->v4l2_dev, "%s return error (%d)\n",
1719 __func__, ret);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001720 goto err_ctx_init;
Javier Martin186b2502012-07-26 05:53:35 -03001721 }
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001722
Javier Martin186b2502012-07-26 05:53:35 -03001723 ret = coda_ctrls_setup(ctx);
1724 if (ret) {
1725 v4l2_err(&dev->v4l2_dev, "failed to setup coda controls\n");
Fabio Estevamf82bc202013-08-21 11:14:16 -03001726 goto err_ctrls_setup;
Javier Martin186b2502012-07-26 05:53:35 -03001727 }
1728
1729 ctx->fh.ctrl_handler = &ctx->ctrls;
1730
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001731 mutex_init(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001732 mutex_init(&ctx->buffer_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001733 INIT_LIST_HEAD(&ctx->buffer_meta_list);
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001734
Javier Martin186b2502012-07-26 05:53:35 -03001735 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001736 list_add(&ctx->list, &dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03001737 coda_unlock(ctx);
1738
Javier Martin186b2502012-07-26 05:53:35 -03001739 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Created instance %d (%p)\n",
1740 ctx->idx, ctx);
1741
1742 return 0;
1743
Fabio Estevamf82bc202013-08-21 11:14:16 -03001744err_ctrls_setup:
Philipp Zabel14604e32014-07-11 06:36:22 -03001745 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001746err_ctx_init:
1747 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevam79830db2013-08-21 11:14:17 -03001748err_clk_ahb:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001749 clk_disable_unprepare(dev->clk_per);
Fabio Estevam79830db2013-08-21 11:14:17 -03001750err_clk_per:
Philipp Zabel1e172732014-07-11 06:36:23 -03001751 pm_runtime_put_sync(&dev->plat_dev->dev);
1752err_pm_get:
Javier Martin186b2502012-07-26 05:53:35 -03001753 v4l2_fh_del(&ctx->fh);
1754 v4l2_fh_exit(&ctx->fh);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001755 clear_bit(ctx->idx, &dev->instance_mask);
Peter Seiderera7f933a2015-03-24 14:30:47 -03001756err_coda_name_init:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001757err_coda_max:
Javier Martin186b2502012-07-26 05:53:35 -03001758 kfree(ctx);
1759 return ret;
1760}
1761
1762static int coda_release(struct file *file)
1763{
1764 struct coda_dev *dev = video_drvdata(file);
1765 struct coda_ctx *ctx = fh_to_ctx(file->private_data);
1766
1767 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Releasing instance %p\n",
1768 ctx);
1769
Philipp Zabela22496c2015-01-23 13:51:33 -03001770 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit)
Philipp Zabeld4bb75f2014-10-08 13:09:11 -03001771 coda_bit_stream_end_flag(ctx);
1772
Philipp Zabel918c66f2013-06-27 06:59:01 -03001773 /* If this instance is running, call .job_abort and wait for it to end */
Philipp Zabel14604e32014-07-11 06:36:22 -03001774 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001775
1776 /* In case the instance was not running, we still need to call SEQ_END */
Philipp Zabel747d7642015-01-23 13:51:31 -03001777 if (ctx->initialized && ctx->ops->seq_end_work) {
Philipp Zabel32b6f202014-07-11 06:36:20 -03001778 queue_work(dev->workqueue, &ctx->seq_end_work);
1779 flush_work(&ctx->seq_end_work);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001780 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001781
Javier Martin186b2502012-07-26 05:53:35 -03001782 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001783 list_del(&ctx->list);
Javier Martin186b2502012-07-26 05:53:35 -03001784 coda_unlock(ctx);
1785
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001786 if (ctx->dev->devtype->product == CODA_DX6)
1787 coda_free_aux_buf(dev, &ctx->workbuf);
1788
Javier Martin186b2502012-07-26 05:53:35 -03001789 v4l2_ctrl_handler_free(&ctx->ctrls);
Javier Martin186b2502012-07-26 05:53:35 -03001790 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001791 clk_disable_unprepare(dev->clk_per);
Philipp Zabel1e172732014-07-11 06:36:23 -03001792 pm_runtime_put_sync(&dev->plat_dev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001793 v4l2_fh_del(&ctx->fh);
1794 v4l2_fh_exit(&ctx->fh);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001795 clear_bit(ctx->idx, &dev->instance_mask);
Philipp Zabel58b76772014-07-23 12:28:43 -03001796 if (ctx->ops->release)
1797 ctx->ops->release(ctx);
Philipp Zabele1519e82015-01-23 13:51:17 -03001798 debugfs_remove_recursive(ctx->debugfs_entry);
Javier Martin186b2502012-07-26 05:53:35 -03001799 kfree(ctx);
1800
1801 return 0;
1802}
1803
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001804static const struct v4l2_file_operations coda_fops = {
Javier Martin186b2502012-07-26 05:53:35 -03001805 .owner = THIS_MODULE,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001806 .open = coda_open,
Javier Martin186b2502012-07-26 05:53:35 -03001807 .release = coda_release,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001808 .poll = v4l2_m2m_fop_poll,
Javier Martin186b2502012-07-26 05:53:35 -03001809 .unlocked_ioctl = video_ioctl2,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001810 .mmap = v4l2_m2m_fop_mmap,
Javier Martin186b2502012-07-26 05:53:35 -03001811};
1812
Philipp Zabel87048bb2012-07-02 07:03:43 -03001813static int coda_hw_init(struct coda_dev *dev)
Javier Martin186b2502012-07-26 05:53:35 -03001814{
Javier Martin186b2502012-07-26 05:53:35 -03001815 u32 data;
1816 u16 *p;
Fabio Estevam79830db2013-08-21 11:14:17 -03001817 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001818
Fabio Estevam79830db2013-08-21 11:14:17 -03001819 ret = clk_prepare_enable(dev->clk_per);
1820 if (ret)
Philipp Zabel1e172732014-07-11 06:36:23 -03001821 goto err_clk_per;
Fabio Estevam79830db2013-08-21 11:14:17 -03001822
1823 ret = clk_prepare_enable(dev->clk_ahb);
1824 if (ret)
1825 goto err_clk_ahb;
Javier Martin186b2502012-07-26 05:53:35 -03001826
Philipp Zabel8f452842014-07-11 06:36:35 -03001827 if (dev->rstc)
1828 reset_control_reset(dev->rstc);
1829
Javier Martin186b2502012-07-26 05:53:35 -03001830 /*
1831 * Copy the first CODA_ISRAM_SIZE in the internal SRAM.
Philipp Zabel87048bb2012-07-02 07:03:43 -03001832 * The 16-bit chars in the code buffer are in memory access
1833 * order, re-sort them to CODA order for register download.
Javier Martin186b2502012-07-26 05:53:35 -03001834 * Data in this SRAM survives a reboot.
1835 */
Philipp Zabel87048bb2012-07-02 07:03:43 -03001836 p = (u16 *)dev->codebuf.vaddr;
1837 if (dev->devtype->product == CODA_DX6) {
1838 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1839 data = CODA_DOWN_ADDRESS_SET(i) |
1840 CODA_DOWN_DATA_SET(p[i ^ 1]);
1841 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1842 }
1843 } else {
1844 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1845 data = CODA_DOWN_ADDRESS_SET(i) |
1846 CODA_DOWN_DATA_SET(p[round_down(i, 4) +
1847 3 - (i % 4)]);
1848 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1849 }
Javier Martin186b2502012-07-26 05:53:35 -03001850 }
Javier Martin186b2502012-07-26 05:53:35 -03001851
Philipp Zabel9acf7692013-05-23 10:42:56 -03001852 /* Clear registers */
1853 for (i = 0; i < 64; i++)
1854 coda_write(dev, 0, CODA_REG_BIT_CODE_BUF_ADDR + i * 4);
1855
Javier Martin186b2502012-07-26 05:53:35 -03001856 /* Tell the BIT where to find everything it needs */
Philipp Zabel89548442014-07-11 06:36:17 -03001857 if (dev->devtype->product == CODA_960 ||
1858 dev->devtype->product == CODA_7541) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001859 coda_write(dev, dev->tempbuf.paddr,
1860 CODA_REG_BIT_TEMP_BUF_ADDR);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001861 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001862 } else {
1863 coda_write(dev, dev->workbuf.paddr,
1864 CODA_REG_BIT_WORK_BUF_ADDR);
1865 }
Javier Martin186b2502012-07-26 05:53:35 -03001866 coda_write(dev, dev->codebuf.paddr,
1867 CODA_REG_BIT_CODE_BUF_ADDR);
1868 coda_write(dev, 0, CODA_REG_BIT_CODE_RUN);
1869
1870 /* Set default values */
1871 switch (dev->devtype->product) {
1872 case CODA_DX6:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001873 coda_write(dev, CODADX6_STREAM_BUF_PIC_FLUSH,
1874 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001875 break;
1876 default:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001877 coda_write(dev, CODA7_STREAM_BUF_PIC_FLUSH,
1878 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001879 }
Philipp Zabel89548442014-07-11 06:36:17 -03001880 if (dev->devtype->product == CODA_960)
1881 coda_write(dev, 1 << 12, CODA_REG_BIT_FRAME_MEM_CTRL);
1882 else
1883 coda_write(dev, 0, CODA_REG_BIT_FRAME_MEM_CTRL);
Philipp Zabel10436672012-07-02 09:03:55 -03001884
1885 if (dev->devtype->product != CODA_DX6)
1886 coda_write(dev, 0, CODA7_REG_BIT_AXI_SRAM_USE);
1887
Javier Martin186b2502012-07-26 05:53:35 -03001888 coda_write(dev, CODA_INT_INTERRUPT_ENABLE,
1889 CODA_REG_BIT_INT_ENABLE);
1890
1891 /* Reset VPU and start processor */
1892 data = coda_read(dev, CODA_REG_BIT_CODE_RESET);
1893 data |= CODA_REG_RESET_ENABLE;
1894 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1895 udelay(10);
1896 data &= ~CODA_REG_RESET_ENABLE;
1897 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1898 coda_write(dev, CODA_REG_RUN_ENABLE, CODA_REG_BIT_CODE_RUN);
1899
Philipp Zabelfe7554e2014-07-11 06:36:24 -03001900 clk_disable_unprepare(dev->clk_ahb);
1901 clk_disable_unprepare(dev->clk_per);
1902
1903 return 0;
1904
1905err_clk_ahb:
1906 clk_disable_unprepare(dev->clk_per);
1907err_clk_per:
1908 return ret;
1909}
1910
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001911static int coda_register_device(struct coda_dev *dev, int i)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001912{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001913 struct video_device *vfd = &dev->vfd[i];
1914
Dan Carpenter88ca3af2015-01-08 07:07:08 -03001915 if (i >= dev->devtype->num_vdevs)
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001916 return -EINVAL;
1917
Philipp Zabelbf249da2015-03-24 14:30:50 -03001918 strlcpy(vfd->name, dev->devtype->vdevs[i]->name, sizeof(vfd->name));
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001919 vfd->fops = &coda_fops;
1920 vfd->ioctl_ops = &coda_ioctl_ops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001921 vfd->release = video_device_release_empty,
1922 vfd->lock = &dev->dev_mutex;
1923 vfd->v4l2_dev = &dev->v4l2_dev;
1924 vfd->vfl_dir = VFL_DIR_M2M;
1925 video_set_drvdata(vfd, dev);
1926
Philipp Zabela188a662014-08-05 14:00:20 -03001927 /* Not applicable, use the selection API instead */
1928 v4l2_disable_ioctl(vfd, VIDIOC_CROPCAP);
1929 v4l2_disable_ioctl(vfd, VIDIOC_G_CROP);
1930 v4l2_disable_ioctl(vfd, VIDIOC_S_CROP);
1931
Philipp Zabel121cacf2014-07-18 07:22:42 -03001932 return video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1933}
1934
Javier Martin186b2502012-07-26 05:53:35 -03001935static void coda_fw_callback(const struct firmware *fw, void *context)
1936{
1937 struct coda_dev *dev = context;
1938 struct platform_device *pdev = dev->plat_dev;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001939 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001940
1941 if (!fw) {
1942 v4l2_err(&dev->v4l2_dev, "firmware request failed\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001943 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001944 }
1945
1946 /* allocate auxiliary per-device code buffer for the BIT processor */
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001947 ret = coda_alloc_aux_buf(dev, &dev->codebuf, fw->size, "codebuf",
1948 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03001949 if (ret < 0)
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001950 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001951
Philipp Zabel87048bb2012-07-02 07:03:43 -03001952 /* Copy the whole firmware image to the code buffer */
1953 memcpy(dev->codebuf.vaddr, fw->data, fw->size);
1954 release_firmware(fw);
1955
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001956 ret = coda_hw_init(dev);
1957 if (ret < 0) {
1958 v4l2_err(&dev->v4l2_dev, "HW initialization failed\n");
1959 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001960 }
1961
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001962 ret = coda_check_firmware(dev);
1963 if (ret < 0)
1964 goto put_pm;
1965
Javier Martin186b2502012-07-26 05:53:35 -03001966 dev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
1967 if (IS_ERR(dev->alloc_ctx)) {
1968 v4l2_err(&dev->v4l2_dev, "Failed to alloc vb2 context\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001969 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001970 }
1971
1972 dev->m2m_dev = v4l2_m2m_init(&coda_m2m_ops);
1973 if (IS_ERR(dev->m2m_dev)) {
1974 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
1975 goto rel_ctx;
1976 }
1977
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001978 for (i = 0; i < dev->devtype->num_vdevs; i++) {
1979 ret = coda_register_device(dev, i);
1980 if (ret) {
1981 v4l2_err(&dev->v4l2_dev,
1982 "Failed to register %s video device: %d\n",
1983 dev->devtype->vdevs[i]->name, ret);
1984 goto rel_vfd;
1985 }
Philipp Zabel121cacf2014-07-18 07:22:42 -03001986 }
1987
1988 v4l2_info(&dev->v4l2_dev, "codec registered as /dev/video[%d-%d]\n",
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001989 dev->vfd[0].num, dev->vfd[i - 1].num);
Javier Martin186b2502012-07-26 05:53:35 -03001990
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001991 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001992 return;
1993
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001994rel_vfd:
1995 while (--i >= 0)
1996 video_unregister_device(&dev->vfd[i]);
Javier Martin186b2502012-07-26 05:53:35 -03001997 v4l2_m2m_release(dev->m2m_dev);
1998rel_ctx:
1999 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002000put_pm:
2001 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03002002}
2003
2004static int coda_firmware_request(struct coda_dev *dev)
2005{
2006 char *fw = dev->devtype->firmware;
2007
2008 dev_dbg(&dev->plat_dev->dev, "requesting firmware '%s' for %s\n", fw,
2009 coda_product_name(dev->devtype->product));
2010
2011 return request_firmware_nowait(THIS_MODULE, true,
2012 fw, &dev->plat_dev->dev, GFP_KERNEL, dev, coda_fw_callback);
2013}
2014
2015enum coda_platform {
2016 CODA_IMX27,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002017 CODA_IMX53,
Philipp Zabel89548442014-07-11 06:36:17 -03002018 CODA_IMX6Q,
2019 CODA_IMX6DL,
Javier Martin186b2502012-07-26 05:53:35 -03002020};
2021
Emil Goodec06d8752012-08-14 17:44:42 -03002022static const struct coda_devtype coda_devdata[] = {
Javier Martin186b2502012-07-26 05:53:35 -03002023 [CODA_IMX27] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002024 .firmware = "v4l-codadx6-imx27.bin",
2025 .product = CODA_DX6,
2026 .codecs = codadx6_codecs,
2027 .num_codecs = ARRAY_SIZE(codadx6_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002028 .vdevs = codadx6_video_devices,
2029 .num_vdevs = ARRAY_SIZE(codadx6_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002030 .workbuf_size = 288 * 1024 + FMO_SLICE_SAVE_BUF_SIZE * 8 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002031 .iram_size = 0xb000,
Javier Martin186b2502012-07-26 05:53:35 -03002032 },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002033 [CODA_IMX53] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002034 .firmware = "v4l-coda7541-imx53.bin",
2035 .product = CODA_7541,
2036 .codecs = coda7_codecs,
2037 .num_codecs = ARRAY_SIZE(coda7_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002038 .vdevs = coda7_video_devices,
2039 .num_vdevs = ARRAY_SIZE(coda7_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002040 .workbuf_size = 128 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002041 .tempbuf_size = 304 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002042 .iram_size = 0x14000,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002043 },
Philipp Zabel89548442014-07-11 06:36:17 -03002044 [CODA_IMX6Q] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002045 .firmware = "v4l-coda960-imx6q.bin",
2046 .product = CODA_960,
2047 .codecs = coda9_codecs,
2048 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002049 .vdevs = coda9_video_devices,
2050 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002051 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002052 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002053 .iram_size = 0x21000,
Philipp Zabel89548442014-07-11 06:36:17 -03002054 },
2055 [CODA_IMX6DL] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002056 .firmware = "v4l-coda960-imx6dl.bin",
2057 .product = CODA_960,
2058 .codecs = coda9_codecs,
2059 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002060 .vdevs = coda9_video_devices,
2061 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002062 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002063 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002064 .iram_size = 0x20000,
Philipp Zabel89548442014-07-11 06:36:17 -03002065 },
Javier Martin186b2502012-07-26 05:53:35 -03002066};
2067
2068static struct platform_device_id coda_platform_ids[] = {
2069 { .name = "coda-imx27", .driver_data = CODA_IMX27 },
2070 { /* sentinel */ }
2071};
2072MODULE_DEVICE_TABLE(platform, coda_platform_ids);
2073
2074#ifdef CONFIG_OF
2075static const struct of_device_id coda_dt_ids[] = {
Alexander Shiyan7b0dd9e2013-06-15 08:09:57 -03002076 { .compatible = "fsl,imx27-vpu", .data = &coda_devdata[CODA_IMX27] },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002077 { .compatible = "fsl,imx53-vpu", .data = &coda_devdata[CODA_IMX53] },
Philipp Zabel89548442014-07-11 06:36:17 -03002078 { .compatible = "fsl,imx6q-vpu", .data = &coda_devdata[CODA_IMX6Q] },
2079 { .compatible = "fsl,imx6dl-vpu", .data = &coda_devdata[CODA_IMX6DL] },
Javier Martin186b2502012-07-26 05:53:35 -03002080 { /* sentinel */ }
2081};
2082MODULE_DEVICE_TABLE(of, coda_dt_ids);
2083#endif
2084
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002085static int coda_probe(struct platform_device *pdev)
Javier Martin186b2502012-07-26 05:53:35 -03002086{
2087 const struct of_device_id *of_id =
2088 of_match_device(of_match_ptr(coda_dt_ids), &pdev->dev);
2089 const struct platform_device_id *pdev_id;
Philipp Zabel657eee72013-04-29 16:17:14 -07002090 struct coda_platform_data *pdata = pdev->dev.platform_data;
2091 struct device_node *np = pdev->dev.of_node;
2092 struct gen_pool *pool;
Javier Martin186b2502012-07-26 05:53:35 -03002093 struct coda_dev *dev;
2094 struct resource *res;
2095 int ret, irq;
2096
Philipp Zabelf23797b2014-08-06 08:02:23 -03002097 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
Philipp Zabel6da999d2014-09-29 09:53:43 -03002098 if (!dev)
Javier Martin186b2502012-07-26 05:53:35 -03002099 return -ENOMEM;
Javier Martin186b2502012-07-26 05:53:35 -03002100
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002101 pdev_id = of_id ? of_id->data : platform_get_device_id(pdev);
2102
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002103 if (of_id) {
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002104 dev->devtype = of_id->data;
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002105 } else if (pdev_id) {
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002106 dev->devtype = &coda_devdata[pdev_id->driver_data];
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002107 } else {
2108 ret = -EINVAL;
2109 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002110 }
2111
2112 spin_lock_init(&dev->irqlock);
Philipp Zabele11f3e62012-07-25 09:16:58 -03002113 INIT_LIST_HEAD(&dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03002114
2115 dev->plat_dev = pdev;
2116 dev->clk_per = devm_clk_get(&pdev->dev, "per");
2117 if (IS_ERR(dev->clk_per)) {
2118 dev_err(&pdev->dev, "Could not get per clock\n");
2119 return PTR_ERR(dev->clk_per);
2120 }
2121
2122 dev->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
2123 if (IS_ERR(dev->clk_ahb)) {
2124 dev_err(&pdev->dev, "Could not get ahb clock\n");
2125 return PTR_ERR(dev->clk_ahb);
2126 }
2127
2128 /* Get memory for physical registers */
2129 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Philipp Zabel611cbbf2013-05-21 04:19:27 -03002130 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
2131 if (IS_ERR(dev->regs_base))
2132 return PTR_ERR(dev->regs_base);
Javier Martin186b2502012-07-26 05:53:35 -03002133
2134 /* IRQ */
Philipp Zabel540b72e2014-08-05 14:00:09 -03002135 irq = platform_get_irq_byname(pdev, "bit");
2136 if (irq < 0)
2137 irq = platform_get_irq(pdev, 0);
Javier Martin186b2502012-07-26 05:53:35 -03002138 if (irq < 0) {
2139 dev_err(&pdev->dev, "failed to get irq resource\n");
Fabio Estevam7d377432014-06-04 15:46:23 -03002140 return irq;
Javier Martin186b2502012-07-26 05:53:35 -03002141 }
2142
Fabio Estevam08c8d142014-06-04 15:46:24 -03002143 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, coda_irq_handler,
2144 IRQF_ONESHOT, dev_name(&pdev->dev), dev);
2145 if (ret < 0) {
2146 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
2147 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002148 }
2149
Philipp Zabelee27aa92014-07-24 16:50:03 -03002150 dev->rstc = devm_reset_control_get_optional(&pdev->dev, NULL);
Philipp Zabel8f452842014-07-11 06:36:35 -03002151 if (IS_ERR(dev->rstc)) {
2152 ret = PTR_ERR(dev->rstc);
Philipp Zabelee27aa92014-07-24 16:50:03 -03002153 if (ret == -ENOENT || ret == -ENOSYS) {
Philipp Zabel8f452842014-07-11 06:36:35 -03002154 dev->rstc = NULL;
2155 } else {
Philipp Zabelf23797b2014-08-06 08:02:23 -03002156 dev_err(&pdev->dev, "failed get reset control: %d\n",
2157 ret);
Philipp Zabel8f452842014-07-11 06:36:35 -03002158 return ret;
2159 }
2160 }
2161
Philipp Zabel657eee72013-04-29 16:17:14 -07002162 /* Get IRAM pool from device tree or platform data */
2163 pool = of_get_named_gen_pool(np, "iram", 0);
2164 if (!pool && pdata)
2165 pool = dev_get_gen_pool(pdata->iram_dev);
2166 if (!pool) {
2167 dev_err(&pdev->dev, "iram pool not available\n");
2168 return -ENOMEM;
2169 }
2170 dev->iram_pool = pool;
2171
Javier Martin186b2502012-07-26 05:53:35 -03002172 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
2173 if (ret)
2174 return ret;
2175
2176 mutex_init(&dev->dev_mutex);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002177 mutex_init(&dev->coda_mutex);
Javier Martin186b2502012-07-26 05:53:35 -03002178
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002179 dev->debugfs_root = debugfs_create_dir("coda", NULL);
2180 if (!dev->debugfs_root)
2181 dev_warn(&pdev->dev, "failed to create debugfs root\n");
2182
Javier Martin186b2502012-07-26 05:53:35 -03002183 /* allocate auxiliary per-device buffers for the BIT processor */
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002184 if (dev->devtype->product == CODA_DX6) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002185 ret = coda_alloc_aux_buf(dev, &dev->workbuf,
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002186 dev->devtype->workbuf_size, "workbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002187 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002188 if (ret < 0)
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002189 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002190 }
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002191
2192 if (dev->devtype->tempbuf_size) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002193 ret = coda_alloc_aux_buf(dev, &dev->tempbuf,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002194 dev->devtype->tempbuf_size, "tempbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002195 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002196 if (ret < 0)
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002197 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002198 }
2199
Philipp Zabel401e9722014-07-11 06:36:43 -03002200 dev->iram.size = dev->devtype->iram_size;
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002201 dev->iram.vaddr = gen_pool_dma_alloc(dev->iram_pool, dev->iram.size,
2202 &dev->iram.paddr);
2203 if (!dev->iram.vaddr) {
Philipp Zabel8be31c82014-08-05 14:00:13 -03002204 dev_warn(&pdev->dev, "unable to alloc iram\n");
2205 } else {
Philipp Zabel811a6932015-01-23 13:51:23 -03002206 memset(dev->iram.vaddr, 0, dev->iram.size);
Philipp Zabel8be31c82014-08-05 14:00:13 -03002207 dev->iram.blob.data = dev->iram.vaddr;
2208 dev->iram.blob.size = dev->iram.size;
2209 dev->iram.dentry = debugfs_create_blob("iram", 0644,
2210 dev->debugfs_root,
2211 &dev->iram.blob);
Philipp Zabel10436672012-07-02 09:03:55 -03002212 }
2213
Philipp Zabel32b6f202014-07-11 06:36:20 -03002214 dev->workqueue = alloc_workqueue("coda", WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
2215 if (!dev->workqueue) {
2216 dev_err(&pdev->dev, "unable to alloc workqueue\n");
Fabio Estevam74d08d52014-10-04 16:40:51 -03002217 ret = -ENOMEM;
2218 goto err_v4l2_register;
Philipp Zabel32b6f202014-07-11 06:36:20 -03002219 }
2220
Javier Martin186b2502012-07-26 05:53:35 -03002221 platform_set_drvdata(pdev, dev);
2222
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002223 /*
2224 * Start activated so we can directly call coda_hw_init in
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002225 * coda_fw_callback regardless of whether CONFIG_PM is
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002226 * enabled or whether the device is associated with a PM domain.
2227 */
2228 pm_runtime_get_noresume(&pdev->dev);
2229 pm_runtime_set_active(&pdev->dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002230 pm_runtime_enable(&pdev->dev);
2231
Javier Martin186b2502012-07-26 05:53:35 -03002232 return coda_firmware_request(dev);
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002233
2234err_v4l2_register:
2235 v4l2_device_unregister(&dev->v4l2_dev);
2236 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002237}
2238
2239static int coda_remove(struct platform_device *pdev)
2240{
2241 struct coda_dev *dev = platform_get_drvdata(pdev);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002242 int i;
Javier Martin186b2502012-07-26 05:53:35 -03002243
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002244 for (i = 0; i < ARRAY_SIZE(dev->vfd); i++) {
2245 if (video_get_drvdata(&dev->vfd[i]))
2246 video_unregister_device(&dev->vfd[i]);
2247 }
Javier Martin186b2502012-07-26 05:53:35 -03002248 if (dev->m2m_dev)
2249 v4l2_m2m_release(dev->m2m_dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002250 pm_runtime_disable(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03002251 if (dev->alloc_ctx)
2252 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
2253 v4l2_device_unregister(&dev->v4l2_dev);
Philipp Zabel32b6f202014-07-11 06:36:20 -03002254 destroy_workqueue(dev->workqueue);
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002255 if (dev->iram.vaddr)
2256 gen_pool_free(dev->iram_pool, (unsigned long)dev->iram.vaddr,
2257 dev->iram.size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002258 coda_free_aux_buf(dev, &dev->codebuf);
2259 coda_free_aux_buf(dev, &dev->tempbuf);
2260 coda_free_aux_buf(dev, &dev->workbuf);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002261 debugfs_remove_recursive(dev->debugfs_root);
Javier Martin186b2502012-07-26 05:53:35 -03002262 return 0;
2263}
2264
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002265#ifdef CONFIG_PM
Philipp Zabel1e172732014-07-11 06:36:23 -03002266static int coda_runtime_resume(struct device *dev)
2267{
2268 struct coda_dev *cdev = dev_get_drvdata(dev);
2269 int ret = 0;
2270
Philipp Zabel65919e62014-07-18 07:22:36 -03002271 if (dev->pm_domain && cdev->codebuf.vaddr) {
Philipp Zabel1e172732014-07-11 06:36:23 -03002272 ret = coda_hw_init(cdev);
2273 if (ret)
2274 v4l2_err(&cdev->v4l2_dev, "HW initialization failed\n");
2275 }
2276
2277 return ret;
2278}
2279#endif
2280
2281static const struct dev_pm_ops coda_pm_ops = {
2282 SET_RUNTIME_PM_OPS(NULL, coda_runtime_resume, NULL)
2283};
2284
Javier Martin186b2502012-07-26 05:53:35 -03002285static struct platform_driver coda_driver = {
2286 .probe = coda_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002287 .remove = coda_remove,
Javier Martin186b2502012-07-26 05:53:35 -03002288 .driver = {
2289 .name = CODA_NAME,
Javier Martin186b2502012-07-26 05:53:35 -03002290 .of_match_table = of_match_ptr(coda_dt_ids),
Philipp Zabel1e172732014-07-11 06:36:23 -03002291 .pm = &coda_pm_ops,
Javier Martin186b2502012-07-26 05:53:35 -03002292 },
2293 .id_table = coda_platform_ids,
2294};
2295
2296module_platform_driver(coda_driver);
2297
2298MODULE_LICENSE("GPL");
2299MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
2300MODULE_DESCRIPTION("Coda multi-standard codec V4L2 driver");