blob: 267fda760b38d14c5a5987d2479f61077d198a35 [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
Philipp Zabela2b3e462014-07-23 12:28:39 -030064void coda_write(struct coda_dev *dev, u32 data, u32 reg)
Javier Martin186b2502012-07-26 05:53:35 -030065{
Philipp Zabeld60b18b2014-08-05 14:00:15 -030066 v4l2_dbg(2, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -030067 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
68 writel(data, dev->regs_base + reg);
69}
70
Philipp Zabela2b3e462014-07-23 12:28:39 -030071unsigned int coda_read(struct coda_dev *dev, u32 reg)
Javier Martin186b2502012-07-26 05:53:35 -030072{
73 u32 data;
Philipp Zabelf23797b2014-08-06 08:02:23 -030074
Javier Martin186b2502012-07-26 05:53:35 -030075 data = readl(dev->regs_base + reg);
Philipp Zabeld60b18b2014-08-05 14:00:15 -030076 v4l2_dbg(2, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -030077 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
78 return data;
79}
80
Philipp Zabel856d7d92014-09-29 09:53:44 -030081void coda_write_base(struct coda_ctx *ctx, struct coda_q_data *q_data,
82 struct vb2_buffer *buf, unsigned int reg_y)
83{
84 u32 base_y = vb2_dma_contig_plane_dma_addr(buf, 0);
85 u32 base_cb, base_cr;
86
87 switch (q_data->fourcc) {
88 case V4L2_PIX_FMT_YVU420:
89 /* Switch Cb and Cr for YVU420 format */
90 base_cr = base_y + q_data->bytesperline * q_data->height;
91 base_cb = base_cr + q_data->bytesperline * q_data->height / 4;
92 break;
93 case V4L2_PIX_FMT_YUV420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -030094 case V4L2_PIX_FMT_NV12:
Philipp Zabel856d7d92014-09-29 09:53:44 -030095 default:
96 base_cb = base_y + q_data->bytesperline * q_data->height;
97 base_cr = base_cb + q_data->bytesperline * q_data->height / 4;
98 break;
Philipp Zabel4de69312014-10-02 14:08:26 -030099 case V4L2_PIX_FMT_YUV422P:
100 base_cb = base_y + q_data->bytesperline * q_data->height;
101 base_cr = base_cb + q_data->bytesperline * q_data->height / 2;
Philipp Zabel856d7d92014-09-29 09:53:44 -0300102 }
103
104 coda_write(ctx->dev, base_y, reg_y);
105 coda_write(ctx->dev, base_cb, reg_y + 4);
106 coda_write(ctx->dev, base_cr, reg_y + 8);
107}
108
Philipp Zabelb96904e2013-05-23 10:42:58 -0300109#define CODA_CODEC(mode, src_fourcc, dst_fourcc, max_w, max_h) \
110 { mode, src_fourcc, dst_fourcc, max_w, max_h }
111
112/*
113 * Arrays of codecs supported by each given version of Coda:
114 * i.MX27 -> codadx6
115 * i.MX5x -> coda7
116 * i.MX6 -> coda960
117 * Use V4L2_PIX_FMT_YUV420 as placeholder for all supported YUV 4:2:0 variants
118 */
Philipp Zabel814c3762014-07-18 07:22:45 -0300119static const struct coda_codec codadx6_codecs[] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300120 CODA_CODEC(CODADX6_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 720, 576),
121 CODA_CODEC(CODADX6_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 720, 576),
Philipp Zabeldf1e74c2012-07-02 06:07:10 -0300122};
123
Philipp Zabel814c3762014-07-18 07:22:45 -0300124static const struct coda_codec coda7_codecs[] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300125 CODA_CODEC(CODA7_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1280, 720),
126 CODA_CODEC(CODA7_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1280, 720),
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300127 CODA_CODEC(CODA7_MODE_ENCODE_MJPG, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_JPEG, 8192, 8192),
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300128 CODA_CODEC(CODA7_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1088),
129 CODA_CODEC(CODA7_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300130 CODA_CODEC(CODA7_MODE_DECODE_MJPG, V4L2_PIX_FMT_JPEG, V4L2_PIX_FMT_YUV420, 8192, 8192),
Philipp Zabelb96904e2013-05-23 10:42:58 -0300131};
132
Philipp Zabel814c3762014-07-18 07:22:45 -0300133static const struct coda_codec coda9_codecs[] = {
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300134 CODA_CODEC(CODA9_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1920, 1088),
135 CODA_CODEC(CODA9_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1920, 1088),
136 CODA_CODEC(CODA9_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1088),
137 CODA_CODEC(CODA9_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabel89548442014-07-11 06:36:17 -0300138};
139
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300140struct coda_video_device {
141 const char *name;
142 enum coda_inst_type type;
143 const struct coda_context_ops *ops;
Philipp Zabela22496c2015-01-23 13:51:33 -0300144 bool direct;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300145 u32 src_formats[CODA_MAX_FORMATS];
146 u32 dst_formats[CODA_MAX_FORMATS];
147};
148
149static const struct coda_video_device coda_bit_encoder = {
150 .name = "coda-encoder",
151 .type = CODA_INST_ENCODER,
152 .ops = &coda_bit_encode_ops,
153 .src_formats = {
154 V4L2_PIX_FMT_YUV420,
155 V4L2_PIX_FMT_YVU420,
156 V4L2_PIX_FMT_NV12,
157 },
158 .dst_formats = {
159 V4L2_PIX_FMT_H264,
160 V4L2_PIX_FMT_MPEG4,
161 },
162};
163
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300164static const struct coda_video_device coda_bit_jpeg_encoder = {
165 .name = "coda-jpeg-encoder",
166 .type = CODA_INST_ENCODER,
167 .ops = &coda_bit_encode_ops,
168 .src_formats = {
169 V4L2_PIX_FMT_YUV420,
170 V4L2_PIX_FMT_YVU420,
171 V4L2_PIX_FMT_NV12,
172 V4L2_PIX_FMT_YUV422P,
173 },
174 .dst_formats = {
175 V4L2_PIX_FMT_JPEG,
176 },
177};
178
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300179static const struct coda_video_device coda_bit_decoder = {
180 .name = "coda-decoder",
181 .type = CODA_INST_DECODER,
182 .ops = &coda_bit_decode_ops,
183 .src_formats = {
184 V4L2_PIX_FMT_H264,
185 V4L2_PIX_FMT_MPEG4,
186 },
187 .dst_formats = {
188 V4L2_PIX_FMT_YUV420,
189 V4L2_PIX_FMT_YVU420,
190 V4L2_PIX_FMT_NV12,
191 },
192};
193
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300194static const struct coda_video_device coda_bit_jpeg_decoder = {
195 .name = "coda-jpeg-decoder",
196 .type = CODA_INST_DECODER,
197 .ops = &coda_bit_decode_ops,
198 .src_formats = {
199 V4L2_PIX_FMT_JPEG,
200 },
201 .dst_formats = {
202 V4L2_PIX_FMT_YUV420,
203 V4L2_PIX_FMT_YVU420,
204 V4L2_PIX_FMT_NV12,
205 V4L2_PIX_FMT_YUV422P,
206 },
207};
208
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300209static const struct coda_video_device *codadx6_video_devices[] = {
210 &coda_bit_encoder,
211};
212
213static const struct coda_video_device *coda7_video_devices[] = {
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300214 &coda_bit_jpeg_encoder,
215 &coda_bit_jpeg_decoder,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300216 &coda_bit_encoder,
217 &coda_bit_decoder,
218};
219
220static const struct coda_video_device *coda9_video_devices[] = {
221 &coda_bit_encoder,
222 &coda_bit_decoder,
223};
224
Philipp Zabelb96904e2013-05-23 10:42:58 -0300225/*
226 * Normalize all supported YUV 4:2:0 formats to the value used in the codec
227 * tables.
228 */
229static u32 coda_format_normalize_yuv(u32 fourcc)
230{
Philipp Zabel8076c7e2015-07-09 07:10:18 -0300231 switch (fourcc) {
232 case V4L2_PIX_FMT_YUV420:
233 case V4L2_PIX_FMT_YVU420:
234 case V4L2_PIX_FMT_NV12:
235 case V4L2_PIX_FMT_YUV422P:
236 return V4L2_PIX_FMT_YUV420;
237 default:
238 return fourcc;
239 }
Philipp Zabelb96904e2013-05-23 10:42:58 -0300240}
241
Philipp Zabel814c3762014-07-18 07:22:45 -0300242static const struct coda_codec *coda_find_codec(struct coda_dev *dev,
243 int src_fourcc, int dst_fourcc)
Philipp Zabelb96904e2013-05-23 10:42:58 -0300244{
Philipp Zabel814c3762014-07-18 07:22:45 -0300245 const struct coda_codec *codecs = dev->devtype->codecs;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300246 int num_codecs = dev->devtype->num_codecs;
247 int k;
248
249 src_fourcc = coda_format_normalize_yuv(src_fourcc);
250 dst_fourcc = coda_format_normalize_yuv(dst_fourcc);
251 if (src_fourcc == dst_fourcc)
252 return NULL;
253
254 for (k = 0; k < num_codecs; k++) {
255 if (codecs[k].src_fourcc == src_fourcc &&
256 codecs[k].dst_fourcc == dst_fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300257 break;
258 }
259
Philipp Zabelb96904e2013-05-23 10:42:58 -0300260 if (k == num_codecs)
Javier Martin186b2502012-07-26 05:53:35 -0300261 return NULL;
262
Philipp Zabelb96904e2013-05-23 10:42:58 -0300263 return &codecs[k];
Javier Martin186b2502012-07-26 05:53:35 -0300264}
265
Philipp Zabel57625592013-09-30 10:34:51 -0300266static void coda_get_max_dimensions(struct coda_dev *dev,
Philipp Zabel814c3762014-07-18 07:22:45 -0300267 const struct coda_codec *codec,
Philipp Zabel57625592013-09-30 10:34:51 -0300268 int *max_w, int *max_h)
269{
Philipp Zabel814c3762014-07-18 07:22:45 -0300270 const struct coda_codec *codecs = dev->devtype->codecs;
Philipp Zabel57625592013-09-30 10:34:51 -0300271 int num_codecs = dev->devtype->num_codecs;
272 unsigned int w, h;
273 int k;
274
275 if (codec) {
276 w = codec->max_w;
277 h = codec->max_h;
278 } else {
279 for (k = 0, w = 0, h = 0; k < num_codecs; k++) {
280 w = max(w, codecs[k].max_w);
281 h = max(h, codecs[k].max_h);
282 }
283 }
284
285 if (max_w)
286 *max_w = w;
287 if (max_h)
288 *max_h = h;
289}
290
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300291const struct coda_video_device *to_coda_video_device(struct video_device *vdev)
292{
293 struct coda_dev *dev = video_get_drvdata(vdev);
294 unsigned int i = vdev - dev->vfd;
295
296 if (i >= dev->devtype->num_vdevs)
297 return NULL;
298
299 return dev->devtype->vdevs[i];
300}
301
Philipp Zabel79924ca2014-07-23 12:28:45 -0300302const char *coda_product_name(int product)
Philipp Zabel927933f2013-09-30 10:34:48 -0300303{
304 static char buf[9];
305
306 switch (product) {
307 case CODA_DX6:
308 return "CodaDx6";
309 case CODA_7541:
310 return "CODA7541";
Philipp Zabel89548442014-07-11 06:36:17 -0300311 case CODA_960:
312 return "CODA960";
Philipp Zabel927933f2013-09-30 10:34:48 -0300313 default:
314 snprintf(buf, sizeof(buf), "(0x%04x)", product);
315 return buf;
316 }
317}
318
Javier Martin186b2502012-07-26 05:53:35 -0300319/*
320 * V4L2 ioctl() operations.
321 */
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300322static int coda_querycap(struct file *file, void *priv,
323 struct v4l2_capability *cap)
Javier Martin186b2502012-07-26 05:53:35 -0300324{
Philipp Zabel927933f2013-09-30 10:34:48 -0300325 struct coda_ctx *ctx = fh_to_ctx(priv);
326
Javier Martin186b2502012-07-26 05:53:35 -0300327 strlcpy(cap->driver, CODA_NAME, sizeof(cap->driver));
Philipp Zabel927933f2013-09-30 10:34:48 -0300328 strlcpy(cap->card, coda_product_name(ctx->dev->devtype->product),
329 sizeof(cap->card));
Philipp Zabeldad0e1c2013-05-21 04:18:22 -0300330 strlcpy(cap->bus_info, "platform:" CODA_NAME, sizeof(cap->bus_info));
Philipp Zabel3898e7a2014-07-18 07:22:37 -0300331 cap->device_caps = V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
Javier Martin186b2502012-07-26 05:53:35 -0300332 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
333
334 return 0;
335}
336
Philipp Zabel22e244b2014-07-18 07:22:43 -0300337static int coda_enum_fmt(struct file *file, void *priv,
338 struct v4l2_fmtdesc *f)
Javier Martin186b2502012-07-26 05:53:35 -0300339{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300340 struct video_device *vdev = video_devdata(file);
341 const struct coda_video_device *cvd = to_coda_video_device(vdev);
342 const u32 *formats;
Philipp Zabel22e244b2014-07-18 07:22:43 -0300343
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300344 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
345 formats = cvd->src_formats;
346 else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
347 formats = cvd->dst_formats;
Philipp Zabel22e244b2014-07-18 07:22:43 -0300348 else
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300349 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300350
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300351 if (f->index >= CODA_MAX_FORMATS || formats[f->index] == 0)
352 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300353
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300354 f->pixelformat = formats[f->index];
Javier Martin186b2502012-07-26 05:53:35 -0300355
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300356 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300357}
358
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300359static int coda_g_fmt(struct file *file, void *priv,
360 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300361{
Javier Martin186b2502012-07-26 05:53:35 -0300362 struct coda_q_data *q_data;
363 struct coda_ctx *ctx = fh_to_ctx(priv);
364
Javier Martin186b2502012-07-26 05:53:35 -0300365 q_data = get_q_data(ctx, f->type);
Philipp Zabelb9736292014-07-11 06:36:18 -0300366 if (!q_data)
367 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300368
369 f->fmt.pix.field = V4L2_FIELD_NONE;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300370 f->fmt.pix.pixelformat = q_data->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300371 f->fmt.pix.width = q_data->width;
372 f->fmt.pix.height = q_data->height;
Philipp Zabel2fd6a372014-07-11 06:36:36 -0300373 f->fmt.pix.bytesperline = q_data->bytesperline;
Javier Martin186b2502012-07-26 05:53:35 -0300374
375 f->fmt.pix.sizeimage = q_data->sizeimage;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300376 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_JPEG)
377 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
378 else
379 f->fmt.pix.colorspace = ctx->colorspace;
Javier Martin186b2502012-07-26 05:53:35 -0300380
381 return 0;
382}
383
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300384static int coda_try_pixelformat(struct coda_ctx *ctx, struct v4l2_format *f)
385{
386 struct coda_q_data *q_data;
387 const u32 *formats;
388 int i;
389
390 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
391 formats = ctx->cvd->src_formats;
392 else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
393 formats = ctx->cvd->dst_formats;
394 else
395 return -EINVAL;
396
397 for (i = 0; i < CODA_MAX_FORMATS; i++) {
398 if (formats[i] == f->fmt.pix.pixelformat) {
399 f->fmt.pix.pixelformat = formats[i];
400 return 0;
401 }
402 }
403
404 /* Fall back to currently set pixelformat */
405 q_data = get_q_data(ctx, f->type);
406 f->fmt.pix.pixelformat = q_data->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300407
408 return 0;
409}
410
Philipp Zabel8e428d52015-01-23 13:51:29 -0300411static unsigned int coda_estimate_sizeimage(struct coda_ctx *ctx, u32 sizeimage,
412 u32 width, u32 height)
413{
414 /*
415 * This is a rough estimate for sensible compressed buffer
416 * sizes (between 1 and 16 bits per pixel). This could be
417 * improved by better format specific worst case estimates.
418 */
419 return round_up(clamp(sizeimage, width * height / 8,
420 width * height * 2), PAGE_SIZE);
421}
422
Philipp Zabel814c3762014-07-18 07:22:45 -0300423static int coda_try_fmt(struct coda_ctx *ctx, const struct coda_codec *codec,
Philipp Zabel57625592013-09-30 10:34:51 -0300424 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300425{
Philipp Zabel57625592013-09-30 10:34:51 -0300426 struct coda_dev *dev = ctx->dev;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300427 unsigned int max_w, max_h;
Javier Martin186b2502012-07-26 05:53:35 -0300428 enum v4l2_field field;
429
430 field = f->fmt.pix.field;
431 if (field == V4L2_FIELD_ANY)
432 field = V4L2_FIELD_NONE;
433 else if (V4L2_FIELD_NONE != field)
434 return -EINVAL;
435
436 /* V4L2 specification suggests the driver corrects the format struct
437 * if any of the dimensions is unsupported */
438 f->fmt.pix.field = field;
439
Philipp Zabel57625592013-09-30 10:34:51 -0300440 coda_get_max_dimensions(dev, codec, &max_w, &max_h);
441 v4l_bound_align_image(&f->fmt.pix.width, MIN_W, max_w, W_ALIGN,
442 &f->fmt.pix.height, MIN_H, max_h, H_ALIGN,
443 S_ALIGN);
Philipp Zabelb96904e2013-05-23 10:42:58 -0300444
Philipp Zabel57625592013-09-30 10:34:51 -0300445 switch (f->fmt.pix.pixelformat) {
446 case V4L2_PIX_FMT_YUV420:
447 case V4L2_PIX_FMT_YVU420:
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300448 case V4L2_PIX_FMT_NV12:
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300449 /*
450 * Frame stride must be at least multiple of 8,
451 * but multiple of 16 for h.264 or JPEG 4:2:x
452 */
Philipp Zabel451dfe52014-07-11 06:36:39 -0300453 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
Philipp Zabel47cf0c62013-05-23 10:42:54 -0300454 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
Philipp Zabel451d43a2012-07-26 09:18:27 -0300455 f->fmt.pix.height * 3 / 2;
Philipp Zabel57625592013-09-30 10:34:51 -0300456 break;
Philipp Zabel4de69312014-10-02 14:08:26 -0300457 case V4L2_PIX_FMT_YUV422P:
458 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
459 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
460 f->fmt.pix.height * 2;
461 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300462 case V4L2_PIX_FMT_JPEG:
463 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
464 /* fallthrough */
Philipp Zabel57625592013-09-30 10:34:51 -0300465 case V4L2_PIX_FMT_H264:
466 case V4L2_PIX_FMT_MPEG4:
Javier Martin186b2502012-07-26 05:53:35 -0300467 f->fmt.pix.bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -0300468 f->fmt.pix.sizeimage = coda_estimate_sizeimage(ctx,
469 f->fmt.pix.sizeimage,
470 f->fmt.pix.width,
471 f->fmt.pix.height);
Philipp Zabel57625592013-09-30 10:34:51 -0300472 break;
473 default:
474 BUG();
Javier Martin186b2502012-07-26 05:53:35 -0300475 }
476
477 return 0;
478}
479
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300480static int coda_try_fmt_vid_cap(struct file *file, void *priv,
481 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300482{
Javier Martin186b2502012-07-26 05:53:35 -0300483 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300484 const struct coda_q_data *q_data_src;
485 const struct coda_codec *codec;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300486 struct vb2_queue *src_vq;
487 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300488
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300489 ret = coda_try_pixelformat(ctx, f);
490 if (ret < 0)
491 return ret;
492
493 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
494
Philipp Zabel918c66f2013-06-27 06:59:01 -0300495 /*
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300496 * If the source format is already fixed, only allow the same output
497 * resolution
Philipp Zabel918c66f2013-06-27 06:59:01 -0300498 */
Philipp Zabel14604e32014-07-11 06:36:22 -0300499 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300500 if (vb2_is_streaming(src_vq)) {
Philipp Zabel91b5841e2014-07-18 07:22:41 -0300501 f->fmt.pix.width = q_data_src->width;
502 f->fmt.pix.height = q_data_src->height;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300503 }
Javier Martin186b2502012-07-26 05:53:35 -0300504
505 f->fmt.pix.colorspace = ctx->colorspace;
506
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300507 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
508 codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
509 f->fmt.pix.pixelformat);
510 if (!codec)
511 return -EINVAL;
512
Philipp Zabel57625592013-09-30 10:34:51 -0300513 ret = coda_try_fmt(ctx, codec, f);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300514 if (ret < 0)
515 return ret;
516
517 /* The h.264 decoder only returns complete 16x16 macroblocks */
518 if (codec && codec->src_fourcc == V4L2_PIX_FMT_H264) {
Philipp Zabel1b0ed7b2014-07-11 06:36:37 -0300519 f->fmt.pix.width = f->fmt.pix.width;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300520 f->fmt.pix.height = round_up(f->fmt.pix.height, 16);
Philipp Zabel1b0ed7b2014-07-11 06:36:37 -0300521 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300522 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
523 f->fmt.pix.height * 3 / 2;
524 }
525
526 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300527}
528
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300529static int coda_try_fmt_vid_out(struct file *file, void *priv,
530 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300531{
532 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300533 struct coda_dev *dev = ctx->dev;
534 const struct coda_q_data *q_data_dst;
535 const struct coda_codec *codec;
536 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300537
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300538 ret = coda_try_pixelformat(ctx, f);
539 if (ret < 0)
540 return ret;
Javier Martin186b2502012-07-26 05:53:35 -0300541
Philipp Zabel5f9826e2015-01-23 13:51:21 -0300542 switch (f->fmt.pix.colorspace) {
543 case V4L2_COLORSPACE_REC709:
544 case V4L2_COLORSPACE_JPEG:
545 break;
546 default:
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300547 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_JPEG)
548 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
549 else
550 f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
Javier Martin186b2502012-07-26 05:53:35 -0300551 }
552
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300553 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
554 codec = coda_find_codec(dev, f->fmt.pix.pixelformat, q_data_dst->fourcc);
Javier Martin186b2502012-07-26 05:53:35 -0300555
556 return coda_try_fmt(ctx, codec, f);
557}
558
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300559static int coda_s_fmt(struct coda_ctx *ctx, struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300560{
561 struct coda_q_data *q_data;
562 struct vb2_queue *vq;
Javier Martin186b2502012-07-26 05:53:35 -0300563
Philipp Zabel14604e32014-07-11 06:36:22 -0300564 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
Javier Martin186b2502012-07-26 05:53:35 -0300565 if (!vq)
566 return -EINVAL;
567
568 q_data = get_q_data(ctx, f->type);
569 if (!q_data)
570 return -EINVAL;
571
572 if (vb2_is_busy(vq)) {
573 v4l2_err(&ctx->dev->v4l2_dev, "%s queue busy\n", __func__);
574 return -EBUSY;
575 }
576
Philipp Zabelb96904e2013-05-23 10:42:58 -0300577 q_data->fourcc = f->fmt.pix.pixelformat;
Javier Martin186b2502012-07-26 05:53:35 -0300578 q_data->width = f->fmt.pix.width;
579 q_data->height = f->fmt.pix.height;
Philipp Zabel2fd6a372014-07-11 06:36:36 -0300580 q_data->bytesperline = f->fmt.pix.bytesperline;
Philipp Zabel451d43a2012-07-26 09:18:27 -0300581 q_data->sizeimage = f->fmt.pix.sizeimage;
Philipp Zabel52c41672014-07-11 06:36:19 -0300582 q_data->rect.left = 0;
583 q_data->rect.top = 0;
584 q_data->rect.width = f->fmt.pix.width;
585 q_data->rect.height = f->fmt.pix.height;
Javier Martin186b2502012-07-26 05:53:35 -0300586
587 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
588 "Setting format for type %d, wxh: %dx%d, fmt: %d\n",
Philipp Zabelb96904e2013-05-23 10:42:58 -0300589 f->type, q_data->width, q_data->height, q_data->fourcc);
Javier Martin186b2502012-07-26 05:53:35 -0300590
591 return 0;
592}
593
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300594static int coda_s_fmt_vid_cap(struct file *file, void *priv,
595 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300596{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300597 struct coda_ctx *ctx = fh_to_ctx(priv);
Javier Martin186b2502012-07-26 05:53:35 -0300598 int ret;
599
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300600 ret = coda_try_fmt_vid_cap(file, priv, f);
Javier Martin186b2502012-07-26 05:53:35 -0300601 if (ret)
602 return ret;
603
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300604 return coda_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300605}
606
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300607static int coda_s_fmt_vid_out(struct file *file, void *priv,
608 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300609{
610 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabelf95a6ce2014-08-05 14:00:19 -0300611 struct v4l2_format f_cap;
Javier Martin186b2502012-07-26 05:53:35 -0300612 int ret;
613
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300614 ret = coda_try_fmt_vid_out(file, priv, f);
Javier Martin186b2502012-07-26 05:53:35 -0300615 if (ret)
616 return ret;
617
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300618 ret = coda_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300619 if (ret)
Philipp Zabel2dc546d2014-08-05 14:00:18 -0300620 return ret;
621
622 ctx->colorspace = f->fmt.pix.colorspace;
Javier Martin186b2502012-07-26 05:53:35 -0300623
Philipp Zabel1c2f6a92015-01-23 13:51:22 -0300624 memset(&f_cap, 0, sizeof(f_cap));
Philipp Zabelf95a6ce2014-08-05 14:00:19 -0300625 f_cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
626 coda_g_fmt(file, priv, &f_cap);
627 f_cap.fmt.pix.width = f->fmt.pix.width;
628 f_cap.fmt.pix.height = f->fmt.pix.height;
629
630 ret = coda_try_fmt_vid_cap(file, priv, &f_cap);
631 if (ret)
632 return ret;
633
634 return coda_s_fmt(ctx, &f_cap);
Javier Martin186b2502012-07-26 05:53:35 -0300635}
636
Philipp Zabel73751da2015-03-24 14:30:51 -0300637static int coda_reqbufs(struct file *file, void *priv,
638 struct v4l2_requestbuffers *rb)
639{
640 struct coda_ctx *ctx = fh_to_ctx(priv);
641 int ret;
642
643 ret = v4l2_m2m_reqbufs(file, ctx->fh.m2m_ctx, rb);
644 if (ret)
645 return ret;
646
647 /*
648 * Allow to allocate instance specific per-context buffers, such as
649 * bitstream ringbuffer, slice buffer, work buffer, etc. if needed.
650 */
651 if (rb->type == V4L2_BUF_TYPE_VIDEO_OUTPUT && ctx->ops->reqbufs)
652 return ctx->ops->reqbufs(ctx, rb);
653
654 return 0;
655}
656
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300657static int coda_qbuf(struct file *file, void *priv,
658 struct v4l2_buffer *buf)
Javier Martin186b2502012-07-26 05:53:35 -0300659{
660 struct coda_ctx *ctx = fh_to_ctx(priv);
661
Philipp Zabel14604e32014-07-11 06:36:22 -0300662 return v4l2_m2m_qbuf(file, ctx->fh.m2m_ctx, buf);
Javier Martin186b2502012-07-26 05:53:35 -0300663}
664
Philipp Zabel918c66f2013-06-27 06:59:01 -0300665static bool coda_buf_is_end_of_stream(struct coda_ctx *ctx,
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300666 struct vb2_buffer *buf)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300667{
668 struct vb2_queue *src_vq;
669
Philipp Zabel14604e32014-07-11 06:36:22 -0300670 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300671
672 return ((ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG) &&
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300673 (buf->v4l2_buf.sequence == (ctx->qsequence - 1)));
Philipp Zabel918c66f2013-06-27 06:59:01 -0300674}
675
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300676void coda_m2m_buf_done(struct coda_ctx *ctx, struct vb2_buffer *buf,
677 enum vb2_buffer_state state)
Javier Martin186b2502012-07-26 05:53:35 -0300678{
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300679 const struct v4l2_event eos_event = {
680 .type = V4L2_EVENT_EOS
681 };
Javier Martin186b2502012-07-26 05:53:35 -0300682
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300683 if (coda_buf_is_end_of_stream(ctx, buf)) {
684 buf->v4l2_buf.flags |= V4L2_BUF_FLAG_LAST;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300685
686 v4l2_event_queue_fh(&ctx->fh, &eos_event);
687 }
688
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300689 v4l2_m2m_buf_done(buf, state);
Javier Martin186b2502012-07-26 05:53:35 -0300690}
691
Philipp Zabel52c41672014-07-11 06:36:19 -0300692static int coda_g_selection(struct file *file, void *fh,
693 struct v4l2_selection *s)
694{
695 struct coda_ctx *ctx = fh_to_ctx(fh);
696 struct coda_q_data *q_data;
697 struct v4l2_rect r, *rsel;
698
699 q_data = get_q_data(ctx, s->type);
700 if (!q_data)
701 return -EINVAL;
702
703 r.left = 0;
704 r.top = 0;
705 r.width = q_data->width;
706 r.height = q_data->height;
707 rsel = &q_data->rect;
708
709 switch (s->target) {
710 case V4L2_SEL_TGT_CROP_DEFAULT:
711 case V4L2_SEL_TGT_CROP_BOUNDS:
712 rsel = &r;
713 /* fallthrough */
714 case V4L2_SEL_TGT_CROP:
715 if (s->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
716 return -EINVAL;
717 break;
718 case V4L2_SEL_TGT_COMPOSE_BOUNDS:
719 case V4L2_SEL_TGT_COMPOSE_PADDED:
720 rsel = &r;
721 /* fallthrough */
722 case V4L2_SEL_TGT_COMPOSE:
723 case V4L2_SEL_TGT_COMPOSE_DEFAULT:
724 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
725 return -EINVAL;
726 break;
727 default:
728 return -EINVAL;
729 }
730
731 s->r = *rsel;
732
733 return 0;
734}
735
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300736static int coda_try_decoder_cmd(struct file *file, void *fh,
737 struct v4l2_decoder_cmd *dc)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300738{
Philipp Zabel918c66f2013-06-27 06:59:01 -0300739 if (dc->cmd != V4L2_DEC_CMD_STOP)
740 return -EINVAL;
741
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300742 if (dc->flags & V4L2_DEC_CMD_STOP_TO_BLACK)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300743 return -EINVAL;
744
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300745 if (!(dc->flags & V4L2_DEC_CMD_STOP_IMMEDIATELY) && (dc->stop.pts != 0))
Philipp Zabel918c66f2013-06-27 06:59:01 -0300746 return -EINVAL;
747
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300748 return 0;
749}
750
751static int coda_decoder_cmd(struct file *file, void *fh,
752 struct v4l2_decoder_cmd *dc)
753{
754 struct coda_ctx *ctx = fh_to_ctx(fh);
755 int ret;
756
757 ret = coda_try_decoder_cmd(file, fh, dc);
758 if (ret < 0)
759 return ret;
760
761 /* Ignore decoder stop command silently in encoder context */
Philipp Zabel918c66f2013-06-27 06:59:01 -0300762 if (ctx->inst_type != CODA_INST_DECODER)
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300763 return 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300764
Philipp Zabel347bb7f2014-07-23 12:28:42 -0300765 /* Set the stream-end flag on this context */
766 coda_bit_stream_end_flag(ctx);
Philipp Zabel84e23652014-07-11 06:36:34 -0300767 ctx->hold = false;
Michael Olbrichf3497da2014-07-11 06:36:30 -0300768 v4l2_m2m_try_schedule(ctx->fh.m2m_ctx);
Philipp Zabel89548442014-07-11 06:36:17 -0300769
Philipp Zabel918c66f2013-06-27 06:59:01 -0300770 return 0;
771}
772
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300773static int coda_subscribe_event(struct v4l2_fh *fh,
774 const struct v4l2_event_subscription *sub)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300775{
776 switch (sub->type) {
777 case V4L2_EVENT_EOS:
778 return v4l2_event_subscribe(fh, sub, 0, NULL);
779 default:
780 return v4l2_ctrl_subscribe_event(fh, sub);
781 }
Javier Martin186b2502012-07-26 05:53:35 -0300782}
783
784static const struct v4l2_ioctl_ops coda_ioctl_ops = {
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300785 .vidioc_querycap = coda_querycap,
Javier Martin186b2502012-07-26 05:53:35 -0300786
Philipp Zabel22e244b2014-07-18 07:22:43 -0300787 .vidioc_enum_fmt_vid_cap = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300788 .vidioc_g_fmt_vid_cap = coda_g_fmt,
789 .vidioc_try_fmt_vid_cap = coda_try_fmt_vid_cap,
790 .vidioc_s_fmt_vid_cap = coda_s_fmt_vid_cap,
Javier Martin186b2502012-07-26 05:53:35 -0300791
Philipp Zabel22e244b2014-07-18 07:22:43 -0300792 .vidioc_enum_fmt_vid_out = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300793 .vidioc_g_fmt_vid_out = coda_g_fmt,
794 .vidioc_try_fmt_vid_out = coda_try_fmt_vid_out,
795 .vidioc_s_fmt_vid_out = coda_s_fmt_vid_out,
Javier Martin186b2502012-07-26 05:53:35 -0300796
Philipp Zabel73751da2015-03-24 14:30:51 -0300797 .vidioc_reqbufs = coda_reqbufs,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300798 .vidioc_querybuf = v4l2_m2m_ioctl_querybuf,
Javier Martin186b2502012-07-26 05:53:35 -0300799
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300800 .vidioc_qbuf = coda_qbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300801 .vidioc_expbuf = v4l2_m2m_ioctl_expbuf,
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300802 .vidioc_dqbuf = v4l2_m2m_ioctl_dqbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300803 .vidioc_create_bufs = v4l2_m2m_ioctl_create_bufs,
Javier Martin186b2502012-07-26 05:53:35 -0300804
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300805 .vidioc_streamon = v4l2_m2m_ioctl_streamon,
806 .vidioc_streamoff = v4l2_m2m_ioctl_streamoff,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300807
Philipp Zabel52c41672014-07-11 06:36:19 -0300808 .vidioc_g_selection = coda_g_selection,
809
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300810 .vidioc_try_decoder_cmd = coda_try_decoder_cmd,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300811 .vidioc_decoder_cmd = coda_decoder_cmd,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300812
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300813 .vidioc_subscribe_event = coda_subscribe_event,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300814 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Javier Martin186b2502012-07-26 05:53:35 -0300815};
816
Philipp Zabel79924ca2014-07-23 12:28:45 -0300817void coda_set_gdi_regs(struct coda_ctx *ctx)
Philipp Zabel89548442014-07-11 06:36:17 -0300818{
819 struct gdi_tiled_map *tiled_map = &ctx->tiled_map;
820 struct coda_dev *dev = ctx->dev;
821 int i;
822
823 for (i = 0; i < 16; i++)
824 coda_write(dev, tiled_map->xy2ca_map[i],
825 CODA9_GDI_XY2_CAS_0 + 4 * i);
826 for (i = 0; i < 4; i++)
827 coda_write(dev, tiled_map->xy2ba_map[i],
828 CODA9_GDI_XY2_BA_0 + 4 * i);
829 for (i = 0; i < 16; i++)
830 coda_write(dev, tiled_map->xy2ra_map[i],
831 CODA9_GDI_XY2_RAS_0 + 4 * i);
832 coda_write(dev, tiled_map->xy2rbc_config, CODA9_GDI_XY2_RBC_CONFIG);
833 for (i = 0; i < 32; i++)
834 coda_write(dev, tiled_map->rbc2axi_map[i],
835 CODA9_GDI_RBC2_AXI_0 + 4 * i);
836}
837
Javier Martin186b2502012-07-26 05:53:35 -0300838/*
839 * Mem-to-mem operations.
840 */
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300841
842static void coda_device_run(void *m2m_priv)
843{
844 struct coda_ctx *ctx = m2m_priv;
845 struct coda_dev *dev = ctx->dev;
Philipp Zabel32b6f202014-07-11 06:36:20 -0300846
847 queue_work(dev->workqueue, &ctx->pic_run_work);
848}
849
Philipp Zabel32b6f202014-07-11 06:36:20 -0300850static void coda_pic_run_work(struct work_struct *work)
851{
852 struct coda_ctx *ctx = container_of(work, struct coda_ctx, pic_run_work);
853 struct coda_dev *dev = ctx->dev;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300854 int ret;
855
856 mutex_lock(&ctx->buffer_mutex);
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300857 mutex_lock(&dev->coda_mutex);
858
Philipp Zabela1192a12014-07-23 12:28:40 -0300859 ret = ctx->ops->prepare_run(ctx);
860 if (ret < 0 && ctx->inst_type == CODA_INST_DECODER) {
861 mutex_unlock(&dev->coda_mutex);
862 mutex_unlock(&ctx->buffer_mutex);
863 /* job_finish scheduled by prepare_decode */
864 return;
Philipp Zabel10436672012-07-02 09:03:55 -0300865 }
866
Philipp Zabelf23797b2014-08-06 08:02:23 -0300867 if (!wait_for_completion_timeout(&ctx->completion,
868 msecs_to_jiffies(1000))) {
Philipp Zabel32b6f202014-07-11 06:36:20 -0300869 dev_err(&dev->plat_dev->dev, "CODA PIC_RUN timeout\n");
Philipp Zabel84e23652014-07-11 06:36:34 -0300870
871 ctx->hold = true;
Philipp Zabel8f452842014-07-11 06:36:35 -0300872
873 coda_hw_reset(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300874 } else if (!ctx->aborting) {
Philipp Zabela1192a12014-07-23 12:28:40 -0300875 ctx->ops->finish_run(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300876 }
877
Philipp Zabel747d7642015-01-23 13:51:31 -0300878 if ((ctx->aborting || (!ctx->streamon_cap && !ctx->streamon_out)) &&
879 ctx->ops->seq_end_work)
Philipp Zabel32b6f202014-07-11 06:36:20 -0300880 queue_work(dev->workqueue, &ctx->seq_end_work);
881
882 mutex_unlock(&dev->coda_mutex);
883 mutex_unlock(&ctx->buffer_mutex);
884
Philipp Zabel14604e32014-07-11 06:36:22 -0300885 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -0300886}
887
888static int coda_job_ready(void *m2m_priv)
889{
890 struct coda_ctx *ctx = m2m_priv;
Philipp Zabel2cf251c2015-07-09 07:10:20 -0300891 int src_bufs = v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -0300892
893 /*
894 * For both 'P' and 'key' frame cases 1 picture
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300895 * and 1 frame are needed. In the decoder case,
896 * the compressed frame can be in the bitstream.
Javier Martin186b2502012-07-26 05:53:35 -0300897 */
Philipp Zabel2cf251c2015-07-09 07:10:20 -0300898 if (!src_bufs && ctx->inst_type != CODA_INST_DECODER) {
Javier Martin186b2502012-07-26 05:53:35 -0300899 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
900 "not ready: not enough video buffers.\n");
901 return 0;
902 }
903
Philipp Zabel14604e32014-07-11 06:36:22 -0300904 if (!v4l2_m2m_num_dst_bufs_ready(ctx->fh.m2m_ctx)) {
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300905 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
906 "not ready: not enough video capture buffers.\n");
907 return 0;
908 }
909
Philipp Zabela22496c2015-01-23 13:51:33 -0300910 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit) {
Philipp Zabelf77fd8a2015-01-23 13:51:20 -0300911 struct list_head *meta;
912 bool stream_end;
913 int num_metas;
Philipp Zabelf77fd8a2015-01-23 13:51:20 -0300914
Philipp Zabel2cf251c2015-07-09 07:10:20 -0300915 if (ctx->hold && !src_bufs) {
Philipp Zabelf77fd8a2015-01-23 13:51:20 -0300916 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
917 "%d: not ready: on hold for more buffers.\n",
918 ctx->idx);
919 return 0;
920 }
921
922 stream_end = ctx->bit_stream_param &
923 CODA_BIT_STREAM_END_FLAG;
924
925 num_metas = 0;
926 list_for_each(meta, &ctx->buffer_meta_list)
927 num_metas++;
928
Philipp Zabelf77fd8a2015-01-23 13:51:20 -0300929 if (!stream_end && (num_metas + src_bufs) < 2) {
930 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
931 "%d: not ready: need 2 buffers available (%d, %d)\n",
932 ctx->idx, num_metas, src_bufs);
933 return 0;
934 }
935
936
Philipp Zabel2cf251c2015-07-09 07:10:20 -0300937 if (!src_bufs && !stream_end &&
938 (coda_get_bitstream_payload(ctx) < 512)) {
Philipp Zabelf77fd8a2015-01-23 13:51:20 -0300939 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
940 "%d: not ready: not enough bitstream data (%d).\n",
941 ctx->idx, coda_get_bitstream_payload(ctx));
942 return 0;
943 }
Philipp Zabel918c66f2013-06-27 06:59:01 -0300944 }
945
Philipp Zabel3e748262013-05-23 10:43:01 -0300946 if (ctx->aborting) {
947 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
948 "not ready: aborting\n");
949 return 0;
950 }
951
Javier Martin186b2502012-07-26 05:53:35 -0300952 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
953 "job ready\n");
954 return 1;
955}
956
957static void coda_job_abort(void *priv)
958{
959 struct coda_ctx *ctx = priv;
Javier Martin186b2502012-07-26 05:53:35 -0300960
961 ctx->aborting = 1;
962
963 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
964 "Aborting task\n");
Javier Martin186b2502012-07-26 05:53:35 -0300965}
966
967static void coda_lock(void *m2m_priv)
968{
969 struct coda_ctx *ctx = m2m_priv;
970 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -0300971
Javier Martin186b2502012-07-26 05:53:35 -0300972 mutex_lock(&pcdev->dev_mutex);
973}
974
975static void coda_unlock(void *m2m_priv)
976{
977 struct coda_ctx *ctx = m2m_priv;
978 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -0300979
Javier Martin186b2502012-07-26 05:53:35 -0300980 mutex_unlock(&pcdev->dev_mutex);
981}
982
Philipp Zabel814c3762014-07-18 07:22:45 -0300983static const struct v4l2_m2m_ops coda_m2m_ops = {
Javier Martin186b2502012-07-26 05:53:35 -0300984 .device_run = coda_device_run,
985 .job_ready = coda_job_ready,
986 .job_abort = coda_job_abort,
987 .lock = coda_lock,
988 .unlock = coda_unlock,
989};
990
Philipp Zabel89548442014-07-11 06:36:17 -0300991static void coda_set_tiled_map_type(struct coda_ctx *ctx, int tiled_map_type)
992{
993 struct gdi_tiled_map *tiled_map = &ctx->tiled_map;
994 int luma_map, chro_map, i;
995
996 memset(tiled_map, 0, sizeof(*tiled_map));
997
998 luma_map = 64;
999 chro_map = 64;
1000 tiled_map->map_type = tiled_map_type;
1001 for (i = 0; i < 16; i++)
1002 tiled_map->xy2ca_map[i] = luma_map << 8 | chro_map;
1003 for (i = 0; i < 4; i++)
1004 tiled_map->xy2ba_map[i] = luma_map << 8 | chro_map;
1005 for (i = 0; i < 16; i++)
1006 tiled_map->xy2ra_map[i] = luma_map << 8 | chro_map;
1007
1008 if (tiled_map_type == GDI_LINEAR_FRAME_MAP) {
1009 tiled_map->xy2rbc_config = 0;
1010 } else {
1011 dev_err(&ctx->dev->plat_dev->dev, "invalid map type: %d\n",
1012 tiled_map_type);
1013 return;
1014 }
1015}
1016
Javier Martin186b2502012-07-26 05:53:35 -03001017static void set_default_params(struct coda_ctx *ctx)
1018{
Philipp Zabel8e428d52015-01-23 13:51:29 -03001019 unsigned int max_w, max_h, usize, csize;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001020
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001021 ctx->codec = coda_find_codec(ctx->dev, ctx->cvd->src_formats[0],
1022 ctx->cvd->dst_formats[0]);
Philipp Zabeld4c6a412014-10-02 14:08:35 -03001023 max_w = min(ctx->codec->max_w, 1920U);
1024 max_h = min(ctx->codec->max_h, 1088U);
Philipp Zabel8e428d52015-01-23 13:51:29 -03001025 usize = max_w * max_h * 3 / 2;
1026 csize = coda_estimate_sizeimage(ctx, usize, max_w, max_h);
Javier Martin186b2502012-07-26 05:53:35 -03001027
Philipp Zabel121cacf2014-07-18 07:22:42 -03001028 ctx->params.codec_mode = ctx->codec->mode;
Javier Martin186b2502012-07-26 05:53:35 -03001029 ctx->colorspace = V4L2_COLORSPACE_REC709;
1030 ctx->params.framerate = 30;
Javier Martin186b2502012-07-26 05:53:35 -03001031
1032 /* Default formats for output and input queues */
Philipp Zabelb96904e2013-05-23 10:42:58 -03001033 ctx->q_data[V4L2_M2M_SRC].fourcc = ctx->codec->src_fourcc;
1034 ctx->q_data[V4L2_M2M_DST].fourcc = ctx->codec->dst_fourcc;
1035 ctx->q_data[V4L2_M2M_SRC].width = max_w;
1036 ctx->q_data[V4L2_M2M_SRC].height = max_h;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001037 ctx->q_data[V4L2_M2M_DST].width = max_w;
1038 ctx->q_data[V4L2_M2M_DST].height = max_h;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001039 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_YUV420) {
1040 ctx->q_data[V4L2_M2M_SRC].bytesperline = max_w;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001041 ctx->q_data[V4L2_M2M_SRC].sizeimage = usize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001042 ctx->q_data[V4L2_M2M_DST].bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001043 ctx->q_data[V4L2_M2M_DST].sizeimage = csize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001044 } else {
1045 ctx->q_data[V4L2_M2M_SRC].bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001046 ctx->q_data[V4L2_M2M_SRC].sizeimage = csize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001047 ctx->q_data[V4L2_M2M_DST].bytesperline = max_w;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001048 ctx->q_data[V4L2_M2M_DST].sizeimage = usize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001049 }
Philipp Zabel52c41672014-07-11 06:36:19 -03001050 ctx->q_data[V4L2_M2M_SRC].rect.width = max_w;
1051 ctx->q_data[V4L2_M2M_SRC].rect.height = max_h;
1052 ctx->q_data[V4L2_M2M_DST].rect.width = max_w;
1053 ctx->q_data[V4L2_M2M_DST].rect.height = max_h;
Philipp Zabel89548442014-07-11 06:36:17 -03001054
1055 if (ctx->dev->devtype->product == CODA_960)
1056 coda_set_tiled_map_type(ctx, GDI_LINEAR_FRAME_MAP);
Javier Martin186b2502012-07-26 05:53:35 -03001057}
1058
1059/*
1060 * Queue operations
1061 */
1062static int coda_queue_setup(struct vb2_queue *vq,
1063 const struct v4l2_format *fmt,
1064 unsigned int *nbuffers, unsigned int *nplanes,
1065 unsigned int sizes[], void *alloc_ctxs[])
1066{
1067 struct coda_ctx *ctx = vb2_get_drv_priv(vq);
Philipp Zabele34db062012-08-29 08:22:00 -03001068 struct coda_q_data *q_data;
Javier Martin186b2502012-07-26 05:53:35 -03001069 unsigned int size;
1070
Philipp Zabele34db062012-08-29 08:22:00 -03001071 q_data = get_q_data(ctx, vq->type);
1072 size = q_data->sizeimage;
Javier Martin186b2502012-07-26 05:53:35 -03001073
1074 *nplanes = 1;
1075 sizes[0] = size;
1076
Philipp Zabelbb04aa62015-01-23 13:51:30 -03001077 /* Set to vb2-dma-contig allocator context, ignored by vb2-vmalloc */
Javier Martin186b2502012-07-26 05:53:35 -03001078 alloc_ctxs[0] = ctx->dev->alloc_ctx;
1079
1080 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1081 "get %d buffer(s) of size %d each.\n", *nbuffers, size);
1082
1083 return 0;
1084}
1085
1086static int coda_buf_prepare(struct vb2_buffer *vb)
1087{
1088 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
1089 struct coda_q_data *q_data;
1090
1091 q_data = get_q_data(ctx, vb->vb2_queue->type);
1092
1093 if (vb2_plane_size(vb, 0) < q_data->sizeimage) {
1094 v4l2_warn(&ctx->dev->v4l2_dev,
1095 "%s data will not fit into plane (%lu < %lu)\n",
1096 __func__, vb2_plane_size(vb, 0),
1097 (long)q_data->sizeimage);
1098 return -EINVAL;
1099 }
1100
Javier Martin186b2502012-07-26 05:53:35 -03001101 return 0;
1102}
1103
1104static void coda_buf_queue(struct vb2_buffer *vb)
1105{
1106 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
Philipp Zabelcb06b702015-01-23 13:51:35 -03001107 struct vb2_queue *vq = vb->vb2_queue;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001108 struct coda_q_data *q_data;
1109
1110 q_data = get_q_data(ctx, vb->vb2_queue->type);
1111
1112 /*
1113 * In the decoder case, immediately try to copy the buffer into the
1114 * bitstream ringbuffer and mark it as ready to be dequeued.
1115 */
Philipp Zabelcb06b702015-01-23 13:51:35 -03001116 if (ctx->bitstream.size && vq->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001117 /*
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -03001118 * For backwards compatibility, queuing an empty buffer marks
Philipp Zabel918c66f2013-06-27 06:59:01 -03001119 * the stream end
1120 */
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001121 if (vb2_get_plane_payload(vb, 0) == 0)
1122 coda_bit_stream_end_flag(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001123 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel14604e32014-07-11 06:36:22 -03001124 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Michael Olbricheabed932014-07-18 07:22:40 -03001125 if (vb2_is_streaming(vb->vb2_queue))
Philipp Zabel582d88722015-03-24 14:30:57 -03001126 coda_fill_bitstream(ctx, true);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001127 mutex_unlock(&ctx->bitstream_mutex);
1128 } else {
Philipp Zabel14604e32014-07-11 06:36:22 -03001129 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001130 }
Javier Martin186b2502012-07-26 05:53:35 -03001131}
1132
Philipp Zabel79924ca2014-07-23 12:28:45 -03001133int coda_alloc_aux_buf(struct coda_dev *dev, struct coda_aux_buf *buf,
1134 size_t size, const char *name, struct dentry *parent)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001135{
1136 buf->vaddr = dma_alloc_coherent(&dev->plat_dev->dev, size, &buf->paddr,
1137 GFP_KERNEL);
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001138 if (!buf->vaddr) {
1139 v4l2_err(&dev->v4l2_dev,
1140 "Failed to allocate %s buffer of size %u\n",
1141 name, size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001142 return -ENOMEM;
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001143 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001144
1145 buf->size = size;
1146
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001147 if (name && parent) {
1148 buf->blob.data = buf->vaddr;
1149 buf->blob.size = size;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001150 buf->dentry = debugfs_create_blob(name, 0644, parent,
1151 &buf->blob);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001152 if (!buf->dentry)
1153 dev_warn(&dev->plat_dev->dev,
1154 "failed to create debugfs entry %s\n", name);
1155 }
1156
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001157 return 0;
1158}
1159
Philipp Zabel79924ca2014-07-23 12:28:45 -03001160void coda_free_aux_buf(struct coda_dev *dev,
1161 struct coda_aux_buf *buf)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001162{
1163 if (buf->vaddr) {
1164 dma_free_coherent(&dev->plat_dev->dev, buf->size,
1165 buf->vaddr, buf->paddr);
1166 buf->vaddr = NULL;
1167 buf->size = 0;
Peter Seidererd446ec82015-03-24 14:30:48 -03001168 debugfs_remove(buf->dentry);
1169 buf->dentry = NULL;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001170 }
1171}
1172
Javier Martin186b2502012-07-26 05:53:35 -03001173static int coda_start_streaming(struct vb2_queue *q, unsigned int count)
1174{
1175 struct coda_ctx *ctx = vb2_get_drv_priv(q);
1176 struct v4l2_device *v4l2_dev = &ctx->dev->v4l2_dev;
Javier Martin186b2502012-07-26 05:53:35 -03001177 struct coda_q_data *q_data_src, *q_data_dst;
Philipp Zabelb9063522014-08-05 14:00:10 -03001178 struct vb2_buffer *buf;
Philipp Zabeld35167a2013-05-23 10:42:59 -03001179 int ret = 0;
Javier Martin186b2502012-07-26 05:53:35 -03001180
Philipp Zabelb96904e2013-05-23 10:42:58 -03001181 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001182 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel58bc7ed2015-07-09 07:10:14 -03001183 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit) {
Philipp Zabel582d88722015-03-24 14:30:57 -03001184 /* copy the buffers that were queued before streamon */
Michael Olbricheabed932014-07-18 07:22:40 -03001185 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel582d88722015-03-24 14:30:57 -03001186 coda_fill_bitstream(ctx, false);
Michael Olbricheabed932014-07-18 07:22:40 -03001187 mutex_unlock(&ctx->bitstream_mutex);
1188
Philipp Zabelb9063522014-08-05 14:00:10 -03001189 if (coda_get_bitstream_payload(ctx) < 512) {
1190 ret = -EINVAL;
1191 goto err;
1192 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001193 } else {
Philipp Zabelb9063522014-08-05 14:00:10 -03001194 if (count < 1) {
1195 ret = -EINVAL;
1196 goto err;
1197 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001198 }
1199
1200 ctx->streamon_out = 1;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001201 } else {
Philipp Zabelb9063522014-08-05 14:00:10 -03001202 if (count < 1) {
1203 ret = -EINVAL;
1204 goto err;
1205 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001206
1207 ctx->streamon_cap = 1;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001208 }
Javier Martin186b2502012-07-26 05:53:35 -03001209
Philipp Zabelb96904e2013-05-23 10:42:58 -03001210 /* Don't start the coda unless both queues are on */
1211 if (!(ctx->streamon_out & ctx->streamon_cap))
1212 return 0;
Javier Martin186b2502012-07-26 05:53:35 -03001213
Philipp Zabel23b6ee52015-03-24 14:30:55 -03001214 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1215 if ((q_data_src->width != q_data_dst->width &&
1216 round_up(q_data_src->width, 16) != q_data_dst->width) ||
1217 (q_data_src->height != q_data_dst->height &&
1218 round_up(q_data_src->height, 16) != q_data_dst->height)) {
1219 v4l2_err(v4l2_dev, "can't convert %dx%d to %dx%d\n",
1220 q_data_src->width, q_data_src->height,
1221 q_data_dst->width, q_data_dst->height);
1222 ret = -EINVAL;
1223 goto err;
1224 }
1225
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001226 /* Allow BIT decoder device_run with no new buffers queued */
Philipp Zabela22496c2015-01-23 13:51:33 -03001227 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit)
Philipp Zabel14604e32014-07-11 06:36:22 -03001228 v4l2_m2m_set_src_buffered(ctx->fh.m2m_ctx, true);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001229
Philipp Zabelb96904e2013-05-23 10:42:58 -03001230 ctx->gopcounter = ctx->params.gop_size - 1;
Javier Martin186b2502012-07-26 05:53:35 -03001231
Philipp Zabelb96904e2013-05-23 10:42:58 -03001232 ctx->codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
1233 q_data_dst->fourcc);
1234 if (!ctx->codec) {
Javier Martin186b2502012-07-26 05:53:35 -03001235 v4l2_err(v4l2_dev, "couldn't tell instance type.\n");
Philipp Zabelb9063522014-08-05 14:00:10 -03001236 ret = -EINVAL;
1237 goto err;
Javier Martin186b2502012-07-26 05:53:35 -03001238 }
1239
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001240 if (q_data_dst->fourcc == V4L2_PIX_FMT_JPEG)
1241 ctx->params.gop_size = 1;
1242 ctx->gopcounter = ctx->params.gop_size - 1;
1243
Philipp Zabela1192a12014-07-23 12:28:40 -03001244 ret = ctx->ops->start_streaming(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001245 if (ctx->inst_type == CODA_INST_DECODER) {
Philipp Zabel89548442014-07-11 06:36:17 -03001246 if (ret == -EAGAIN)
Philipp Zabel918c66f2013-06-27 06:59:01 -03001247 return 0;
Philipp Zabel89548442014-07-11 06:36:17 -03001248 else if (ret < 0)
Philipp Zabelb9063522014-08-05 14:00:10 -03001249 goto err;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001250 }
1251
Philipp Zabel89548442014-07-11 06:36:17 -03001252 return ret;
Philipp Zabelb9063522014-08-05 14:00:10 -03001253
1254err:
1255 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1256 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b58c52014-10-21 13:25:52 -03001257 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001258 } else {
1259 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b58c52014-10-21 13:25:52 -03001260 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001261 }
1262 return ret;
Philipp Zabel89548442014-07-11 06:36:17 -03001263}
1264
Hans Verkuile37559b2014-04-17 02:47:21 -03001265static void coda_stop_streaming(struct vb2_queue *q)
Javier Martin186b2502012-07-26 05:53:35 -03001266{
1267 struct coda_ctx *ctx = vb2_get_drv_priv(q);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03001268 struct coda_dev *dev = ctx->dev;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001269 struct vb2_buffer *buf;
Philipp Zabel5c76c2c2015-03-24 14:30:56 -03001270 bool stop;
1271
1272 stop = ctx->streamon_out && ctx->streamon_cap;
Javier Martin186b2502012-07-26 05:53:35 -03001273
1274 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001275 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001276 "%s: output\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001277 ctx->streamon_out = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001278
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001279 coda_bit_stream_end_flag(ctx);
Philipp Zabel4a31b522014-08-05 14:00:11 -03001280
Philipp Zabel6dd5ef52015-01-23 13:51:26 -03001281 ctx->qsequence = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001282
1283 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
1284 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001285 } else {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001286 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001287 "%s: capture\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001288 ctx->streamon_cap = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001289
1290 ctx->osequence = 0;
Philipp Zabelcb2c0282014-07-11 06:36:33 -03001291 ctx->sequence_offset = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001292
1293 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
1294 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001295 }
1296
Philipp Zabel5c76c2c2015-03-24 14:30:56 -03001297 if (stop) {
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001298 struct coda_buffer_meta *meta;
Philipp Zabel846ced92014-07-11 06:36:31 -03001299
Philipp Zabelf4706d62015-01-23 13:51:27 -03001300 if (ctx->ops->seq_end_work) {
1301 queue_work(dev->workqueue, &ctx->seq_end_work);
1302 flush_work(&ctx->seq_end_work);
1303 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001304 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001305 while (!list_empty(&ctx->buffer_meta_list)) {
1306 meta = list_first_entry(&ctx->buffer_meta_list,
1307 struct coda_buffer_meta, list);
1308 list_del(&meta->list);
1309 kfree(meta);
Philipp Zabel846ced92014-07-11 06:36:31 -03001310 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001311 mutex_unlock(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001312 kfifo_init(&ctx->bitstream_fifo,
1313 ctx->bitstream.vaddr, ctx->bitstream.size);
1314 ctx->runcounter = 0;
Philipp Zabelf157cf42014-09-29 09:53:42 -03001315 ctx->aborting = 0;
Philipp Zabel62bed142012-07-25 10:40:39 -03001316 }
Philipp Zabelc1ae0b22015-07-09 07:10:17 -03001317
1318 if (!ctx->streamon_out && !ctx->streamon_cap)
1319 ctx->bit_stream_param &= ~CODA_BIT_STREAM_END_FLAG;
Javier Martin186b2502012-07-26 05:53:35 -03001320}
1321
Philipp Zabel121cacf2014-07-18 07:22:42 -03001322static const struct vb2_ops coda_qops = {
Javier Martin186b2502012-07-26 05:53:35 -03001323 .queue_setup = coda_queue_setup,
1324 .buf_prepare = coda_buf_prepare,
1325 .buf_queue = coda_buf_queue,
Javier Martin186b2502012-07-26 05:53:35 -03001326 .start_streaming = coda_start_streaming,
1327 .stop_streaming = coda_stop_streaming,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001328 .wait_prepare = vb2_ops_wait_prepare,
1329 .wait_finish = vb2_ops_wait_finish,
Javier Martin186b2502012-07-26 05:53:35 -03001330};
1331
1332static int coda_s_ctrl(struct v4l2_ctrl *ctrl)
1333{
1334 struct coda_ctx *ctx =
1335 container_of(ctrl->handler, struct coda_ctx, ctrls);
1336
1337 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1338 "s_ctrl: id = %d, val = %d\n", ctrl->id, ctrl->val);
1339
1340 switch (ctrl->id) {
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001341 case V4L2_CID_HFLIP:
1342 if (ctrl->val)
1343 ctx->params.rot_mode |= CODA_MIR_HOR;
1344 else
1345 ctx->params.rot_mode &= ~CODA_MIR_HOR;
1346 break;
1347 case V4L2_CID_VFLIP:
1348 if (ctrl->val)
1349 ctx->params.rot_mode |= CODA_MIR_VER;
1350 else
1351 ctx->params.rot_mode &= ~CODA_MIR_VER;
1352 break;
Javier Martin186b2502012-07-26 05:53:35 -03001353 case V4L2_CID_MPEG_VIDEO_BITRATE:
1354 ctx->params.bitrate = ctrl->val / 1000;
1355 break;
1356 case V4L2_CID_MPEG_VIDEO_GOP_SIZE:
1357 ctx->params.gop_size = ctrl->val;
1358 break;
1359 case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP:
1360 ctx->params.h264_intra_qp = ctrl->val;
1361 break;
1362 case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP:
1363 ctx->params.h264_inter_qp = ctrl->val;
1364 break;
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001365 case V4L2_CID_MPEG_VIDEO_H264_MIN_QP:
1366 ctx->params.h264_min_qp = ctrl->val;
1367 break;
1368 case V4L2_CID_MPEG_VIDEO_H264_MAX_QP:
1369 ctx->params.h264_max_qp = ctrl->val;
1370 break;
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001371 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA:
1372 ctx->params.h264_deblk_alpha = ctrl->val;
1373 break;
1374 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA:
1375 ctx->params.h264_deblk_beta = ctrl->val;
1376 break;
1377 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
1378 ctx->params.h264_deblk_enabled = (ctrl->val ==
1379 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1380 break;
Javier Martin186b2502012-07-26 05:53:35 -03001381 case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP:
1382 ctx->params.mpeg4_intra_qp = ctrl->val;
1383 break;
1384 case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP:
1385 ctx->params.mpeg4_inter_qp = ctrl->val;
1386 break;
1387 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
1388 ctx->params.slice_mode = ctrl->val;
1389 break;
1390 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB:
1391 ctx->params.slice_max_mb = ctrl->val;
1392 break;
Philipp Zabelc566c782012-08-08 11:59:38 -03001393 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES:
1394 ctx->params.slice_max_bits = ctrl->val * 8;
1395 break;
Javier Martin186b2502012-07-26 05:53:35 -03001396 case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
1397 break;
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001398 case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB:
1399 ctx->params.intra_refresh = ctrl->val;
1400 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001401 case V4L2_CID_JPEG_COMPRESSION_QUALITY:
1402 coda_set_jpeg_compression_quality(ctx, ctrl->val);
1403 break;
1404 case V4L2_CID_JPEG_RESTART_INTERVAL:
1405 ctx->params.jpeg_restart_interval = ctrl->val;
1406 break;
Javier Martin186b2502012-07-26 05:53:35 -03001407 default:
1408 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1409 "Invalid control, id=%d, val=%d\n",
1410 ctrl->id, ctrl->val);
1411 return -EINVAL;
1412 }
1413
1414 return 0;
1415}
1416
Philipp Zabel814c3762014-07-18 07:22:45 -03001417static const struct v4l2_ctrl_ops coda_ctrl_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001418 .s_ctrl = coda_s_ctrl,
1419};
1420
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001421static void coda_encode_ctrls(struct coda_ctx *ctx)
Javier Martin186b2502012-07-26 05:53:35 -03001422{
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001423 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel92b042e2015-03-18 08:15:36 -03001424 V4L2_CID_MPEG_VIDEO_BITRATE, 0, 32767000, 1000, 0);
Javier Martin186b2502012-07-26 05:53:35 -03001425 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1426 V4L2_CID_MPEG_VIDEO_GOP_SIZE, 1, 60, 1, 16);
1427 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001428 V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP, 0, 51, 1, 25);
Javier Martin186b2502012-07-26 05:53:35 -03001429 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001430 V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP, 0, 51, 1, 25);
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001431 if (ctx->dev->devtype->product != CODA_960) {
1432 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1433 V4L2_CID_MPEG_VIDEO_H264_MIN_QP, 0, 51, 1, 12);
1434 }
1435 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1436 V4L2_CID_MPEG_VIDEO_H264_MAX_QP, 0, 51, 1, 51);
Javier Martin186b2502012-07-26 05:53:35 -03001437 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001438 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA, 0, 15, 1, 0);
1439 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1440 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA, 0, 15, 1, 0);
1441 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1442 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE,
1443 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED, 0x0,
1444 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1445 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Javier Martin186b2502012-07-26 05:53:35 -03001446 V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP, 1, 31, 1, 2);
1447 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1448 V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP, 1, 31, 1, 2);
1449 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1450 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE,
Philipp Zabelc566c782012-08-08 11:59:38 -03001451 V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES, 0x0,
1452 V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE);
Javier Martin186b2502012-07-26 05:53:35 -03001453 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1454 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB, 1, 0x3fffffff, 1, 1);
Philipp Zabelc566c782012-08-08 11:59:38 -03001455 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001456 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES, 1, 0x3fffffff, 1,
1457 500);
Javier Martin186b2502012-07-26 05:53:35 -03001458 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1459 V4L2_CID_MPEG_VIDEO_HEADER_MODE,
1460 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME,
1461 (1 << V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE),
1462 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME);
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001463 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001464 V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB, 0,
1465 1920 * 1088 / 256, 1, 0);
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001466}
1467
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001468static void coda_jpeg_encode_ctrls(struct coda_ctx *ctx)
1469{
1470 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1471 V4L2_CID_JPEG_COMPRESSION_QUALITY, 5, 100, 1, 50);
1472 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1473 V4L2_CID_JPEG_RESTART_INTERVAL, 0, 100, 1, 0);
1474}
1475
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001476static int coda_ctrls_setup(struct coda_ctx *ctx)
1477{
1478 v4l2_ctrl_handler_init(&ctx->ctrls, 2);
1479
1480 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1481 V4L2_CID_HFLIP, 0, 1, 1, 0);
1482 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1483 V4L2_CID_VFLIP, 0, 1, 1, 0);
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001484 if (ctx->inst_type == CODA_INST_ENCODER) {
1485 if (ctx->cvd->dst_formats[0] == V4L2_PIX_FMT_JPEG)
1486 coda_jpeg_encode_ctrls(ctx);
1487 else
1488 coda_encode_ctrls(ctx);
1489 }
Javier Martin186b2502012-07-26 05:53:35 -03001490
1491 if (ctx->ctrls.error) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001492 v4l2_err(&ctx->dev->v4l2_dev,
1493 "control initialization error (%d)",
Javier Martin186b2502012-07-26 05:53:35 -03001494 ctx->ctrls.error);
1495 return -EINVAL;
1496 }
1497
1498 return v4l2_ctrl_handler_setup(&ctx->ctrls);
1499}
1500
Philipp Zabel121cacf2014-07-18 07:22:42 -03001501static int coda_queue_init(struct coda_ctx *ctx, struct vb2_queue *vq)
Javier Martin186b2502012-07-26 05:53:35 -03001502{
Philipp Zabel121cacf2014-07-18 07:22:42 -03001503 vq->drv_priv = ctx;
1504 vq->ops = &coda_qops;
1505 vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
1506 vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
1507 vq->lock = &ctx->dev->dev_mutex;
Kamil Debskie4af23d2015-02-23 09:26:18 -03001508 /* One way to indicate end-of-stream for coda is to set the
1509 * bytesused == 0. However by default videobuf2 handles bytesused
1510 * equal to 0 as a special case and changes its value to the size
1511 * of the buffer. Set the allow_zero_bytesused flag, so
1512 * that videobuf2 will keep the value of bytesused intact.
1513 */
1514 vq->allow_zero_bytesused = 1;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001515
1516 return vb2_queue_init(vq);
1517}
1518
Philipp Zabel79924ca2014-07-23 12:28:45 -03001519int coda_encoder_queue_init(void *priv, struct vb2_queue *src_vq,
1520 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001521{
Javier Martin186b2502012-07-26 05:53:35 -03001522 int ret;
1523
Javier Martin186b2502012-07-26 05:53:35 -03001524 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001525 src_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001526 src_vq->mem_ops = &vb2_dma_contig_memops;
1527
Philipp Zabel121cacf2014-07-18 07:22:42 -03001528 ret = coda_queue_init(priv, src_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001529 if (ret)
1530 return ret;
1531
Javier Martin186b2502012-07-26 05:53:35 -03001532 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001533 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001534 dst_vq->mem_ops = &vb2_dma_contig_memops;
1535
Philipp Zabel121cacf2014-07-18 07:22:42 -03001536 return coda_queue_init(priv, dst_vq);
1537}
1538
Philipp Zabel79924ca2014-07-23 12:28:45 -03001539int coda_decoder_queue_init(void *priv, struct vb2_queue *src_vq,
1540 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001541{
1542 int ret;
1543
1544 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabelbb04aa62015-01-23 13:51:30 -03001545 src_vq->io_modes = VB2_DMABUF | VB2_MMAP | VB2_USERPTR;
1546 src_vq->mem_ops = &vb2_vmalloc_memops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001547
1548 ret = coda_queue_init(priv, src_vq);
1549 if (ret)
1550 return ret;
1551
1552 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1553 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
1554 dst_vq->mem_ops = &vb2_dma_contig_memops;
1555
1556 return coda_queue_init(priv, dst_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001557}
1558
Philipp Zabele11f3e62012-07-25 09:16:58 -03001559static int coda_next_free_instance(struct coda_dev *dev)
1560{
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001561 int idx = ffz(dev->instance_mask);
1562
1563 if ((idx < 0) ||
1564 (dev->devtype->product == CODA_DX6 && idx > CODADX6_MAX_INSTANCES))
1565 return -EBUSY;
1566
1567 return idx;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001568}
1569
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001570/*
1571 * File operations
1572 */
1573
1574static int coda_open(struct file *file)
Javier Martin186b2502012-07-26 05:53:35 -03001575{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001576 struct video_device *vdev = video_devdata(file);
1577 struct coda_dev *dev = video_get_drvdata(vdev);
Javier Martin186b2502012-07-26 05:53:35 -03001578 struct coda_ctx *ctx = NULL;
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001579 char *name;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001580 int ret;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001581 int idx;
Javier Martin186b2502012-07-26 05:53:35 -03001582
Philipp Zabelf23797b2014-08-06 08:02:23 -03001583 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Javier Martin186b2502012-07-26 05:53:35 -03001584 if (!ctx)
1585 return -ENOMEM;
1586
Fabio Estevamf82bc202013-08-21 11:14:16 -03001587 idx = coda_next_free_instance(dev);
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001588 if (idx < 0) {
1589 ret = idx;
Fabio Estevamf82bc202013-08-21 11:14:16 -03001590 goto err_coda_max;
1591 }
1592 set_bit(idx, &dev->instance_mask);
1593
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001594 name = kasprintf(GFP_KERNEL, "context%d", idx);
Peter Seiderera7f933a2015-03-24 14:30:47 -03001595 if (!name) {
1596 ret = -ENOMEM;
1597 goto err_coda_name_init;
1598 }
1599
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001600 ctx->debugfs_entry = debugfs_create_dir(name, dev->debugfs_root);
1601 kfree(name);
1602
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001603 ctx->cvd = to_coda_video_device(vdev);
1604 ctx->inst_type = ctx->cvd->type;
1605 ctx->ops = ctx->cvd->ops;
Philipp Zabela22496c2015-01-23 13:51:33 -03001606 ctx->use_bit = !ctx->cvd->direct;
Philipp Zabel32b6f202014-07-11 06:36:20 -03001607 init_completion(&ctx->completion);
1608 INIT_WORK(&ctx->pic_run_work, coda_pic_run_work);
Philipp Zabel747d7642015-01-23 13:51:31 -03001609 if (ctx->ops->seq_end_work)
1610 INIT_WORK(&ctx->seq_end_work, ctx->ops->seq_end_work);
Javier Martin186b2502012-07-26 05:53:35 -03001611 v4l2_fh_init(&ctx->fh, video_devdata(file));
1612 file->private_data = &ctx->fh;
1613 v4l2_fh_add(&ctx->fh);
1614 ctx->dev = dev;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001615 ctx->idx = idx;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001616 switch (dev->devtype->product) {
Philipp Zabel89548442014-07-11 06:36:17 -03001617 case CODA_960:
Philipp Zabel2bf299c2014-09-29 09:53:46 -03001618 ctx->frame_mem_ctrl = 1 << 12;
1619 /* fallthrough */
1620 case CODA_7541:
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001621 ctx->reg_idx = 0;
1622 break;
1623 default:
1624 ctx->reg_idx = idx;
1625 }
Fabio Estevamf82bc202013-08-21 11:14:16 -03001626
Philipp Zabel1e172732014-07-11 06:36:23 -03001627 /* Power up and upload firmware if necessary */
1628 ret = pm_runtime_get_sync(&dev->plat_dev->dev);
1629 if (ret < 0) {
1630 v4l2_err(&dev->v4l2_dev, "failed to power up: %d\n", ret);
1631 goto err_pm_get;
1632 }
1633
Fabio Estevam79830db2013-08-21 11:14:17 -03001634 ret = clk_prepare_enable(dev->clk_per);
1635 if (ret)
1636 goto err_clk_per;
1637
1638 ret = clk_prepare_enable(dev->clk_ahb);
1639 if (ret)
1640 goto err_clk_ahb;
1641
Javier Martin186b2502012-07-26 05:53:35 -03001642 set_default_params(ctx);
Philipp Zabela1192a12014-07-23 12:28:40 -03001643 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx,
1644 ctx->ops->queue_init);
Philipp Zabel14604e32014-07-11 06:36:22 -03001645 if (IS_ERR(ctx->fh.m2m_ctx)) {
1646 ret = PTR_ERR(ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -03001647
1648 v4l2_err(&dev->v4l2_dev, "%s return error (%d)\n",
1649 __func__, ret);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001650 goto err_ctx_init;
Javier Martin186b2502012-07-26 05:53:35 -03001651 }
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001652
Javier Martin186b2502012-07-26 05:53:35 -03001653 ret = coda_ctrls_setup(ctx);
1654 if (ret) {
1655 v4l2_err(&dev->v4l2_dev, "failed to setup coda controls\n");
Fabio Estevamf82bc202013-08-21 11:14:16 -03001656 goto err_ctrls_setup;
Javier Martin186b2502012-07-26 05:53:35 -03001657 }
1658
1659 ctx->fh.ctrl_handler = &ctx->ctrls;
1660
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001661 mutex_init(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001662 mutex_init(&ctx->buffer_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001663 INIT_LIST_HEAD(&ctx->buffer_meta_list);
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001664
Javier Martin186b2502012-07-26 05:53:35 -03001665 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001666 list_add(&ctx->list, &dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03001667 coda_unlock(ctx);
1668
Javier Martin186b2502012-07-26 05:53:35 -03001669 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Created instance %d (%p)\n",
1670 ctx->idx, ctx);
1671
1672 return 0;
1673
Fabio Estevamf82bc202013-08-21 11:14:16 -03001674err_ctrls_setup:
Philipp Zabel14604e32014-07-11 06:36:22 -03001675 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001676err_ctx_init:
1677 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevam79830db2013-08-21 11:14:17 -03001678err_clk_ahb:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001679 clk_disable_unprepare(dev->clk_per);
Fabio Estevam79830db2013-08-21 11:14:17 -03001680err_clk_per:
Philipp Zabel1e172732014-07-11 06:36:23 -03001681 pm_runtime_put_sync(&dev->plat_dev->dev);
1682err_pm_get:
Javier Martin186b2502012-07-26 05:53:35 -03001683 v4l2_fh_del(&ctx->fh);
1684 v4l2_fh_exit(&ctx->fh);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001685 clear_bit(ctx->idx, &dev->instance_mask);
Peter Seiderera7f933a2015-03-24 14:30:47 -03001686err_coda_name_init:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001687err_coda_max:
Javier Martin186b2502012-07-26 05:53:35 -03001688 kfree(ctx);
1689 return ret;
1690}
1691
1692static int coda_release(struct file *file)
1693{
1694 struct coda_dev *dev = video_drvdata(file);
1695 struct coda_ctx *ctx = fh_to_ctx(file->private_data);
1696
1697 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Releasing instance %p\n",
1698 ctx);
1699
Philipp Zabela22496c2015-01-23 13:51:33 -03001700 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit)
Philipp Zabeld4bb75f2014-10-08 13:09:11 -03001701 coda_bit_stream_end_flag(ctx);
1702
Philipp Zabel918c66f2013-06-27 06:59:01 -03001703 /* If this instance is running, call .job_abort and wait for it to end */
Philipp Zabel14604e32014-07-11 06:36:22 -03001704 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001705
1706 /* In case the instance was not running, we still need to call SEQ_END */
Philipp Zabel5c718bb2015-07-09 07:10:16 -03001707 if (ctx->ops->seq_end_work) {
Philipp Zabel32b6f202014-07-11 06:36:20 -03001708 queue_work(dev->workqueue, &ctx->seq_end_work);
1709 flush_work(&ctx->seq_end_work);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001710 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001711
Javier Martin186b2502012-07-26 05:53:35 -03001712 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001713 list_del(&ctx->list);
Javier Martin186b2502012-07-26 05:53:35 -03001714 coda_unlock(ctx);
1715
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001716 if (ctx->dev->devtype->product == CODA_DX6)
1717 coda_free_aux_buf(dev, &ctx->workbuf);
1718
Javier Martin186b2502012-07-26 05:53:35 -03001719 v4l2_ctrl_handler_free(&ctx->ctrls);
Javier Martin186b2502012-07-26 05:53:35 -03001720 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001721 clk_disable_unprepare(dev->clk_per);
Philipp Zabel1e172732014-07-11 06:36:23 -03001722 pm_runtime_put_sync(&dev->plat_dev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001723 v4l2_fh_del(&ctx->fh);
1724 v4l2_fh_exit(&ctx->fh);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001725 clear_bit(ctx->idx, &dev->instance_mask);
Philipp Zabel58b76772014-07-23 12:28:43 -03001726 if (ctx->ops->release)
1727 ctx->ops->release(ctx);
Philipp Zabele1519e82015-01-23 13:51:17 -03001728 debugfs_remove_recursive(ctx->debugfs_entry);
Javier Martin186b2502012-07-26 05:53:35 -03001729 kfree(ctx);
1730
1731 return 0;
1732}
1733
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001734static const struct v4l2_file_operations coda_fops = {
Javier Martin186b2502012-07-26 05:53:35 -03001735 .owner = THIS_MODULE,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001736 .open = coda_open,
Javier Martin186b2502012-07-26 05:53:35 -03001737 .release = coda_release,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001738 .poll = v4l2_m2m_fop_poll,
Javier Martin186b2502012-07-26 05:53:35 -03001739 .unlocked_ioctl = video_ioctl2,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001740 .mmap = v4l2_m2m_fop_mmap,
Javier Martin186b2502012-07-26 05:53:35 -03001741};
1742
Philipp Zabel87048bb2012-07-02 07:03:43 -03001743static int coda_hw_init(struct coda_dev *dev)
Javier Martin186b2502012-07-26 05:53:35 -03001744{
Javier Martin186b2502012-07-26 05:53:35 -03001745 u32 data;
1746 u16 *p;
Fabio Estevam79830db2013-08-21 11:14:17 -03001747 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001748
Fabio Estevam79830db2013-08-21 11:14:17 -03001749 ret = clk_prepare_enable(dev->clk_per);
1750 if (ret)
Philipp Zabel1e172732014-07-11 06:36:23 -03001751 goto err_clk_per;
Fabio Estevam79830db2013-08-21 11:14:17 -03001752
1753 ret = clk_prepare_enable(dev->clk_ahb);
1754 if (ret)
1755 goto err_clk_ahb;
Javier Martin186b2502012-07-26 05:53:35 -03001756
Philipp Zabel8f452842014-07-11 06:36:35 -03001757 if (dev->rstc)
1758 reset_control_reset(dev->rstc);
1759
Javier Martin186b2502012-07-26 05:53:35 -03001760 /*
1761 * Copy the first CODA_ISRAM_SIZE in the internal SRAM.
Philipp Zabel87048bb2012-07-02 07:03:43 -03001762 * The 16-bit chars in the code buffer are in memory access
1763 * order, re-sort them to CODA order for register download.
Javier Martin186b2502012-07-26 05:53:35 -03001764 * Data in this SRAM survives a reboot.
1765 */
Philipp Zabel87048bb2012-07-02 07:03:43 -03001766 p = (u16 *)dev->codebuf.vaddr;
1767 if (dev->devtype->product == CODA_DX6) {
1768 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1769 data = CODA_DOWN_ADDRESS_SET(i) |
1770 CODA_DOWN_DATA_SET(p[i ^ 1]);
1771 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1772 }
1773 } else {
1774 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1775 data = CODA_DOWN_ADDRESS_SET(i) |
1776 CODA_DOWN_DATA_SET(p[round_down(i, 4) +
1777 3 - (i % 4)]);
1778 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1779 }
Javier Martin186b2502012-07-26 05:53:35 -03001780 }
Javier Martin186b2502012-07-26 05:53:35 -03001781
Philipp Zabel9acf7692013-05-23 10:42:56 -03001782 /* Clear registers */
1783 for (i = 0; i < 64; i++)
1784 coda_write(dev, 0, CODA_REG_BIT_CODE_BUF_ADDR + i * 4);
1785
Javier Martin186b2502012-07-26 05:53:35 -03001786 /* Tell the BIT where to find everything it needs */
Philipp Zabel89548442014-07-11 06:36:17 -03001787 if (dev->devtype->product == CODA_960 ||
1788 dev->devtype->product == CODA_7541) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001789 coda_write(dev, dev->tempbuf.paddr,
1790 CODA_REG_BIT_TEMP_BUF_ADDR);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001791 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001792 } else {
1793 coda_write(dev, dev->workbuf.paddr,
1794 CODA_REG_BIT_WORK_BUF_ADDR);
1795 }
Javier Martin186b2502012-07-26 05:53:35 -03001796 coda_write(dev, dev->codebuf.paddr,
1797 CODA_REG_BIT_CODE_BUF_ADDR);
1798 coda_write(dev, 0, CODA_REG_BIT_CODE_RUN);
1799
1800 /* Set default values */
1801 switch (dev->devtype->product) {
1802 case CODA_DX6:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001803 coda_write(dev, CODADX6_STREAM_BUF_PIC_FLUSH,
1804 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001805 break;
1806 default:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001807 coda_write(dev, CODA7_STREAM_BUF_PIC_FLUSH,
1808 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001809 }
Philipp Zabel89548442014-07-11 06:36:17 -03001810 if (dev->devtype->product == CODA_960)
1811 coda_write(dev, 1 << 12, CODA_REG_BIT_FRAME_MEM_CTRL);
1812 else
1813 coda_write(dev, 0, CODA_REG_BIT_FRAME_MEM_CTRL);
Philipp Zabel10436672012-07-02 09:03:55 -03001814
1815 if (dev->devtype->product != CODA_DX6)
1816 coda_write(dev, 0, CODA7_REG_BIT_AXI_SRAM_USE);
1817
Javier Martin186b2502012-07-26 05:53:35 -03001818 coda_write(dev, CODA_INT_INTERRUPT_ENABLE,
1819 CODA_REG_BIT_INT_ENABLE);
1820
1821 /* Reset VPU and start processor */
1822 data = coda_read(dev, CODA_REG_BIT_CODE_RESET);
1823 data |= CODA_REG_RESET_ENABLE;
1824 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1825 udelay(10);
1826 data &= ~CODA_REG_RESET_ENABLE;
1827 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1828 coda_write(dev, CODA_REG_RUN_ENABLE, CODA_REG_BIT_CODE_RUN);
1829
Philipp Zabelfe7554e2014-07-11 06:36:24 -03001830 clk_disable_unprepare(dev->clk_ahb);
1831 clk_disable_unprepare(dev->clk_per);
1832
1833 return 0;
1834
1835err_clk_ahb:
1836 clk_disable_unprepare(dev->clk_per);
1837err_clk_per:
1838 return ret;
1839}
1840
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001841static int coda_register_device(struct coda_dev *dev, int i)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001842{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001843 struct video_device *vfd = &dev->vfd[i];
1844
Dan Carpenter88ca3af2015-01-08 07:07:08 -03001845 if (i >= dev->devtype->num_vdevs)
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001846 return -EINVAL;
1847
Philipp Zabelbf249da2015-03-24 14:30:50 -03001848 strlcpy(vfd->name, dev->devtype->vdevs[i]->name, sizeof(vfd->name));
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001849 vfd->fops = &coda_fops;
1850 vfd->ioctl_ops = &coda_ioctl_ops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001851 vfd->release = video_device_release_empty,
1852 vfd->lock = &dev->dev_mutex;
1853 vfd->v4l2_dev = &dev->v4l2_dev;
1854 vfd->vfl_dir = VFL_DIR_M2M;
1855 video_set_drvdata(vfd, dev);
1856
Philipp Zabela188a662014-08-05 14:00:20 -03001857 /* Not applicable, use the selection API instead */
1858 v4l2_disable_ioctl(vfd, VIDIOC_CROPCAP);
1859 v4l2_disable_ioctl(vfd, VIDIOC_G_CROP);
1860 v4l2_disable_ioctl(vfd, VIDIOC_S_CROP);
1861
Philipp Zabel121cacf2014-07-18 07:22:42 -03001862 return video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1863}
1864
Javier Martin186b2502012-07-26 05:53:35 -03001865static void coda_fw_callback(const struct firmware *fw, void *context)
1866{
1867 struct coda_dev *dev = context;
1868 struct platform_device *pdev = dev->plat_dev;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001869 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001870
1871 if (!fw) {
1872 v4l2_err(&dev->v4l2_dev, "firmware request failed\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001873 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001874 }
1875
1876 /* allocate auxiliary per-device code buffer for the BIT processor */
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001877 ret = coda_alloc_aux_buf(dev, &dev->codebuf, fw->size, "codebuf",
1878 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03001879 if (ret < 0)
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001880 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001881
Philipp Zabel87048bb2012-07-02 07:03:43 -03001882 /* Copy the whole firmware image to the code buffer */
1883 memcpy(dev->codebuf.vaddr, fw->data, fw->size);
1884 release_firmware(fw);
1885
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001886 ret = coda_hw_init(dev);
1887 if (ret < 0) {
1888 v4l2_err(&dev->v4l2_dev, "HW initialization failed\n");
1889 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001890 }
1891
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001892 ret = coda_check_firmware(dev);
1893 if (ret < 0)
1894 goto put_pm;
1895
Javier Martin186b2502012-07-26 05:53:35 -03001896 dev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
1897 if (IS_ERR(dev->alloc_ctx)) {
1898 v4l2_err(&dev->v4l2_dev, "Failed to alloc vb2 context\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001899 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03001900 }
1901
1902 dev->m2m_dev = v4l2_m2m_init(&coda_m2m_ops);
1903 if (IS_ERR(dev->m2m_dev)) {
1904 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
1905 goto rel_ctx;
1906 }
1907
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001908 for (i = 0; i < dev->devtype->num_vdevs; i++) {
1909 ret = coda_register_device(dev, i);
1910 if (ret) {
1911 v4l2_err(&dev->v4l2_dev,
1912 "Failed to register %s video device: %d\n",
1913 dev->devtype->vdevs[i]->name, ret);
1914 goto rel_vfd;
1915 }
Philipp Zabel121cacf2014-07-18 07:22:42 -03001916 }
1917
1918 v4l2_info(&dev->v4l2_dev, "codec registered as /dev/video[%d-%d]\n",
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001919 dev->vfd[0].num, dev->vfd[i - 1].num);
Javier Martin186b2502012-07-26 05:53:35 -03001920
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001921 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001922 return;
1923
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001924rel_vfd:
1925 while (--i >= 0)
1926 video_unregister_device(&dev->vfd[i]);
Javier Martin186b2502012-07-26 05:53:35 -03001927 v4l2_m2m_release(dev->m2m_dev);
1928rel_ctx:
1929 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03001930put_pm:
1931 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001932}
1933
1934static int coda_firmware_request(struct coda_dev *dev)
1935{
1936 char *fw = dev->devtype->firmware;
1937
1938 dev_dbg(&dev->plat_dev->dev, "requesting firmware '%s' for %s\n", fw,
1939 coda_product_name(dev->devtype->product));
1940
1941 return request_firmware_nowait(THIS_MODULE, true,
1942 fw, &dev->plat_dev->dev, GFP_KERNEL, dev, coda_fw_callback);
1943}
1944
1945enum coda_platform {
1946 CODA_IMX27,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03001947 CODA_IMX53,
Philipp Zabel89548442014-07-11 06:36:17 -03001948 CODA_IMX6Q,
1949 CODA_IMX6DL,
Javier Martin186b2502012-07-26 05:53:35 -03001950};
1951
Emil Goodec06d8752012-08-14 17:44:42 -03001952static const struct coda_devtype coda_devdata[] = {
Javier Martin186b2502012-07-26 05:53:35 -03001953 [CODA_IMX27] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001954 .firmware = "v4l-codadx6-imx27.bin",
1955 .product = CODA_DX6,
1956 .codecs = codadx6_codecs,
1957 .num_codecs = ARRAY_SIZE(codadx6_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001958 .vdevs = codadx6_video_devices,
1959 .num_vdevs = ARRAY_SIZE(codadx6_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001960 .workbuf_size = 288 * 1024 + FMO_SLICE_SAVE_BUF_SIZE * 8 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03001961 .iram_size = 0xb000,
Javier Martin186b2502012-07-26 05:53:35 -03001962 },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03001963 [CODA_IMX53] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001964 .firmware = "v4l-coda7541-imx53.bin",
1965 .product = CODA_7541,
1966 .codecs = coda7_codecs,
1967 .num_codecs = ARRAY_SIZE(coda7_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001968 .vdevs = coda7_video_devices,
1969 .num_vdevs = ARRAY_SIZE(coda7_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001970 .workbuf_size = 128 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03001971 .tempbuf_size = 304 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03001972 .iram_size = 0x14000,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03001973 },
Philipp Zabel89548442014-07-11 06:36:17 -03001974 [CODA_IMX6Q] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001975 .firmware = "v4l-coda960-imx6q.bin",
1976 .product = CODA_960,
1977 .codecs = coda9_codecs,
1978 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001979 .vdevs = coda9_video_devices,
1980 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001981 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03001982 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03001983 .iram_size = 0x21000,
Philipp Zabel89548442014-07-11 06:36:17 -03001984 },
1985 [CODA_IMX6DL] = {
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001986 .firmware = "v4l-coda960-imx6dl.bin",
1987 .product = CODA_960,
1988 .codecs = coda9_codecs,
1989 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001990 .vdevs = coda9_video_devices,
1991 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03001992 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03001993 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03001994 .iram_size = 0x20000,
Philipp Zabel89548442014-07-11 06:36:17 -03001995 },
Javier Martin186b2502012-07-26 05:53:35 -03001996};
1997
1998static struct platform_device_id coda_platform_ids[] = {
1999 { .name = "coda-imx27", .driver_data = CODA_IMX27 },
2000 { /* sentinel */ }
2001};
2002MODULE_DEVICE_TABLE(platform, coda_platform_ids);
2003
2004#ifdef CONFIG_OF
2005static const struct of_device_id coda_dt_ids[] = {
Alexander Shiyan7b0dd9e2013-06-15 08:09:57 -03002006 { .compatible = "fsl,imx27-vpu", .data = &coda_devdata[CODA_IMX27] },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002007 { .compatible = "fsl,imx53-vpu", .data = &coda_devdata[CODA_IMX53] },
Philipp Zabel89548442014-07-11 06:36:17 -03002008 { .compatible = "fsl,imx6q-vpu", .data = &coda_devdata[CODA_IMX6Q] },
2009 { .compatible = "fsl,imx6dl-vpu", .data = &coda_devdata[CODA_IMX6DL] },
Javier Martin186b2502012-07-26 05:53:35 -03002010 { /* sentinel */ }
2011};
2012MODULE_DEVICE_TABLE(of, coda_dt_ids);
2013#endif
2014
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002015static int coda_probe(struct platform_device *pdev)
Javier Martin186b2502012-07-26 05:53:35 -03002016{
2017 const struct of_device_id *of_id =
2018 of_match_device(of_match_ptr(coda_dt_ids), &pdev->dev);
2019 const struct platform_device_id *pdev_id;
Philipp Zabel657eee72013-04-29 16:17:14 -07002020 struct coda_platform_data *pdata = pdev->dev.platform_data;
2021 struct device_node *np = pdev->dev.of_node;
2022 struct gen_pool *pool;
Javier Martin186b2502012-07-26 05:53:35 -03002023 struct coda_dev *dev;
2024 struct resource *res;
2025 int ret, irq;
2026
Philipp Zabelf23797b2014-08-06 08:02:23 -03002027 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
Philipp Zabel6da999d2014-09-29 09:53:43 -03002028 if (!dev)
Javier Martin186b2502012-07-26 05:53:35 -03002029 return -ENOMEM;
Javier Martin186b2502012-07-26 05:53:35 -03002030
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002031 pdev_id = of_id ? of_id->data : platform_get_device_id(pdev);
2032
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002033 if (of_id) {
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002034 dev->devtype = of_id->data;
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002035 } else if (pdev_id) {
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002036 dev->devtype = &coda_devdata[pdev_id->driver_data];
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002037 } else {
2038 ret = -EINVAL;
2039 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002040 }
2041
2042 spin_lock_init(&dev->irqlock);
Philipp Zabele11f3e62012-07-25 09:16:58 -03002043 INIT_LIST_HEAD(&dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03002044
2045 dev->plat_dev = pdev;
2046 dev->clk_per = devm_clk_get(&pdev->dev, "per");
2047 if (IS_ERR(dev->clk_per)) {
2048 dev_err(&pdev->dev, "Could not get per clock\n");
2049 return PTR_ERR(dev->clk_per);
2050 }
2051
2052 dev->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
2053 if (IS_ERR(dev->clk_ahb)) {
2054 dev_err(&pdev->dev, "Could not get ahb clock\n");
2055 return PTR_ERR(dev->clk_ahb);
2056 }
2057
2058 /* Get memory for physical registers */
2059 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Philipp Zabel611cbbf2013-05-21 04:19:27 -03002060 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
2061 if (IS_ERR(dev->regs_base))
2062 return PTR_ERR(dev->regs_base);
Javier Martin186b2502012-07-26 05:53:35 -03002063
2064 /* IRQ */
Philipp Zabel540b72e2014-08-05 14:00:09 -03002065 irq = platform_get_irq_byname(pdev, "bit");
2066 if (irq < 0)
2067 irq = platform_get_irq(pdev, 0);
Javier Martin186b2502012-07-26 05:53:35 -03002068 if (irq < 0) {
2069 dev_err(&pdev->dev, "failed to get irq resource\n");
Fabio Estevam7d377432014-06-04 15:46:23 -03002070 return irq;
Javier Martin186b2502012-07-26 05:53:35 -03002071 }
2072
Fabio Estevam08c8d142014-06-04 15:46:24 -03002073 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, coda_irq_handler,
2074 IRQF_ONESHOT, dev_name(&pdev->dev), dev);
2075 if (ret < 0) {
2076 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
2077 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002078 }
2079
Philipp Zabelee27aa92014-07-24 16:50:03 -03002080 dev->rstc = devm_reset_control_get_optional(&pdev->dev, NULL);
Philipp Zabel8f452842014-07-11 06:36:35 -03002081 if (IS_ERR(dev->rstc)) {
2082 ret = PTR_ERR(dev->rstc);
Philipp Zabelee27aa92014-07-24 16:50:03 -03002083 if (ret == -ENOENT || ret == -ENOSYS) {
Philipp Zabel8f452842014-07-11 06:36:35 -03002084 dev->rstc = NULL;
2085 } else {
Philipp Zabelf23797b2014-08-06 08:02:23 -03002086 dev_err(&pdev->dev, "failed get reset control: %d\n",
2087 ret);
Philipp Zabel8f452842014-07-11 06:36:35 -03002088 return ret;
2089 }
2090 }
2091
Philipp Zabel657eee72013-04-29 16:17:14 -07002092 /* Get IRAM pool from device tree or platform data */
Vladimir Zapolskiyabdd4a72015-06-30 15:00:07 -07002093 pool = of_gen_pool_get(np, "iram", 0);
Philipp Zabel657eee72013-04-29 16:17:14 -07002094 if (!pool && pdata)
Vladimir Zapolskiy0030edf2015-06-30 15:00:03 -07002095 pool = gen_pool_get(pdata->iram_dev);
Philipp Zabel657eee72013-04-29 16:17:14 -07002096 if (!pool) {
2097 dev_err(&pdev->dev, "iram pool not available\n");
2098 return -ENOMEM;
2099 }
2100 dev->iram_pool = pool;
2101
Javier Martin186b2502012-07-26 05:53:35 -03002102 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
2103 if (ret)
2104 return ret;
2105
2106 mutex_init(&dev->dev_mutex);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002107 mutex_init(&dev->coda_mutex);
Javier Martin186b2502012-07-26 05:53:35 -03002108
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002109 dev->debugfs_root = debugfs_create_dir("coda", NULL);
2110 if (!dev->debugfs_root)
2111 dev_warn(&pdev->dev, "failed to create debugfs root\n");
2112
Javier Martin186b2502012-07-26 05:53:35 -03002113 /* allocate auxiliary per-device buffers for the BIT processor */
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002114 if (dev->devtype->product == CODA_DX6) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002115 ret = coda_alloc_aux_buf(dev, &dev->workbuf,
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002116 dev->devtype->workbuf_size, "workbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002117 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002118 if (ret < 0)
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002119 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002120 }
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002121
2122 if (dev->devtype->tempbuf_size) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002123 ret = coda_alloc_aux_buf(dev, &dev->tempbuf,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002124 dev->devtype->tempbuf_size, "tempbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002125 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002126 if (ret < 0)
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002127 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002128 }
2129
Philipp Zabel401e9722014-07-11 06:36:43 -03002130 dev->iram.size = dev->devtype->iram_size;
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002131 dev->iram.vaddr = gen_pool_dma_alloc(dev->iram_pool, dev->iram.size,
2132 &dev->iram.paddr);
2133 if (!dev->iram.vaddr) {
Philipp Zabel8be31c82014-08-05 14:00:13 -03002134 dev_warn(&pdev->dev, "unable to alloc iram\n");
2135 } else {
Philipp Zabel811a6932015-01-23 13:51:23 -03002136 memset(dev->iram.vaddr, 0, dev->iram.size);
Philipp Zabel8be31c82014-08-05 14:00:13 -03002137 dev->iram.blob.data = dev->iram.vaddr;
2138 dev->iram.blob.size = dev->iram.size;
2139 dev->iram.dentry = debugfs_create_blob("iram", 0644,
2140 dev->debugfs_root,
2141 &dev->iram.blob);
Philipp Zabel10436672012-07-02 09:03:55 -03002142 }
2143
Philipp Zabel32b6f202014-07-11 06:36:20 -03002144 dev->workqueue = alloc_workqueue("coda", WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
2145 if (!dev->workqueue) {
2146 dev_err(&pdev->dev, "unable to alloc workqueue\n");
Fabio Estevam74d08d52014-10-04 16:40:51 -03002147 ret = -ENOMEM;
2148 goto err_v4l2_register;
Philipp Zabel32b6f202014-07-11 06:36:20 -03002149 }
2150
Javier Martin186b2502012-07-26 05:53:35 -03002151 platform_set_drvdata(pdev, dev);
2152
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002153 /*
2154 * Start activated so we can directly call coda_hw_init in
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002155 * coda_fw_callback regardless of whether CONFIG_PM is
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002156 * enabled or whether the device is associated with a PM domain.
2157 */
2158 pm_runtime_get_noresume(&pdev->dev);
2159 pm_runtime_set_active(&pdev->dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002160 pm_runtime_enable(&pdev->dev);
2161
Javier Martin186b2502012-07-26 05:53:35 -03002162 return coda_firmware_request(dev);
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002163
2164err_v4l2_register:
2165 v4l2_device_unregister(&dev->v4l2_dev);
2166 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002167}
2168
2169static int coda_remove(struct platform_device *pdev)
2170{
2171 struct coda_dev *dev = platform_get_drvdata(pdev);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002172 int i;
Javier Martin186b2502012-07-26 05:53:35 -03002173
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002174 for (i = 0; i < ARRAY_SIZE(dev->vfd); i++) {
2175 if (video_get_drvdata(&dev->vfd[i]))
2176 video_unregister_device(&dev->vfd[i]);
2177 }
Javier Martin186b2502012-07-26 05:53:35 -03002178 if (dev->m2m_dev)
2179 v4l2_m2m_release(dev->m2m_dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002180 pm_runtime_disable(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03002181 if (dev->alloc_ctx)
2182 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
2183 v4l2_device_unregister(&dev->v4l2_dev);
Philipp Zabel32b6f202014-07-11 06:36:20 -03002184 destroy_workqueue(dev->workqueue);
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002185 if (dev->iram.vaddr)
2186 gen_pool_free(dev->iram_pool, (unsigned long)dev->iram.vaddr,
2187 dev->iram.size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002188 coda_free_aux_buf(dev, &dev->codebuf);
2189 coda_free_aux_buf(dev, &dev->tempbuf);
2190 coda_free_aux_buf(dev, &dev->workbuf);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002191 debugfs_remove_recursive(dev->debugfs_root);
Javier Martin186b2502012-07-26 05:53:35 -03002192 return 0;
2193}
2194
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002195#ifdef CONFIG_PM
Philipp Zabel1e172732014-07-11 06:36:23 -03002196static int coda_runtime_resume(struct device *dev)
2197{
2198 struct coda_dev *cdev = dev_get_drvdata(dev);
2199 int ret = 0;
2200
Philipp Zabel65919e62014-07-18 07:22:36 -03002201 if (dev->pm_domain && cdev->codebuf.vaddr) {
Philipp Zabel1e172732014-07-11 06:36:23 -03002202 ret = coda_hw_init(cdev);
2203 if (ret)
2204 v4l2_err(&cdev->v4l2_dev, "HW initialization failed\n");
2205 }
2206
2207 return ret;
2208}
2209#endif
2210
2211static const struct dev_pm_ops coda_pm_ops = {
2212 SET_RUNTIME_PM_OPS(NULL, coda_runtime_resume, NULL)
2213};
2214
Javier Martin186b2502012-07-26 05:53:35 -03002215static struct platform_driver coda_driver = {
2216 .probe = coda_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002217 .remove = coda_remove,
Javier Martin186b2502012-07-26 05:53:35 -03002218 .driver = {
2219 .name = CODA_NAME,
Javier Martin186b2502012-07-26 05:53:35 -03002220 .of_match_table = of_match_ptr(coda_dt_ids),
Philipp Zabel1e172732014-07-11 06:36:23 -03002221 .pm = &coda_pm_ops,
Javier Martin186b2502012-07-26 05:53:35 -03002222 },
2223 .id_table = coda_platform_ids,
2224};
2225
2226module_platform_driver(coda_driver);
2227
2228MODULE_LICENSE("GPL");
2229MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
2230MODULE_DESCRIPTION("Coda multi-standard codec V4L2 driver");