blob: 9e6bdafa16f583fc657940824cf9d1236bd9a249 [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 Zabelcde29ef2015-07-16 13:13:24 -030018#include <linux/gcd.h>
Philipp Zabel657eee72013-04-29 16:17:14 -070019#include <linux/genalloc.h>
Javier Martin186b2502012-07-26 05:53:35 -030020#include <linux/interrupt.h>
21#include <linux/io.h>
22#include <linux/irq.h>
Philipp Zabel9082a7c2013-06-21 03:55:31 -030023#include <linux/kfifo.h>
Javier Martin186b2502012-07-26 05:53:35 -030024#include <linux/module.h>
25#include <linux/of_device.h>
26#include <linux/platform_device.h>
Philipp Zabel1e172732014-07-11 06:36:23 -030027#include <linux/pm_runtime.h>
Javier Martin186b2502012-07-26 05:53:35 -030028#include <linux/slab.h>
29#include <linux/videodev2.h>
30#include <linux/of.h>
Mauro Carvalho Chehaba71daaa2015-11-17 07:11:13 -020031#include <linux/platform_data/media/coda.h>
Philipp Zabel8f452842014-07-11 06:36:35 -030032#include <linux/reset.h>
Javier Martin186b2502012-07-26 05:53:35 -030033
34#include <media/v4l2-ctrls.h>
35#include <media/v4l2-device.h>
Philipp Zabel918c66f2013-06-27 06:59:01 -030036#include <media/v4l2-event.h>
Javier Martin186b2502012-07-26 05:53:35 -030037#include <media/v4l2-ioctl.h>
38#include <media/v4l2-mem2mem.h>
Junghak Sungc1399902015-09-22 10:30:29 -030039#include <media/videobuf2-v4l2.h>
Javier Martin186b2502012-07-26 05:53:35 -030040#include <media/videobuf2-dma-contig.h>
Philipp Zabelbb04aa62015-01-23 13:51:30 -030041#include <media/videobuf2-vmalloc.h>
Javier Martin186b2502012-07-26 05:53:35 -030042
Philipp Zabela2b3e462014-07-23 12:28:39 -030043#include "coda.h"
Javier Martin186b2502012-07-26 05:53:35 -030044
45#define CODA_NAME "coda"
46
Philipp Zabel0cddc7e2013-09-30 10:34:44 -030047#define CODADX6_MAX_INSTANCES 4
Philipp Zabel2c11d1b2014-10-02 14:08:28 -030048#define CODA_MAX_FORMATS 4
Javier Martin186b2502012-07-26 05:53:35 -030049
Javier Martin186b2502012-07-26 05:53:35 -030050#define CODA_ISRAM_SIZE (2048 * 2)
51
Javier Martin186b2502012-07-26 05:53:35 -030052#define MIN_W 176
53#define MIN_H 144
Javier Martin186b2502012-07-26 05:53:35 -030054
55#define S_ALIGN 1 /* multiple of 2 */
56#define W_ALIGN 1 /* multiple of 2 */
57#define H_ALIGN 1 /* multiple of 2 */
58
59#define fh_to_ctx(__fh) container_of(__fh, struct coda_ctx, fh)
60
Philipp Zabel79924ca2014-07-23 12:28:45 -030061int coda_debug;
Philipp Zabelc4eb1bfc2013-05-21 04:24:16 -030062module_param(coda_debug, int, 0644);
Philipp Zabeld60b18b2014-08-05 14:00:15 -030063MODULE_PARM_DESC(coda_debug, "Debug level (0-2)");
Javier Martin186b2502012-07-26 05:53:35 -030064
Philipp Zabela269e532015-07-16 13:19:38 -030065static int disable_tiling;
66module_param(disable_tiling, int, 0644);
67MODULE_PARM_DESC(disable_tiling, "Disable tiled frame buffers");
Philipp Zabelb96904e2013-05-23 10:42:58 -030068
Philipp Zabela2b3e462014-07-23 12:28:39 -030069void coda_write(struct coda_dev *dev, u32 data, u32 reg)
Javier Martin186b2502012-07-26 05:53:35 -030070{
Philipp Zabeld60b18b2014-08-05 14:00:15 -030071 v4l2_dbg(2, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -030072 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
73 writel(data, dev->regs_base + reg);
74}
75
Philipp Zabela2b3e462014-07-23 12:28:39 -030076unsigned int coda_read(struct coda_dev *dev, u32 reg)
Javier Martin186b2502012-07-26 05:53:35 -030077{
78 u32 data;
Philipp Zabelf23797b2014-08-06 08:02:23 -030079
Javier Martin186b2502012-07-26 05:53:35 -030080 data = readl(dev->regs_base + reg);
Philipp Zabeld60b18b2014-08-05 14:00:15 -030081 v4l2_dbg(2, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -030082 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
83 return data;
84}
85
Philipp Zabel856d7d92014-09-29 09:53:44 -030086void coda_write_base(struct coda_ctx *ctx, struct coda_q_data *q_data,
Junghak Sung2d700712015-09-22 10:30:30 -030087 struct vb2_v4l2_buffer *buf, unsigned int reg_y)
Philipp Zabel856d7d92014-09-29 09:53:44 -030088{
Junghak Sung2d700712015-09-22 10:30:30 -030089 u32 base_y = vb2_dma_contig_plane_dma_addr(&buf->vb2_buf, 0);
Philipp Zabel856d7d92014-09-29 09:53:44 -030090 u32 base_cb, base_cr;
91
92 switch (q_data->fourcc) {
Philipp Zabel6727d4f2015-07-16 13:19:39 -030093 case V4L2_PIX_FMT_NV12:
94 case V4L2_PIX_FMT_YUV420:
95 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 Zabel856d7d92014-09-29 09:53:44 -030099 case V4L2_PIX_FMT_YVU420:
100 /* Switch Cb and Cr for YVU420 format */
101 base_cr = base_y + q_data->bytesperline * q_data->height;
102 base_cb = base_cr + q_data->bytesperline * q_data->height / 4;
103 break;
Philipp Zabel4de69312014-10-02 14:08:26 -0300104 case V4L2_PIX_FMT_YUV422P:
105 base_cb = base_y + q_data->bytesperline * q_data->height;
106 base_cr = base_cb + q_data->bytesperline * q_data->height / 2;
Philipp Zabel856d7d92014-09-29 09:53:44 -0300107 }
108
109 coda_write(ctx->dev, base_y, reg_y);
110 coda_write(ctx->dev, base_cb, reg_y + 4);
111 coda_write(ctx->dev, base_cr, reg_y + 8);
112}
113
Philipp Zabelb96904e2013-05-23 10:42:58 -0300114#define CODA_CODEC(mode, src_fourcc, dst_fourcc, max_w, max_h) \
115 { mode, src_fourcc, dst_fourcc, max_w, max_h }
116
117/*
118 * Arrays of codecs supported by each given version of Coda:
119 * i.MX27 -> codadx6
120 * i.MX5x -> coda7
121 * i.MX6 -> coda960
122 * Use V4L2_PIX_FMT_YUV420 as placeholder for all supported YUV 4:2:0 variants
123 */
Philipp Zabel814c3762014-07-18 07:22:45 -0300124static const struct coda_codec codadx6_codecs[] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300125 CODA_CODEC(CODADX6_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 720, 576),
126 CODA_CODEC(CODADX6_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 720, 576),
Philipp Zabeldf1e74c2012-07-02 06:07:10 -0300127};
128
Philipp Zabel814c3762014-07-18 07:22:45 -0300129static const struct coda_codec coda7_codecs[] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300130 CODA_CODEC(CODA7_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1280, 720),
131 CODA_CODEC(CODA7_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1280, 720),
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300132 CODA_CODEC(CODA7_MODE_ENCODE_MJPG, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_JPEG, 8192, 8192),
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300133 CODA_CODEC(CODA7_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabel95847f42015-12-02 14:58:54 -0200134 CODA_CODEC(CODA7_MODE_DECODE_MP2, V4L2_PIX_FMT_MPEG2, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300135 CODA_CODEC(CODA7_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300136 CODA_CODEC(CODA7_MODE_DECODE_MJPG, V4L2_PIX_FMT_JPEG, V4L2_PIX_FMT_YUV420, 8192, 8192),
Philipp Zabelb96904e2013-05-23 10:42:58 -0300137};
138
Philipp Zabel814c3762014-07-18 07:22:45 -0300139static const struct coda_codec coda9_codecs[] = {
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300140 CODA_CODEC(CODA9_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1920, 1088),
141 CODA_CODEC(CODA9_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1920, 1088),
142 CODA_CODEC(CODA9_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabel95847f42015-12-02 14:58:54 -0200143 CODA_CODEC(CODA9_MODE_DECODE_MP2, V4L2_PIX_FMT_MPEG2, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabelb0ed05b2014-08-05 14:00:14 -0300144 CODA_CODEC(CODA9_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1088),
Philipp Zabel89548442014-07-11 06:36:17 -0300145};
146
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300147struct coda_video_device {
148 const char *name;
149 enum coda_inst_type type;
150 const struct coda_context_ops *ops;
Philipp Zabela22496c2015-01-23 13:51:33 -0300151 bool direct;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300152 u32 src_formats[CODA_MAX_FORMATS];
153 u32 dst_formats[CODA_MAX_FORMATS];
154};
155
156static const struct coda_video_device coda_bit_encoder = {
157 .name = "coda-encoder",
158 .type = CODA_INST_ENCODER,
159 .ops = &coda_bit_encode_ops,
160 .src_formats = {
Philipp Zabel6727d4f2015-07-16 13:19:39 -0300161 V4L2_PIX_FMT_NV12,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300162 V4L2_PIX_FMT_YUV420,
163 V4L2_PIX_FMT_YVU420,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300164 },
165 .dst_formats = {
166 V4L2_PIX_FMT_H264,
167 V4L2_PIX_FMT_MPEG4,
168 },
169};
170
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300171static const struct coda_video_device coda_bit_jpeg_encoder = {
172 .name = "coda-jpeg-encoder",
173 .type = CODA_INST_ENCODER,
174 .ops = &coda_bit_encode_ops,
175 .src_formats = {
Philipp Zabel6727d4f2015-07-16 13:19:39 -0300176 V4L2_PIX_FMT_NV12,
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300177 V4L2_PIX_FMT_YUV420,
178 V4L2_PIX_FMT_YVU420,
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300179 V4L2_PIX_FMT_YUV422P,
180 },
181 .dst_formats = {
182 V4L2_PIX_FMT_JPEG,
183 },
184};
185
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300186static const struct coda_video_device coda_bit_decoder = {
187 .name = "coda-decoder",
188 .type = CODA_INST_DECODER,
189 .ops = &coda_bit_decode_ops,
190 .src_formats = {
191 V4L2_PIX_FMT_H264,
Philipp Zabel95847f42015-12-02 14:58:54 -0200192 V4L2_PIX_FMT_MPEG2,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300193 V4L2_PIX_FMT_MPEG4,
194 },
195 .dst_formats = {
Philipp Zabel6727d4f2015-07-16 13:19:39 -0300196 V4L2_PIX_FMT_NV12,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300197 V4L2_PIX_FMT_YUV420,
198 V4L2_PIX_FMT_YVU420,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300199 },
200};
201
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300202static const struct coda_video_device coda_bit_jpeg_decoder = {
203 .name = "coda-jpeg-decoder",
204 .type = CODA_INST_DECODER,
205 .ops = &coda_bit_decode_ops,
206 .src_formats = {
207 V4L2_PIX_FMT_JPEG,
208 },
209 .dst_formats = {
Philipp Zabel6727d4f2015-07-16 13:19:39 -0300210 V4L2_PIX_FMT_NV12,
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300211 V4L2_PIX_FMT_YUV420,
212 V4L2_PIX_FMT_YVU420,
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300213 V4L2_PIX_FMT_YUV422P,
214 },
215};
216
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300217static const struct coda_video_device *codadx6_video_devices[] = {
218 &coda_bit_encoder,
219};
220
221static const struct coda_video_device *coda7_video_devices[] = {
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300222 &coda_bit_jpeg_encoder,
223 &coda_bit_jpeg_decoder,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300224 &coda_bit_encoder,
225 &coda_bit_decoder,
226};
227
228static const struct coda_video_device *coda9_video_devices[] = {
229 &coda_bit_encoder,
230 &coda_bit_decoder,
231};
232
Philipp Zabelb96904e2013-05-23 10:42:58 -0300233/*
234 * Normalize all supported YUV 4:2:0 formats to the value used in the codec
235 * tables.
236 */
237static u32 coda_format_normalize_yuv(u32 fourcc)
238{
Philipp Zabel8076c7e2015-07-09 07:10:18 -0300239 switch (fourcc) {
Philipp Zabel6727d4f2015-07-16 13:19:39 -0300240 case V4L2_PIX_FMT_NV12:
Philipp Zabel8076c7e2015-07-09 07:10:18 -0300241 case V4L2_PIX_FMT_YUV420:
242 case V4L2_PIX_FMT_YVU420:
Philipp Zabel8076c7e2015-07-09 07:10:18 -0300243 case V4L2_PIX_FMT_YUV422P:
244 return V4L2_PIX_FMT_YUV420;
245 default:
246 return fourcc;
247 }
Philipp Zabelb96904e2013-05-23 10:42:58 -0300248}
249
Philipp Zabel814c3762014-07-18 07:22:45 -0300250static const struct coda_codec *coda_find_codec(struct coda_dev *dev,
251 int src_fourcc, int dst_fourcc)
Philipp Zabelb96904e2013-05-23 10:42:58 -0300252{
Philipp Zabel814c3762014-07-18 07:22:45 -0300253 const struct coda_codec *codecs = dev->devtype->codecs;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300254 int num_codecs = dev->devtype->num_codecs;
255 int k;
256
257 src_fourcc = coda_format_normalize_yuv(src_fourcc);
258 dst_fourcc = coda_format_normalize_yuv(dst_fourcc);
259 if (src_fourcc == dst_fourcc)
260 return NULL;
261
262 for (k = 0; k < num_codecs; k++) {
263 if (codecs[k].src_fourcc == src_fourcc &&
264 codecs[k].dst_fourcc == dst_fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300265 break;
266 }
267
Philipp Zabelb96904e2013-05-23 10:42:58 -0300268 if (k == num_codecs)
Javier Martin186b2502012-07-26 05:53:35 -0300269 return NULL;
270
Philipp Zabelb96904e2013-05-23 10:42:58 -0300271 return &codecs[k];
Javier Martin186b2502012-07-26 05:53:35 -0300272}
273
Philipp Zabel57625592013-09-30 10:34:51 -0300274static void coda_get_max_dimensions(struct coda_dev *dev,
Philipp Zabel814c3762014-07-18 07:22:45 -0300275 const struct coda_codec *codec,
Philipp Zabel57625592013-09-30 10:34:51 -0300276 int *max_w, int *max_h)
277{
Philipp Zabel814c3762014-07-18 07:22:45 -0300278 const struct coda_codec *codecs = dev->devtype->codecs;
Philipp Zabel57625592013-09-30 10:34:51 -0300279 int num_codecs = dev->devtype->num_codecs;
280 unsigned int w, h;
281 int k;
282
283 if (codec) {
284 w = codec->max_w;
285 h = codec->max_h;
286 } else {
287 for (k = 0, w = 0, h = 0; k < num_codecs; k++) {
288 w = max(w, codecs[k].max_w);
289 h = max(h, codecs[k].max_h);
290 }
291 }
292
293 if (max_w)
294 *max_w = w;
295 if (max_h)
296 *max_h = h;
297}
298
Philipp Zabel55425702015-12-02 14:58:50 -0200299static const struct coda_video_device *to_coda_video_device(struct video_device
300 *vdev)
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300301{
302 struct coda_dev *dev = video_get_drvdata(vdev);
303 unsigned int i = vdev - dev->vfd;
304
305 if (i >= dev->devtype->num_vdevs)
306 return NULL;
307
308 return dev->devtype->vdevs[i];
309}
310
Philipp Zabel79924ca2014-07-23 12:28:45 -0300311const char *coda_product_name(int product)
Philipp Zabel927933f2013-09-30 10:34:48 -0300312{
313 static char buf[9];
314
315 switch (product) {
316 case CODA_DX6:
317 return "CodaDx6";
318 case CODA_7541:
319 return "CODA7541";
Philipp Zabel89548442014-07-11 06:36:17 -0300320 case CODA_960:
321 return "CODA960";
Philipp Zabel927933f2013-09-30 10:34:48 -0300322 default:
323 snprintf(buf, sizeof(buf), "(0x%04x)", product);
324 return buf;
325 }
326}
327
Javier Martin186b2502012-07-26 05:53:35 -0300328/*
329 * V4L2 ioctl() operations.
330 */
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300331static int coda_querycap(struct file *file, void *priv,
332 struct v4l2_capability *cap)
Javier Martin186b2502012-07-26 05:53:35 -0300333{
Philipp Zabel927933f2013-09-30 10:34:48 -0300334 struct coda_ctx *ctx = fh_to_ctx(priv);
335
Javier Martin186b2502012-07-26 05:53:35 -0300336 strlcpy(cap->driver, CODA_NAME, sizeof(cap->driver));
Philipp Zabel927933f2013-09-30 10:34:48 -0300337 strlcpy(cap->card, coda_product_name(ctx->dev->devtype->product),
338 sizeof(cap->card));
Philipp Zabeldad0e1c2013-05-21 04:18:22 -0300339 strlcpy(cap->bus_info, "platform:" CODA_NAME, sizeof(cap->bus_info));
Philipp Zabel3898e7a2014-07-18 07:22:37 -0300340 cap->device_caps = V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
Javier Martin186b2502012-07-26 05:53:35 -0300341 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
342
343 return 0;
344}
345
Philipp Zabel22e244b2014-07-18 07:22:43 -0300346static int coda_enum_fmt(struct file *file, void *priv,
347 struct v4l2_fmtdesc *f)
Javier Martin186b2502012-07-26 05:53:35 -0300348{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300349 struct video_device *vdev = video_devdata(file);
350 const struct coda_video_device *cvd = to_coda_video_device(vdev);
351 const u32 *formats;
Philipp Zabel22e244b2014-07-18 07:22:43 -0300352
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300353 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
354 formats = cvd->src_formats;
355 else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
356 formats = cvd->dst_formats;
Philipp Zabel22e244b2014-07-18 07:22:43 -0300357 else
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300358 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300359
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300360 if (f->index >= CODA_MAX_FORMATS || formats[f->index] == 0)
361 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300362
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300363 f->pixelformat = formats[f->index];
Javier Martin186b2502012-07-26 05:53:35 -0300364
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300365 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300366}
367
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300368static int coda_g_fmt(struct file *file, void *priv,
369 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300370{
Javier Martin186b2502012-07-26 05:53:35 -0300371 struct coda_q_data *q_data;
372 struct coda_ctx *ctx = fh_to_ctx(priv);
373
Javier Martin186b2502012-07-26 05:53:35 -0300374 q_data = get_q_data(ctx, f->type);
Philipp Zabelb9736292014-07-11 06:36:18 -0300375 if (!q_data)
376 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -0300377
378 f->fmt.pix.field = V4L2_FIELD_NONE;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300379 f->fmt.pix.pixelformat = q_data->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300380 f->fmt.pix.width = q_data->width;
381 f->fmt.pix.height = q_data->height;
Philipp Zabel2fd6a372014-07-11 06:36:36 -0300382 f->fmt.pix.bytesperline = q_data->bytesperline;
Javier Martin186b2502012-07-26 05:53:35 -0300383
384 f->fmt.pix.sizeimage = q_data->sizeimage;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300385 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_JPEG)
386 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
387 else
388 f->fmt.pix.colorspace = ctx->colorspace;
Javier Martin186b2502012-07-26 05:53:35 -0300389
390 return 0;
391}
392
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300393static int coda_try_pixelformat(struct coda_ctx *ctx, struct v4l2_format *f)
394{
395 struct coda_q_data *q_data;
396 const u32 *formats;
397 int i;
398
399 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
400 formats = ctx->cvd->src_formats;
401 else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
402 formats = ctx->cvd->dst_formats;
403 else
404 return -EINVAL;
405
406 for (i = 0; i < CODA_MAX_FORMATS; i++) {
407 if (formats[i] == f->fmt.pix.pixelformat) {
408 f->fmt.pix.pixelformat = formats[i];
409 return 0;
410 }
411 }
412
413 /* Fall back to currently set pixelformat */
414 q_data = get_q_data(ctx, f->type);
415 f->fmt.pix.pixelformat = q_data->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300416
417 return 0;
418}
419
Philipp Zabel8e428d52015-01-23 13:51:29 -0300420static unsigned int coda_estimate_sizeimage(struct coda_ctx *ctx, u32 sizeimage,
421 u32 width, u32 height)
422{
423 /*
424 * This is a rough estimate for sensible compressed buffer
425 * sizes (between 1 and 16 bits per pixel). This could be
426 * improved by better format specific worst case estimates.
427 */
428 return round_up(clamp(sizeimage, width * height / 8,
429 width * height * 2), PAGE_SIZE);
430}
431
Philipp Zabel814c3762014-07-18 07:22:45 -0300432static int coda_try_fmt(struct coda_ctx *ctx, const struct coda_codec *codec,
Philipp Zabel57625592013-09-30 10:34:51 -0300433 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300434{
Philipp Zabel57625592013-09-30 10:34:51 -0300435 struct coda_dev *dev = ctx->dev;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300436 unsigned int max_w, max_h;
Javier Martin186b2502012-07-26 05:53:35 -0300437 enum v4l2_field field;
438
439 field = f->fmt.pix.field;
440 if (field == V4L2_FIELD_ANY)
441 field = V4L2_FIELD_NONE;
442 else if (V4L2_FIELD_NONE != field)
443 return -EINVAL;
444
445 /* V4L2 specification suggests the driver corrects the format struct
446 * if any of the dimensions is unsupported */
447 f->fmt.pix.field = field;
448
Philipp Zabel57625592013-09-30 10:34:51 -0300449 coda_get_max_dimensions(dev, codec, &max_w, &max_h);
450 v4l_bound_align_image(&f->fmt.pix.width, MIN_W, max_w, W_ALIGN,
451 &f->fmt.pix.height, MIN_H, max_h, H_ALIGN,
452 S_ALIGN);
Philipp Zabelb96904e2013-05-23 10:42:58 -0300453
Philipp Zabel57625592013-09-30 10:34:51 -0300454 switch (f->fmt.pix.pixelformat) {
Philipp Zabel6727d4f2015-07-16 13:19:39 -0300455 case V4L2_PIX_FMT_NV12:
Philipp Zabel57625592013-09-30 10:34:51 -0300456 case V4L2_PIX_FMT_YUV420:
457 case V4L2_PIX_FMT_YVU420:
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300458 /*
459 * Frame stride must be at least multiple of 8,
460 * but multiple of 16 for h.264 or JPEG 4:2:x
461 */
Philipp Zabel451dfe52014-07-11 06:36:39 -0300462 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
Philipp Zabel47cf0c62013-05-23 10:42:54 -0300463 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
Philipp Zabel451d43a2012-07-26 09:18:27 -0300464 f->fmt.pix.height * 3 / 2;
Philipp Zabel57625592013-09-30 10:34:51 -0300465 break;
Philipp Zabel4de69312014-10-02 14:08:26 -0300466 case V4L2_PIX_FMT_YUV422P:
467 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
468 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
469 f->fmt.pix.height * 2;
470 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300471 case V4L2_PIX_FMT_JPEG:
472 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
473 /* fallthrough */
Philipp Zabel57625592013-09-30 10:34:51 -0300474 case V4L2_PIX_FMT_H264:
475 case V4L2_PIX_FMT_MPEG4:
Philipp Zabel95847f42015-12-02 14:58:54 -0200476 case V4L2_PIX_FMT_MPEG2:
Javier Martin186b2502012-07-26 05:53:35 -0300477 f->fmt.pix.bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -0300478 f->fmt.pix.sizeimage = coda_estimate_sizeimage(ctx,
479 f->fmt.pix.sizeimage,
480 f->fmt.pix.width,
481 f->fmt.pix.height);
Philipp Zabel57625592013-09-30 10:34:51 -0300482 break;
483 default:
484 BUG();
Javier Martin186b2502012-07-26 05:53:35 -0300485 }
486
487 return 0;
488}
489
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300490static int coda_try_fmt_vid_cap(struct file *file, void *priv,
491 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300492{
Javier Martin186b2502012-07-26 05:53:35 -0300493 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300494 const struct coda_q_data *q_data_src;
495 const struct coda_codec *codec;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300496 struct vb2_queue *src_vq;
497 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300498
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300499 ret = coda_try_pixelformat(ctx, f);
500 if (ret < 0)
501 return ret;
502
503 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
504
Philipp Zabel918c66f2013-06-27 06:59:01 -0300505 /*
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300506 * If the source format is already fixed, only allow the same output
507 * resolution
Philipp Zabel918c66f2013-06-27 06:59:01 -0300508 */
Philipp Zabel14604e32014-07-11 06:36:22 -0300509 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300510 if (vb2_is_streaming(src_vq)) {
Philipp Zabel91b5841e2014-07-18 07:22:41 -0300511 f->fmt.pix.width = q_data_src->width;
512 f->fmt.pix.height = q_data_src->height;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300513 }
Javier Martin186b2502012-07-26 05:53:35 -0300514
515 f->fmt.pix.colorspace = ctx->colorspace;
516
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300517 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
518 codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
519 f->fmt.pix.pixelformat);
520 if (!codec)
521 return -EINVAL;
522
Philipp Zabel57625592013-09-30 10:34:51 -0300523 ret = coda_try_fmt(ctx, codec, f);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300524 if (ret < 0)
525 return ret;
526
527 /* The h.264 decoder only returns complete 16x16 macroblocks */
528 if (codec && codec->src_fourcc == V4L2_PIX_FMT_H264) {
Philipp Zabel1b0ed7b2014-07-11 06:36:37 -0300529 f->fmt.pix.width = f->fmt.pix.width;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300530 f->fmt.pix.height = round_up(f->fmt.pix.height, 16);
Philipp Zabel1b0ed7b2014-07-11 06:36:37 -0300531 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 16);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300532 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
533 f->fmt.pix.height * 3 / 2;
534 }
535
536 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300537}
538
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300539static int coda_try_fmt_vid_out(struct file *file, void *priv,
540 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300541{
542 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300543 struct coda_dev *dev = ctx->dev;
544 const struct coda_q_data *q_data_dst;
545 const struct coda_codec *codec;
546 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300547
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300548 ret = coda_try_pixelformat(ctx, f);
549 if (ret < 0)
550 return ret;
Javier Martin186b2502012-07-26 05:53:35 -0300551
Philipp Zabel5f9826e2015-01-23 13:51:21 -0300552 switch (f->fmt.pix.colorspace) {
553 case V4L2_COLORSPACE_REC709:
554 case V4L2_COLORSPACE_JPEG:
555 break;
556 default:
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300557 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_JPEG)
558 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
559 else
560 f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
Javier Martin186b2502012-07-26 05:53:35 -0300561 }
562
Philipp Zabel2c11d1b2014-10-02 14:08:28 -0300563 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
564 codec = coda_find_codec(dev, f->fmt.pix.pixelformat, q_data_dst->fourcc);
Javier Martin186b2502012-07-26 05:53:35 -0300565
566 return coda_try_fmt(ctx, codec, f);
567}
568
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300569static int coda_s_fmt(struct coda_ctx *ctx, struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300570{
571 struct coda_q_data *q_data;
572 struct vb2_queue *vq;
Javier Martin186b2502012-07-26 05:53:35 -0300573
Philipp Zabel14604e32014-07-11 06:36:22 -0300574 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
Javier Martin186b2502012-07-26 05:53:35 -0300575 if (!vq)
576 return -EINVAL;
577
578 q_data = get_q_data(ctx, f->type);
579 if (!q_data)
580 return -EINVAL;
581
582 if (vb2_is_busy(vq)) {
583 v4l2_err(&ctx->dev->v4l2_dev, "%s queue busy\n", __func__);
584 return -EBUSY;
585 }
586
Philipp Zabelb96904e2013-05-23 10:42:58 -0300587 q_data->fourcc = f->fmt.pix.pixelformat;
Javier Martin186b2502012-07-26 05:53:35 -0300588 q_data->width = f->fmt.pix.width;
589 q_data->height = f->fmt.pix.height;
Philipp Zabel2fd6a372014-07-11 06:36:36 -0300590 q_data->bytesperline = f->fmt.pix.bytesperline;
Philipp Zabel451d43a2012-07-26 09:18:27 -0300591 q_data->sizeimage = f->fmt.pix.sizeimage;
Philipp Zabel52c41672014-07-11 06:36:19 -0300592 q_data->rect.left = 0;
593 q_data->rect.top = 0;
594 q_data->rect.width = f->fmt.pix.width;
595 q_data->rect.height = f->fmt.pix.height;
Javier Martin186b2502012-07-26 05:53:35 -0300596
Philipp Zabela269e532015-07-16 13:19:38 -0300597 switch (f->fmt.pix.pixelformat) {
598 case V4L2_PIX_FMT_NV12:
599 if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
600 ctx->tiled_map_type = GDI_TILED_FRAME_MB_RASTER_MAP;
601 if (!disable_tiling)
602 break;
603 }
604 /* else fall through */
605 case V4L2_PIX_FMT_YUV420:
606 case V4L2_PIX_FMT_YVU420:
607 ctx->tiled_map_type = GDI_LINEAR_FRAME_MAP;
608 break;
609 default:
610 break;
611 }
612
Javier Martin186b2502012-07-26 05:53:35 -0300613 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
614 "Setting format for type %d, wxh: %dx%d, fmt: %d\n",
Philipp Zabelb96904e2013-05-23 10:42:58 -0300615 f->type, q_data->width, q_data->height, q_data->fourcc);
Javier Martin186b2502012-07-26 05:53:35 -0300616
617 return 0;
618}
619
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300620static int coda_s_fmt_vid_cap(struct file *file, void *priv,
621 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300622{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300623 struct coda_ctx *ctx = fh_to_ctx(priv);
Javier Martin186b2502012-07-26 05:53:35 -0300624 int ret;
625
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300626 ret = coda_try_fmt_vid_cap(file, priv, f);
Javier Martin186b2502012-07-26 05:53:35 -0300627 if (ret)
628 return ret;
629
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300630 return coda_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300631}
632
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300633static int coda_s_fmt_vid_out(struct file *file, void *priv,
634 struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300635{
636 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabelf95a6ce2014-08-05 14:00:19 -0300637 struct v4l2_format f_cap;
Javier Martin186b2502012-07-26 05:53:35 -0300638 int ret;
639
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300640 ret = coda_try_fmt_vid_out(file, priv, f);
Javier Martin186b2502012-07-26 05:53:35 -0300641 if (ret)
642 return ret;
643
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300644 ret = coda_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300645 if (ret)
Philipp Zabel2dc546d2014-08-05 14:00:18 -0300646 return ret;
647
648 ctx->colorspace = f->fmt.pix.colorspace;
Javier Martin186b2502012-07-26 05:53:35 -0300649
Philipp Zabel1c2f6a92015-01-23 13:51:22 -0300650 memset(&f_cap, 0, sizeof(f_cap));
Philipp Zabelf95a6ce2014-08-05 14:00:19 -0300651 f_cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
652 coda_g_fmt(file, priv, &f_cap);
653 f_cap.fmt.pix.width = f->fmt.pix.width;
654 f_cap.fmt.pix.height = f->fmt.pix.height;
655
656 ret = coda_try_fmt_vid_cap(file, priv, &f_cap);
657 if (ret)
658 return ret;
659
660 return coda_s_fmt(ctx, &f_cap);
Javier Martin186b2502012-07-26 05:53:35 -0300661}
662
Philipp Zabel73751da2015-03-24 14:30:51 -0300663static int coda_reqbufs(struct file *file, void *priv,
664 struct v4l2_requestbuffers *rb)
665{
666 struct coda_ctx *ctx = fh_to_ctx(priv);
667 int ret;
668
669 ret = v4l2_m2m_reqbufs(file, ctx->fh.m2m_ctx, rb);
670 if (ret)
671 return ret;
672
673 /*
674 * Allow to allocate instance specific per-context buffers, such as
675 * bitstream ringbuffer, slice buffer, work buffer, etc. if needed.
676 */
677 if (rb->type == V4L2_BUF_TYPE_VIDEO_OUTPUT && ctx->ops->reqbufs)
678 return ctx->ops->reqbufs(ctx, rb);
679
680 return 0;
681}
682
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300683static int coda_qbuf(struct file *file, void *priv,
684 struct v4l2_buffer *buf)
Javier Martin186b2502012-07-26 05:53:35 -0300685{
686 struct coda_ctx *ctx = fh_to_ctx(priv);
687
Philipp Zabel14604e32014-07-11 06:36:22 -0300688 return v4l2_m2m_qbuf(file, ctx->fh.m2m_ctx, buf);
Javier Martin186b2502012-07-26 05:53:35 -0300689}
690
Philipp Zabel918c66f2013-06-27 06:59:01 -0300691static bool coda_buf_is_end_of_stream(struct coda_ctx *ctx,
Junghak Sung2d700712015-09-22 10:30:30 -0300692 struct vb2_v4l2_buffer *buf)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300693{
694 struct vb2_queue *src_vq;
695
Philipp Zabel14604e32014-07-11 06:36:22 -0300696 src_vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300697
698 return ((ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG) &&
Junghak Sung2d700712015-09-22 10:30:30 -0300699 (buf->sequence == (ctx->qsequence - 1)));
Philipp Zabel918c66f2013-06-27 06:59:01 -0300700}
701
Junghak Sung2d700712015-09-22 10:30:30 -0300702void coda_m2m_buf_done(struct coda_ctx *ctx, struct vb2_v4l2_buffer *buf,
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300703 enum vb2_buffer_state state)
Javier Martin186b2502012-07-26 05:53:35 -0300704{
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300705 const struct v4l2_event eos_event = {
706 .type = V4L2_EVENT_EOS
707 };
Javier Martin186b2502012-07-26 05:53:35 -0300708
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300709 if (coda_buf_is_end_of_stream(ctx, buf)) {
Junghak Sung2d700712015-09-22 10:30:30 -0300710 buf->flags |= V4L2_BUF_FLAG_LAST;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300711
712 v4l2_event_queue_fh(&ctx->fh, &eos_event);
713 }
714
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300715 v4l2_m2m_buf_done(buf, state);
Javier Martin186b2502012-07-26 05:53:35 -0300716}
717
Philipp Zabel52c41672014-07-11 06:36:19 -0300718static int coda_g_selection(struct file *file, void *fh,
719 struct v4l2_selection *s)
720{
721 struct coda_ctx *ctx = fh_to_ctx(fh);
722 struct coda_q_data *q_data;
723 struct v4l2_rect r, *rsel;
724
725 q_data = get_q_data(ctx, s->type);
726 if (!q_data)
727 return -EINVAL;
728
729 r.left = 0;
730 r.top = 0;
731 r.width = q_data->width;
732 r.height = q_data->height;
733 rsel = &q_data->rect;
734
735 switch (s->target) {
736 case V4L2_SEL_TGT_CROP_DEFAULT:
737 case V4L2_SEL_TGT_CROP_BOUNDS:
738 rsel = &r;
739 /* fallthrough */
740 case V4L2_SEL_TGT_CROP:
741 if (s->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
742 return -EINVAL;
743 break;
744 case V4L2_SEL_TGT_COMPOSE_BOUNDS:
745 case V4L2_SEL_TGT_COMPOSE_PADDED:
746 rsel = &r;
747 /* fallthrough */
748 case V4L2_SEL_TGT_COMPOSE:
749 case V4L2_SEL_TGT_COMPOSE_DEFAULT:
750 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
751 return -EINVAL;
752 break;
753 default:
754 return -EINVAL;
755 }
756
757 s->r = *rsel;
758
759 return 0;
760}
761
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300762static int coda_try_decoder_cmd(struct file *file, void *fh,
763 struct v4l2_decoder_cmd *dc)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300764{
Philipp Zabel918c66f2013-06-27 06:59:01 -0300765 if (dc->cmd != V4L2_DEC_CMD_STOP)
766 return -EINVAL;
767
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300768 if (dc->flags & V4L2_DEC_CMD_STOP_TO_BLACK)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300769 return -EINVAL;
770
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300771 if (!(dc->flags & V4L2_DEC_CMD_STOP_IMMEDIATELY) && (dc->stop.pts != 0))
Philipp Zabel918c66f2013-06-27 06:59:01 -0300772 return -EINVAL;
773
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300774 return 0;
775}
776
777static int coda_decoder_cmd(struct file *file, void *fh,
778 struct v4l2_decoder_cmd *dc)
779{
780 struct coda_ctx *ctx = fh_to_ctx(fh);
781 int ret;
782
783 ret = coda_try_decoder_cmd(file, fh, dc);
784 if (ret < 0)
785 return ret;
786
787 /* Ignore decoder stop command silently in encoder context */
Philipp Zabel918c66f2013-06-27 06:59:01 -0300788 if (ctx->inst_type != CODA_INST_DECODER)
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300789 return 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300790
Philipp Zabel347bb7f2014-07-23 12:28:42 -0300791 /* Set the stream-end flag on this context */
792 coda_bit_stream_end_flag(ctx);
Philipp Zabel84e23652014-07-11 06:36:34 -0300793 ctx->hold = false;
Michael Olbrichf3497da2014-07-11 06:36:30 -0300794 v4l2_m2m_try_schedule(ctx->fh.m2m_ctx);
Philipp Zabel89548442014-07-11 06:36:17 -0300795
Philipp Zabel918c66f2013-06-27 06:59:01 -0300796 return 0;
797}
798
Philipp Zabelcde29ef2015-07-16 13:13:24 -0300799static int coda_g_parm(struct file *file, void *fh, struct v4l2_streamparm *a)
800{
801 struct coda_ctx *ctx = fh_to_ctx(fh);
802 struct v4l2_fract *tpf;
803
804 if (a->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
805 return -EINVAL;
806
807 a->parm.output.capability = V4L2_CAP_TIMEPERFRAME;
808 tpf = &a->parm.output.timeperframe;
809 tpf->denominator = ctx->params.framerate & CODA_FRATE_RES_MASK;
810 tpf->numerator = 1 + (ctx->params.framerate >>
811 CODA_FRATE_DIV_OFFSET);
812
813 return 0;
814}
815
816/*
817 * Approximate timeperframe v4l2_fract with values that can be written
818 * into the 16-bit CODA_FRATE_DIV and CODA_FRATE_RES fields.
819 */
820static void coda_approximate_timeperframe(struct v4l2_fract *timeperframe)
821{
822 struct v4l2_fract s = *timeperframe;
823 struct v4l2_fract f0;
824 struct v4l2_fract f1 = { 1, 0 };
825 struct v4l2_fract f2 = { 0, 1 };
826 unsigned int i, div, s_denominator;
827
828 /* Lower bound is 1/65535 */
829 if (s.numerator == 0 || s.denominator / s.numerator > 65535) {
830 timeperframe->numerator = 1;
831 timeperframe->denominator = 65535;
832 return;
833 }
834
835 /* Upper bound is 65536/1, map everything above to infinity */
836 if (s.denominator == 0 || s.numerator / s.denominator > 65536) {
837 timeperframe->numerator = 1;
838 timeperframe->denominator = 0;
839 return;
840 }
841
842 /* Reduce fraction to lowest terms */
843 div = gcd(s.numerator, s.denominator);
844 if (div > 1) {
845 s.numerator /= div;
846 s.denominator /= div;
847 }
848
849 if (s.numerator <= 65536 && s.denominator < 65536) {
850 *timeperframe = s;
851 return;
852 }
853
854 /* Find successive convergents from continued fraction expansion */
855 while (f2.numerator <= 65536 && f2.denominator < 65536) {
856 f0 = f1;
857 f1 = f2;
858
859 /* Stop when f2 exactly equals timeperframe */
860 if (s.numerator == 0)
861 break;
862
863 i = s.denominator / s.numerator;
864
865 f2.numerator = f0.numerator + i * f1.numerator;
866 f2.denominator = f0.denominator + i * f2.denominator;
867
868 s_denominator = s.numerator;
869 s.numerator = s.denominator % s.numerator;
870 s.denominator = s_denominator;
871 }
872
873 *timeperframe = f1;
874}
875
876static uint32_t coda_timeperframe_to_frate(struct v4l2_fract *timeperframe)
877{
878 return ((timeperframe->numerator - 1) << CODA_FRATE_DIV_OFFSET) |
879 timeperframe->denominator;
880}
881
882static int coda_s_parm(struct file *file, void *fh, struct v4l2_streamparm *a)
883{
884 struct coda_ctx *ctx = fh_to_ctx(fh);
885 struct v4l2_fract *tpf;
886
887 if (a->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
888 return -EINVAL;
889
890 tpf = &a->parm.output.timeperframe;
891 coda_approximate_timeperframe(tpf);
892 ctx->params.framerate = coda_timeperframe_to_frate(tpf);
893
894 return 0;
895}
896
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300897static int coda_subscribe_event(struct v4l2_fh *fh,
898 const struct v4l2_event_subscription *sub)
Philipp Zabel918c66f2013-06-27 06:59:01 -0300899{
900 switch (sub->type) {
901 case V4L2_EVENT_EOS:
902 return v4l2_event_subscribe(fh, sub, 0, NULL);
903 default:
904 return v4l2_ctrl_subscribe_event(fh, sub);
905 }
Javier Martin186b2502012-07-26 05:53:35 -0300906}
907
908static const struct v4l2_ioctl_ops coda_ioctl_ops = {
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300909 .vidioc_querycap = coda_querycap,
Javier Martin186b2502012-07-26 05:53:35 -0300910
Philipp Zabel22e244b2014-07-18 07:22:43 -0300911 .vidioc_enum_fmt_vid_cap = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300912 .vidioc_g_fmt_vid_cap = coda_g_fmt,
913 .vidioc_try_fmt_vid_cap = coda_try_fmt_vid_cap,
914 .vidioc_s_fmt_vid_cap = coda_s_fmt_vid_cap,
Javier Martin186b2502012-07-26 05:53:35 -0300915
Philipp Zabel22e244b2014-07-18 07:22:43 -0300916 .vidioc_enum_fmt_vid_out = coda_enum_fmt,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300917 .vidioc_g_fmt_vid_out = coda_g_fmt,
918 .vidioc_try_fmt_vid_out = coda_try_fmt_vid_out,
919 .vidioc_s_fmt_vid_out = coda_s_fmt_vid_out,
Javier Martin186b2502012-07-26 05:53:35 -0300920
Philipp Zabel73751da2015-03-24 14:30:51 -0300921 .vidioc_reqbufs = coda_reqbufs,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300922 .vidioc_querybuf = v4l2_m2m_ioctl_querybuf,
Javier Martin186b2502012-07-26 05:53:35 -0300923
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300924 .vidioc_qbuf = coda_qbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300925 .vidioc_expbuf = v4l2_m2m_ioctl_expbuf,
Philipp Zabel9f2bfb32015-05-04 07:51:07 -0300926 .vidioc_dqbuf = v4l2_m2m_ioctl_dqbuf,
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300927 .vidioc_create_bufs = v4l2_m2m_ioctl_create_bufs,
Philipp Zabelbb757d72015-12-02 14:58:52 -0200928 .vidioc_prepare_buf = v4l2_m2m_ioctl_prepare_buf,
Javier Martin186b2502012-07-26 05:53:35 -0300929
Philipp Zabel152ea1c2014-07-11 06:36:21 -0300930 .vidioc_streamon = v4l2_m2m_ioctl_streamon,
931 .vidioc_streamoff = v4l2_m2m_ioctl_streamoff,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300932
Philipp Zabel52c41672014-07-11 06:36:19 -0300933 .vidioc_g_selection = coda_g_selection,
934
Philipp Zabel64ba40a2013-09-30 10:34:52 -0300935 .vidioc_try_decoder_cmd = coda_try_decoder_cmd,
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300936 .vidioc_decoder_cmd = coda_decoder_cmd,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300937
Philipp Zabelcde29ef2015-07-16 13:13:24 -0300938 .vidioc_g_parm = coda_g_parm,
939 .vidioc_s_parm = coda_s_parm,
940
Philipp Zabel2e9e4f12013-09-30 10:34:50 -0300941 .vidioc_subscribe_event = coda_subscribe_event,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300942 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Javier Martin186b2502012-07-26 05:53:35 -0300943};
944
945/*
946 * Mem-to-mem operations.
947 */
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300948
949static void coda_device_run(void *m2m_priv)
950{
951 struct coda_ctx *ctx = m2m_priv;
952 struct coda_dev *dev = ctx->dev;
Philipp Zabel32b6f202014-07-11 06:36:20 -0300953
954 queue_work(dev->workqueue, &ctx->pic_run_work);
955}
956
Philipp Zabel32b6f202014-07-11 06:36:20 -0300957static void coda_pic_run_work(struct work_struct *work)
958{
959 struct coda_ctx *ctx = container_of(work, struct coda_ctx, pic_run_work);
960 struct coda_dev *dev = ctx->dev;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300961 int ret;
962
963 mutex_lock(&ctx->buffer_mutex);
Philipp Zabel477c1cf2013-06-21 03:55:33 -0300964 mutex_lock(&dev->coda_mutex);
965
Philipp Zabela1192a12014-07-23 12:28:40 -0300966 ret = ctx->ops->prepare_run(ctx);
967 if (ret < 0 && ctx->inst_type == CODA_INST_DECODER) {
968 mutex_unlock(&dev->coda_mutex);
969 mutex_unlock(&ctx->buffer_mutex);
970 /* job_finish scheduled by prepare_decode */
971 return;
Philipp Zabel10436672012-07-02 09:03:55 -0300972 }
973
Philipp Zabelf23797b2014-08-06 08:02:23 -0300974 if (!wait_for_completion_timeout(&ctx->completion,
975 msecs_to_jiffies(1000))) {
Philipp Zabel32b6f202014-07-11 06:36:20 -0300976 dev_err(&dev->plat_dev->dev, "CODA PIC_RUN timeout\n");
Philipp Zabel84e23652014-07-11 06:36:34 -0300977
978 ctx->hold = true;
Philipp Zabel8f452842014-07-11 06:36:35 -0300979
980 coda_hw_reset(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300981 } else if (!ctx->aborting) {
Philipp Zabela1192a12014-07-23 12:28:40 -0300982 ctx->ops->finish_run(ctx);
Philipp Zabel32b6f202014-07-11 06:36:20 -0300983 }
984
Philipp Zabel747d7642015-01-23 13:51:31 -0300985 if ((ctx->aborting || (!ctx->streamon_cap && !ctx->streamon_out)) &&
986 ctx->ops->seq_end_work)
Philipp Zabel32b6f202014-07-11 06:36:20 -0300987 queue_work(dev->workqueue, &ctx->seq_end_work);
988
989 mutex_unlock(&dev->coda_mutex);
990 mutex_unlock(&ctx->buffer_mutex);
991
Philipp Zabel14604e32014-07-11 06:36:22 -0300992 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -0300993}
994
995static int coda_job_ready(void *m2m_priv)
996{
997 struct coda_ctx *ctx = m2m_priv;
Philipp Zabel2cf251c2015-07-09 07:10:20 -0300998 int src_bufs = v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -0300999
1000 /*
1001 * For both 'P' and 'key' frame cases 1 picture
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001002 * and 1 frame are needed. In the decoder case,
1003 * the compressed frame can be in the bitstream.
Javier Martin186b2502012-07-26 05:53:35 -03001004 */
Philipp Zabel2cf251c2015-07-09 07:10:20 -03001005 if (!src_bufs && ctx->inst_type != CODA_INST_DECODER) {
Javier Martin186b2502012-07-26 05:53:35 -03001006 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1007 "not ready: not enough video buffers.\n");
1008 return 0;
1009 }
1010
Philipp Zabel14604e32014-07-11 06:36:22 -03001011 if (!v4l2_m2m_num_dst_bufs_ready(ctx->fh.m2m_ctx)) {
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001012 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1013 "not ready: not enough video capture buffers.\n");
1014 return 0;
1015 }
1016
Philipp Zabela22496c2015-01-23 13:51:33 -03001017 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit) {
Philipp Zabel47f3fa62015-07-09 07:10:21 -03001018 bool stream_end = ctx->bit_stream_param &
1019 CODA_BIT_STREAM_END_FLAG;
1020 int num_metas = ctx->num_metas;
Philipp Zabelf77fd8a2015-01-23 13:51:20 -03001021
Philipp Zabel2cf251c2015-07-09 07:10:20 -03001022 if (ctx->hold && !src_bufs) {
Philipp Zabelf77fd8a2015-01-23 13:51:20 -03001023 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1024 "%d: not ready: on hold for more buffers.\n",
1025 ctx->idx);
1026 return 0;
1027 }
1028
Philipp Zabelf77fd8a2015-01-23 13:51:20 -03001029 if (!stream_end && (num_metas + src_bufs) < 2) {
1030 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1031 "%d: not ready: need 2 buffers available (%d, %d)\n",
1032 ctx->idx, num_metas, src_bufs);
1033 return 0;
1034 }
1035
1036
Philipp Zabel2cf251c2015-07-09 07:10:20 -03001037 if (!src_bufs && !stream_end &&
1038 (coda_get_bitstream_payload(ctx) < 512)) {
Philipp Zabelf77fd8a2015-01-23 13:51:20 -03001039 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1040 "%d: not ready: not enough bitstream data (%d).\n",
1041 ctx->idx, coda_get_bitstream_payload(ctx));
1042 return 0;
1043 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001044 }
1045
Philipp Zabel3e748262013-05-23 10:43:01 -03001046 if (ctx->aborting) {
1047 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1048 "not ready: aborting\n");
1049 return 0;
1050 }
1051
Javier Martin186b2502012-07-26 05:53:35 -03001052 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1053 "job ready\n");
Philipp Zabel47f3fa62015-07-09 07:10:21 -03001054
Javier Martin186b2502012-07-26 05:53:35 -03001055 return 1;
1056}
1057
1058static void coda_job_abort(void *priv)
1059{
1060 struct coda_ctx *ctx = priv;
Javier Martin186b2502012-07-26 05:53:35 -03001061
1062 ctx->aborting = 1;
1063
1064 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1065 "Aborting task\n");
Javier Martin186b2502012-07-26 05:53:35 -03001066}
1067
1068static void coda_lock(void *m2m_priv)
1069{
1070 struct coda_ctx *ctx = m2m_priv;
1071 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001072
Javier Martin186b2502012-07-26 05:53:35 -03001073 mutex_lock(&pcdev->dev_mutex);
1074}
1075
1076static void coda_unlock(void *m2m_priv)
1077{
1078 struct coda_ctx *ctx = m2m_priv;
1079 struct coda_dev *pcdev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001080
Javier Martin186b2502012-07-26 05:53:35 -03001081 mutex_unlock(&pcdev->dev_mutex);
1082}
1083
Philipp Zabel814c3762014-07-18 07:22:45 -03001084static const struct v4l2_m2m_ops coda_m2m_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001085 .device_run = coda_device_run,
1086 .job_ready = coda_job_ready,
1087 .job_abort = coda_job_abort,
1088 .lock = coda_lock,
1089 .unlock = coda_unlock,
1090};
1091
1092static void set_default_params(struct coda_ctx *ctx)
1093{
Philipp Zabel8e428d52015-01-23 13:51:29 -03001094 unsigned int max_w, max_h, usize, csize;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001095
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001096 ctx->codec = coda_find_codec(ctx->dev, ctx->cvd->src_formats[0],
1097 ctx->cvd->dst_formats[0]);
Philipp Zabeld4c6a412014-10-02 14:08:35 -03001098 max_w = min(ctx->codec->max_w, 1920U);
1099 max_h = min(ctx->codec->max_h, 1088U);
Philipp Zabel8e428d52015-01-23 13:51:29 -03001100 usize = max_w * max_h * 3 / 2;
1101 csize = coda_estimate_sizeimage(ctx, usize, max_w, max_h);
Javier Martin186b2502012-07-26 05:53:35 -03001102
Philipp Zabel121cacf2014-07-18 07:22:42 -03001103 ctx->params.codec_mode = ctx->codec->mode;
Javier Martin186b2502012-07-26 05:53:35 -03001104 ctx->colorspace = V4L2_COLORSPACE_REC709;
1105 ctx->params.framerate = 30;
Javier Martin186b2502012-07-26 05:53:35 -03001106
1107 /* Default formats for output and input queues */
Philipp Zabel6727d4f2015-07-16 13:19:39 -03001108 ctx->q_data[V4L2_M2M_SRC].fourcc = ctx->cvd->src_formats[0];
1109 ctx->q_data[V4L2_M2M_DST].fourcc = ctx->cvd->dst_formats[0];
Philipp Zabelb96904e2013-05-23 10:42:58 -03001110 ctx->q_data[V4L2_M2M_SRC].width = max_w;
1111 ctx->q_data[V4L2_M2M_SRC].height = max_h;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001112 ctx->q_data[V4L2_M2M_DST].width = max_w;
1113 ctx->q_data[V4L2_M2M_DST].height = max_h;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001114 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_YUV420) {
1115 ctx->q_data[V4L2_M2M_SRC].bytesperline = max_w;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001116 ctx->q_data[V4L2_M2M_SRC].sizeimage = usize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001117 ctx->q_data[V4L2_M2M_DST].bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001118 ctx->q_data[V4L2_M2M_DST].sizeimage = csize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001119 } else {
1120 ctx->q_data[V4L2_M2M_SRC].bytesperline = 0;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001121 ctx->q_data[V4L2_M2M_SRC].sizeimage = csize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001122 ctx->q_data[V4L2_M2M_DST].bytesperline = max_w;
Philipp Zabel8e428d52015-01-23 13:51:29 -03001123 ctx->q_data[V4L2_M2M_DST].sizeimage = usize;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001124 }
Philipp Zabel52c41672014-07-11 06:36:19 -03001125 ctx->q_data[V4L2_M2M_SRC].rect.width = max_w;
1126 ctx->q_data[V4L2_M2M_SRC].rect.height = max_h;
1127 ctx->q_data[V4L2_M2M_DST].rect.width = max_w;
1128 ctx->q_data[V4L2_M2M_DST].rect.height = max_h;
Philipp Zabel89548442014-07-11 06:36:17 -03001129
Philipp Zabela269e532015-07-16 13:19:38 -03001130 /*
1131 * Since the RBC2AXI logic only supports a single chroma plane,
1132 * macroblock tiling only works for to NV12 pixel format.
1133 */
1134 ctx->tiled_map_type = GDI_LINEAR_FRAME_MAP;
Javier Martin186b2502012-07-26 05:53:35 -03001135}
1136
1137/*
1138 * Queue operations
1139 */
Hans Verkuildf9ecb02015-10-28 00:50:37 -02001140static int coda_queue_setup(struct vb2_queue *vq,
Javier Martin186b2502012-07-26 05:53:35 -03001141 unsigned int *nbuffers, unsigned int *nplanes,
Hans Verkuil36c0f8b2016-04-15 09:15:05 -03001142 unsigned int sizes[], struct device *alloc_devs[])
Javier Martin186b2502012-07-26 05:53:35 -03001143{
1144 struct coda_ctx *ctx = vb2_get_drv_priv(vq);
Philipp Zabele34db062012-08-29 08:22:00 -03001145 struct coda_q_data *q_data;
Javier Martin186b2502012-07-26 05:53:35 -03001146 unsigned int size;
1147
Philipp Zabele34db062012-08-29 08:22:00 -03001148 q_data = get_q_data(ctx, vq->type);
1149 size = q_data->sizeimage;
Javier Martin186b2502012-07-26 05:53:35 -03001150
1151 *nplanes = 1;
1152 sizes[0] = size;
1153
Javier Martin186b2502012-07-26 05:53:35 -03001154 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1155 "get %d buffer(s) of size %d each.\n", *nbuffers, size);
1156
1157 return 0;
1158}
1159
1160static int coda_buf_prepare(struct vb2_buffer *vb)
1161{
1162 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
1163 struct coda_q_data *q_data;
1164
1165 q_data = get_q_data(ctx, vb->vb2_queue->type);
1166
1167 if (vb2_plane_size(vb, 0) < q_data->sizeimage) {
1168 v4l2_warn(&ctx->dev->v4l2_dev,
1169 "%s data will not fit into plane (%lu < %lu)\n",
1170 __func__, vb2_plane_size(vb, 0),
1171 (long)q_data->sizeimage);
1172 return -EINVAL;
1173 }
1174
Javier Martin186b2502012-07-26 05:53:35 -03001175 return 0;
1176}
1177
1178static void coda_buf_queue(struct vb2_buffer *vb)
1179{
Junghak Sung2d700712015-09-22 10:30:30 -03001180 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
Javier Martin186b2502012-07-26 05:53:35 -03001181 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
Philipp Zabelcb06b702015-01-23 13:51:35 -03001182 struct vb2_queue *vq = vb->vb2_queue;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001183 struct coda_q_data *q_data;
1184
1185 q_data = get_q_data(ctx, vb->vb2_queue->type);
1186
1187 /*
1188 * In the decoder case, immediately try to copy the buffer into the
1189 * bitstream ringbuffer and mark it as ready to be dequeued.
1190 */
Philipp Zabelcb06b702015-01-23 13:51:35 -03001191 if (ctx->bitstream.size && vq->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001192 /*
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -03001193 * For backwards compatibility, queuing an empty buffer marks
Philipp Zabel918c66f2013-06-27 06:59:01 -03001194 * the stream end
1195 */
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001196 if (vb2_get_plane_payload(vb, 0) == 0)
1197 coda_bit_stream_end_flag(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001198 mutex_lock(&ctx->bitstream_mutex);
Junghak Sung2d700712015-09-22 10:30:30 -03001199 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vbuf);
Michael Olbricheabed932014-07-18 07:22:40 -03001200 if (vb2_is_streaming(vb->vb2_queue))
Philipp Zabel582d88722015-03-24 14:30:57 -03001201 coda_fill_bitstream(ctx, true);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001202 mutex_unlock(&ctx->bitstream_mutex);
1203 } else {
Junghak Sung2d700712015-09-22 10:30:30 -03001204 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vbuf);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001205 }
Javier Martin186b2502012-07-26 05:53:35 -03001206}
1207
Philipp Zabel79924ca2014-07-23 12:28:45 -03001208int coda_alloc_aux_buf(struct coda_dev *dev, struct coda_aux_buf *buf,
1209 size_t size, const char *name, struct dentry *parent)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001210{
1211 buf->vaddr = dma_alloc_coherent(&dev->plat_dev->dev, size, &buf->paddr,
1212 GFP_KERNEL);
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001213 if (!buf->vaddr) {
1214 v4l2_err(&dev->v4l2_dev,
1215 "Failed to allocate %s buffer of size %u\n",
1216 name, size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001217 return -ENOMEM;
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001218 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001219
1220 buf->size = size;
1221
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001222 if (name && parent) {
1223 buf->blob.data = buf->vaddr;
1224 buf->blob.size = size;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001225 buf->dentry = debugfs_create_blob(name, 0644, parent,
1226 &buf->blob);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001227 if (!buf->dentry)
1228 dev_warn(&dev->plat_dev->dev,
1229 "failed to create debugfs entry %s\n", name);
1230 }
1231
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001232 return 0;
1233}
1234
Philipp Zabel79924ca2014-07-23 12:28:45 -03001235void coda_free_aux_buf(struct coda_dev *dev,
1236 struct coda_aux_buf *buf)
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001237{
1238 if (buf->vaddr) {
1239 dma_free_coherent(&dev->plat_dev->dev, buf->size,
1240 buf->vaddr, buf->paddr);
1241 buf->vaddr = NULL;
1242 buf->size = 0;
Peter Seidererd446ec82015-03-24 14:30:48 -03001243 debugfs_remove(buf->dentry);
1244 buf->dentry = NULL;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001245 }
1246}
1247
Javier Martin186b2502012-07-26 05:53:35 -03001248static int coda_start_streaming(struct vb2_queue *q, unsigned int count)
1249{
1250 struct coda_ctx *ctx = vb2_get_drv_priv(q);
1251 struct v4l2_device *v4l2_dev = &ctx->dev->v4l2_dev;
Javier Martin186b2502012-07-26 05:53:35 -03001252 struct coda_q_data *q_data_src, *q_data_dst;
Junghak Sung2d700712015-09-22 10:30:30 -03001253 struct vb2_v4l2_buffer *buf;
Philipp Zabeld35167a2013-05-23 10:42:59 -03001254 int ret = 0;
Javier Martin186b2502012-07-26 05:53:35 -03001255
Philipp Zabel49b966f2015-12-02 14:58:53 -02001256 if (count < 1)
1257 return -EINVAL;
1258
Philipp Zabelb96904e2013-05-23 10:42:58 -03001259 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001260 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel58bc7ed2015-07-09 07:10:14 -03001261 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit) {
Philipp Zabel582d88722015-03-24 14:30:57 -03001262 /* copy the buffers that were queued before streamon */
Michael Olbricheabed932014-07-18 07:22:40 -03001263 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel582d88722015-03-24 14:30:57 -03001264 coda_fill_bitstream(ctx, false);
Michael Olbricheabed932014-07-18 07:22:40 -03001265 mutex_unlock(&ctx->bitstream_mutex);
1266
Philipp Zabelb9063522014-08-05 14:00:10 -03001267 if (coda_get_bitstream_payload(ctx) < 512) {
1268 ret = -EINVAL;
1269 goto err;
1270 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001271 }
1272
1273 ctx->streamon_out = 1;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001274 } else {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001275 ctx->streamon_cap = 1;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001276 }
Javier Martin186b2502012-07-26 05:53:35 -03001277
Philipp Zabelb96904e2013-05-23 10:42:58 -03001278 /* Don't start the coda unless both queues are on */
1279 if (!(ctx->streamon_out & ctx->streamon_cap))
1280 return 0;
Javier Martin186b2502012-07-26 05:53:35 -03001281
Philipp Zabel23b6ee52015-03-24 14:30:55 -03001282 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1283 if ((q_data_src->width != q_data_dst->width &&
1284 round_up(q_data_src->width, 16) != q_data_dst->width) ||
1285 (q_data_src->height != q_data_dst->height &&
1286 round_up(q_data_src->height, 16) != q_data_dst->height)) {
1287 v4l2_err(v4l2_dev, "can't convert %dx%d to %dx%d\n",
1288 q_data_src->width, q_data_src->height,
1289 q_data_dst->width, q_data_dst->height);
1290 ret = -EINVAL;
1291 goto err;
1292 }
1293
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001294 /* Allow BIT decoder device_run with no new buffers queued */
Philipp Zabela22496c2015-01-23 13:51:33 -03001295 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit)
Philipp Zabel14604e32014-07-11 06:36:22 -03001296 v4l2_m2m_set_src_buffered(ctx->fh.m2m_ctx, true);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001297
Philipp Zabelb96904e2013-05-23 10:42:58 -03001298 ctx->gopcounter = ctx->params.gop_size - 1;
Javier Martin186b2502012-07-26 05:53:35 -03001299
Philipp Zabelb96904e2013-05-23 10:42:58 -03001300 ctx->codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
1301 q_data_dst->fourcc);
1302 if (!ctx->codec) {
Javier Martin186b2502012-07-26 05:53:35 -03001303 v4l2_err(v4l2_dev, "couldn't tell instance type.\n");
Philipp Zabelb9063522014-08-05 14:00:10 -03001304 ret = -EINVAL;
1305 goto err;
Javier Martin186b2502012-07-26 05:53:35 -03001306 }
1307
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001308 if (q_data_dst->fourcc == V4L2_PIX_FMT_JPEG)
1309 ctx->params.gop_size = 1;
1310 ctx->gopcounter = ctx->params.gop_size - 1;
1311
Philipp Zabela1192a12014-07-23 12:28:40 -03001312 ret = ctx->ops->start_streaming(ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001313 if (ctx->inst_type == CODA_INST_DECODER) {
Philipp Zabel89548442014-07-11 06:36:17 -03001314 if (ret == -EAGAIN)
Philipp Zabel918c66f2013-06-27 06:59:01 -03001315 return 0;
Philipp Zabel89548442014-07-11 06:36:17 -03001316 else if (ret < 0)
Philipp Zabelb9063522014-08-05 14:00:10 -03001317 goto err;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001318 }
1319
Philipp Zabel89548442014-07-11 06:36:17 -03001320 return ret;
Philipp Zabelb9063522014-08-05 14:00:10 -03001321
1322err:
1323 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1324 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b582014-10-21 13:25:52 -03001325 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001326 } else {
1327 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
Philipp Zabelb8b1b582014-10-21 13:25:52 -03001328 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
Philipp Zabelb9063522014-08-05 14:00:10 -03001329 }
1330 return ret;
Philipp Zabel89548442014-07-11 06:36:17 -03001331}
1332
Hans Verkuile37559b2014-04-17 02:47:21 -03001333static void coda_stop_streaming(struct vb2_queue *q)
Javier Martin186b2502012-07-26 05:53:35 -03001334{
1335 struct coda_ctx *ctx = vb2_get_drv_priv(q);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03001336 struct coda_dev *dev = ctx->dev;
Junghak Sung2d700712015-09-22 10:30:30 -03001337 struct vb2_v4l2_buffer *buf;
Philipp Zabel47f3fa62015-07-09 07:10:21 -03001338 unsigned long flags;
Philipp Zabel5c76c2c2015-03-24 14:30:56 -03001339 bool stop;
1340
1341 stop = ctx->streamon_out && ctx->streamon_cap;
Javier Martin186b2502012-07-26 05:53:35 -03001342
1343 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001344 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001345 "%s: output\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001346 ctx->streamon_out = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001347
Philipp Zabel347bb7f2014-07-23 12:28:42 -03001348 coda_bit_stream_end_flag(ctx);
Philipp Zabel4a31b522014-08-05 14:00:11 -03001349
Philipp Zabel6dd5ef52015-01-23 13:51:26 -03001350 ctx->qsequence = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001351
1352 while ((buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx)))
1353 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001354 } else {
Philipp Zabel918c66f2013-06-27 06:59:01 -03001355 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03001356 "%s: capture\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001357 ctx->streamon_cap = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001358
1359 ctx->osequence = 0;
Philipp Zabelcb2c0282014-07-11 06:36:33 -03001360 ctx->sequence_offset = 0;
Philipp Zabel4a31b522014-08-05 14:00:11 -03001361
1362 while ((buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx)))
1363 v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
Javier Martin186b2502012-07-26 05:53:35 -03001364 }
1365
Philipp Zabel5c76c2c2015-03-24 14:30:56 -03001366 if (stop) {
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001367 struct coda_buffer_meta *meta;
Philipp Zabel846ced92014-07-11 06:36:31 -03001368
Philipp Zabelf4706d62015-01-23 13:51:27 -03001369 if (ctx->ops->seq_end_work) {
1370 queue_work(dev->workqueue, &ctx->seq_end_work);
1371 flush_work(&ctx->seq_end_work);
1372 }
Philipp Zabel47f3fa62015-07-09 07:10:21 -03001373 spin_lock_irqsave(&ctx->buffer_meta_lock, flags);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001374 while (!list_empty(&ctx->buffer_meta_list)) {
1375 meta = list_first_entry(&ctx->buffer_meta_list,
1376 struct coda_buffer_meta, list);
1377 list_del(&meta->list);
1378 kfree(meta);
Philipp Zabel846ced92014-07-11 06:36:31 -03001379 }
Philipp Zabel47f3fa62015-07-09 07:10:21 -03001380 ctx->num_metas = 0;
1381 spin_unlock_irqrestore(&ctx->buffer_meta_lock, flags);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001382 kfifo_init(&ctx->bitstream_fifo,
1383 ctx->bitstream.vaddr, ctx->bitstream.size);
1384 ctx->runcounter = 0;
Philipp Zabelf157cf42014-09-29 09:53:42 -03001385 ctx->aborting = 0;
Philipp Zabel62bed142012-07-25 10:40:39 -03001386 }
Philipp Zabelc1ae0b22015-07-09 07:10:17 -03001387
1388 if (!ctx->streamon_out && !ctx->streamon_cap)
1389 ctx->bit_stream_param &= ~CODA_BIT_STREAM_END_FLAG;
Javier Martin186b2502012-07-26 05:53:35 -03001390}
1391
Philipp Zabel121cacf2014-07-18 07:22:42 -03001392static const struct vb2_ops coda_qops = {
Javier Martin186b2502012-07-26 05:53:35 -03001393 .queue_setup = coda_queue_setup,
1394 .buf_prepare = coda_buf_prepare,
1395 .buf_queue = coda_buf_queue,
Javier Martin186b2502012-07-26 05:53:35 -03001396 .start_streaming = coda_start_streaming,
1397 .stop_streaming = coda_stop_streaming,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001398 .wait_prepare = vb2_ops_wait_prepare,
1399 .wait_finish = vb2_ops_wait_finish,
Javier Martin186b2502012-07-26 05:53:35 -03001400};
1401
1402static int coda_s_ctrl(struct v4l2_ctrl *ctrl)
1403{
1404 struct coda_ctx *ctx =
1405 container_of(ctrl->handler, struct coda_ctx, ctrls);
1406
1407 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1408 "s_ctrl: id = %d, val = %d\n", ctrl->id, ctrl->val);
1409
1410 switch (ctrl->id) {
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001411 case V4L2_CID_HFLIP:
1412 if (ctrl->val)
1413 ctx->params.rot_mode |= CODA_MIR_HOR;
1414 else
1415 ctx->params.rot_mode &= ~CODA_MIR_HOR;
1416 break;
1417 case V4L2_CID_VFLIP:
1418 if (ctrl->val)
1419 ctx->params.rot_mode |= CODA_MIR_VER;
1420 else
1421 ctx->params.rot_mode &= ~CODA_MIR_VER;
1422 break;
Javier Martin186b2502012-07-26 05:53:35 -03001423 case V4L2_CID_MPEG_VIDEO_BITRATE:
1424 ctx->params.bitrate = ctrl->val / 1000;
1425 break;
1426 case V4L2_CID_MPEG_VIDEO_GOP_SIZE:
1427 ctx->params.gop_size = ctrl->val;
1428 break;
1429 case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP:
1430 ctx->params.h264_intra_qp = ctrl->val;
1431 break;
1432 case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP:
1433 ctx->params.h264_inter_qp = ctrl->val;
1434 break;
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001435 case V4L2_CID_MPEG_VIDEO_H264_MIN_QP:
1436 ctx->params.h264_min_qp = ctrl->val;
1437 break;
1438 case V4L2_CID_MPEG_VIDEO_H264_MAX_QP:
1439 ctx->params.h264_max_qp = ctrl->val;
1440 break;
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001441 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA:
1442 ctx->params.h264_deblk_alpha = ctrl->val;
1443 break;
1444 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA:
1445 ctx->params.h264_deblk_beta = ctrl->val;
1446 break;
1447 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
1448 ctx->params.h264_deblk_enabled = (ctrl->val ==
1449 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1450 break;
Javier Martin186b2502012-07-26 05:53:35 -03001451 case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP:
1452 ctx->params.mpeg4_intra_qp = ctrl->val;
1453 break;
1454 case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP:
1455 ctx->params.mpeg4_inter_qp = ctrl->val;
1456 break;
1457 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
1458 ctx->params.slice_mode = ctrl->val;
1459 break;
1460 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB:
1461 ctx->params.slice_max_mb = ctrl->val;
1462 break;
Philipp Zabelc566c782012-08-08 11:59:38 -03001463 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES:
1464 ctx->params.slice_max_bits = ctrl->val * 8;
1465 break;
Javier Martin186b2502012-07-26 05:53:35 -03001466 case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
1467 break;
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001468 case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB:
1469 ctx->params.intra_refresh = ctrl->val;
1470 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001471 case V4L2_CID_JPEG_COMPRESSION_QUALITY:
1472 coda_set_jpeg_compression_quality(ctx, ctrl->val);
1473 break;
1474 case V4L2_CID_JPEG_RESTART_INTERVAL:
1475 ctx->params.jpeg_restart_interval = ctrl->val;
1476 break;
Philipp Zabelda2b3b32015-07-10 10:37:52 -03001477 case V4L2_CID_MPEG_VIDEO_VBV_DELAY:
1478 ctx->params.vbv_delay = ctrl->val;
1479 break;
1480 case V4L2_CID_MPEG_VIDEO_VBV_SIZE:
1481 ctx->params.vbv_size = min(ctrl->val * 8192, 0x7fffffff);
1482 break;
Javier Martin186b2502012-07-26 05:53:35 -03001483 default:
1484 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1485 "Invalid control, id=%d, val=%d\n",
1486 ctrl->id, ctrl->val);
1487 return -EINVAL;
1488 }
1489
1490 return 0;
1491}
1492
Philipp Zabel814c3762014-07-18 07:22:45 -03001493static const struct v4l2_ctrl_ops coda_ctrl_ops = {
Javier Martin186b2502012-07-26 05:53:35 -03001494 .s_ctrl = coda_s_ctrl,
1495};
1496
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001497static void coda_encode_ctrls(struct coda_ctx *ctx)
Javier Martin186b2502012-07-26 05:53:35 -03001498{
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001499 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel92b042e2015-03-18 08:15:36 -03001500 V4L2_CID_MPEG_VIDEO_BITRATE, 0, 32767000, 1000, 0);
Javier Martin186b2502012-07-26 05:53:35 -03001501 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1502 V4L2_CID_MPEG_VIDEO_GOP_SIZE, 1, 60, 1, 16);
1503 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001504 V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP, 0, 51, 1, 25);
Javier Martin186b2502012-07-26 05:53:35 -03001505 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel594a7502014-07-11 06:36:14 -03001506 V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP, 0, 51, 1, 25);
Philipp Zabel1a5567e2014-07-11 06:36:26 -03001507 if (ctx->dev->devtype->product != CODA_960) {
1508 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1509 V4L2_CID_MPEG_VIDEO_H264_MIN_QP, 0, 51, 1, 12);
1510 }
1511 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1512 V4L2_CID_MPEG_VIDEO_H264_MAX_QP, 0, 51, 1, 51);
Javier Martin186b2502012-07-26 05:53:35 -03001513 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelde23b1d2014-07-11 06:36:27 -03001514 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA, 0, 15, 1, 0);
1515 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1516 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA, 0, 15, 1, 0);
1517 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1518 V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE,
1519 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED, 0x0,
1520 V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED);
1521 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Javier Martin186b2502012-07-26 05:53:35 -03001522 V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP, 1, 31, 1, 2);
1523 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1524 V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP, 1, 31, 1, 2);
1525 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1526 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE,
Philipp Zabelc566c782012-08-08 11:59:38 -03001527 V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES, 0x0,
1528 V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE);
Javier Martin186b2502012-07-26 05:53:35 -03001529 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1530 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB, 1, 0x3fffffff, 1, 1);
Philipp Zabelc566c782012-08-08 11:59:38 -03001531 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001532 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES, 1, 0x3fffffff, 1,
1533 500);
Javier Martin186b2502012-07-26 05:53:35 -03001534 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
1535 V4L2_CID_MPEG_VIDEO_HEADER_MODE,
1536 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME,
1537 (1 << V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE),
1538 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME);
Philipp Zabelf38f79d2014-07-11 06:36:28 -03001539 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001540 V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB, 0,
1541 1920 * 1088 / 256, 1, 0);
Philipp Zabelda2b3b32015-07-10 10:37:52 -03001542 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1543 V4L2_CID_MPEG_VIDEO_VBV_DELAY, 0, 0x7fff, 1, 0);
1544 /*
1545 * The maximum VBV size value is 0x7fffffff bits,
1546 * one bit less than 262144 KiB
1547 */
1548 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1549 V4L2_CID_MPEG_VIDEO_VBV_SIZE, 0, 262144, 1, 0);
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001550}
1551
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001552static void coda_jpeg_encode_ctrls(struct coda_ctx *ctx)
1553{
1554 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1555 V4L2_CID_JPEG_COMPRESSION_QUALITY, 5, 100, 1, 50);
1556 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1557 V4L2_CID_JPEG_RESTART_INTERVAL, 0, 100, 1, 0);
1558}
1559
Philipp Zabelbfc732f2014-10-02 14:08:29 -03001560static int coda_ctrls_setup(struct coda_ctx *ctx)
1561{
1562 v4l2_ctrl_handler_init(&ctx->ctrls, 2);
1563
1564 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1565 V4L2_CID_HFLIP, 0, 1, 1, 0);
1566 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
1567 V4L2_CID_VFLIP, 0, 1, 1, 0);
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001568 if (ctx->inst_type == CODA_INST_ENCODER) {
1569 if (ctx->cvd->dst_formats[0] == V4L2_PIX_FMT_JPEG)
1570 coda_jpeg_encode_ctrls(ctx);
1571 else
1572 coda_encode_ctrls(ctx);
1573 }
Javier Martin186b2502012-07-26 05:53:35 -03001574
1575 if (ctx->ctrls.error) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001576 v4l2_err(&ctx->dev->v4l2_dev,
1577 "control initialization error (%d)",
Javier Martin186b2502012-07-26 05:53:35 -03001578 ctx->ctrls.error);
1579 return -EINVAL;
1580 }
1581
1582 return v4l2_ctrl_handler_setup(&ctx->ctrls);
1583}
1584
Philipp Zabel121cacf2014-07-18 07:22:42 -03001585static int coda_queue_init(struct coda_ctx *ctx, struct vb2_queue *vq)
Javier Martin186b2502012-07-26 05:53:35 -03001586{
Philipp Zabel121cacf2014-07-18 07:22:42 -03001587 vq->drv_priv = ctx;
1588 vq->ops = &coda_qops;
1589 vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
1590 vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
1591 vq->lock = &ctx->dev->dev_mutex;
Kamil Debskie4af23d2015-02-23 09:26:18 -03001592 /* One way to indicate end-of-stream for coda is to set the
1593 * bytesused == 0. However by default videobuf2 handles bytesused
1594 * equal to 0 as a special case and changes its value to the size
1595 * of the buffer. Set the allow_zero_bytesused flag, so
1596 * that videobuf2 will keep the value of bytesused intact.
1597 */
1598 vq->allow_zero_bytesused = 1;
Hans Verkuil53ddcc62016-02-15 13:09:10 -02001599 vq->dev = &ctx->dev->plat_dev->dev;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001600
1601 return vb2_queue_init(vq);
1602}
1603
Philipp Zabel79924ca2014-07-23 12:28:45 -03001604int coda_encoder_queue_init(void *priv, struct vb2_queue *src_vq,
1605 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001606{
Javier Martin186b2502012-07-26 05:53:35 -03001607 int ret;
1608
Javier Martin186b2502012-07-26 05:53:35 -03001609 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001610 src_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001611 src_vq->mem_ops = &vb2_dma_contig_memops;
1612
Philipp Zabel121cacf2014-07-18 07:22:42 -03001613 ret = coda_queue_init(priv, src_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001614 if (ret)
1615 return ret;
1616
Javier Martin186b2502012-07-26 05:53:35 -03001617 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Philipp Zabeld29a8cf2014-07-18 07:22:38 -03001618 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
Javier Martin186b2502012-07-26 05:53:35 -03001619 dst_vq->mem_ops = &vb2_dma_contig_memops;
1620
Philipp Zabel121cacf2014-07-18 07:22:42 -03001621 return coda_queue_init(priv, dst_vq);
1622}
1623
Philipp Zabel79924ca2014-07-23 12:28:45 -03001624int coda_decoder_queue_init(void *priv, struct vb2_queue *src_vq,
1625 struct vb2_queue *dst_vq)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001626{
1627 int ret;
1628
1629 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabelbb04aa62015-01-23 13:51:30 -03001630 src_vq->io_modes = VB2_DMABUF | VB2_MMAP | VB2_USERPTR;
1631 src_vq->mem_ops = &vb2_vmalloc_memops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001632
1633 ret = coda_queue_init(priv, src_vq);
1634 if (ret)
1635 return ret;
1636
1637 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1638 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP;
1639 dst_vq->mem_ops = &vb2_dma_contig_memops;
1640
1641 return coda_queue_init(priv, dst_vq);
Javier Martin186b2502012-07-26 05:53:35 -03001642}
1643
Philipp Zabele11f3e62012-07-25 09:16:58 -03001644static int coda_next_free_instance(struct coda_dev *dev)
1645{
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001646 int idx = ffz(dev->instance_mask);
1647
1648 if ((idx < 0) ||
1649 (dev->devtype->product == CODA_DX6 && idx > CODADX6_MAX_INSTANCES))
1650 return -EBUSY;
1651
1652 return idx;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001653}
1654
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001655/*
1656 * File operations
1657 */
1658
1659static int coda_open(struct file *file)
Javier Martin186b2502012-07-26 05:53:35 -03001660{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001661 struct video_device *vdev = video_devdata(file);
1662 struct coda_dev *dev = video_get_drvdata(vdev);
Javier Martin186b2502012-07-26 05:53:35 -03001663 struct coda_ctx *ctx = NULL;
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001664 char *name;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001665 int ret;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001666 int idx;
Javier Martin186b2502012-07-26 05:53:35 -03001667
Philipp Zabelf23797b2014-08-06 08:02:23 -03001668 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Javier Martin186b2502012-07-26 05:53:35 -03001669 if (!ctx)
1670 return -ENOMEM;
1671
Fabio Estevamf82bc202013-08-21 11:14:16 -03001672 idx = coda_next_free_instance(dev);
Philipp Zabel0cddc7e2013-09-30 10:34:44 -03001673 if (idx < 0) {
1674 ret = idx;
Fabio Estevamf82bc202013-08-21 11:14:16 -03001675 goto err_coda_max;
1676 }
1677 set_bit(idx, &dev->instance_mask);
1678
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001679 name = kasprintf(GFP_KERNEL, "context%d", idx);
Peter Seiderera7f933a2015-03-24 14:30:47 -03001680 if (!name) {
1681 ret = -ENOMEM;
1682 goto err_coda_name_init;
1683 }
1684
Philipp Zabelf61c0b12014-07-11 06:36:40 -03001685 ctx->debugfs_entry = debugfs_create_dir(name, dev->debugfs_root);
1686 kfree(name);
1687
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001688 ctx->cvd = to_coda_video_device(vdev);
1689 ctx->inst_type = ctx->cvd->type;
1690 ctx->ops = ctx->cvd->ops;
Philipp Zabela22496c2015-01-23 13:51:33 -03001691 ctx->use_bit = !ctx->cvd->direct;
Philipp Zabel32b6f202014-07-11 06:36:20 -03001692 init_completion(&ctx->completion);
1693 INIT_WORK(&ctx->pic_run_work, coda_pic_run_work);
Philipp Zabel747d7642015-01-23 13:51:31 -03001694 if (ctx->ops->seq_end_work)
1695 INIT_WORK(&ctx->seq_end_work, ctx->ops->seq_end_work);
Javier Martin186b2502012-07-26 05:53:35 -03001696 v4l2_fh_init(&ctx->fh, video_devdata(file));
1697 file->private_data = &ctx->fh;
1698 v4l2_fh_add(&ctx->fh);
1699 ctx->dev = dev;
Philipp Zabele11f3e62012-07-25 09:16:58 -03001700 ctx->idx = idx;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001701 switch (dev->devtype->product) {
Philipp Zabel89548442014-07-11 06:36:17 -03001702 case CODA_960:
Philipp Zabel2bf299c2014-09-29 09:53:46 -03001703 ctx->frame_mem_ctrl = 1 << 12;
1704 /* fallthrough */
1705 case CODA_7541:
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001706 ctx->reg_idx = 0;
1707 break;
1708 default:
1709 ctx->reg_idx = idx;
1710 }
Fabio Estevamf82bc202013-08-21 11:14:16 -03001711
Philipp Zabel1e172732014-07-11 06:36:23 -03001712 /* Power up and upload firmware if necessary */
1713 ret = pm_runtime_get_sync(&dev->plat_dev->dev);
1714 if (ret < 0) {
1715 v4l2_err(&dev->v4l2_dev, "failed to power up: %d\n", ret);
1716 goto err_pm_get;
1717 }
1718
Fabio Estevam79830db2013-08-21 11:14:17 -03001719 ret = clk_prepare_enable(dev->clk_per);
1720 if (ret)
1721 goto err_clk_per;
1722
1723 ret = clk_prepare_enable(dev->clk_ahb);
1724 if (ret)
1725 goto err_clk_ahb;
1726
Javier Martin186b2502012-07-26 05:53:35 -03001727 set_default_params(ctx);
Philipp Zabela1192a12014-07-23 12:28:40 -03001728 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx,
1729 ctx->ops->queue_init);
Philipp Zabel14604e32014-07-11 06:36:22 -03001730 if (IS_ERR(ctx->fh.m2m_ctx)) {
1731 ret = PTR_ERR(ctx->fh.m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -03001732
1733 v4l2_err(&dev->v4l2_dev, "%s return error (%d)\n",
1734 __func__, ret);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001735 goto err_ctx_init;
Javier Martin186b2502012-07-26 05:53:35 -03001736 }
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001737
Javier Martin186b2502012-07-26 05:53:35 -03001738 ret = coda_ctrls_setup(ctx);
1739 if (ret) {
1740 v4l2_err(&dev->v4l2_dev, "failed to setup coda controls\n");
Fabio Estevamf82bc202013-08-21 11:14:16 -03001741 goto err_ctrls_setup;
Javier Martin186b2502012-07-26 05:53:35 -03001742 }
1743
1744 ctx->fh.ctrl_handler = &ctx->ctrls;
1745
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001746 mutex_init(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001747 mutex_init(&ctx->buffer_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001748 INIT_LIST_HEAD(&ctx->buffer_meta_list);
Philipp Zabel47f3fa62015-07-09 07:10:21 -03001749 spin_lock_init(&ctx->buffer_meta_lock);
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001750
Javier Martin186b2502012-07-26 05:53:35 -03001751 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001752 list_add(&ctx->list, &dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03001753 coda_unlock(ctx);
1754
Javier Martin186b2502012-07-26 05:53:35 -03001755 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Created instance %d (%p)\n",
1756 ctx->idx, ctx);
1757
1758 return 0;
1759
Fabio Estevamf82bc202013-08-21 11:14:16 -03001760err_ctrls_setup:
Philipp Zabel14604e32014-07-11 06:36:22 -03001761 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001762err_ctx_init:
1763 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevam79830db2013-08-21 11:14:17 -03001764err_clk_ahb:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001765 clk_disable_unprepare(dev->clk_per);
Fabio Estevam79830db2013-08-21 11:14:17 -03001766err_clk_per:
Philipp Zabel1e172732014-07-11 06:36:23 -03001767 pm_runtime_put_sync(&dev->plat_dev->dev);
1768err_pm_get:
Javier Martin186b2502012-07-26 05:53:35 -03001769 v4l2_fh_del(&ctx->fh);
1770 v4l2_fh_exit(&ctx->fh);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001771 clear_bit(ctx->idx, &dev->instance_mask);
Peter Seiderera7f933a2015-03-24 14:30:47 -03001772err_coda_name_init:
Fabio Estevamf82bc202013-08-21 11:14:16 -03001773err_coda_max:
Javier Martin186b2502012-07-26 05:53:35 -03001774 kfree(ctx);
1775 return ret;
1776}
1777
1778static int coda_release(struct file *file)
1779{
1780 struct coda_dev *dev = video_drvdata(file);
1781 struct coda_ctx *ctx = fh_to_ctx(file->private_data);
1782
1783 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Releasing instance %p\n",
1784 ctx);
1785
Philipp Zabela22496c2015-01-23 13:51:33 -03001786 if (ctx->inst_type == CODA_INST_DECODER && ctx->use_bit)
Philipp Zabeld4bb75f2014-10-08 13:09:11 -03001787 coda_bit_stream_end_flag(ctx);
1788
Philipp Zabel918c66f2013-06-27 06:59:01 -03001789 /* If this instance is running, call .job_abort and wait for it to end */
Philipp Zabel14604e32014-07-11 06:36:22 -03001790 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001791
1792 /* In case the instance was not running, we still need to call SEQ_END */
Philipp Zabel5c718bb2015-07-09 07:10:16 -03001793 if (ctx->ops->seq_end_work) {
Philipp Zabel32b6f202014-07-11 06:36:20 -03001794 queue_work(dev->workqueue, &ctx->seq_end_work);
1795 flush_work(&ctx->seq_end_work);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001796 }
Philipp Zabel918c66f2013-06-27 06:59:01 -03001797
Javier Martin186b2502012-07-26 05:53:35 -03001798 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001799 list_del(&ctx->list);
Javier Martin186b2502012-07-26 05:53:35 -03001800 coda_unlock(ctx);
1801
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001802 if (ctx->dev->devtype->product == CODA_DX6)
1803 coda_free_aux_buf(dev, &ctx->workbuf);
1804
Javier Martin186b2502012-07-26 05:53:35 -03001805 v4l2_ctrl_handler_free(&ctx->ctrls);
Javier Martin186b2502012-07-26 05:53:35 -03001806 clk_disable_unprepare(dev->clk_ahb);
Fabio Estevamf82bc202013-08-21 11:14:16 -03001807 clk_disable_unprepare(dev->clk_per);
Philipp Zabel1e172732014-07-11 06:36:23 -03001808 pm_runtime_put_sync(&dev->plat_dev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03001809 v4l2_fh_del(&ctx->fh);
1810 v4l2_fh_exit(&ctx->fh);
Philipp Zabele11f3e62012-07-25 09:16:58 -03001811 clear_bit(ctx->idx, &dev->instance_mask);
Philipp Zabel58b76772014-07-23 12:28:43 -03001812 if (ctx->ops->release)
1813 ctx->ops->release(ctx);
Philipp Zabele1519e82015-01-23 13:51:17 -03001814 debugfs_remove_recursive(ctx->debugfs_entry);
Javier Martin186b2502012-07-26 05:53:35 -03001815 kfree(ctx);
1816
1817 return 0;
1818}
1819
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001820static const struct v4l2_file_operations coda_fops = {
Javier Martin186b2502012-07-26 05:53:35 -03001821 .owner = THIS_MODULE,
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001822 .open = coda_open,
Javier Martin186b2502012-07-26 05:53:35 -03001823 .release = coda_release,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001824 .poll = v4l2_m2m_fop_poll,
Javier Martin186b2502012-07-26 05:53:35 -03001825 .unlocked_ioctl = video_ioctl2,
Philipp Zabel152ea1c2014-07-11 06:36:21 -03001826 .mmap = v4l2_m2m_fop_mmap,
Javier Martin186b2502012-07-26 05:53:35 -03001827};
1828
Philipp Zabel87048bb2012-07-02 07:03:43 -03001829static int coda_hw_init(struct coda_dev *dev)
Javier Martin186b2502012-07-26 05:53:35 -03001830{
Javier Martin186b2502012-07-26 05:53:35 -03001831 u32 data;
1832 u16 *p;
Fabio Estevam79830db2013-08-21 11:14:17 -03001833 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03001834
Fabio Estevam79830db2013-08-21 11:14:17 -03001835 ret = clk_prepare_enable(dev->clk_per);
1836 if (ret)
Philipp Zabel1e172732014-07-11 06:36:23 -03001837 goto err_clk_per;
Fabio Estevam79830db2013-08-21 11:14:17 -03001838
1839 ret = clk_prepare_enable(dev->clk_ahb);
1840 if (ret)
1841 goto err_clk_ahb;
Javier Martin186b2502012-07-26 05:53:35 -03001842
Philipp Zabel8f452842014-07-11 06:36:35 -03001843 if (dev->rstc)
1844 reset_control_reset(dev->rstc);
1845
Javier Martin186b2502012-07-26 05:53:35 -03001846 /*
1847 * Copy the first CODA_ISRAM_SIZE in the internal SRAM.
Philipp Zabel87048bb2012-07-02 07:03:43 -03001848 * The 16-bit chars in the code buffer are in memory access
1849 * order, re-sort them to CODA order for register download.
Javier Martin186b2502012-07-26 05:53:35 -03001850 * Data in this SRAM survives a reboot.
1851 */
Philipp Zabel87048bb2012-07-02 07:03:43 -03001852 p = (u16 *)dev->codebuf.vaddr;
1853 if (dev->devtype->product == CODA_DX6) {
1854 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1855 data = CODA_DOWN_ADDRESS_SET(i) |
1856 CODA_DOWN_DATA_SET(p[i ^ 1]);
1857 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1858 }
1859 } else {
1860 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
1861 data = CODA_DOWN_ADDRESS_SET(i) |
1862 CODA_DOWN_DATA_SET(p[round_down(i, 4) +
1863 3 - (i % 4)]);
1864 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
1865 }
Javier Martin186b2502012-07-26 05:53:35 -03001866 }
Javier Martin186b2502012-07-26 05:53:35 -03001867
Philipp Zabel9acf7692013-05-23 10:42:56 -03001868 /* Clear registers */
1869 for (i = 0; i < 64; i++)
1870 coda_write(dev, 0, CODA_REG_BIT_CODE_BUF_ADDR + i * 4);
1871
Javier Martin186b2502012-07-26 05:53:35 -03001872 /* Tell the BIT where to find everything it needs */
Philipp Zabel89548442014-07-11 06:36:17 -03001873 if (dev->devtype->product == CODA_960 ||
1874 dev->devtype->product == CODA_7541) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001875 coda_write(dev, dev->tempbuf.paddr,
1876 CODA_REG_BIT_TEMP_BUF_ADDR);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001877 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001878 } else {
1879 coda_write(dev, dev->workbuf.paddr,
1880 CODA_REG_BIT_WORK_BUF_ADDR);
1881 }
Javier Martin186b2502012-07-26 05:53:35 -03001882 coda_write(dev, dev->codebuf.paddr,
1883 CODA_REG_BIT_CODE_BUF_ADDR);
1884 coda_write(dev, 0, CODA_REG_BIT_CODE_RUN);
1885
1886 /* Set default values */
1887 switch (dev->devtype->product) {
1888 case CODA_DX6:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001889 coda_write(dev, CODADX6_STREAM_BUF_PIC_FLUSH,
1890 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001891 break;
1892 default:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001893 coda_write(dev, CODA7_STREAM_BUF_PIC_FLUSH,
1894 CODA_REG_BIT_STREAM_CTRL);
Javier Martin186b2502012-07-26 05:53:35 -03001895 }
Philipp Zabel89548442014-07-11 06:36:17 -03001896 if (dev->devtype->product == CODA_960)
1897 coda_write(dev, 1 << 12, CODA_REG_BIT_FRAME_MEM_CTRL);
1898 else
1899 coda_write(dev, 0, CODA_REG_BIT_FRAME_MEM_CTRL);
Philipp Zabel10436672012-07-02 09:03:55 -03001900
1901 if (dev->devtype->product != CODA_DX6)
1902 coda_write(dev, 0, CODA7_REG_BIT_AXI_SRAM_USE);
1903
Javier Martin186b2502012-07-26 05:53:35 -03001904 coda_write(dev, CODA_INT_INTERRUPT_ENABLE,
1905 CODA_REG_BIT_INT_ENABLE);
1906
1907 /* Reset VPU and start processor */
1908 data = coda_read(dev, CODA_REG_BIT_CODE_RESET);
1909 data |= CODA_REG_RESET_ENABLE;
1910 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1911 udelay(10);
1912 data &= ~CODA_REG_RESET_ENABLE;
1913 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
1914 coda_write(dev, CODA_REG_RUN_ENABLE, CODA_REG_BIT_CODE_RUN);
1915
Philipp Zabelfe7554e2014-07-11 06:36:24 -03001916 clk_disable_unprepare(dev->clk_ahb);
1917 clk_disable_unprepare(dev->clk_per);
1918
1919 return 0;
1920
1921err_clk_ahb:
1922 clk_disable_unprepare(dev->clk_per);
1923err_clk_per:
1924 return ret;
1925}
1926
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001927static int coda_register_device(struct coda_dev *dev, int i)
Philipp Zabel121cacf2014-07-18 07:22:42 -03001928{
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001929 struct video_device *vfd = &dev->vfd[i];
1930
Dan Carpenter88ca3af2015-01-08 07:07:08 -03001931 if (i >= dev->devtype->num_vdevs)
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001932 return -EINVAL;
1933
Philipp Zabelbf249da2015-03-24 14:30:50 -03001934 strlcpy(vfd->name, dev->devtype->vdevs[i]->name, sizeof(vfd->name));
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03001935 vfd->fops = &coda_fops;
1936 vfd->ioctl_ops = &coda_ioctl_ops;
Philipp Zabel121cacf2014-07-18 07:22:42 -03001937 vfd->release = video_device_release_empty,
1938 vfd->lock = &dev->dev_mutex;
1939 vfd->v4l2_dev = &dev->v4l2_dev;
1940 vfd->vfl_dir = VFL_DIR_M2M;
1941 video_set_drvdata(vfd, dev);
1942
Philipp Zabela188a662014-08-05 14:00:20 -03001943 /* Not applicable, use the selection API instead */
1944 v4l2_disable_ioctl(vfd, VIDIOC_CROPCAP);
1945 v4l2_disable_ioctl(vfd, VIDIOC_G_CROP);
1946 v4l2_disable_ioctl(vfd, VIDIOC_S_CROP);
1947
Philipp Zabel121cacf2014-07-18 07:22:42 -03001948 return video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1949}
1950
Philipp Zabela1a87fa2016-02-17 11:21:10 -02001951static void coda_copy_firmware(struct coda_dev *dev, const u8 * const buf,
1952 size_t size)
1953{
1954 u32 *src = (u32 *)buf;
1955
1956 /* Check if the firmware has a 16-byte Freescale header, skip it */
1957 if (buf[0] == 'M' && buf[1] == 'X')
1958 src += 4;
1959 /*
1960 * Check whether the firmware is in native order or pre-reordered for
1961 * memory access. The first instruction opcode always is 0xe40e.
1962 */
1963 if (__le16_to_cpup((__le16 *)src) == 0xe40e) {
1964 u32 *dst = dev->codebuf.vaddr;
1965 int i;
1966
1967 /* Firmware in native order, reorder while copying */
1968 if (dev->devtype->product == CODA_DX6) {
1969 for (i = 0; i < (size - 16) / 4; i++)
1970 dst[i] = (src[i] << 16) | (src[i] >> 16);
1971 } else {
1972 for (i = 0; i < (size - 16) / 4; i += 2) {
1973 dst[i] = (src[i + 1] << 16) | (src[i + 1] >> 16);
1974 dst[i + 1] = (src[i] << 16) | (src[i] >> 16);
1975 }
1976 }
1977 } else {
1978 /* Copy the already reordered firmware image */
1979 memcpy(dev->codebuf.vaddr, src, size);
1980 }
1981}
1982
Philipp Zabel2ac7f082016-02-19 07:18:57 -02001983static void coda_fw_callback(const struct firmware *fw, void *context);
1984
1985static int coda_firmware_request(struct coda_dev *dev)
1986{
1987 char *fw = dev->devtype->firmware[dev->firmware];
1988
1989 dev_dbg(&dev->plat_dev->dev, "requesting firmware '%s' for %s\n", fw,
1990 coda_product_name(dev->devtype->product));
1991
1992 return request_firmware_nowait(THIS_MODULE, true, fw,
1993 &dev->plat_dev->dev, GFP_KERNEL, dev,
1994 coda_fw_callback);
1995}
1996
Javier Martin186b2502012-07-26 05:53:35 -03001997static void coda_fw_callback(const struct firmware *fw, void *context)
1998{
1999 struct coda_dev *dev = context;
2000 struct platform_device *pdev = dev->plat_dev;
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002001 int i, ret;
Javier Martin186b2502012-07-26 05:53:35 -03002002
Philipp Zabel2ac7f082016-02-19 07:18:57 -02002003 if (!fw && dev->firmware == 1) {
Javier Martin186b2502012-07-26 05:53:35 -03002004 v4l2_err(&dev->v4l2_dev, "firmware request failed\n");
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002005 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03002006 }
Philipp Zabel2ac7f082016-02-19 07:18:57 -02002007 if (!fw) {
2008 dev->firmware = 1;
2009 coda_firmware_request(dev);
2010 return;
2011 }
2012 if (dev->firmware == 1) {
2013 /*
2014 * Since we can't suppress warnings for failed asynchronous
2015 * firmware requests, report that the fallback firmware was
2016 * found.
2017 */
2018 dev_info(&pdev->dev, "Using fallback firmware %s\n",
2019 dev->devtype->firmware[dev->firmware]);
2020 }
Javier Martin186b2502012-07-26 05:53:35 -03002021
2022 /* allocate auxiliary per-device code buffer for the BIT processor */
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002023 ret = coda_alloc_aux_buf(dev, &dev->codebuf, fw->size, "codebuf",
2024 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002025 if (ret < 0)
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002026 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03002027
Philipp Zabela1a87fa2016-02-17 11:21:10 -02002028 coda_copy_firmware(dev, fw->data, fw->size);
Philipp Zabel87048bb2012-07-02 07:03:43 -03002029 release_firmware(fw);
2030
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002031 ret = coda_hw_init(dev);
2032 if (ret < 0) {
2033 v4l2_err(&dev->v4l2_dev, "HW initialization failed\n");
2034 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03002035 }
2036
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002037 ret = coda_check_firmware(dev);
2038 if (ret < 0)
2039 goto put_pm;
2040
Javier Martin186b2502012-07-26 05:53:35 -03002041 dev->m2m_dev = v4l2_m2m_init(&coda_m2m_ops);
2042 if (IS_ERR(dev->m2m_dev)) {
2043 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
Hans Verkuil53ddcc62016-02-15 13:09:10 -02002044 goto put_pm;
Javier Martin186b2502012-07-26 05:53:35 -03002045 }
2046
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002047 for (i = 0; i < dev->devtype->num_vdevs; i++) {
2048 ret = coda_register_device(dev, i);
2049 if (ret) {
2050 v4l2_err(&dev->v4l2_dev,
2051 "Failed to register %s video device: %d\n",
2052 dev->devtype->vdevs[i]->name, ret);
2053 goto rel_vfd;
2054 }
Philipp Zabel121cacf2014-07-18 07:22:42 -03002055 }
2056
2057 v4l2_info(&dev->v4l2_dev, "codec registered as /dev/video[%d-%d]\n",
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002058 dev->vfd[0].num, dev->vfd[i - 1].num);
Javier Martin186b2502012-07-26 05:53:35 -03002059
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002060 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03002061 return;
2062
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002063rel_vfd:
2064 while (--i >= 0)
2065 video_unregister_device(&dev->vfd[i]);
Javier Martin186b2502012-07-26 05:53:35 -03002066 v4l2_m2m_release(dev->m2m_dev);
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002067put_pm:
2068 pm_runtime_put_sync(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03002069}
2070
Javier Martin186b2502012-07-26 05:53:35 -03002071enum coda_platform {
2072 CODA_IMX27,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002073 CODA_IMX53,
Philipp Zabel89548442014-07-11 06:36:17 -03002074 CODA_IMX6Q,
2075 CODA_IMX6DL,
Javier Martin186b2502012-07-26 05:53:35 -03002076};
2077
Emil Goodec06d8752012-08-14 17:44:42 -03002078static const struct coda_devtype coda_devdata[] = {
Javier Martin186b2502012-07-26 05:53:35 -03002079 [CODA_IMX27] = {
Philipp Zabel2ac7f082016-02-19 07:18:57 -02002080 .firmware = {
2081 "vpu_fw_imx27_TO2.bin",
2082 "v4l-codadx6-imx27.bin"
2083 },
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002084 .product = CODA_DX6,
2085 .codecs = codadx6_codecs,
2086 .num_codecs = ARRAY_SIZE(codadx6_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002087 .vdevs = codadx6_video_devices,
2088 .num_vdevs = ARRAY_SIZE(codadx6_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002089 .workbuf_size = 288 * 1024 + FMO_SLICE_SAVE_BUF_SIZE * 8 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002090 .iram_size = 0xb000,
Javier Martin186b2502012-07-26 05:53:35 -03002091 },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002092 [CODA_IMX53] = {
Philipp Zabel2ac7f082016-02-19 07:18:57 -02002093 .firmware = {
2094 "vpu_fw_imx53.bin",
2095 "v4l-coda7541-imx53.bin"
2096 },
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002097 .product = CODA_7541,
2098 .codecs = coda7_codecs,
2099 .num_codecs = ARRAY_SIZE(coda7_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002100 .vdevs = coda7_video_devices,
2101 .num_vdevs = ARRAY_SIZE(coda7_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002102 .workbuf_size = 128 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002103 .tempbuf_size = 304 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002104 .iram_size = 0x14000,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002105 },
Philipp Zabel89548442014-07-11 06:36:17 -03002106 [CODA_IMX6Q] = {
Philipp Zabel2ac7f082016-02-19 07:18:57 -02002107 .firmware = {
2108 "vpu_fw_imx6q.bin",
2109 "v4l-coda960-imx6q.bin"
2110 },
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002111 .product = CODA_960,
2112 .codecs = coda9_codecs,
2113 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002114 .vdevs = coda9_video_devices,
2115 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002116 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002117 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002118 .iram_size = 0x21000,
Philipp Zabel89548442014-07-11 06:36:17 -03002119 },
2120 [CODA_IMX6DL] = {
Philipp Zabel2ac7f082016-02-19 07:18:57 -02002121 .firmware = {
2122 "vpu_fw_imx6d.bin",
2123 "v4l-coda960-imx6dl.bin"
2124 },
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002125 .product = CODA_960,
2126 .codecs = coda9_codecs,
2127 .num_codecs = ARRAY_SIZE(coda9_codecs),
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002128 .vdevs = coda9_video_devices,
2129 .num_vdevs = ARRAY_SIZE(coda9_video_devices),
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002130 .workbuf_size = 80 * 1024,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002131 .tempbuf_size = 204 * 1024,
Philipp Zabel401e9722014-07-11 06:36:43 -03002132 .iram_size = 0x20000,
Philipp Zabel89548442014-07-11 06:36:17 -03002133 },
Javier Martin186b2502012-07-26 05:53:35 -03002134};
2135
2136static struct platform_device_id coda_platform_ids[] = {
2137 { .name = "coda-imx27", .driver_data = CODA_IMX27 },
2138 { /* sentinel */ }
2139};
2140MODULE_DEVICE_TABLE(platform, coda_platform_ids);
2141
2142#ifdef CONFIG_OF
2143static const struct of_device_id coda_dt_ids[] = {
Alexander Shiyan7b0dd9e2013-06-15 08:09:57 -03002144 { .compatible = "fsl,imx27-vpu", .data = &coda_devdata[CODA_IMX27] },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002145 { .compatible = "fsl,imx53-vpu", .data = &coda_devdata[CODA_IMX53] },
Philipp Zabel89548442014-07-11 06:36:17 -03002146 { .compatible = "fsl,imx6q-vpu", .data = &coda_devdata[CODA_IMX6Q] },
2147 { .compatible = "fsl,imx6dl-vpu", .data = &coda_devdata[CODA_IMX6DL] },
Javier Martin186b2502012-07-26 05:53:35 -03002148 { /* sentinel */ }
2149};
2150MODULE_DEVICE_TABLE(of, coda_dt_ids);
2151#endif
2152
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002153static int coda_probe(struct platform_device *pdev)
Javier Martin186b2502012-07-26 05:53:35 -03002154{
2155 const struct of_device_id *of_id =
2156 of_match_device(of_match_ptr(coda_dt_ids), &pdev->dev);
2157 const struct platform_device_id *pdev_id;
Philipp Zabel657eee72013-04-29 16:17:14 -07002158 struct coda_platform_data *pdata = pdev->dev.platform_data;
2159 struct device_node *np = pdev->dev.of_node;
2160 struct gen_pool *pool;
Javier Martin186b2502012-07-26 05:53:35 -03002161 struct coda_dev *dev;
2162 struct resource *res;
2163 int ret, irq;
2164
Philipp Zabelf23797b2014-08-06 08:02:23 -03002165 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
Philipp Zabel6da999d2014-09-29 09:53:43 -03002166 if (!dev)
Javier Martin186b2502012-07-26 05:53:35 -03002167 return -ENOMEM;
Javier Martin186b2502012-07-26 05:53:35 -03002168
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002169 pdev_id = of_id ? of_id->data : platform_get_device_id(pdev);
2170
Philipp Zabelbc717d52016-02-26 08:21:35 -03002171 if (of_id)
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002172 dev->devtype = of_id->data;
Philipp Zabelbc717d52016-02-26 08:21:35 -03002173 else if (pdev_id)
Philipp Zabelb2f91ae2014-10-02 14:08:27 -03002174 dev->devtype = &coda_devdata[pdev_id->driver_data];
Philipp Zabelbc717d52016-02-26 08:21:35 -03002175 else
2176 return -EINVAL;
Javier Martin186b2502012-07-26 05:53:35 -03002177
2178 spin_lock_init(&dev->irqlock);
Philipp Zabele11f3e62012-07-25 09:16:58 -03002179 INIT_LIST_HEAD(&dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03002180
2181 dev->plat_dev = pdev;
2182 dev->clk_per = devm_clk_get(&pdev->dev, "per");
2183 if (IS_ERR(dev->clk_per)) {
2184 dev_err(&pdev->dev, "Could not get per clock\n");
2185 return PTR_ERR(dev->clk_per);
2186 }
2187
2188 dev->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
2189 if (IS_ERR(dev->clk_ahb)) {
2190 dev_err(&pdev->dev, "Could not get ahb clock\n");
2191 return PTR_ERR(dev->clk_ahb);
2192 }
2193
2194 /* Get memory for physical registers */
2195 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Philipp Zabel611cbbf2013-05-21 04:19:27 -03002196 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
2197 if (IS_ERR(dev->regs_base))
2198 return PTR_ERR(dev->regs_base);
Javier Martin186b2502012-07-26 05:53:35 -03002199
2200 /* IRQ */
Philipp Zabel540b72e2014-08-05 14:00:09 -03002201 irq = platform_get_irq_byname(pdev, "bit");
2202 if (irq < 0)
2203 irq = platform_get_irq(pdev, 0);
Javier Martin186b2502012-07-26 05:53:35 -03002204 if (irq < 0) {
2205 dev_err(&pdev->dev, "failed to get irq resource\n");
Fabio Estevam7d377432014-06-04 15:46:23 -03002206 return irq;
Javier Martin186b2502012-07-26 05:53:35 -03002207 }
2208
Fabio Estevam08c8d142014-06-04 15:46:24 -03002209 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, coda_irq_handler,
2210 IRQF_ONESHOT, dev_name(&pdev->dev), dev);
2211 if (ret < 0) {
2212 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
2213 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002214 }
2215
Philipp Zabelee27aa92014-07-24 16:50:03 -03002216 dev->rstc = devm_reset_control_get_optional(&pdev->dev, NULL);
Philipp Zabel8f452842014-07-11 06:36:35 -03002217 if (IS_ERR(dev->rstc)) {
2218 ret = PTR_ERR(dev->rstc);
Alexander Shiyan84345a22016-06-18 11:45:15 -03002219 if (ret == -ENOENT || ret == -ENOTSUPP) {
Philipp Zabel8f452842014-07-11 06:36:35 -03002220 dev->rstc = NULL;
2221 } else {
Philipp Zabelf23797b2014-08-06 08:02:23 -03002222 dev_err(&pdev->dev, "failed get reset control: %d\n",
2223 ret);
Philipp Zabel8f452842014-07-11 06:36:35 -03002224 return ret;
2225 }
2226 }
2227
Philipp Zabel657eee72013-04-29 16:17:14 -07002228 /* Get IRAM pool from device tree or platform data */
Vladimir Zapolskiyabdd4a72015-06-30 15:00:07 -07002229 pool = of_gen_pool_get(np, "iram", 0);
Philipp Zabel657eee72013-04-29 16:17:14 -07002230 if (!pool && pdata)
Vladimir Zapolskiy73858172015-09-04 15:47:43 -07002231 pool = gen_pool_get(pdata->iram_dev, NULL);
Philipp Zabel657eee72013-04-29 16:17:14 -07002232 if (!pool) {
2233 dev_err(&pdev->dev, "iram pool not available\n");
2234 return -ENOMEM;
2235 }
2236 dev->iram_pool = pool;
2237
Javier Martin186b2502012-07-26 05:53:35 -03002238 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
2239 if (ret)
2240 return ret;
2241
2242 mutex_init(&dev->dev_mutex);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002243 mutex_init(&dev->coda_mutex);
Javier Martin186b2502012-07-26 05:53:35 -03002244
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002245 dev->debugfs_root = debugfs_create_dir("coda", NULL);
2246 if (!dev->debugfs_root)
2247 dev_warn(&pdev->dev, "failed to create debugfs root\n");
2248
Javier Martin186b2502012-07-26 05:53:35 -03002249 /* allocate auxiliary per-device buffers for the BIT processor */
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002250 if (dev->devtype->product == CODA_DX6) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002251 ret = coda_alloc_aux_buf(dev, &dev->workbuf,
Philipp Zabele5b0d1c2014-07-11 06:36:41 -03002252 dev->devtype->workbuf_size, "workbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002253 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002254 if (ret < 0)
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002255 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002256 }
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002257
2258 if (dev->devtype->tempbuf_size) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002259 ret = coda_alloc_aux_buf(dev, &dev->tempbuf,
Philipp Zabel5d73fad2014-07-11 06:36:42 -03002260 dev->devtype->tempbuf_size, "tempbuf",
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002261 dev->debugfs_root);
Philipp Zabel6ba53b82015-03-24 14:30:54 -03002262 if (ret < 0)
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002263 goto err_v4l2_register;
Javier Martin186b2502012-07-26 05:53:35 -03002264 }
2265
Philipp Zabel401e9722014-07-11 06:36:43 -03002266 dev->iram.size = dev->devtype->iram_size;
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002267 dev->iram.vaddr = gen_pool_dma_alloc(dev->iram_pool, dev->iram.size,
2268 &dev->iram.paddr);
2269 if (!dev->iram.vaddr) {
Philipp Zabel8be31c82014-08-05 14:00:13 -03002270 dev_warn(&pdev->dev, "unable to alloc iram\n");
2271 } else {
Philipp Zabel811a6932015-01-23 13:51:23 -03002272 memset(dev->iram.vaddr, 0, dev->iram.size);
Philipp Zabel8be31c82014-08-05 14:00:13 -03002273 dev->iram.blob.data = dev->iram.vaddr;
2274 dev->iram.blob.size = dev->iram.size;
2275 dev->iram.dentry = debugfs_create_blob("iram", 0644,
2276 dev->debugfs_root,
2277 &dev->iram.blob);
Philipp Zabel10436672012-07-02 09:03:55 -03002278 }
2279
Philipp Zabel32b6f202014-07-11 06:36:20 -03002280 dev->workqueue = alloc_workqueue("coda", WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
2281 if (!dev->workqueue) {
2282 dev_err(&pdev->dev, "unable to alloc workqueue\n");
Fabio Estevam74d08d52014-10-04 16:40:51 -03002283 ret = -ENOMEM;
2284 goto err_v4l2_register;
Philipp Zabel32b6f202014-07-11 06:36:20 -03002285 }
2286
Javier Martin186b2502012-07-26 05:53:35 -03002287 platform_set_drvdata(pdev, dev);
2288
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002289 /*
2290 * Start activated so we can directly call coda_hw_init in
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002291 * coda_fw_callback regardless of whether CONFIG_PM is
Ulf Hanssonc5d28e22014-09-22 13:05:56 -03002292 * enabled or whether the device is associated with a PM domain.
2293 */
2294 pm_runtime_get_noresume(&pdev->dev);
2295 pm_runtime_set_active(&pdev->dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002296 pm_runtime_enable(&pdev->dev);
2297
Fabio Estevamc762ff12016-10-04 12:41:37 -03002298 ret = coda_firmware_request(dev);
2299 if (ret)
2300 goto err_alloc_workqueue;
2301 return 0;
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002302
Fabio Estevamc762ff12016-10-04 12:41:37 -03002303err_alloc_workqueue:
2304 destroy_workqueue(dev->workqueue);
Fabio Estevamb7bd6602014-10-04 16:40:50 -03002305err_v4l2_register:
2306 v4l2_device_unregister(&dev->v4l2_dev);
2307 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002308}
2309
2310static int coda_remove(struct platform_device *pdev)
2311{
2312 struct coda_dev *dev = platform_get_drvdata(pdev);
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002313 int i;
Javier Martin186b2502012-07-26 05:53:35 -03002314
Philipp Zabel2c11d1b2014-10-02 14:08:28 -03002315 for (i = 0; i < ARRAY_SIZE(dev->vfd); i++) {
2316 if (video_get_drvdata(&dev->vfd[i]))
2317 video_unregister_device(&dev->vfd[i]);
2318 }
Javier Martin186b2502012-07-26 05:53:35 -03002319 if (dev->m2m_dev)
2320 v4l2_m2m_release(dev->m2m_dev);
Philipp Zabel1e172732014-07-11 06:36:23 -03002321 pm_runtime_disable(&pdev->dev);
Javier Martin186b2502012-07-26 05:53:35 -03002322 v4l2_device_unregister(&dev->v4l2_dev);
Philipp Zabel32b6f202014-07-11 06:36:20 -03002323 destroy_workqueue(dev->workqueue);
Philipp Zabelb313bcc2014-07-11 06:36:16 -03002324 if (dev->iram.vaddr)
2325 gen_pool_free(dev->iram_pool, (unsigned long)dev->iram.vaddr,
2326 dev->iram.size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002327 coda_free_aux_buf(dev, &dev->codebuf);
2328 coda_free_aux_buf(dev, &dev->tempbuf);
2329 coda_free_aux_buf(dev, &dev->workbuf);
Philipp Zabelf61c0b12014-07-11 06:36:40 -03002330 debugfs_remove_recursive(dev->debugfs_root);
Javier Martin186b2502012-07-26 05:53:35 -03002331 return 0;
2332}
2333
Rafael J. Wysockie243c7c2014-12-04 01:10:10 +01002334#ifdef CONFIG_PM
Philipp Zabel1e172732014-07-11 06:36:23 -03002335static int coda_runtime_resume(struct device *dev)
2336{
2337 struct coda_dev *cdev = dev_get_drvdata(dev);
2338 int ret = 0;
2339
Philipp Zabel65919e62014-07-18 07:22:36 -03002340 if (dev->pm_domain && cdev->codebuf.vaddr) {
Philipp Zabel1e172732014-07-11 06:36:23 -03002341 ret = coda_hw_init(cdev);
2342 if (ret)
2343 v4l2_err(&cdev->v4l2_dev, "HW initialization failed\n");
2344 }
2345
2346 return ret;
2347}
2348#endif
2349
2350static const struct dev_pm_ops coda_pm_ops = {
2351 SET_RUNTIME_PM_OPS(NULL, coda_runtime_resume, NULL)
2352};
2353
Javier Martin186b2502012-07-26 05:53:35 -03002354static struct platform_driver coda_driver = {
2355 .probe = coda_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002356 .remove = coda_remove,
Javier Martin186b2502012-07-26 05:53:35 -03002357 .driver = {
2358 .name = CODA_NAME,
Javier Martin186b2502012-07-26 05:53:35 -03002359 .of_match_table = of_match_ptr(coda_dt_ids),
Philipp Zabel1e172732014-07-11 06:36:23 -03002360 .pm = &coda_pm_ops,
Javier Martin186b2502012-07-26 05:53:35 -03002361 },
2362 .id_table = coda_platform_ids,
2363};
2364
2365module_platform_driver(coda_driver);
2366
2367MODULE_LICENSE("GPL");
2368MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
2369MODULE_DESCRIPTION("Coda multi-standard codec V4L2 driver");